.btn {
  border-width: 2px;
}
body {
  font-family: Jost;
}
.display-1 {
  font-family: 'Jost', sans-serif;
  font-size: 1.8rem;
  line-height: 1.1;
}
.display-1 > .mbr-iconfont {
  font-size: 2.25rem;
}
.display-2 {
  font-family: 'PT Sans', sans-serif;
  font-size: 1.6rem;
  line-height: 1.1;
}
.display-2 > .mbr-iconfont {
  font-size: 2rem;
}
.display-4 {
  font-family: 'PT Sans', sans-serif;
  font-size: 1.1rem;
  line-height: 1.5;
}
.display-4 > .mbr-iconfont {
  font-size: 1.375rem;
}
.display-5 {
  font-family: 'PT Sans', sans-serif;
  font-size: 1.4rem;
  line-height: 1.5;
}
.display-6 {
  font-family: 'PT Sans', sans-serif;
  font-size: 0.9rem;
  line-height: 1.4;
}
.display-6 > .mbr-iconfont {
  font-size: 1.5rem;
}
.display-5 > .mbr-iconfont {
  font-size: 1.75rem;
}
.display-7 {
  font-family: 'PT Sans', sans-serif;
  font-size: 1.2rem;
  line-height: 1.5;
}
.display-7 > .mbr-iconfont {
  font-size: 1.5rem;
}
/* ---- Fluid typography for mobile devices ---- */
/* 1.4 - font scale ratio ( bootstrap == 1.42857 ) */
/* 100vw - current viewport width */
/* (48 - 20)  48 == 48rem == 768px, 20 == 20rem == 320px(minimal supported viewport) */
/* 0.65 - min scale variable, may vary */
@media (max-width: 992px) {
  .display-1 {
    font-size: 1.44rem;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 1.26rem;
    font-size: calc( 1.28rem + (1.8 - 1.28) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (1.28rem + (1.8 - 1.28) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 1.28rem;
    font-size: calc( 1.21rem + (1.6 - 1.21) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.3 * (1.21rem + (1.6 - 1.21) * ((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.12rem;
    font-size: calc( 1.14rem + (1.4 - 1.14) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.14rem + (1.4 - 1.14) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-7 {
    font-size: 0.96rem;
    font-size: calc( 1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* Buttons */
.btn {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-sm {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-md {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-lg {
  padding: 1rem 2.6rem;
  border-radius: 4px;
}
.bg-primary {
  background-color: #6592e6 !important;
}
.bg-success {
  background-color: #40b0bf !important;
}
.bg-info {
  background-color: #47b5ed !important;
}
.bg-warning {
  background-color: #e4a010 !important;
}
.bg-danger {
  background-color: #ff9966 !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #6592e6 !important;
  border-color: #6592e6 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus,
.btn-primary.active {
  color: #ffffff !important;
  background-color: #2260d2 !important;
  border-color: #2260d2 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #2260d2 !important;
  border-color: #2260d2 !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #ff6666 !important;
  border-color: #ff6666 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus,
.btn-secondary.active {
  color: #ffffff !important;
  background-color: #ff0f0f !important;
  border-color: #ff0f0f !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #ff0f0f !important;
  border-color: #ff0f0f !important;
}
.btn-info,
.btn-info:active {
  background-color: #47b5ed !important;
  border-color: #47b5ed !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus,
.btn-info.active {
  color: #ffffff !important;
  background-color: #148cca !important;
  border-color: #148cca !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #148cca !important;
  border-color: #148cca !important;
}
.btn-success,
.btn-success:active {
  background-color: #40b0bf !important;
  border-color: #40b0bf !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus,
.btn-success.active {
  color: #ffffff !important;
  background-color: #2a747e !important;
  border-color: #2a747e !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #2a747e !important;
  border-color: #2a747e !important;
}
.btn-warning,
.btn-warning:active {
  background-color: #e4a010 !important;
  border-color: #e4a010 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus,
.btn-warning.active {
  color: #ffffff !important;
  background-color: #93670a !important;
  border-color: #93670a !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #ffffff !important;
  background-color: #93670a !important;
  border-color: #93670a !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: #6592e6;
  color: #6592e6;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #2260d2 !important;
  background-color: transparent!important;
  border-color: #2260d2 !important;
  box-shadow: none!important;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #6592e6 !important;
  border-color: #6592e6 !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background-color: transparent !important;
  border-color: #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: #e4a010;
  color: #e4a010;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #93670a !important;
  background-color: transparent!important;
  border-color: #93670a !important;
  box-shadow: none!important;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #ffffff !important;
  background-color: #e4a010 !important;
  border-color: #e4a010 !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: #6592e6 !important;
}
.text-secondary {
  color: #ff6666 !important;
}
.text-success {
  color: #40b0bf !important;
}
.text-info {
  color: #47b5ed !important;
}
.text-warning {
  color: #e4a010 !important;
}
.text-danger {
  color: #ff9966 !important;
}
.text-white {
  color: #fafafa !important;
}
.text-black {
  color: #232323 !important;
}
a.text-primary:hover,
a.text-primary:focus,
a.text-primary.active {
  color: #205ac5 !important;
}
a.text-secondary:hover,
a.text-secondary:focus,
a.text-secondary.active {
  color: #ff0000 !important;
}
a.text-success:hover,
a.text-success:focus,
a.text-success.active {
  color: #266a73 !important;
}
a.text-info:hover,
a.text-info:focus,
a.text-info.active {
  color: #1283bc !important;
}
a.text-warning:hover,
a.text-warning:focus,
a.text-warning.active {
  color: #855d09 !important;
}
a.text-danger:hover,
a.text-danger:focus,
a.text-danger.active {
  color: #ff5500 !important;
}
a.text-white:hover,
a.text-white:focus,
a.text-white.active {
  color: #c7c7c7 !important;
}
a.text-black:hover,
a.text-black:focus,
a.text-black.active {
  color: #000000 !important;
}
a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption) {
  position: relative;
  background-image: transparent;
  background-size: 10000px 2px;
  background-repeat: no-repeat;
  background-position: 0px 1.2em;
  background-position: -10000px 1.2em;
}
a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  transition: background-position 2s ease-in-out;
  background-image: linear-gradient(currentColor 50%, currentColor 50%);
  background-position: 0px 1.2em;
}
.nav-tabs .nav-link.active {
  color: #6592e6;
}
.nav-tabs .nav-link:not(.active) {
  color: #232323;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #47b5ed;
}
.alert-warning {
  background-color: #e4a010;
}
.alert-danger {
  background-color: #ff9966;
}
.mbr-gallery-filter li.active .btn {
  background-color: #6592e6;
  border-color: #6592e6;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
a,
a:hover {
  color: #6592e6;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #a0d8df;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #fbeac5;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #ffffff;
}
/* Scroll to top button*/
.form-control {
  font-family: 'PT Sans', sans-serif;
  font-size: 1.1rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control > .mbr-iconfont {
  font-size: 1.375rem;
}
.form-control:hover,
.form-control:focus {
  box-shadow: rgba(0, 0, 0, 0.07) 0px 1px 1px 0px, rgba(0, 0, 0, 0.07) 0px 1px 3px 0px, rgba(0, 0, 0, 0.03) 0px 0px 0px 1px;
  border-color: #6592e6 !important;
}
.form-control:-webkit-input-placeholder {
  font-family: 'PT Sans', sans-serif;
  font-size: 1.1rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control:-webkit-input-placeholder > .mbr-iconfont {
  font-size: 1.375rem;
}
blockquote {
  border-color: #6592e6;
}
/* Forms */
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #6592e6;
  color: #ffffff;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #6592e6;
}
.jq-selectbox .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:after,
.jq-number__spin.plus:after {
  transition: 0.4s;
  border-top-color: #353535;
  border-bottom-color: #353535;
}
.jq-selectbox:hover .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:hover:after,
.jq-number__spin.plus:hover:after {
  border-top-color: #6592e6;
  border-bottom-color: #6592e6;
}
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_default,
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_current,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div.xdsoft_current {
  color: #ffffff !important;
  background-color: #6592e6 !important;
  box-shadow: none !important;
}
.xdsoft_datetimepicker .xdsoft_calendar td:hover,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div:hover {
  color: #000000 !important;
  background: #ff6666 !important;
  box-shadow: none !important;
}
.lazy-bg {
  background-image: none !important;
}
.lazy-placeholder:not(section),
.lazy-none {
  display: block;
  position: relative;
  padding-bottom: 56.25%;
  width: 100%;
  height: auto;
}
iframe.lazy-placeholder,
.lazy-placeholder:after {
  content: '';
  position: absolute;
  width: 200px;
  height: 200px;
  background: transparent no-repeat center;
  background-size: contain;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 64 64' xmlns='http://www.w3.org/2000/svg' stroke='%236592e6' %3e%3cg fill='none' fill-rule='evenodd'%3e%3cg transform='translate(16 16)' stroke-width='2'%3e%3ccircle stroke-opacity='.5' cx='16' cy='16' r='16'/%3e%3cpath d='M32 16c0-9.94-8.06-16-16-16'%3e%3canimateTransform attributeName='transform' type='rotate' from='0 16 16' to='360 16 16' dur='1s' repeatCount='indefinite'/%3e%3c/path%3e%3c/g%3e%3c/g%3e%3c/svg%3e");
}
section.lazy-placeholder:after {
  opacity: 0.5;
}
body {
  overflow-x: hidden;
}
a {
  transition: color 0.6s;
}
.cid-swWxvAAPui {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-swWxvAAPui nav.navbar {
  position: fixed;
}
.cid-swWxvAAPui .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-swWxvAAPui .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-swWxvAAPui .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-swWxvAAPui .dropdown-item:hover,
.cid-swWxvAAPui .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-swWxvAAPui .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-swWxvAAPui .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-swWxvAAPui .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-swWxvAAPui .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-swWxvAAPui .nav-link {
  position: relative;
}
.cid-swWxvAAPui .container {
  display: flex;
  margin: auto;
}
.cid-swWxvAAPui .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-swWxvAAPui .dropdown-menu,
.cid-swWxvAAPui .navbar.opened {
  background: #234d8b !important;
}
.cid-swWxvAAPui .nav-item:focus,
.cid-swWxvAAPui .nav-link:focus {
  outline: none;
}
.cid-swWxvAAPui .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-swWxvAAPui .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-swWxvAAPui .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-swWxvAAPui .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-swWxvAAPui .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-swWxvAAPui .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-swWxvAAPui .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #234d8b;
}
.cid-swWxvAAPui .navbar.opened {
  transition: all 0.3s;
}
.cid-swWxvAAPui .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-swWxvAAPui .navbar .navbar-logo img {
  width: auto;
}
.cid-swWxvAAPui .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-swWxvAAPui .navbar.collapsed {
  justify-content: center;
}
.cid-swWxvAAPui .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-swWxvAAPui .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-swWxvAAPui .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-swWxvAAPui .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-swWxvAAPui .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-swWxvAAPui .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-swWxvAAPui .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-swWxvAAPui .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-swWxvAAPui .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-swWxvAAPui .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-swWxvAAPui .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-swWxvAAPui .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-swWxvAAPui .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-swWxvAAPui .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-swWxvAAPui .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-swWxvAAPui .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-swWxvAAPui .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-swWxvAAPui .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-swWxvAAPui .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-swWxvAAPui .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-swWxvAAPui .navbar.navbar-short {
  min-height: 60px;
}
.cid-swWxvAAPui .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-swWxvAAPui .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-swWxvAAPui .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-swWxvAAPui .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-swWxvAAPui .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-swWxvAAPui .dropdown-item.active,
.cid-swWxvAAPui .dropdown-item:active {
  background-color: transparent;
}
.cid-swWxvAAPui .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-swWxvAAPui .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-swWxvAAPui .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-swWxvAAPui .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #234d8b;
}
.cid-swWxvAAPui .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-swWxvAAPui .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-swWxvAAPui ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-swWxvAAPui .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-swWxvAAPui button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-swWxvAAPui button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-swWxvAAPui button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-swWxvAAPui button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-swWxvAAPui button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-swWxvAAPui button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-swWxvAAPui nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-swWxvAAPui nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-swWxvAAPui nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-swWxvAAPui nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-swWxvAAPui .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-swWxvAAPui a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-swWxvAAPui .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-swWxvAAPui .navbar {
    height: 70px;
  }
  .cid-swWxvAAPui .navbar.opened {
    height: auto;
  }
  .cid-swWxvAAPui .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-swX8XJpkNL {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-swX8XJpkNL .item {
  padding-bottom: 2rem;
}
.cid-swX8XJpkNL .item-wrapper {
  position: relative;
}
.cid-swX8XJpkNL .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-swX8XJpkNL .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-swX8XJpkNL .carousel-control,
.cid-swX8XJpkNL .close {
  background: #1b1b1b;
}
.cid-swX8XJpkNL .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-swX8XJpkNL .carousel-control-prev span {
  margin-right: 5px;
}
.cid-swX8XJpkNL .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-swX8XJpkNL .carousel-control-next span {
  margin-left: 5px;
}
.cid-swX8XJpkNL .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-swX8XJpkNL .close::before {
  content: '\e91a';
}
.cid-swX8XJpkNL .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-swX8XJpkNL .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-swX8XJpkNL .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-swX8XJpkNL .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-swX8XJpkNL .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-swX8XJpkNL .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-swX8XJpkNL .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-swX8XJpkNL .carousel-indicators li.active,
.cid-swX8XJpkNL .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-swX8XJpkNL .carousel-indicators li::after,
.cid-swX8XJpkNL .carousel-indicators li::before {
  content: none;
}
.cid-swX8XJpkNL .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-swX8XJpkNL .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-swX8XJpkNL .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-swX8XJpkNL .carousel-indicators {
    display: none;
  }
}
.cid-swX8XJpkNL .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-swX8XJpkNL .carousel-inner > .active {
  display: block;
}
.cid-swX8XJpkNL .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-swX8XJpkNL .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-swX8XJpkNL .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-swX8XJpkNL .carousel-control,
  .cid-swX8XJpkNL .carousel-indicators,
  .cid-swX8XJpkNL .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-swX8XJpkNL .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-swX8XJpkNL .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-swX8XJpkNL .carousel-indicators .active,
.cid-swX8XJpkNL .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-swX8XJpkNL .carousel-indicators .active {
  background: #fff;
}
.cid-swX8XJpkNL .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-swX8XJpkNL .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-swX8XJpkNL .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-swX8XJpkNL .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-swX8XJpkNL .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-swX8XJpkNL .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-swX8XJpkNL .carousel {
  width: 100%;
}
.cid-swX8XJpkNL .modal-backdrop.in {
  opacity: 0.8;
}
.cid-swX8XJpkNL .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-swX8XJpkNL .modal.fade .modal-dialog,
.cid-swX8XJpkNL .modal.in .modal-dialog {
  transform: none;
}
.cid-swX8XJpkNL .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-swX8XJpkNL H6 {
  text-align: right;
}
.cid-swX8XJpkNL H3 {
  text-align: center;
}
.cid-sxA0TbPFjB {
  padding-top: 0px;
  padding-bottom: 0px;
  background: linear-gradient(45deg, #f9f9f9, #efefef);
}
.cid-sxA0TbPFjB .mbr-section-subtitle {
  font-style: italic;
  letter-spacing: 1rem;
}
.cid-sxA0TbPFjB .mbr-section-title {
  text-align: center;
  color: #ffffff;
}
.cid-sxA0TbPFjB H3 {
  text-align: center;
  color: #353535;
}
.cid-sxA0TbPFjB .mbr-text,
.cid-sxA0TbPFjB .mbr-section-btn {
  color: #ffffff;
  text-align: center;
}
.cid-sxz3n5qfo7 {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #132c53;
}
.cid-sxz3n5qfo7 .mbr-text,
.cid-sxz3n5qfo7 .mbr-section-btn {
  color: #6592e6;
}
.cid-sxz3n5qfo7 .mbr-section-title {
  text-align: center;
  color: #ffffff;
}
.cid-sxz3n5qfo7 .mbr-section-subtitle {
  color: #ffffff;
}
.cid-sxCoU8BFN0 {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #fafafa;
}
.cid-sxCoU8BFN0 .mbr-section-subtitle {
  color: #5a5959;
}
.cid-sxCoU8BFN0 .mbr-text {
  color: #5a5959;
}
.cid-sxU1hR0doG {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #fafafa;
}
.cid-sxU1hR0doG .mbr-text {
  color: #5a5959;
}
.cid-sxU1hR0doG .mbr-section-subtitle {
  color: #232323;
}
.cid-sxKB8uLJkt {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sxKB8uLJkt .image-wrap img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-sxKB8uLJkt .image-wrap img {
    display: block;
    margin: auto;
    width: 40%;
  }
}
.cid-sxThoUQFV2 {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-sxThoUQFV2 .img-wrapper {
  text-align: center;
}
.cid-sxThoUQFV2 img {
  margin: auto;
  width: 140px;
  padding-bottom: 2rem;
}
.cid-sxThoUQFV2 .row {
  align-items: flex-start;
}
.cid-sxThoUQFV2 .card-wrapper {
  border-radius: 4px;
  background: #fafafa;
}
@media (max-width: 992px) {
  .cid-sxThoUQFV2 .card-wrapper {
    margin-bottom: 2rem;
  }
}
@media (min-width: 768px) {
  .cid-sxThoUQFV2 .card-wrapper {
    padding: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-sxThoUQFV2 .card-wrapper {
    padding: 1rem;
  }
}
.cid-sIPX2QTNtb {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-sIPX2QTNtb .mbr-iconfont {
  font-size: 1.4rem !important;
  font-family: 'Moririse2' !important;
  color: #6592e6;
  margin-left: 1rem;
}
.cid-sIPX2QTNtb .panel-group {
  border: none;
}
.cid-sIPX2QTNtb .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-sIPX2QTNtb .panel-body,
.cid-sIPX2QTNtb .card-header {
  padding: 1rem 0;
}
.cid-sIPX2QTNtb .panel-title-edit {
  color: #132c53;
  text-align: center;
}
.cid-sIPX2QTNtb .card .card-header {
  background-color: transparent;
  margin-bottom: 0;
}
.cid-sIPX2QTNtb H4 {
  color: #6592e6;
}
.cid-sJ1hCnb1Fz {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #132c53;
}
.cid-sJ1hCnb1Fz .mbr-section-subtitle {
  color: #ffffff;
}
.cid-sJ1hCnb1Fz .mbr-text,
.cid-sJ1hCnb1Fz .mbr-section-btn {
  color: #4479d9;
}
.cid-sHH7Es8HaE {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #f9f9f9;
}
.cid-sHH7Es8HaE .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
.cid-sHH7Es8HaE form .mbr-section-btn {
  text-align: center;
  width: 100%;
}
.cid-sHH7Es8HaE form .mbr-section-btn .btn {
  display: inline-flex;
}
@media (max-width: 991px) {
  .cid-sHH7Es8HaE form .mbr-section-btn .btn {
    width: 100%;
  }
}
.cid-sxBEIrHQoI {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-sxBEIrHQoI .mbr-text {
  color: #c1c1c1;
}
.cid-sxBEIrHQoI .mbr-text,
.cid-sxBEIrHQoI .mbr-section-btn {
  color: #353535;
  text-align: center;
}
.cid-sxBEIrHQoI H3 {
  text-align: center;
}
.cid-swZEj4GNY6 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #fafafa;
}
.cid-swZEj4GNY6 .socicon-bg-facebook {
  background: #3e5b98;
  color: #ffffff;
}
.cid-swZEj4GNY6 .socicon-bg-twitter {
  background: #4da7de;
  color: #ffffff;
}
.cid-swZEj4GNY6 .socicon-bg-googleplus {
  background: #dd4b39;
  color: #ffffff;
}
.cid-swZEj4GNY6 .socicon-bg-vkontakte {
  background: #5a7fa6;
  color: #ffffff;
}
.cid-swZEj4GNY6 .socicon-bg-odnoklassniki {
  background: #f48420;
  color: #ffffff;
}
.cid-swZEj4GNY6 .socicon-bg-pinterest {
  background: #c92619;
  color: #ffffff;
}
.cid-swZEj4GNY6 .socicon-bg-mail {
  background: #134785;
  color: #ffffff;
}
.cid-swZEj4GNY6 .btn-social {
  font-size: 20px;
  border-radius: 50%;
  padding: 0;
  width: 44px;
  height: 44px;
  line-height: 44px;
  text-align: center;
  position: relative;
  cursor: pointer;
  border: none !important;
}
.cid-swZEj4GNY6 .btn-social i {
  top: 0;
  line-height: 44px;
  width: 44px;
}
.cid-swZEj4GNY6 .btn-social + .btn {
  margin-left: .1rem;
}
.cid-swZEj4GNY6 [class^="socicon-"]:before,
.cid-swZEj4GNY6 [class*=" socicon-"]:before {
  line-height: 44px;
}
@media (max-width: 767px) {
  .cid-swZEj4GNY6 .btn {
    font-size: 20px !important;
  }
}
.cid-sxTgM2U2qj {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sxTgM2U2qj .image-wrap img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-sxTgM2U2qj .image-wrap img {
    display: block;
    margin: auto;
    width: 50%;
  }
}
.cid-swXg7uElVG {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #234d8b;
}
.cid-sx5lc1r9dW {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-sx5lc1r9dW nav.navbar {
  position: fixed;
}
.cid-sx5lc1r9dW .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-sx5lc1r9dW .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sx5lc1r9dW .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sx5lc1r9dW .dropdown-item:hover,
.cid-sx5lc1r9dW .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-sx5lc1r9dW .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sx5lc1r9dW .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sx5lc1r9dW .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sx5lc1r9dW .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sx5lc1r9dW .nav-link {
  position: relative;
}
.cid-sx5lc1r9dW .container {
  display: flex;
  margin: auto;
}
.cid-sx5lc1r9dW .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sx5lc1r9dW .dropdown-menu,
.cid-sx5lc1r9dW .navbar.opened {
  background: #234d8b !important;
}
.cid-sx5lc1r9dW .nav-item:focus,
.cid-sx5lc1r9dW .nav-link:focus {
  outline: none;
}
.cid-sx5lc1r9dW .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sx5lc1r9dW .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sx5lc1r9dW .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sx5lc1r9dW .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sx5lc1r9dW .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sx5lc1r9dW .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sx5lc1r9dW .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #234d8b;
}
.cid-sx5lc1r9dW .navbar.opened {
  transition: all 0.3s;
}
.cid-sx5lc1r9dW .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sx5lc1r9dW .navbar .navbar-logo img {
  width: auto;
}
.cid-sx5lc1r9dW .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sx5lc1r9dW .navbar.collapsed {
  justify-content: center;
}
.cid-sx5lc1r9dW .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sx5lc1r9dW .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sx5lc1r9dW .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-sx5lc1r9dW .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sx5lc1r9dW .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sx5lc1r9dW .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-sx5lc1r9dW .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sx5lc1r9dW .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sx5lc1r9dW .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sx5lc1r9dW .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sx5lc1r9dW .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sx5lc1r9dW .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sx5lc1r9dW .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sx5lc1r9dW .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-sx5lc1r9dW .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sx5lc1r9dW .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sx5lc1r9dW .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sx5lc1r9dW .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sx5lc1r9dW .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sx5lc1r9dW .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sx5lc1r9dW .navbar.navbar-short {
  min-height: 60px;
}
.cid-sx5lc1r9dW .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sx5lc1r9dW .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sx5lc1r9dW .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-sx5lc1r9dW .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sx5lc1r9dW .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sx5lc1r9dW .dropdown-item.active,
.cid-sx5lc1r9dW .dropdown-item:active {
  background-color: transparent;
}
.cid-sx5lc1r9dW .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sx5lc1r9dW .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sx5lc1r9dW .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sx5lc1r9dW .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #234d8b;
}
.cid-sx5lc1r9dW .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sx5lc1r9dW .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sx5lc1r9dW ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sx5lc1r9dW .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sx5lc1r9dW button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sx5lc1r9dW button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-sx5lc1r9dW button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sx5lc1r9dW button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sx5lc1r9dW button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sx5lc1r9dW button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sx5lc1r9dW nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sx5lc1r9dW nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sx5lc1r9dW nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sx5lc1r9dW nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sx5lc1r9dW .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-sx5lc1r9dW a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sx5lc1r9dW .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-sx5lc1r9dW .navbar {
    height: 70px;
  }
  .cid-sx5lc1r9dW .navbar.opened {
    height: auto;
  }
  .cid-sx5lc1r9dW .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sx5lc2Jxq2 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sx5lc2Jxq2 .item {
  padding-bottom: 2rem;
}
.cid-sx5lc2Jxq2 .item-wrapper {
  position: relative;
}
.cid-sx5lc2Jxq2 .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-sx5lc2Jxq2 .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-sx5lc2Jxq2 .carousel-control,
.cid-sx5lc2Jxq2 .close {
  background: #1b1b1b;
}
.cid-sx5lc2Jxq2 .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-sx5lc2Jxq2 .carousel-control-prev span {
  margin-right: 5px;
}
.cid-sx5lc2Jxq2 .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-sx5lc2Jxq2 .carousel-control-next span {
  margin-left: 5px;
}
.cid-sx5lc2Jxq2 .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-sx5lc2Jxq2 .close::before {
  content: '\e91a';
}
.cid-sx5lc2Jxq2 .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-sx5lc2Jxq2 .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-sx5lc2Jxq2 .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sx5lc2Jxq2 .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-sx5lc2Jxq2 .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-sx5lc2Jxq2 .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-sx5lc2Jxq2 .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-sx5lc2Jxq2 .carousel-indicators li.active,
.cid-sx5lc2Jxq2 .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-sx5lc2Jxq2 .carousel-indicators li::after,
.cid-sx5lc2Jxq2 .carousel-indicators li::before {
  content: none;
}
.cid-sx5lc2Jxq2 .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-sx5lc2Jxq2 .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-sx5lc2Jxq2 .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-sx5lc2Jxq2 .carousel-indicators {
    display: none;
  }
}
.cid-sx5lc2Jxq2 .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-sx5lc2Jxq2 .carousel-inner > .active {
  display: block;
}
.cid-sx5lc2Jxq2 .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sx5lc2Jxq2 .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-sx5lc2Jxq2 .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-sx5lc2Jxq2 .carousel-control,
  .cid-sx5lc2Jxq2 .carousel-indicators,
  .cid-sx5lc2Jxq2 .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-sx5lc2Jxq2 .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-sx5lc2Jxq2 .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-sx5lc2Jxq2 .carousel-indicators .active,
.cid-sx5lc2Jxq2 .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-sx5lc2Jxq2 .carousel-indicators .active {
  background: #fff;
}
.cid-sx5lc2Jxq2 .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-sx5lc2Jxq2 .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-sx5lc2Jxq2 .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-sx5lc2Jxq2 .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-sx5lc2Jxq2 .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-sx5lc2Jxq2 .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-sx5lc2Jxq2 .carousel {
  width: 100%;
}
.cid-sx5lc2Jxq2 .modal-backdrop.in {
  opacity: 0.8;
}
.cid-sx5lc2Jxq2 .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-sx5lc2Jxq2 .modal.fade .modal-dialog,
.cid-sx5lc2Jxq2 .modal.in .modal-dialog {
  transform: none;
}
.cid-sx5lc2Jxq2 .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-sx5lc2Jxq2 H6 {
  text-align: right;
}
.cid-sx5lc2Jxq2 H3 {
  text-align: center;
}
.cid-sx5lc469TT {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sx5lc469TT .line {
  background-color: #fafafa;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-sx5lc469TT .mbr-text {
  text-align: center;
}
.cid-sx5lc4PntV {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #f9f9f9;
}
.cid-sx5lc4PntV .socicon-bg-facebook {
  background: #3e5b98;
  color: #ffffff;
}
.cid-sx5lc4PntV .socicon-bg-twitter {
  background: #4da7de;
  color: #ffffff;
}
.cid-sx5lc4PntV .socicon-bg-googleplus {
  background: #dd4b39;
  color: #ffffff;
}
.cid-sx5lc4PntV .socicon-bg-vkontakte {
  background: #5a7fa6;
  color: #ffffff;
}
.cid-sx5lc4PntV .socicon-bg-odnoklassniki {
  background: #f48420;
  color: #ffffff;
}
.cid-sx5lc4PntV .socicon-bg-pinterest {
  background: #c92619;
  color: #ffffff;
}
.cid-sx5lc4PntV .socicon-bg-mail {
  background: #134785;
  color: #ffffff;
}
.cid-sx5lc4PntV .btn-social {
  font-size: 20px;
  border-radius: 50%;
  padding: 0;
  width: 44px;
  height: 44px;
  line-height: 44px;
  text-align: center;
  position: relative;
  cursor: pointer;
  border: none !important;
}
.cid-sx5lc4PntV .btn-social i {
  top: 0;
  line-height: 44px;
  width: 44px;
}
.cid-sx5lc4PntV .btn-social + .btn {
  margin-left: .1rem;
}
.cid-sx5lc4PntV [class^="socicon-"]:before,
.cid-sx5lc4PntV [class*=" socicon-"]:before {
  line-height: 44px;
}
@media (max-width: 767px) {
  .cid-sx5lc4PntV .btn {
    font-size: 20px !important;
  }
}
.cid-sx8u1jh54I {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sx8u1jh54I .mbr-text {
  color: #c1c1c1;
}
.cid-sx8u1jh54I .mbr-text,
.cid-sx8u1jh54I .mbr-section-btn {
  color: #353535;
  text-align: center;
}
.cid-sx8u1jh54I H3 {
  text-align: center;
}
.cid-sx8kvGk9LI {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #132c53;
}
.cid-sx8RrqsTjx {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #6592e6;
}
.cid-sx8RrqsTjx .mbr-section-subtitle {
  color: #767676;
  text-align: left;
}
.cid-sx8RrqsTjx .container-table {
  margin: 0 auto;
}
.cid-sx8RrqsTjx .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-sx8RrqsTjx .dataTables_wrapper {
  display: block;
}
.cid-sx8RrqsTjx .dataTables_wrapper .search {
  margin-bottom: .5rem;
}
.cid-sx8RrqsTjx .dataTables_wrapper .table {
  overflow-x: auto;
}
.cid-sx8RrqsTjx table {
  width: 100% !important;
  margin-top: 6px;
  border: 1px solid #6592e6;
  margin-bottom: 0;
}
.cid-sx8RrqsTjx table th {
  border-top: none;
  transition: all .2s;
  border-bottom: none;
}
.cid-sx8RrqsTjx table th:hover {
  background: #6592e6;
  color: #ffffff;
}
.cid-sx8RrqsTjx table td {
  border-top: 1px solid #6592e6;
}
.cid-sx8RrqsTjx table.table {
  background: #6592e6;
}
.cid-sx8RrqsTjx .dataTables_filter {
  text-align: right;
  margin-bottom: .5rem;
}
.cid-sx8RrqsTjx .dataTables_filter label {
  display: inline;
  white-space: normal !important;
}
.cid-sx8RrqsTjx .dataTables_filter input {
  display: inline;
  width: auto;
  margin-left: .5rem;
  border-radius: 100px;
  padding-left: 1rem;
}
.cid-sx8RrqsTjx .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
  white-space: normal !important;
}
@media (max-width: 992px) {
  .cid-sx8RrqsTjx .dataTables_filter {
    text-align: center;
  }
}
@media (max-width: 350px) {
  .cid-sx8RrqsTjx .dataTables_filter {
    text-align: center;
  }
  .cid-sx8RrqsTjx .dataTables_filter input {
    width: 100% !important;
    margin-left: 0 !important;
  }
}
.cid-sx8RrqsTjx .mbr-section-title {
  text-align: left;
  color: #353535;
}
.cid-sx8RrqsTjx .head-item {
  text-align: center;
  color: #ffffff;
}
.cid-sx8RrqsTjx .body-item {
  text-align: center;
  color: #132c53;
}
.cid-sx5nzrFxSg {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #efefef;
}
.cid-sx5nzrFxSg h1 {
  color: #616161;
}
.cid-sx5nzrFxSg h2,
.cid-sx5nzrFxSg h3,
.cid-sx5nzrFxSg p {
  color: #767676;
}
.cid-sx5nzrFxSg .mbr-section-subtitle {
  font-style: italic;
}
.cid-sx5nzrFxSg H1 {
  color: #3e3030;
  text-align: center;
}
.cid-sx5nzrFxSg H3 {
  color: #3e3030;
  text-align: center;
}
.cid-sx5nzrFxSg .mbr-text,
.cid-sx5nzrFxSg .mbr-section-btn {
  color: #3e3030;
  text-align: left;
}
.cid-sx8PaXsRqn {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sx8PaXsRqn .item {
  padding-bottom: 2rem;
}
.cid-sx8PaXsRqn .item-wrapper {
  position: relative;
}
.cid-sx8PaXsRqn .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-sx8PaXsRqn .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-sx8PaXsRqn .carousel-control,
.cid-sx8PaXsRqn .close {
  background: #1b1b1b;
}
.cid-sx8PaXsRqn .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-sx8PaXsRqn .carousel-control-prev span {
  margin-right: 5px;
}
.cid-sx8PaXsRqn .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-sx8PaXsRqn .carousel-control-next span {
  margin-left: 5px;
}
.cid-sx8PaXsRqn .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-sx8PaXsRqn .close::before {
  content: '\e91a';
}
.cid-sx8PaXsRqn .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-sx8PaXsRqn .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-sx8PaXsRqn .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sx8PaXsRqn .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-sx8PaXsRqn .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-sx8PaXsRqn .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-sx8PaXsRqn .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-sx8PaXsRqn .carousel-indicators li.active,
.cid-sx8PaXsRqn .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-sx8PaXsRqn .carousel-indicators li::after,
.cid-sx8PaXsRqn .carousel-indicators li::before {
  content: none;
}
.cid-sx8PaXsRqn .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-sx8PaXsRqn .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-sx8PaXsRqn .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-sx8PaXsRqn .carousel-indicators {
    display: none;
  }
}
.cid-sx8PaXsRqn .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-sx8PaXsRqn .carousel-inner > .active {
  display: block;
}
.cid-sx8PaXsRqn .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sx8PaXsRqn .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-sx8PaXsRqn .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-sx8PaXsRqn .carousel-control,
  .cid-sx8PaXsRqn .carousel-indicators,
  .cid-sx8PaXsRqn .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-sx8PaXsRqn .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-sx8PaXsRqn .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-sx8PaXsRqn .carousel-indicators .active,
.cid-sx8PaXsRqn .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-sx8PaXsRqn .carousel-indicators .active {
  background: #fff;
}
.cid-sx8PaXsRqn .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-sx8PaXsRqn .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-sx8PaXsRqn .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-sx8PaXsRqn .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-sx8PaXsRqn .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-sx8PaXsRqn .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-sx8PaXsRqn .carousel {
  width: 100%;
}
.cid-sx8PaXsRqn .modal-backdrop.in {
  opacity: 0.8;
}
.cid-sx8PaXsRqn .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-sx8PaXsRqn .modal.fade .modal-dialog,
.cid-sx8PaXsRqn .modal.in .modal-dialog {
  transform: none;
}
.cid-sx8PaXsRqn .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-sx8PaXsRqn H6 {
  text-align: right;
  color: #b5b5b5;
}
.cid-sx8PaXsRqn H3 {
  text-align: center;
}
.cid-sx8PaXsRqn H4 {
  color: #3d3c3c;
}
.cid-sx8DIOYJR6 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #f9f9f9;
}
.cid-sx8DIOYJR6 .mbr-text {
  color: #c1c1c1;
}
.cid-sx8DIOYJR6 .mbr-text,
.cid-sx8DIOYJR6 .mbr-section-btn {
  color: #40b0bf;
}
.cid-sx8DIOYJR6 H3 {
  color: #6592e6;
}
.cid-sx5nFsRcSS {
  padding-top: 60px;
  padding-bottom: 0px;
  background-color: #f9f9f9;
}
.cid-sx5nFsRcSS .mbr-section-subtitle {
  color: #554346;
  text-align: left;
}
.cid-sx5nFsRcSS .container-table {
  margin: 0 auto;
}
.cid-sx5nFsRcSS .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-sx5nFsRcSS .dataTables_wrapper {
  display: block;
}
.cid-sx5nFsRcSS .dataTables_wrapper .search {
  margin-bottom: .5rem;
}
.cid-sx5nFsRcSS .dataTables_wrapper .table {
  overflow-x: auto;
}
.cid-sx5nFsRcSS table {
  width: 100% !important;
  margin-top: 6px;
  border: 1px solid #cccccc;
  margin-bottom: 0;
}
.cid-sx5nFsRcSS table th {
  border-top: none;
  transition: all .2s;
  border-bottom: none;
}
.cid-sx5nFsRcSS table th:hover {
  background: #cccccc;
  color: #000000;
}
.cid-sx5nFsRcSS table td {
  border-top: 1px solid #cccccc;
}
.cid-sx5nFsRcSS table.table {
  background: #132c53;
}
.cid-sx5nFsRcSS .dataTables_filter {
  text-align: right;
  margin-bottom: .5rem;
}
.cid-sx5nFsRcSS .dataTables_filter label {
  display: inline;
  white-space: normal !important;
}
.cid-sx5nFsRcSS .dataTables_filter input {
  display: inline;
  width: auto;
  margin-left: .5rem;
  border-radius: 100px;
  padding-left: 1rem;
}
.cid-sx5nFsRcSS .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
  white-space: normal !important;
}
@media (max-width: 992px) {
  .cid-sx5nFsRcSS .dataTables_filter {
    text-align: center;
  }
}
@media (max-width: 350px) {
  .cid-sx5nFsRcSS .dataTables_filter {
    text-align: center;
  }
  .cid-sx5nFsRcSS .dataTables_filter input {
    width: 100% !important;
    margin-left: 0 !important;
  }
}
.cid-sx5nFsRcSS .head-item {
  color: #ffffff;
  text-align: center;
}
.cid-sx5nFsRcSS .mbr-section-title {
  color: #554346;
  text-align: left;
}
.cid-sx5nHNAUbM {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #f9f9f9;
}
.cid-sx5nHNAUbM .mbr-section-subtitle {
  color: #554346;
  text-align: left;
}
.cid-sx5nHNAUbM .container-table {
  margin: 0 auto;
}
.cid-sx5nHNAUbM .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-sx5nHNAUbM .dataTables_wrapper {
  display: block;
}
.cid-sx5nHNAUbM .dataTables_wrapper .search {
  margin-bottom: .5rem;
}
.cid-sx5nHNAUbM .dataTables_wrapper .table {
  overflow-x: auto;
}
.cid-sx5nHNAUbM table {
  width: 100% !important;
  margin-top: 6px;
  border: 1px solid #cccccc;
  margin-bottom: 0;
}
.cid-sx5nHNAUbM table th {
  border-top: none;
  transition: all .2s;
  border-bottom: none;
}
.cid-sx5nHNAUbM table th:hover {
  background: #cccccc;
  color: #000000;
}
.cid-sx5nHNAUbM table td {
  border-top: 1px solid #cccccc;
}
.cid-sx5nHNAUbM table.table {
  background: #ffffff;
}
.cid-sx5nHNAUbM .dataTables_filter {
  text-align: right;
  margin-bottom: .5rem;
}
.cid-sx5nHNAUbM .dataTables_filter label {
  display: inline;
  white-space: normal !important;
}
.cid-sx5nHNAUbM .dataTables_filter input {
  display: inline;
  width: auto;
  margin-left: .5rem;
  border-radius: 100px;
  padding-left: 1rem;
}
.cid-sx5nHNAUbM .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
  white-space: normal !important;
}
@media (max-width: 992px) {
  .cid-sx5nHNAUbM .dataTables_filter {
    text-align: center;
  }
}
@media (max-width: 350px) {
  .cid-sx5nHNAUbM .dataTables_filter {
    text-align: center;
  }
  .cid-sx5nHNAUbM .dataTables_filter input {
    width: 100% !important;
    margin-left: 0 !important;
  }
}
.cid-sx5nHNAUbM .head-item {
  color: #234d8b;
  text-align: center;
}
.cid-sx5nHNAUbM .body-item {
  color: #767676;
  text-align: center;
}
.cid-sx5nLGXacQ {
  padding-top: 60px;
  padding-bottom: 0px;
  background-color: #f9f9f9;
}
.cid-sx5nLGXacQ .mbr-section-subtitle {
  color: #554346;
  text-align: left;
}
.cid-sx5nLGXacQ .container-table {
  margin: 0 auto;
}
.cid-sx5nLGXacQ .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-sx5nLGXacQ .dataTables_wrapper {
  display: block;
}
.cid-sx5nLGXacQ .dataTables_wrapper .search {
  margin-bottom: .5rem;
}
.cid-sx5nLGXacQ .dataTables_wrapper .table {
  overflow-x: auto;
}
.cid-sx5nLGXacQ table {
  width: 100% !important;
  margin-top: 6px;
  border: 1px solid #cccccc;
  margin-bottom: 0;
}
.cid-sx5nLGXacQ table th {
  border-top: none;
  transition: all .2s;
  border-bottom: none;
}
.cid-sx5nLGXacQ table th:hover {
  background: #cccccc;
  color: #000000;
}
.cid-sx5nLGXacQ table td {
  border-top: 1px solid #cccccc;
}
.cid-sx5nLGXacQ table.table {
  background: #ffffff;
}
.cid-sx5nLGXacQ .dataTables_filter {
  text-align: right;
  margin-bottom: .5rem;
}
.cid-sx5nLGXacQ .dataTables_filter label {
  display: inline;
  white-space: normal !important;
}
.cid-sx5nLGXacQ .dataTables_filter input {
  display: inline;
  width: auto;
  margin-left: .5rem;
  border-radius: 100px;
  padding-left: 1rem;
}
.cid-sx5nLGXacQ .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
  white-space: normal !important;
}
@media (max-width: 992px) {
  .cid-sx5nLGXacQ .dataTables_filter {
    text-align: center;
  }
}
@media (max-width: 350px) {
  .cid-sx5nLGXacQ .dataTables_filter {
    text-align: center;
  }
  .cid-sx5nLGXacQ .dataTables_filter input {
    width: 100% !important;
    margin-left: 0 !important;
  }
}
.cid-sx5nLGXacQ .head-item {
  color: #234d8b;
  text-align: center;
}
.cid-sx5nLGXacQ .body-item {
  color: #767676;
  text-align: center;
}
.cid-sx5nOZNz2B {
  padding-top: 60px;
  padding-bottom: 0px;
  background-color: #f9f9f9;
}
.cid-sx5nOZNz2B .mbr-section-subtitle {
  color: #554346;
  text-align: left;
}
.cid-sx5nOZNz2B .container-table {
  margin: 0 auto;
}
.cid-sx5nOZNz2B .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-sx5nOZNz2B .dataTables_wrapper {
  display: block;
}
.cid-sx5nOZNz2B .dataTables_wrapper .search {
  margin-bottom: .5rem;
}
.cid-sx5nOZNz2B .dataTables_wrapper .table {
  overflow-x: auto;
}
.cid-sx5nOZNz2B table {
  width: 100% !important;
  margin-top: 6px;
  border: 1px solid #cccccc;
  margin-bottom: 0;
}
.cid-sx5nOZNz2B table th {
  border-top: none;
  transition: all .2s;
  border-bottom: none;
}
.cid-sx5nOZNz2B table th:hover {
  background: #cccccc;
  color: #000000;
}
.cid-sx5nOZNz2B table td {
  border-top: 1px solid #cccccc;
}
.cid-sx5nOZNz2B table.table {
  background: #ffffff;
}
.cid-sx5nOZNz2B .dataTables_filter {
  text-align: right;
  margin-bottom: .5rem;
}
.cid-sx5nOZNz2B .dataTables_filter label {
  display: inline;
  white-space: normal !important;
}
.cid-sx5nOZNz2B .dataTables_filter input {
  display: inline;
  width: auto;
  margin-left: .5rem;
  border-radius: 100px;
  padding-left: 1rem;
}
.cid-sx5nOZNz2B .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
  white-space: normal !important;
}
@media (max-width: 992px) {
  .cid-sx5nOZNz2B .dataTables_filter {
    text-align: center;
  }
}
@media (max-width: 350px) {
  .cid-sx5nOZNz2B .dataTables_filter {
    text-align: center;
  }
  .cid-sx5nOZNz2B .dataTables_filter input {
    width: 100% !important;
    margin-left: 0 !important;
  }
}
.cid-sx5nOZNz2B .head-item {
  color: #234d8b;
  text-align: center;
}
.cid-sx5nOZNz2B .body-item {
  color: #767676;
  text-align: center;
}
.cid-sx5o4YeNzy {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #efefef;
}
.cid-sx5o4YeNzy .card .card-header {
  background-color: transparent;
  margin-bottom: 0;
}
.cid-sx5o4YeNzy .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-sx5o4YeNzy .mbr-iconfont {
  padding-left: 1rem;
  font-family: 'Moririse2' !important;
  font-size: 1.4rem !important;
  color: #6592e6;
}
.cid-sx5o4YeNzy .panel-body,
.cid-sx5o4YeNzy .card-header {
  padding: 1rem 0;
}
.cid-sx5o4YeNzy .panel-title-edit {
  color: #3e3030;
}
.cid-sx5o4YeNzy .panel-text {
  color: #353535;
}
.cid-sx5lcfHxYo {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #fafafa;
}
.cid-sx5lcfHxYo .socicon-bg-facebook {
  background: #3e5b98;
  color: #ffffff;
}
.cid-sx5lcfHxYo .socicon-bg-twitter {
  background: #4da7de;
  color: #ffffff;
}
.cid-sx5lcfHxYo .socicon-bg-googleplus {
  background: #dd4b39;
  color: #ffffff;
}
.cid-sx5lcfHxYo .socicon-bg-vkontakte {
  background: #5a7fa6;
  color: #ffffff;
}
.cid-sx5lcfHxYo .socicon-bg-odnoklassniki {
  background: #f48420;
  color: #ffffff;
}
.cid-sx5lcfHxYo .socicon-bg-pinterest {
  background: #c92619;
  color: #ffffff;
}
.cid-sx5lcfHxYo .socicon-bg-mail {
  background: #134785;
  color: #ffffff;
}
.cid-sx5lcfHxYo .btn-social {
  font-size: 20px;
  border-radius: 50%;
  padding: 0;
  width: 44px;
  height: 44px;
  line-height: 44px;
  text-align: center;
  position: relative;
  cursor: pointer;
  border: none !important;
}
.cid-sx5lcfHxYo .btn-social i {
  top: 0;
  line-height: 44px;
  width: 44px;
}
.cid-sx5lcfHxYo .btn-social + .btn {
  margin-left: .1rem;
}
.cid-sx5lcfHxYo [class^="socicon-"]:before,
.cid-sx5lcfHxYo [class*=" socicon-"]:before {
  line-height: 44px;
}
@media (max-width: 767px) {
  .cid-sx5lcfHxYo .btn {
    font-size: 20px !important;
  }
}
.cid-sx5lcgBXmQ {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sx5lcgBXmQ .item {
  padding-bottom: 2rem;
}
.cid-sx5lcgBXmQ .item-wrapper {
  position: relative;
}
.cid-sx5lcgBXmQ .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-sx5lcgBXmQ .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-sx5lcgBXmQ .carousel-control,
.cid-sx5lcgBXmQ .close {
  background: #1b1b1b;
}
.cid-sx5lcgBXmQ .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-sx5lcgBXmQ .carousel-control-prev span {
  margin-right: 5px;
}
.cid-sx5lcgBXmQ .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-sx5lcgBXmQ .carousel-control-next span {
  margin-left: 5px;
}
.cid-sx5lcgBXmQ .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-sx5lcgBXmQ .close::before {
  content: '\e91a';
}
.cid-sx5lcgBXmQ .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-sx5lcgBXmQ .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-sx5lcgBXmQ .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sx5lcgBXmQ .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-sx5lcgBXmQ .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-sx5lcgBXmQ .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-sx5lcgBXmQ .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-sx5lcgBXmQ .carousel-indicators li.active,
.cid-sx5lcgBXmQ .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-sx5lcgBXmQ .carousel-indicators li::after,
.cid-sx5lcgBXmQ .carousel-indicators li::before {
  content: none;
}
.cid-sx5lcgBXmQ .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-sx5lcgBXmQ .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-sx5lcgBXmQ .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-sx5lcgBXmQ .carousel-indicators {
    display: none;
  }
}
.cid-sx5lcgBXmQ .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-sx5lcgBXmQ .carousel-inner > .active {
  display: block;
}
.cid-sx5lcgBXmQ .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sx5lcgBXmQ .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-sx5lcgBXmQ .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-sx5lcgBXmQ .carousel-control,
  .cid-sx5lcgBXmQ .carousel-indicators,
  .cid-sx5lcgBXmQ .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-sx5lcgBXmQ .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-sx5lcgBXmQ .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-sx5lcgBXmQ .carousel-indicators .active,
.cid-sx5lcgBXmQ .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-sx5lcgBXmQ .carousel-indicators .active {
  background: #fff;
}
.cid-sx5lcgBXmQ .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-sx5lcgBXmQ .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-sx5lcgBXmQ .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-sx5lcgBXmQ .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-sx5lcgBXmQ .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-sx5lcgBXmQ .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-sx5lcgBXmQ .carousel {
  width: 100%;
}
.cid-sx5lcgBXmQ .modal-backdrop.in {
  opacity: 0.8;
}
.cid-sx5lcgBXmQ .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-sx5lcgBXmQ .modal.fade .modal-dialog,
.cid-sx5lcgBXmQ .modal.in .modal-dialog {
  transform: none;
}
.cid-sx5lcgBXmQ .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-sx5lcgBXmQ H6 {
  text-align: right;
  color: #b5b5b5;
}
.cid-sx5lcgBXmQ H3 {
  text-align: center;
}
.cid-sx5lcgBXmQ H4 {
  color: #3d3c3c;
}
.cid-sx5lchNRlf {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #234d8b;
}
.cid-sxHoU8HF85 {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-sxHoU8HF85 nav.navbar {
  position: fixed;
}
.cid-sxHoU8HF85 .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-sxHoU8HF85 .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sxHoU8HF85 .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sxHoU8HF85 .dropdown-item:hover,
.cid-sxHoU8HF85 .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-sxHoU8HF85 .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sxHoU8HF85 .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sxHoU8HF85 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sxHoU8HF85 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sxHoU8HF85 .nav-link {
  position: relative;
}
.cid-sxHoU8HF85 .container {
  display: flex;
  margin: auto;
}
.cid-sxHoU8HF85 .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sxHoU8HF85 .dropdown-menu,
.cid-sxHoU8HF85 .navbar.opened {
  background: #234d8b !important;
}
.cid-sxHoU8HF85 .nav-item:focus,
.cid-sxHoU8HF85 .nav-link:focus {
  outline: none;
}
.cid-sxHoU8HF85 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sxHoU8HF85 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sxHoU8HF85 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sxHoU8HF85 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sxHoU8HF85 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sxHoU8HF85 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sxHoU8HF85 .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #234d8b;
}
.cid-sxHoU8HF85 .navbar.opened {
  transition: all 0.3s;
}
.cid-sxHoU8HF85 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sxHoU8HF85 .navbar .navbar-logo img {
  width: auto;
}
.cid-sxHoU8HF85 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sxHoU8HF85 .navbar.collapsed {
  justify-content: center;
}
.cid-sxHoU8HF85 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sxHoU8HF85 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sxHoU8HF85 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-sxHoU8HF85 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sxHoU8HF85 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sxHoU8HF85 .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-sxHoU8HF85 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sxHoU8HF85 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sxHoU8HF85 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sxHoU8HF85 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sxHoU8HF85 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sxHoU8HF85 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sxHoU8HF85 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sxHoU8HF85 .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-sxHoU8HF85 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sxHoU8HF85 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sxHoU8HF85 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sxHoU8HF85 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sxHoU8HF85 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sxHoU8HF85 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sxHoU8HF85 .navbar.navbar-short {
  min-height: 60px;
}
.cid-sxHoU8HF85 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sxHoU8HF85 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sxHoU8HF85 .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-sxHoU8HF85 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sxHoU8HF85 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sxHoU8HF85 .dropdown-item.active,
.cid-sxHoU8HF85 .dropdown-item:active {
  background-color: transparent;
}
.cid-sxHoU8HF85 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sxHoU8HF85 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sxHoU8HF85 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sxHoU8HF85 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #234d8b;
}
.cid-sxHoU8HF85 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sxHoU8HF85 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sxHoU8HF85 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sxHoU8HF85 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sxHoU8HF85 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sxHoU8HF85 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-sxHoU8HF85 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sxHoU8HF85 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sxHoU8HF85 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sxHoU8HF85 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sxHoU8HF85 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sxHoU8HF85 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sxHoU8HF85 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sxHoU8HF85 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sxHoU8HF85 .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-sxHoU8HF85 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sxHoU8HF85 .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-sxHoU8HF85 .navbar {
    height: 70px;
  }
  .cid-sxHoU8HF85 .navbar.opened {
    height: auto;
  }
  .cid-sxHoU8HF85 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sxHoU9Xl2r {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sxHoU9Xl2r .item {
  padding-bottom: 2rem;
}
.cid-sxHoU9Xl2r .item-wrapper {
  position: relative;
}
.cid-sxHoU9Xl2r .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-sxHoU9Xl2r .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-sxHoU9Xl2r .carousel-control,
.cid-sxHoU9Xl2r .close {
  background: #1b1b1b;
}
.cid-sxHoU9Xl2r .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-sxHoU9Xl2r .carousel-control-prev span {
  margin-right: 5px;
}
.cid-sxHoU9Xl2r .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-sxHoU9Xl2r .carousel-control-next span {
  margin-left: 5px;
}
.cid-sxHoU9Xl2r .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-sxHoU9Xl2r .close::before {
  content: '\e91a';
}
.cid-sxHoU9Xl2r .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-sxHoU9Xl2r .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-sxHoU9Xl2r .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sxHoU9Xl2r .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-sxHoU9Xl2r .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-sxHoU9Xl2r .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-sxHoU9Xl2r .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-sxHoU9Xl2r .carousel-indicators li.active,
.cid-sxHoU9Xl2r .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-sxHoU9Xl2r .carousel-indicators li::after,
.cid-sxHoU9Xl2r .carousel-indicators li::before {
  content: none;
}
.cid-sxHoU9Xl2r .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-sxHoU9Xl2r .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-sxHoU9Xl2r .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-sxHoU9Xl2r .carousel-indicators {
    display: none;
  }
}
.cid-sxHoU9Xl2r .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-sxHoU9Xl2r .carousel-inner > .active {
  display: block;
}
.cid-sxHoU9Xl2r .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sxHoU9Xl2r .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-sxHoU9Xl2r .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-sxHoU9Xl2r .carousel-control,
  .cid-sxHoU9Xl2r .carousel-indicators,
  .cid-sxHoU9Xl2r .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-sxHoU9Xl2r .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-sxHoU9Xl2r .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-sxHoU9Xl2r .carousel-indicators .active,
.cid-sxHoU9Xl2r .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-sxHoU9Xl2r .carousel-indicators .active {
  background: #fff;
}
.cid-sxHoU9Xl2r .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-sxHoU9Xl2r .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-sxHoU9Xl2r .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-sxHoU9Xl2r .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-sxHoU9Xl2r .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-sxHoU9Xl2r .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-sxHoU9Xl2r .carousel {
  width: 100%;
}
.cid-sxHoU9Xl2r .modal-backdrop.in {
  opacity: 0.8;
}
.cid-sxHoU9Xl2r .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-sxHoU9Xl2r .modal.fade .modal-dialog,
.cid-sxHoU9Xl2r .modal.in .modal-dialog {
  transform: none;
}
.cid-sxHoU9Xl2r .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-sxHoU9Xl2r H6 {
  text-align: right;
}
.cid-sxHoU9Xl2r H3 {
  text-align: center;
}
.cid-sxHyW9yjgD {
  padding-top: 0px;
  padding-bottom: 0px;
  background: linear-gradient(45deg, #f9f9f9, #fafafa);
}
.cid-sxHyW9yjgD .mbr-section-subtitle {
  font-style: italic;
  letter-spacing: 1rem;
}
.cid-sxHyW9yjgD H3 {
  color: #232323;
  text-align: center;
}
.cid-sxHoUbkjX7 {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #132c53;
}
.cid-sxHoUbkjX7 .mbr-text,
.cid-sxHoUbkjX7 .mbr-section-btn {
  color: #6592e6;
}
.cid-sxHoUbkjX7 .mbr-section-title {
  text-align: center;
  color: #ffffff;
}
.cid-sxHoUbkjX7 .mbr-section-subtitle {
  color: #ffffff;
}
.cid-sy2jGcdyuq {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #fafafa;
}
.cid-sy2jGcdyuq .mbr-section-subtitle {
  color: #5a5959;
}
.cid-sy2jGcdyuq .mbr-text {
  color: #5a5959;
}
.cid-sxNLLc3VmC {
  padding-top: 0rem;
  padding-bottom: 2rem;
  background-color: #fafafa;
}
.cid-sxNLLc3VmC .mbr-text {
  color: #5a5959;
}
.cid-sxHyIWeGJ8 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-sxHyIWeGJ8 .img-wrapper {
  text-align: center;
}
.cid-sxHyIWeGJ8 img {
  margin: auto;
  width: 140px;
  padding-bottom: 2rem;
}
.cid-sxHyIWeGJ8 .row {
  align-items: flex-start;
}
.cid-sxHyIWeGJ8 .card-wrapper {
  border-radius: 4px;
  background: #fafafa;
}
@media (max-width: 992px) {
  .cid-sxHyIWeGJ8 .card-wrapper {
    margin-bottom: 2rem;
  }
}
@media (min-width: 768px) {
  .cid-sxHyIWeGJ8 .card-wrapper {
    padding: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-sxHyIWeGJ8 .card-wrapper {
    padding: 1rem;
  }
}
.cid-sxHoUfai9t {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #fafafa;
}
.cid-sxHoUfai9t .socicon-bg-facebook {
  background: #3e5b98;
  color: #ffffff;
}
.cid-sxHoUfai9t .socicon-bg-twitter {
  background: #4da7de;
  color: #ffffff;
}
.cid-sxHoUfai9t .socicon-bg-googleplus {
  background: #dd4b39;
  color: #ffffff;
}
.cid-sxHoUfai9t .socicon-bg-vkontakte {
  background: #5a7fa6;
  color: #ffffff;
}
.cid-sxHoUfai9t .socicon-bg-odnoklassniki {
  background: #f48420;
  color: #ffffff;
}
.cid-sxHoUfai9t .socicon-bg-pinterest {
  background: #c92619;
  color: #ffffff;
}
.cid-sxHoUfai9t .socicon-bg-mail {
  background: #134785;
  color: #ffffff;
}
.cid-sxHoUfai9t .btn-social {
  font-size: 20px;
  border-radius: 50%;
  padding: 0;
  width: 44px;
  height: 44px;
  line-height: 44px;
  text-align: center;
  position: relative;
  cursor: pointer;
  border: none !important;
}
.cid-sxHoUfai9t .btn-social i {
  top: 0;
  line-height: 44px;
  width: 44px;
}
.cid-sxHoUfai9t .btn-social + .btn {
  margin-left: .1rem;
}
.cid-sxHoUfai9t [class^="socicon-"]:before,
.cid-sxHoUfai9t [class*=" socicon-"]:before {
  line-height: 44px;
}
@media (max-width: 767px) {
  .cid-sxHoUfai9t .btn {
    font-size: 20px !important;
  }
}
.cid-sxTtDQUvtn {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sxTtDQUvtn .image-wrap img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-sxTtDQUvtn .image-wrap img {
    display: block;
    margin: auto;
    width: 50%;
  }
}
.cid-sxHoUhKCFD {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #234d8b;
}
.cid-sxNVApOJ3c {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-sxNVApOJ3c nav.navbar {
  position: fixed;
}
.cid-sxNVApOJ3c .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-sxNVApOJ3c .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sxNVApOJ3c .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sxNVApOJ3c .dropdown-item:hover,
.cid-sxNVApOJ3c .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-sxNVApOJ3c .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sxNVApOJ3c .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sxNVApOJ3c .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sxNVApOJ3c .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sxNVApOJ3c .nav-link {
  position: relative;
}
.cid-sxNVApOJ3c .container {
  display: flex;
  margin: auto;
}
.cid-sxNVApOJ3c .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sxNVApOJ3c .dropdown-menu,
.cid-sxNVApOJ3c .navbar.opened {
  background: #234d8b !important;
}
.cid-sxNVApOJ3c .nav-item:focus,
.cid-sxNVApOJ3c .nav-link:focus {
  outline: none;
}
.cid-sxNVApOJ3c .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sxNVApOJ3c .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sxNVApOJ3c .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sxNVApOJ3c .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sxNVApOJ3c .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sxNVApOJ3c .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sxNVApOJ3c .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #234d8b;
}
.cid-sxNVApOJ3c .navbar.opened {
  transition: all 0.3s;
}
.cid-sxNVApOJ3c .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sxNVApOJ3c .navbar .navbar-logo img {
  width: auto;
}
.cid-sxNVApOJ3c .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sxNVApOJ3c .navbar.collapsed {
  justify-content: center;
}
.cid-sxNVApOJ3c .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sxNVApOJ3c .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sxNVApOJ3c .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-sxNVApOJ3c .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sxNVApOJ3c .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sxNVApOJ3c .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-sxNVApOJ3c .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sxNVApOJ3c .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sxNVApOJ3c .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sxNVApOJ3c .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sxNVApOJ3c .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sxNVApOJ3c .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sxNVApOJ3c .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sxNVApOJ3c .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-sxNVApOJ3c .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sxNVApOJ3c .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sxNVApOJ3c .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sxNVApOJ3c .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sxNVApOJ3c .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sxNVApOJ3c .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sxNVApOJ3c .navbar.navbar-short {
  min-height: 60px;
}
.cid-sxNVApOJ3c .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sxNVApOJ3c .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sxNVApOJ3c .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-sxNVApOJ3c .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sxNVApOJ3c .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sxNVApOJ3c .dropdown-item.active,
.cid-sxNVApOJ3c .dropdown-item:active {
  background-color: transparent;
}
.cid-sxNVApOJ3c .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sxNVApOJ3c .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sxNVApOJ3c .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sxNVApOJ3c .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #234d8b;
}
.cid-sxNVApOJ3c .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sxNVApOJ3c .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sxNVApOJ3c ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sxNVApOJ3c .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sxNVApOJ3c button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sxNVApOJ3c button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-sxNVApOJ3c button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sxNVApOJ3c button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sxNVApOJ3c button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sxNVApOJ3c button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sxNVApOJ3c nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sxNVApOJ3c nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sxNVApOJ3c nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sxNVApOJ3c nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sxNVApOJ3c .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-sxNVApOJ3c a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sxNVApOJ3c .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-sxNVApOJ3c .navbar {
    height: 70px;
  }
  .cid-sxNVApOJ3c .navbar.opened {
    height: auto;
  }
  .cid-sxNVApOJ3c .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sxNVArjecx {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sxNVArjecx .item {
  padding-bottom: 2rem;
}
.cid-sxNVArjecx .item-wrapper {
  position: relative;
}
.cid-sxNVArjecx .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-sxNVArjecx .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-sxNVArjecx .carousel-control,
.cid-sxNVArjecx .close {
  background: #1b1b1b;
}
.cid-sxNVArjecx .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-sxNVArjecx .carousel-control-prev span {
  margin-right: 5px;
}
.cid-sxNVArjecx .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-sxNVArjecx .carousel-control-next span {
  margin-left: 5px;
}
.cid-sxNVArjecx .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-sxNVArjecx .close::before {
  content: '\e91a';
}
.cid-sxNVArjecx .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-sxNVArjecx .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-sxNVArjecx .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sxNVArjecx .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-sxNVArjecx .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-sxNVArjecx .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-sxNVArjecx .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-sxNVArjecx .carousel-indicators li.active,
.cid-sxNVArjecx .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-sxNVArjecx .carousel-indicators li::after,
.cid-sxNVArjecx .carousel-indicators li::before {
  content: none;
}
.cid-sxNVArjecx .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-sxNVArjecx .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-sxNVArjecx .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-sxNVArjecx .carousel-indicators {
    display: none;
  }
}
.cid-sxNVArjecx .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-sxNVArjecx .carousel-inner > .active {
  display: block;
}
.cid-sxNVArjecx .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sxNVArjecx .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-sxNVArjecx .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-sxNVArjecx .carousel-control,
  .cid-sxNVArjecx .carousel-indicators,
  .cid-sxNVArjecx .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-sxNVArjecx .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-sxNVArjecx .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-sxNVArjecx .carousel-indicators .active,
.cid-sxNVArjecx .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-sxNVArjecx .carousel-indicators .active {
  background: #fff;
}
.cid-sxNVArjecx .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-sxNVArjecx .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-sxNVArjecx .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-sxNVArjecx .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-sxNVArjecx .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-sxNVArjecx .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-sxNVArjecx .carousel {
  width: 100%;
}
.cid-sxNVArjecx .modal-backdrop.in {
  opacity: 0.8;
}
.cid-sxNVArjecx .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-sxNVArjecx .modal.fade .modal-dialog,
.cid-sxNVArjecx .modal.in .modal-dialog {
  transform: none;
}
.cid-sxNVArjecx .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-sxNVArjecx H6 {
  text-align: right;
}
.cid-sxNVArjecx H3 {
  text-align: center;
}
.cid-sxNVAsSc1C {
  padding-top: 0px;
  padding-bottom: 0px;
  background: linear-gradient(45deg, #f9f9f9, #fafafa);
}
.cid-sxNVAsSc1C .mbr-section-subtitle {
  font-style: italic;
  letter-spacing: 1rem;
}
.cid-sxNVAsSc1C H3 {
  color: #5a5959;
  text-align: center;
}
.cid-sxNVAtCtbd {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #132c53;
}
.cid-sxNVAtCtbd .mbr-text,
.cid-sxNVAtCtbd .mbr-section-btn {
  color: #6592e6;
}
.cid-sxNVAtCtbd .mbr-section-title {
  text-align: center;
  color: #ffffff;
}
.cid-sxNVAtCtbd .mbr-section-subtitle {
  color: #ffffff;
}
.cid-sxNVAusNhS {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #f9f9f9;
}
.cid-sxNVAusNhS .mbr-section-btn {
  justify-content: space-between;
  display: flex;
  flex-wrap: wrap;
}
.cid-sxNVAv1V2Y {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #f9f9f9;
}
.cid-sxNVAv1V2Y img,
.cid-sxNVAv1V2Y .item-img {
  width: 100%;
}
.cid-sxNVAv1V2Y .item:focus,
.cid-sxNVAv1V2Y span:focus {
  outline: none;
}
.cid-sxNVAv1V2Y .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-sxNVAv1V2Y .row {
  margin-left: 0;
  margin-right: 0;
}
.cid-sxNVAv1V2Y .item {
  padding: 0;
  margin: 0;
}
.cid-sxNVAv1V2Y .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-sxNVAv1V2Y .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-sxNVAv1V2Y .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-sxNVAv1V2Y .mbr-section-btn {
  margin-top: auto !important;
}
.cid-sxNVAv1V2Y .mbr-section-title {
  color: #232323;
}
.cid-sxNVAv1V2Y .mbr-text,
.cid-sxNVAv1V2Y .mbr-section-btn {
  text-align: left;
}
.cid-sxNVAv1V2Y .item-title {
  text-align: left;
  color: #40b0bf;
}
.cid-sxNVAv1V2Y .item-subtitle {
  text-align: left;
  color: #000000;
}
.cid-sxNVAw6umc {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #f9f9f9;
}
.cid-sIVX10d9l8 {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #132c53;
}
.cid-sIVX10d9l8 .mbr-text,
.cid-sIVX10d9l8 .mbr-section-btn {
  color: #4479d9;
}
.cid-sxNVAxLAtV {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #fafafa;
}
.cid-sxNVAxLAtV .card-wrapper {
  display: flex;
}
@media (max-width: 991px) {
  .cid-sxNVAxLAtV .card-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-sxNVAxLAtV .mbr-iconfont {
  font-size: 2rem;
  color: #6592e6;
  padding-right: 1.5rem;
}
.cid-sxNVAxLAtV .card-text {
  color: #5a5959;
}
.cid-sxNVAxLAtV .card-title {
  color: #5a5959;
}
.cid-sxNVAz3mzE {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sxNVAz3mzE .image-wrap img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-sxNVAz3mzE .image-wrap img {
    display: block;
    margin: auto;
    width: 40%;
  }
}
.cid-sxNVAz3mzE .mbr-text,
.cid-sxNVAz3mzE .mbr-section-btn {
  color: #5a5959;
}
.cid-sxNVAzQ41h {
  padding-top: 0px;
  padding-bottom: 0px;
  background: linear-gradient(45deg, #f9f9f9, #f9f9f9);
}
.cid-sxNVAzQ41h .mbr-section-subtitle {
  font-style: italic;
  letter-spacing: 1rem;
}
.cid-sxNVAzQ41h .mbr-section-title {
  text-align: center;
  color: #5a5959;
}
.cid-sxNVAzQ41h H3 {
  text-align: center;
  color: #5a5959;
}
.cid-sxNVAzQ41h .mbr-text,
.cid-sxNVAzQ41h .mbr-section-btn {
  color: #5a5959;
  text-align: center;
}
.cid-sxNVAABOFg {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #132c53;
}
.cid-sxNVAABOFg .mbr-text,
.cid-sxNVAABOFg .mbr-section-btn {
  color: #6592e6;
}
.cid-sxNVAABOFg .mbr-section-title {
  text-align: center;
  color: #ffffff;
}
.cid-sxNVAABOFg .mbr-section-subtitle {
  color: #ffffff;
}
.cid-sxNVABoSa0 {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sxNVABoSa0 .item {
  display: flex;
  align-items: center;
  margin-bottom: 2rem;
}
.cid-sxNVABoSa0 .icon-box {
  background: #6592e6;
  width: 60px;
  min-width: 60px;
  height: 60px;
  border-radius: 50%;
  margin-right: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-sxNVABoSa0 .mbr-iconfont {
  font-size: 2rem;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-sxNVABoSa0 .card {
    margin-bottom: 2rem;
  }
  .cid-sxNVABoSa0 .card-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-sxNVABoSa0 .icon-text {
  color: #5a5959;
}
.cid-sxNVADmWBR {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sxNVADmWBR .item {
  display: flex;
  align-items: center;
  margin-bottom: 2rem;
}
.cid-sxNVADmWBR .icon-box {
  background: #6592e6;
  width: 60px;
  min-width: 60px;
  height: 60px;
  border-radius: 50%;
  margin-right: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-sxNVADmWBR .mbr-iconfont {
  font-size: 2rem;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-sxNVADmWBR .card {
    margin-bottom: 2rem;
  }
  .cid-sxNVADmWBR .card-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-sxNVADmWBR .icon-text {
  color: #5a5959;
}
.cid-sxNVAEQ7Wr {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sxNVAEQ7Wr .item {
  display: flex;
  align-items: center;
  margin-bottom: 2rem;
}
.cid-sxNVAEQ7Wr .icon-box {
  background: #6592e6;
  width: 60px;
  min-width: 60px;
  height: 60px;
  border-radius: 50%;
  margin-right: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-sxNVAEQ7Wr .mbr-iconfont {
  font-size: 2rem;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-sxNVAEQ7Wr .card {
    margin-bottom: 2rem;
  }
  .cid-sxNVAEQ7Wr .card-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-sxNVAEQ7Wr .icon-text {
  color: #5a5959;
}
.cid-sxNVAGrSl3 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sxNVAGrSl3 .item {
  display: flex;
  align-items: center;
  margin-bottom: 2rem;
}
.cid-sxNVAGrSl3 .icon-box {
  background: #6592e6;
  width: 60px;
  min-width: 60px;
  height: 60px;
  border-radius: 50%;
  margin-right: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-sxNVAGrSl3 .mbr-iconfont {
  font-size: 2rem;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-sxNVAGrSl3 .card {
    margin-bottom: 2rem;
  }
  .cid-sxNVAGrSl3 .card-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-sxNVAGrSl3 .icon-text {
  color: #5a5959;
}
.cid-sxNVAHsgYo {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sxNVAHsgYo .item {
  display: flex;
  align-items: center;
  margin-bottom: 2rem;
}
.cid-sxNVAHsgYo .icon-box {
  background: #6592e6;
  width: 60px;
  min-width: 60px;
  height: 60px;
  border-radius: 50%;
  margin-right: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-sxNVAHsgYo .mbr-iconfont {
  font-size: 2rem;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-sxNVAHsgYo .card {
    margin-bottom: 2rem;
  }
  .cid-sxNVAHsgYo .card-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-sxNVAHsgYo .icon-text {
  color: #5a5959;
}
.cid-sxNVAIteLT {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sxNVAIteLT .item {
  display: flex;
  align-items: center;
  margin-bottom: 2rem;
}
.cid-sxNVAIteLT .icon-box {
  background: #6592e6;
  width: 60px;
  min-width: 60px;
  height: 60px;
  border-radius: 50%;
  margin-right: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-sxNVAIteLT .mbr-iconfont {
  font-size: 2rem;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-sxNVAIteLT .card {
    margin-bottom: 2rem;
  }
  .cid-sxNVAIteLT .card-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-sxNVAIteLT .icon-text {
  color: #5a5959;
}
.cid-sxNVAJxS7o {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #fafafa;
}
.cid-sxNVAJxS7o .socicon-bg-facebook {
  background: #3e5b98;
  color: #ffffff;
}
.cid-sxNVAJxS7o .socicon-bg-twitter {
  background: #4da7de;
  color: #ffffff;
}
.cid-sxNVAJxS7o .socicon-bg-googleplus {
  background: #dd4b39;
  color: #ffffff;
}
.cid-sxNVAJxS7o .socicon-bg-vkontakte {
  background: #5a7fa6;
  color: #ffffff;
}
.cid-sxNVAJxS7o .socicon-bg-odnoklassniki {
  background: #f48420;
  color: #ffffff;
}
.cid-sxNVAJxS7o .socicon-bg-pinterest {
  background: #c92619;
  color: #ffffff;
}
.cid-sxNVAJxS7o .socicon-bg-mail {
  background: #134785;
  color: #ffffff;
}
.cid-sxNVAJxS7o .btn-social {
  font-size: 20px;
  border-radius: 50%;
  padding: 0;
  width: 44px;
  height: 44px;
  line-height: 44px;
  text-align: center;
  position: relative;
  cursor: pointer;
  border: none !important;
}
.cid-sxNVAJxS7o .btn-social i {
  top: 0;
  line-height: 44px;
  width: 44px;
}
.cid-sxNVAJxS7o .btn-social + .btn {
  margin-left: .1rem;
}
.cid-sxNVAJxS7o [class^="socicon-"]:before,
.cid-sxNVAJxS7o [class*=" socicon-"]:before {
  line-height: 44px;
}
@media (max-width: 767px) {
  .cid-sxNVAJxS7o .btn {
    font-size: 20px !important;
  }
}
.cid-sxNVAKkBHY {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sxNVAKkBHY .image-wrap img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-sxNVAKkBHY .image-wrap img {
    display: block;
    margin: auto;
    width: 50%;
  }
}
.cid-sxNVALd9Au {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #234d8b;
}
.cid-sxegUt7kkZ {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-sxegUt7kkZ nav.navbar {
  position: fixed;
}
.cid-sxegUt7kkZ .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-sxegUt7kkZ .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sxegUt7kkZ .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sxegUt7kkZ .dropdown-item:hover,
.cid-sxegUt7kkZ .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-sxegUt7kkZ .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sxegUt7kkZ .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sxegUt7kkZ .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sxegUt7kkZ .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sxegUt7kkZ .nav-link {
  position: relative;
}
.cid-sxegUt7kkZ .container {
  display: flex;
  margin: auto;
}
.cid-sxegUt7kkZ .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sxegUt7kkZ .dropdown-menu,
.cid-sxegUt7kkZ .navbar.opened {
  background: #234d8b !important;
}
.cid-sxegUt7kkZ .nav-item:focus,
.cid-sxegUt7kkZ .nav-link:focus {
  outline: none;
}
.cid-sxegUt7kkZ .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sxegUt7kkZ .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sxegUt7kkZ .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sxegUt7kkZ .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sxegUt7kkZ .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sxegUt7kkZ .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sxegUt7kkZ .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #234d8b;
}
.cid-sxegUt7kkZ .navbar.opened {
  transition: all 0.3s;
}
.cid-sxegUt7kkZ .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sxegUt7kkZ .navbar .navbar-logo img {
  width: auto;
}
.cid-sxegUt7kkZ .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sxegUt7kkZ .navbar.collapsed {
  justify-content: center;
}
.cid-sxegUt7kkZ .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sxegUt7kkZ .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sxegUt7kkZ .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-sxegUt7kkZ .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sxegUt7kkZ .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sxegUt7kkZ .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-sxegUt7kkZ .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sxegUt7kkZ .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sxegUt7kkZ .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sxegUt7kkZ .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sxegUt7kkZ .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sxegUt7kkZ .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sxegUt7kkZ .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sxegUt7kkZ .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-sxegUt7kkZ .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sxegUt7kkZ .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sxegUt7kkZ .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sxegUt7kkZ .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sxegUt7kkZ .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sxegUt7kkZ .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sxegUt7kkZ .navbar.navbar-short {
  min-height: 60px;
}
.cid-sxegUt7kkZ .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sxegUt7kkZ .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sxegUt7kkZ .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-sxegUt7kkZ .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sxegUt7kkZ .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sxegUt7kkZ .dropdown-item.active,
.cid-sxegUt7kkZ .dropdown-item:active {
  background-color: transparent;
}
.cid-sxegUt7kkZ .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sxegUt7kkZ .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sxegUt7kkZ .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sxegUt7kkZ .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #234d8b;
}
.cid-sxegUt7kkZ .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sxegUt7kkZ .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sxegUt7kkZ ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sxegUt7kkZ .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sxegUt7kkZ button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sxegUt7kkZ button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-sxegUt7kkZ button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sxegUt7kkZ button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sxegUt7kkZ button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sxegUt7kkZ button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sxegUt7kkZ nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sxegUt7kkZ nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sxegUt7kkZ nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sxegUt7kkZ nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sxegUt7kkZ .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-sxegUt7kkZ a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sxegUt7kkZ .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-sxegUt7kkZ .navbar {
    height: 70px;
  }
  .cid-sxegUt7kkZ .navbar.opened {
    height: auto;
  }
  .cid-sxegUt7kkZ .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sxegUvboNS {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sxegUvboNS .item {
  padding-bottom: 2rem;
}
.cid-sxegUvboNS .item-wrapper {
  position: relative;
}
.cid-sxegUvboNS .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-sxegUvboNS .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-sxegUvboNS .carousel-control,
.cid-sxegUvboNS .close {
  background: #1b1b1b;
}
.cid-sxegUvboNS .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-sxegUvboNS .carousel-control-prev span {
  margin-right: 5px;
}
.cid-sxegUvboNS .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-sxegUvboNS .carousel-control-next span {
  margin-left: 5px;
}
.cid-sxegUvboNS .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-sxegUvboNS .close::before {
  content: '\e91a';
}
.cid-sxegUvboNS .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-sxegUvboNS .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-sxegUvboNS .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sxegUvboNS .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-sxegUvboNS .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-sxegUvboNS .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-sxegUvboNS .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-sxegUvboNS .carousel-indicators li.active,
.cid-sxegUvboNS .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-sxegUvboNS .carousel-indicators li::after,
.cid-sxegUvboNS .carousel-indicators li::before {
  content: none;
}
.cid-sxegUvboNS .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-sxegUvboNS .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-sxegUvboNS .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-sxegUvboNS .carousel-indicators {
    display: none;
  }
}
.cid-sxegUvboNS .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-sxegUvboNS .carousel-inner > .active {
  display: block;
}
.cid-sxegUvboNS .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sxegUvboNS .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-sxegUvboNS .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-sxegUvboNS .carousel-control,
  .cid-sxegUvboNS .carousel-indicators,
  .cid-sxegUvboNS .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-sxegUvboNS .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-sxegUvboNS .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-sxegUvboNS .carousel-indicators .active,
.cid-sxegUvboNS .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-sxegUvboNS .carousel-indicators .active {
  background: #fff;
}
.cid-sxegUvboNS .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-sxegUvboNS .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-sxegUvboNS .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-sxegUvboNS .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-sxegUvboNS .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-sxegUvboNS .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-sxegUvboNS .carousel {
  width: 100%;
}
.cid-sxegUvboNS .modal-backdrop.in {
  opacity: 0.8;
}
.cid-sxegUvboNS .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-sxegUvboNS .modal.fade .modal-dialog,
.cid-sxegUvboNS .modal.in .modal-dialog {
  transform: none;
}
.cid-sxegUvboNS .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-sxegUvboNS H6 {
  text-align: right;
}
.cid-sxegUvboNS H3 {
  text-align: center;
}
.cid-sxNQkJyJNb {
  padding-top: 0px;
  padding-bottom: 0px;
  background: linear-gradient(45deg, #f9f9f9, #fafafa);
}
.cid-sxNQkJyJNb .mbr-section-subtitle {
  font-style: italic;
  letter-spacing: 0.8rem;
}
.cid-sxNQkJyJNb H3 {
  color: #232323;
  text-align: center;
}
.cid-sxq5LGWV62 {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #132c53;
}
.cid-sxq5LGWV62 .mbr-text,
.cid-sxq5LGWV62 .mbr-section-btn {
  color: #6592e6;
}
.cid-sxq5LGWV62 .mbr-section-title {
  text-align: center;
  color: #ffffff;
}
.cid-sxq5LGWV62 .mbr-section-subtitle {
  color: #ffffff;
}
.cid-sxegUzOups {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #f9f9f9;
}
.cid-sxegUzOups .mbr-section-btn {
  justify-content: space-between;
  display: flex;
  flex-wrap: wrap;
}
.cid-sxegUAn83V {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #f9f9f9;
}
.cid-sxegUAn83V img,
.cid-sxegUAn83V .item-img {
  width: 100%;
}
.cid-sxegUAn83V .item:focus,
.cid-sxegUAn83V span:focus {
  outline: none;
}
.cid-sxegUAn83V .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-sxegUAn83V .row {
  margin-left: 0;
  margin-right: 0;
}
.cid-sxegUAn83V .item {
  padding: 0;
  margin: 0;
}
.cid-sxegUAn83V .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-sxegUAn83V .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-sxegUAn83V .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-sxegUAn83V .mbr-section-btn {
  margin-top: auto !important;
}
.cid-sxegUAn83V .mbr-section-title {
  color: #232323;
}
.cid-sxegUAn83V .mbr-text,
.cid-sxegUAn83V .mbr-section-btn {
  text-align: left;
}
.cid-sxegUAn83V .item-title {
  text-align: left;
  color: #40b0bf;
}
.cid-sxegUAn83V .item-subtitle {
  text-align: left;
  color: #000000;
}
.cid-sxegUBwNzW {
  padding-top: 0rem;
  padding-bottom: 2rem;
  background-color: #fafafa;
}
.cid-sIPBNNjGmU {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #132c53;
}
.cid-sIPBNNjGmU .mbr-section-subtitle {
  color: #ffffff;
}
.cid-sIPBNNjGmU .mbr-text,
.cid-sIPBNNjGmU .mbr-section-btn {
  color: #4479d9;
}
.cid-sxeimx05X1 {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #fafafa;
}
.cid-sxeimx05X1 .card-wrapper {
  display: flex;
}
@media (max-width: 991px) {
  .cid-sxeimx05X1 .card-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-sxeimx05X1 .mbr-iconfont {
  font-size: 2rem;
  color: #6592e6;
  padding-right: 1.5rem;
}
.cid-sxeimx05X1 .card-text {
  color: #5a5959;
}
.cid-sxeimx05X1 .card-title {
  color: #232323;
}
.cid-sxeYzgxHZm {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sxeYzgxHZm .image-wrap img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-sxeYzgxHZm .image-wrap img {
    display: block;
    margin: auto;
    width: 40%;
  }
}
.cid-sxeYzgxHZm .mbr-text,
.cid-sxeYzgxHZm .mbr-section-btn {
  color: #5a5959;
}
.cid-sIVWBSsD9H {
  padding-top: 0px;
  padding-bottom: 0px;
  background: linear-gradient(45deg, #f9f9f9, #f9f9f9);
}
.cid-sIVWBSsD9H .mbr-section-subtitle {
  font-style: italic;
  letter-spacing: 1rem;
}
.cid-sIVWBSsD9H .mbr-section-title {
  text-align: center;
  color: #5a5959;
}
.cid-sIVWBSsD9H H3 {
  text-align: center;
  color: #232323;
}
.cid-sIVWBSsD9H .mbr-text,
.cid-sIVWBSsD9H .mbr-section-btn {
  color: #5a5959;
  text-align: center;
}
.cid-sIPJoG2hxo {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #132c53;
}
.cid-sIPJoG2hxo .mbr-text,
.cid-sIPJoG2hxo .mbr-section-btn {
  color: #4479d9;
}
.cid-sIPJpT1C3v {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #fafafa;
}
.cid-sIPJpT1C3v .card-wrapper {
  padding-right: 2rem;
}
@media (max-width: 992px) {
  .cid-sIPJpT1C3v .card {
    margin-bottom: 2rem!important;
  }
  .cid-sIPJpT1C3v .card-wrapper {
    padding: 0 1rem;
  }
}
@media (max-width: 767px) {
  .cid-sIPJpT1C3v .link-wrap {
    align-items: center;
  }
}
.cid-sIPJpT1C3v .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-sIPJpT1C3v .card-title,
.cid-sIPJpT1C3v .card-box {
  color: #4479d9;
}
.cid-sIPJpT1C3v .mbr-text {
  color: #232323;
}
.cid-sxnCQX3xM9 {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #132c53;
}
.cid-sxnCQX3xM9 .mbr-text,
.cid-sxnCQX3xM9 .mbr-section-btn {
  color: #6592e6;
}
.cid-sxnCQX3xM9 .mbr-section-title {
  text-align: center;
  color: #ffffff;
}
.cid-sxnCQX3xM9 .mbr-section-subtitle {
  color: #ffffff;
}
.cid-sxnKIta8Mp {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sxnKIta8Mp .item {
  display: flex;
  align-items: center;
  margin-bottom: 2rem;
}
.cid-sxnKIta8Mp .icon-box {
  background: #6592e6;
  width: 60px;
  min-width: 60px;
  height: 60px;
  border-radius: 50%;
  margin-right: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-sxnKIta8Mp .mbr-iconfont {
  font-size: 2rem;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-sxnKIta8Mp .card {
    margin-bottom: 2rem;
  }
  .cid-sxnKIta8Mp .card-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-sxnKIta8Mp .icon-text {
  color: #5a5959;
}
.cid-sxnRtlbStP {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sxnRtlbStP .item {
  display: flex;
  align-items: center;
  margin-bottom: 2rem;
}
.cid-sxnRtlbStP .icon-box {
  background: #6592e6;
  width: 60px;
  min-width: 60px;
  height: 60px;
  border-radius: 50%;
  margin-right: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-sxnRtlbStP .mbr-iconfont {
  font-size: 2rem;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-sxnRtlbStP .card {
    margin-bottom: 2rem;
  }
  .cid-sxnRtlbStP .card-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-sxnRtlbStP .icon-text {
  color: #5a5959;
}
.cid-sxnRuaH1LQ {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sxnRuaH1LQ .item {
  display: flex;
  align-items: center;
  margin-bottom: 2rem;
}
.cid-sxnRuaH1LQ .icon-box {
  background: #6592e6;
  width: 60px;
  min-width: 60px;
  height: 60px;
  border-radius: 50%;
  margin-right: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-sxnRuaH1LQ .mbr-iconfont {
  font-size: 2rem;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-sxnRuaH1LQ .card {
    margin-bottom: 2rem;
  }
  .cid-sxnRuaH1LQ .card-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-sxnRuaH1LQ .icon-text {
  color: #5a5959;
}
.cid-sxnRv78pIL {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sxnRv78pIL .item {
  display: flex;
  align-items: center;
  margin-bottom: 2rem;
}
.cid-sxnRv78pIL .icon-box {
  background: #6592e6;
  width: 60px;
  min-width: 60px;
  height: 60px;
  border-radius: 50%;
  margin-right: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-sxnRv78pIL .mbr-iconfont {
  font-size: 2rem;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-sxnRv78pIL .card {
    margin-bottom: 2rem;
  }
  .cid-sxnRv78pIL .card-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-sxnRv78pIL .icon-text {
  color: #5a5959;
}
.cid-sxnRvNuzqf {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sxnRvNuzqf .item {
  display: flex;
  align-items: center;
  margin-bottom: 2rem;
}
.cid-sxnRvNuzqf .icon-box {
  background: #6592e6;
  width: 60px;
  min-width: 60px;
  height: 60px;
  border-radius: 50%;
  margin-right: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-sxnRvNuzqf .mbr-iconfont {
  font-size: 2rem;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-sxnRvNuzqf .card {
    margin-bottom: 2rem;
  }
  .cid-sxnRvNuzqf .card-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-sxnRvNuzqf .icon-text {
  color: #5a5959;
}
.cid-sxnSyR1hoe {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sxnSyR1hoe .item {
  display: flex;
  align-items: center;
  margin-bottom: 2rem;
}
.cid-sxnSyR1hoe .icon-box {
  background: #6592e6;
  width: 60px;
  min-width: 60px;
  height: 60px;
  border-radius: 50%;
  margin-right: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-sxnSyR1hoe .mbr-iconfont {
  font-size: 2rem;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-sxnSyR1hoe .card {
    margin-bottom: 2rem;
  }
  .cid-sxnSyR1hoe .card-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-sxnSyR1hoe .icon-text {
  color: #5a5959;
}
.cid-sxvIMekhBb {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #fafafa;
}
.cid-sxvIMekhBb .socicon-bg-facebook {
  background: #3e5b98;
  color: #ffffff;
}
.cid-sxvIMekhBb .socicon-bg-twitter {
  background: #4da7de;
  color: #ffffff;
}
.cid-sxvIMekhBb .socicon-bg-googleplus {
  background: #dd4b39;
  color: #ffffff;
}
.cid-sxvIMekhBb .socicon-bg-vkontakte {
  background: #5a7fa6;
  color: #ffffff;
}
.cid-sxvIMekhBb .socicon-bg-odnoklassniki {
  background: #f48420;
  color: #ffffff;
}
.cid-sxvIMekhBb .socicon-bg-pinterest {
  background: #c92619;
  color: #ffffff;
}
.cid-sxvIMekhBb .socicon-bg-mail {
  background: #134785;
  color: #ffffff;
}
.cid-sxvIMekhBb .btn-social {
  font-size: 20px;
  border-radius: 50%;
  padding: 0;
  width: 44px;
  height: 44px;
  line-height: 44px;
  text-align: center;
  position: relative;
  cursor: pointer;
  border: none !important;
}
.cid-sxvIMekhBb .btn-social i {
  top: 0;
  line-height: 44px;
  width: 44px;
}
.cid-sxvIMekhBb .btn-social + .btn {
  margin-left: .1rem;
}
.cid-sxvIMekhBb [class^="socicon-"]:before,
.cid-sxvIMekhBb [class*=" socicon-"]:before {
  line-height: 44px;
}
@media (max-width: 767px) {
  .cid-sxvIMekhBb .btn {
    font-size: 20px !important;
  }
}
.cid-sxpZdpDI84 {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sxpZdpDI84 .image-wrap img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-sxpZdpDI84 .image-wrap img {
    display: block;
    margin: auto;
    width: 50%;
  }
}
.cid-sxegUI3q4S {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #234d8b;
}
.cid-sz74uPT5gp {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-sz74uPT5gp nav.navbar {
  position: fixed;
}
.cid-sz74uPT5gp .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-sz74uPT5gp .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sz74uPT5gp .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sz74uPT5gp .dropdown-item:hover,
.cid-sz74uPT5gp .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-sz74uPT5gp .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sz74uPT5gp .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sz74uPT5gp .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sz74uPT5gp .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sz74uPT5gp .nav-link {
  position: relative;
}
.cid-sz74uPT5gp .container {
  display: flex;
  margin: auto;
}
.cid-sz74uPT5gp .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sz74uPT5gp .dropdown-menu,
.cid-sz74uPT5gp .navbar.opened {
  background: #234d8b !important;
}
.cid-sz74uPT5gp .nav-item:focus,
.cid-sz74uPT5gp .nav-link:focus {
  outline: none;
}
.cid-sz74uPT5gp .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sz74uPT5gp .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sz74uPT5gp .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sz74uPT5gp .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sz74uPT5gp .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sz74uPT5gp .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sz74uPT5gp .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #234d8b;
}
.cid-sz74uPT5gp .navbar.opened {
  transition: all 0.3s;
}
.cid-sz74uPT5gp .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sz74uPT5gp .navbar .navbar-logo img {
  width: auto;
}
.cid-sz74uPT5gp .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sz74uPT5gp .navbar.collapsed {
  justify-content: center;
}
.cid-sz74uPT5gp .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sz74uPT5gp .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sz74uPT5gp .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-sz74uPT5gp .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sz74uPT5gp .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sz74uPT5gp .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-sz74uPT5gp .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sz74uPT5gp .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sz74uPT5gp .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sz74uPT5gp .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sz74uPT5gp .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sz74uPT5gp .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sz74uPT5gp .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sz74uPT5gp .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-sz74uPT5gp .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sz74uPT5gp .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sz74uPT5gp .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sz74uPT5gp .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sz74uPT5gp .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sz74uPT5gp .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sz74uPT5gp .navbar.navbar-short {
  min-height: 60px;
}
.cid-sz74uPT5gp .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sz74uPT5gp .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sz74uPT5gp .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-sz74uPT5gp .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sz74uPT5gp .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sz74uPT5gp .dropdown-item.active,
.cid-sz74uPT5gp .dropdown-item:active {
  background-color: transparent;
}
.cid-sz74uPT5gp .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sz74uPT5gp .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sz74uPT5gp .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sz74uPT5gp .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #234d8b;
}
.cid-sz74uPT5gp .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sz74uPT5gp .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sz74uPT5gp ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sz74uPT5gp .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sz74uPT5gp button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sz74uPT5gp button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-sz74uPT5gp button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sz74uPT5gp button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sz74uPT5gp button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sz74uPT5gp button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sz74uPT5gp nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sz74uPT5gp nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sz74uPT5gp nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sz74uPT5gp nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sz74uPT5gp .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-sz74uPT5gp a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sz74uPT5gp .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-sz74uPT5gp .navbar {
    height: 70px;
  }
  .cid-sz74uPT5gp .navbar.opened {
    height: auto;
  }
  .cid-sz74uPT5gp .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sz74uRmW7a {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sz74uRmW7a .item {
  padding-bottom: 2rem;
}
.cid-sz74uRmW7a .item-wrapper {
  position: relative;
}
.cid-sz74uRmW7a .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-sz74uRmW7a .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-sz74uRmW7a .carousel-control,
.cid-sz74uRmW7a .close {
  background: #1b1b1b;
}
.cid-sz74uRmW7a .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-sz74uRmW7a .carousel-control-prev span {
  margin-right: 5px;
}
.cid-sz74uRmW7a .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-sz74uRmW7a .carousel-control-next span {
  margin-left: 5px;
}
.cid-sz74uRmW7a .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-sz74uRmW7a .close::before {
  content: '\e91a';
}
.cid-sz74uRmW7a .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-sz74uRmW7a .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-sz74uRmW7a .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sz74uRmW7a .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-sz74uRmW7a .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-sz74uRmW7a .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-sz74uRmW7a .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-sz74uRmW7a .carousel-indicators li.active,
.cid-sz74uRmW7a .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-sz74uRmW7a .carousel-indicators li::after,
.cid-sz74uRmW7a .carousel-indicators li::before {
  content: none;
}
.cid-sz74uRmW7a .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-sz74uRmW7a .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-sz74uRmW7a .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-sz74uRmW7a .carousel-indicators {
    display: none;
  }
}
.cid-sz74uRmW7a .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-sz74uRmW7a .carousel-inner > .active {
  display: block;
}
.cid-sz74uRmW7a .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sz74uRmW7a .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-sz74uRmW7a .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-sz74uRmW7a .carousel-control,
  .cid-sz74uRmW7a .carousel-indicators,
  .cid-sz74uRmW7a .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-sz74uRmW7a .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-sz74uRmW7a .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-sz74uRmW7a .carousel-indicators .active,
.cid-sz74uRmW7a .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-sz74uRmW7a .carousel-indicators .active {
  background: #fff;
}
.cid-sz74uRmW7a .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-sz74uRmW7a .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-sz74uRmW7a .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-sz74uRmW7a .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-sz74uRmW7a .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-sz74uRmW7a .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-sz74uRmW7a .carousel {
  width: 100%;
}
.cid-sz74uRmW7a .modal-backdrop.in {
  opacity: 0.8;
}
.cid-sz74uRmW7a .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-sz74uRmW7a .modal.fade .modal-dialog,
.cid-sz74uRmW7a .modal.in .modal-dialog {
  transform: none;
}
.cid-sz74uRmW7a .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-sz74uRmW7a H6 {
  text-align: right;
}
.cid-sz74uRmW7a H3 {
  text-align: center;
}
.cid-sz74uSI73v {
  padding-top: 0px;
  padding-bottom: 0px;
  background: linear-gradient(45deg, #f9f9f9, #fafafa);
}
.cid-sz74uSI73v .mbr-section-subtitle {
  font-style: italic;
  letter-spacing: 1rem;
}
.cid-sz74uSI73v H3 {
  color: #232323;
  text-align: center;
}
.cid-sz74uTJWLR {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #132c53;
}
.cid-sz74uTJWLR .mbr-text,
.cid-sz74uTJWLR .mbr-section-btn {
  color: #6592e6;
}
.cid-sz74uTJWLR .mbr-section-title {
  text-align: center;
  color: #ffffff;
}
.cid-sz74uTJWLR .mbr-section-subtitle {
  color: #ffffff;
}
.cid-sz74uUJ9vg {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #f9f9f9;
}
.cid-sz74uUJ9vg .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
.cid-sz74uUJ9vg form .mbr-section-btn {
  text-align: center;
  width: 100%;
}
.cid-sz74uUJ9vg form .mbr-section-btn .btn {
  display: inline-flex;
}
@media (max-width: 991px) {
  .cid-sz74uUJ9vg form .mbr-section-btn .btn {
    width: 100%;
  }
}
.cid-sz74uVJUEL {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #f9f9f9;
}
.cid-sz74uVJUEL .media-container-row {
  justify-content: space-between;
}
.cid-sz74uVJUEL .text-content {
  max-width: 50%;
}
@media (max-width: 768px) {
  .cid-sz74uVJUEL .text-content {
    max-width: none;
  }
}
.cid-sz74uVJUEL .mbr-iconfont-social {
  margin: 0.5rem;
  font-size: 32px;
  display: flex;
  border-radius: 50%;
  text-align: center;
  color: #6592e6;
  border: 2px solid #6592e6;
  justify-content: center;
  align-content: center;
  transition: all 0.3s;
}
.cid-sz74uVJUEL .mbr-iconfont-social:before {
  padding: 0.6rem;
}
.cid-sz74uVJUEL .mbr-iconfont-social:hover {
  background-color: #6592e6;
  color: #ffffff;
}
@media (max-width: 768px) {
  .cid-sz74uVJUEL .icons {
    justify-content: center !important;
  }
  .cid-sz74uVJUEL .text-content * {
    text-align: center;
  }
}
.cid-sz74uVJUEL .mbr-section-title {
  color: #232323;
}
.cid-sz74uXdLfh {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #f9f9f9;
}
.cid-sz74uXdLfh .mbr-section-subtitle {
  color: #554346;
  text-align: left;
}
.cid-sz74uXdLfh .container-table {
  margin: 0 auto;
}
.cid-sz74uXdLfh .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-sz74uXdLfh .dataTables_wrapper {
  display: block;
}
.cid-sz74uXdLfh .dataTables_wrapper .search {
  margin-bottom: .5rem;
}
.cid-sz74uXdLfh .dataTables_wrapper .table {
  overflow-x: auto;
}
.cid-sz74uXdLfh table {
  width: 100% !important;
  margin-top: 6px;
  border: 1px solid #cccccc;
  margin-bottom: 0;
}
.cid-sz74uXdLfh table th {
  border-top: none;
  transition: all .2s;
  border-bottom: none;
}
.cid-sz74uXdLfh table th:hover {
  background: #cccccc;
  color: #000000;
}
.cid-sz74uXdLfh table td {
  border-top: 1px solid #cccccc;
}
.cid-sz74uXdLfh table.table {
  background: #3c6aac;
}
.cid-sz74uXdLfh .dataTables_filter {
  text-align: right;
  margin-bottom: .5rem;
}
.cid-sz74uXdLfh .dataTables_filter label {
  display: inline;
  white-space: normal !important;
}
.cid-sz74uXdLfh .dataTables_filter input {
  display: inline;
  width: auto;
  margin-left: .5rem;
  border-radius: 100px;
  padding-left: 1rem;
}
.cid-sz74uXdLfh .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
  white-space: normal !important;
}
@media (max-width: 992px) {
  .cid-sz74uXdLfh .dataTables_filter {
    text-align: center;
  }
}
@media (max-width: 350px) {
  .cid-sz74uXdLfh .dataTables_filter {
    text-align: center;
  }
  .cid-sz74uXdLfh .dataTables_filter input {
    width: 100% !important;
    margin-left: 0 !important;
  }
}
.cid-sz74uXdLfh .head-item {
  color: #ffffff;
  text-align: center;
}
.cid-sz74uXdLfh .mbr-section-title {
  color: #554346;
  text-align: left;
}
.cid-sz74uXdLfh .body-item {
  text-align: center;
  color: #fafafa;
}
.cid-sz74uYUIKw {
  padding-top: 0px;
  padding-bottom: 45px;
  background-color: #f9f9f9;
}
.cid-sz74uYUIKw .mbr-section-subtitle {
  color: #554346;
  text-align: left;
}
.cid-sz74uYUIKw .container-table {
  margin: 0 auto;
}
.cid-sz74uYUIKw .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-sz74uYUIKw .dataTables_wrapper {
  display: block;
}
.cid-sz74uYUIKw .dataTables_wrapper .search {
  margin-bottom: .5rem;
}
.cid-sz74uYUIKw .dataTables_wrapper .table {
  overflow-x: auto;
}
.cid-sz74uYUIKw table {
  width: 100% !important;
  margin-top: 6px;
  border: 1px solid #cccccc;
  margin-bottom: 0;
}
.cid-sz74uYUIKw table th {
  border-top: none;
  transition: all .2s;
  border-bottom: none;
}
.cid-sz74uYUIKw table th:hover {
  background: #cccccc;
  color: #000000;
}
.cid-sz74uYUIKw table td {
  border-top: 1px solid #cccccc;
}
.cid-sz74uYUIKw table.table {
  background: #fafafa;
}
.cid-sz74uYUIKw .dataTables_filter {
  text-align: right;
  margin-bottom: .5rem;
}
.cid-sz74uYUIKw .dataTables_filter label {
  display: inline;
  white-space: normal !important;
}
.cid-sz74uYUIKw .dataTables_filter input {
  display: inline;
  width: auto;
  margin-left: .5rem;
  border-radius: 100px;
  padding-left: 1rem;
}
.cid-sz74uYUIKw .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
  white-space: normal !important;
}
@media (max-width: 992px) {
  .cid-sz74uYUIKw .dataTables_filter {
    text-align: center;
  }
}
@media (max-width: 350px) {
  .cid-sz74uYUIKw .dataTables_filter {
    text-align: center;
  }
  .cid-sz74uYUIKw .dataTables_filter input {
    width: 100% !important;
    margin-left: 0 !important;
  }
}
.cid-sz74uYUIKw .head-item {
  color: #132c53;
  text-align: center;
}
.cid-sz74uYUIKw .mbr-section-title {
  color: #554346;
  text-align: left;
}
.cid-sz74uYUIKw .body-item {
  text-align: center;
  color: #6f6f6f;
}
.cid-sz74v0BYdU {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-sz74v0BYdU .card-wrapper {
  padding-right: 2rem;
}
@media (max-width: 992px) {
  .cid-sz74v0BYdU .card {
    margin-bottom: 2rem!important;
  }
  .cid-sz74v0BYdU .card-wrapper {
    padding: 0 1rem;
  }
}
@media (max-width: 767px) {
  .cid-sz74v0BYdU .link-wrap {
    align-items: center;
  }
}
.cid-sz74v0BYdU .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-sz74v0BYdU .card-title,
.cid-sz74v0BYdU .card-box {
  color: #4479d9;
}
.cid-sz74v0BYdU .mbr-text {
  color: #232323;
}
.cid-sz74v1Qz6t {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #132c53;
}
.cid-sz74v1Qz6t .mbr-text,
.cid-sz74v1Qz6t .mbr-section-btn {
  color: #4479d9;
}
.cid-sz74v2Vnr1 {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sz74v2Vnr1 .media-container-row {
  justify-content: space-between;
}
.cid-sz74v2Vnr1 .text-content {
  max-width: 50%;
}
@media (max-width: 768px) {
  .cid-sz74v2Vnr1 .text-content {
    max-width: none;
  }
}
.cid-sz74v2Vnr1 .mbr-iconfont-social {
  margin: 0.5rem;
  font-size: 32px;
  display: flex;
  border-radius: 50%;
  text-align: center;
  color: #6592e6;
  border: 2px solid #6592e6;
  justify-content: center;
  align-content: center;
  transition: all 0.3s;
}
.cid-sz74v2Vnr1 .mbr-iconfont-social:before {
  padding: 0.6rem;
}
.cid-sz74v2Vnr1 .mbr-iconfont-social:hover {
  background-color: #6592e6;
  color: #ffffff;
}
@media (max-width: 768px) {
  .cid-sz74v2Vnr1 .icons {
    justify-content: center !important;
  }
  .cid-sz74v2Vnr1 .text-content * {
    text-align: center;
  }
}
.cid-sz74v2Vnr1 .mbr-section-title {
  color: #232323;
}
.cid-sz74v4lQDY {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sz74v4lQDY .mbr-section-subtitle {
  color: #554346;
  text-align: left;
}
.cid-sz74v4lQDY .container-table {
  margin: 0 auto;
}
.cid-sz74v4lQDY .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-sz74v4lQDY .dataTables_wrapper {
  display: block;
}
.cid-sz74v4lQDY .dataTables_wrapper .search {
  margin-bottom: .5rem;
}
.cid-sz74v4lQDY .dataTables_wrapper .table {
  overflow-x: auto;
}
.cid-sz74v4lQDY table {
  width: 100% !important;
  margin-top: 6px;
  border: 1px solid #cccccc;
  margin-bottom: 0;
}
.cid-sz74v4lQDY table th {
  border-top: none;
  transition: all .2s;
  border-bottom: none;
}
.cid-sz74v4lQDY table th:hover {
  background: #cccccc;
  color: #000000;
}
.cid-sz74v4lQDY table td {
  border-top: 1px solid #cccccc;
}
.cid-sz74v4lQDY table.table {
  background: #3c6aac;
}
.cid-sz74v4lQDY .dataTables_filter {
  text-align: right;
  margin-bottom: .5rem;
}
.cid-sz74v4lQDY .dataTables_filter label {
  display: inline;
  white-space: normal !important;
}
.cid-sz74v4lQDY .dataTables_filter input {
  display: inline;
  width: auto;
  margin-left: .5rem;
  border-radius: 100px;
  padding-left: 1rem;
}
.cid-sz74v4lQDY .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
  white-space: normal !important;
}
@media (max-width: 992px) {
  .cid-sz74v4lQDY .dataTables_filter {
    text-align: center;
  }
}
@media (max-width: 350px) {
  .cid-sz74v4lQDY .dataTables_filter {
    text-align: center;
  }
  .cid-sz74v4lQDY .dataTables_filter input {
    width: 100% !important;
    margin-left: 0 !important;
  }
}
.cid-sz74v4lQDY .head-item {
  color: #ffffff;
  text-align: center;
}
.cid-sz74v4lQDY .mbr-section-title {
  color: #554346;
  text-align: left;
}
.cid-sz74v4lQDY .body-item {
  text-align: center;
  color: #fafafa;
}
.cid-sz74v68bQy {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sz74v68bQy .mbr-section-subtitle {
  color: #554346;
  text-align: left;
}
.cid-sz74v68bQy .container-table {
  margin: 0 auto;
}
.cid-sz74v68bQy .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-sz74v68bQy .dataTables_wrapper {
  display: block;
}
.cid-sz74v68bQy .dataTables_wrapper .search {
  margin-bottom: .5rem;
}
.cid-sz74v68bQy .dataTables_wrapper .table {
  overflow-x: auto;
}
.cid-sz74v68bQy table {
  width: 100% !important;
  margin-top: 6px;
  border: 1px solid #cccccc;
  margin-bottom: 0;
}
.cid-sz74v68bQy table th {
  border-top: none;
  transition: all .2s;
  border-bottom: none;
}
.cid-sz74v68bQy table th:hover {
  background: #cccccc;
  color: #000000;
}
.cid-sz74v68bQy table td {
  border-top: 1px solid #cccccc;
}
.cid-sz74v68bQy table.table {
  background: #ffffff;
}
.cid-sz74v68bQy .dataTables_filter {
  text-align: right;
  margin-bottom: .5rem;
}
.cid-sz74v68bQy .dataTables_filter label {
  display: inline;
  white-space: normal !important;
}
.cid-sz74v68bQy .dataTables_filter input {
  display: inline;
  width: auto;
  margin-left: .5rem;
  border-radius: 100px;
  padding-left: 1rem;
}
.cid-sz74v68bQy .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
  white-space: normal !important;
}
@media (max-width: 992px) {
  .cid-sz74v68bQy .dataTables_filter {
    text-align: center;
  }
}
@media (max-width: 350px) {
  .cid-sz74v68bQy .dataTables_filter {
    text-align: center;
  }
  .cid-sz74v68bQy .dataTables_filter input {
    width: 100% !important;
    margin-left: 0 !important;
  }
}
.cid-sz74v68bQy .head-item {
  color: #132c53;
  text-align: center;
}
.cid-sz74v68bQy .mbr-section-title {
  color: #554346;
  text-align: left;
}
.cid-sz74v68bQy .body-item {
  text-align: center;
}
.cid-sz74v7NNkR {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sz74v7NNkR .mbr-section-subtitle {
  color: #554346;
  text-align: left;
}
.cid-sz74v7NNkR .container-table {
  margin: 0 auto;
}
.cid-sz74v7NNkR .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-sz74v7NNkR .dataTables_wrapper {
  display: block;
}
.cid-sz74v7NNkR .dataTables_wrapper .search {
  margin-bottom: .5rem;
}
.cid-sz74v7NNkR .dataTables_wrapper .table {
  overflow-x: auto;
}
.cid-sz74v7NNkR table {
  width: 100% !important;
  margin-top: 6px;
  border: 1px solid #cccccc;
  margin-bottom: 0;
}
.cid-sz74v7NNkR table th {
  border-top: none;
  transition: all .2s;
  border-bottom: none;
}
.cid-sz74v7NNkR table th:hover {
  background: #cccccc;
  color: #000000;
}
.cid-sz74v7NNkR table td {
  border-top: 1px solid #cccccc;
}
.cid-sz74v7NNkR table.table {
  background: #f9f9f9;
}
.cid-sz74v7NNkR .dataTables_filter {
  text-align: right;
  margin-bottom: .5rem;
}
.cid-sz74v7NNkR .dataTables_filter label {
  display: inline;
  white-space: normal !important;
}
.cid-sz74v7NNkR .dataTables_filter input {
  display: inline;
  width: auto;
  margin-left: .5rem;
  border-radius: 100px;
  padding-left: 1rem;
}
.cid-sz74v7NNkR .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
  white-space: normal !important;
}
@media (max-width: 992px) {
  .cid-sz74v7NNkR .dataTables_filter {
    text-align: center;
  }
}
@media (max-width: 350px) {
  .cid-sz74v7NNkR .dataTables_filter {
    text-align: center;
  }
  .cid-sz74v7NNkR .dataTables_filter input {
    width: 100% !important;
    margin-left: 0 !important;
  }
}
.cid-sz74v7NNkR .head-item {
  color: #132c53;
  text-align: center;
}
.cid-sz74v7NNkR .mbr-section-title {
  color: #554346;
  text-align: left;
}
.cid-sz74v7NNkR .body-item {
  text-align: center;
}
.cid-sz74v9FN09 {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sz74v9FN09 .media-container-row {
  justify-content: space-between;
}
.cid-sz74v9FN09 .text-content {
  max-width: 50%;
}
@media (max-width: 768px) {
  .cid-sz74v9FN09 .text-content {
    max-width: none;
  }
}
.cid-sz74v9FN09 .mbr-iconfont-social {
  margin: 0.5rem;
  font-size: 32px;
  display: flex;
  border-radius: 50%;
  text-align: center;
  color: #6592e6;
  border: 2px solid #6592e6;
  justify-content: center;
  align-content: center;
  transition: all 0.3s;
}
.cid-sz74v9FN09 .mbr-iconfont-social:before {
  padding: 0.6rem;
}
.cid-sz74v9FN09 .mbr-iconfont-social:hover {
  background-color: #6592e6;
  color: #ffffff;
}
@media (max-width: 768px) {
  .cid-sz74v9FN09 .icons {
    justify-content: center !important;
  }
  .cid-sz74v9FN09 .text-content * {
    text-align: center;
  }
}
.cid-sz74v9FN09 .mbr-section-title {
  color: #232323;
}
.cid-sz74vbeY2b {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sz74vbeY2b .mbr-section-subtitle {
  color: #554346;
  text-align: left;
}
.cid-sz74vbeY2b .container-table {
  margin: 0 auto;
}
.cid-sz74vbeY2b .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-sz74vbeY2b .dataTables_wrapper {
  display: block;
}
.cid-sz74vbeY2b .dataTables_wrapper .search {
  margin-bottom: .5rem;
}
.cid-sz74vbeY2b .dataTables_wrapper .table {
  overflow-x: auto;
}
.cid-sz74vbeY2b table {
  width: 100% !important;
  margin-top: 6px;
  border: 1px solid #cccccc;
  margin-bottom: 0;
}
.cid-sz74vbeY2b table th {
  border-top: none;
  transition: all .2s;
  border-bottom: none;
}
.cid-sz74vbeY2b table th:hover {
  background: #cccccc;
  color: #000000;
}
.cid-sz74vbeY2b table td {
  border-top: 1px solid #cccccc;
}
.cid-sz74vbeY2b table.table {
  background: #3c6aac;
}
.cid-sz74vbeY2b .dataTables_filter {
  text-align: right;
  margin-bottom: .5rem;
}
.cid-sz74vbeY2b .dataTables_filter label {
  display: inline;
  white-space: normal !important;
}
.cid-sz74vbeY2b .dataTables_filter input {
  display: inline;
  width: auto;
  margin-left: .5rem;
  border-radius: 100px;
  padding-left: 1rem;
}
.cid-sz74vbeY2b .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
  white-space: normal !important;
}
@media (max-width: 992px) {
  .cid-sz74vbeY2b .dataTables_filter {
    text-align: center;
  }
}
@media (max-width: 350px) {
  .cid-sz74vbeY2b .dataTables_filter {
    text-align: center;
  }
  .cid-sz74vbeY2b .dataTables_filter input {
    width: 100% !important;
    margin-left: 0 !important;
  }
}
.cid-sz74vbeY2b .head-item {
  color: #ffffff;
  text-align: center;
}
.cid-sz74vbeY2b .mbr-section-title {
  color: #554346;
  text-align: left;
}
.cid-sz74vbeY2b .body-item {
  text-align: center;
  color: #fafafa;
}
.cid-sz74vd3Htt {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sz74vd3Htt .mbr-section-subtitle {
  color: #554346;
  text-align: left;
}
.cid-sz74vd3Htt .container-table {
  margin: 0 auto;
}
.cid-sz74vd3Htt .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-sz74vd3Htt .dataTables_wrapper {
  display: block;
}
.cid-sz74vd3Htt .dataTables_wrapper .search {
  margin-bottom: .5rem;
}
.cid-sz74vd3Htt .dataTables_wrapper .table {
  overflow-x: auto;
}
.cid-sz74vd3Htt table {
  width: 100% !important;
  margin-top: 6px;
  border: 1px solid #cccccc;
  margin-bottom: 0;
}
.cid-sz74vd3Htt table th {
  border-top: none;
  transition: all .2s;
  border-bottom: none;
}
.cid-sz74vd3Htt table th:hover {
  background: #cccccc;
  color: #000000;
}
.cid-sz74vd3Htt table td {
  border-top: 1px solid #cccccc;
}
.cid-sz74vd3Htt table.table {
  background: #ffffff;
}
.cid-sz74vd3Htt .dataTables_filter {
  text-align: right;
  margin-bottom: .5rem;
}
.cid-sz74vd3Htt .dataTables_filter label {
  display: inline;
  white-space: normal !important;
}
.cid-sz74vd3Htt .dataTables_filter input {
  display: inline;
  width: auto;
  margin-left: .5rem;
  border-radius: 100px;
  padding-left: 1rem;
}
.cid-sz74vd3Htt .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
  white-space: normal !important;
}
@media (max-width: 992px) {
  .cid-sz74vd3Htt .dataTables_filter {
    text-align: center;
  }
}
@media (max-width: 350px) {
  .cid-sz74vd3Htt .dataTables_filter {
    text-align: center;
  }
  .cid-sz74vd3Htt .dataTables_filter input {
    width: 100% !important;
    margin-left: 0 !important;
  }
}
.cid-sz74vd3Htt .head-item {
  color: #132c53;
  text-align: center;
}
.cid-sz74vd3Htt .mbr-section-title {
  color: #554346;
  text-align: left;
}
.cid-sz74vd3Htt .body-item {
  text-align: center;
}
.cid-sz74veLk1r {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sz74veLk1r .mbr-section-subtitle {
  color: #554346;
  text-align: left;
}
.cid-sz74veLk1r .container-table {
  margin: 0 auto;
}
.cid-sz74veLk1r .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-sz74veLk1r .dataTables_wrapper {
  display: block;
}
.cid-sz74veLk1r .dataTables_wrapper .search {
  margin-bottom: .5rem;
}
.cid-sz74veLk1r .dataTables_wrapper .table {
  overflow-x: auto;
}
.cid-sz74veLk1r table {
  width: 100% !important;
  margin-top: 6px;
  border: 1px solid #cccccc;
  margin-bottom: 0;
}
.cid-sz74veLk1r table th {
  border-top: none;
  transition: all .2s;
  border-bottom: none;
}
.cid-sz74veLk1r table th:hover {
  background: #cccccc;
  color: #000000;
}
.cid-sz74veLk1r table td {
  border-top: 1px solid #cccccc;
}
.cid-sz74veLk1r table.table {
  background: #f9f9f9;
}
.cid-sz74veLk1r .dataTables_filter {
  text-align: right;
  margin-bottom: .5rem;
}
.cid-sz74veLk1r .dataTables_filter label {
  display: inline;
  white-space: normal !important;
}
.cid-sz74veLk1r .dataTables_filter input {
  display: inline;
  width: auto;
  margin-left: .5rem;
  border-radius: 100px;
  padding-left: 1rem;
}
.cid-sz74veLk1r .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
  white-space: normal !important;
}
@media (max-width: 992px) {
  .cid-sz74veLk1r .dataTables_filter {
    text-align: center;
  }
}
@media (max-width: 350px) {
  .cid-sz74veLk1r .dataTables_filter {
    text-align: center;
  }
  .cid-sz74veLk1r .dataTables_filter input {
    width: 100% !important;
    margin-left: 0 !important;
  }
}
.cid-sz74veLk1r .head-item {
  color: #132c53;
  text-align: center;
}
.cid-sz74veLk1r .mbr-section-title {
  color: #554346;
  text-align: left;
}
.cid-sz74veLk1r .body-item {
  text-align: center;
}
.cid-sz74vgL1Tj {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sz74vgL1Tj .media-container-row {
  justify-content: space-between;
}
.cid-sz74vgL1Tj .text-content {
  max-width: 50%;
}
@media (max-width: 768px) {
  .cid-sz74vgL1Tj .text-content {
    max-width: none;
  }
}
.cid-sz74vgL1Tj .mbr-iconfont-social {
  margin: 0.5rem;
  font-size: 32px;
  display: flex;
  border-radius: 50%;
  text-align: center;
  color: #6592e6;
  border: 2px solid #6592e6;
  justify-content: center;
  align-content: center;
  transition: all 0.3s;
}
.cid-sz74vgL1Tj .mbr-iconfont-social:before {
  padding: 0.6rem;
}
.cid-sz74vgL1Tj .mbr-iconfont-social:hover {
  background-color: #6592e6;
  color: #ffffff;
}
@media (max-width: 768px) {
  .cid-sz74vgL1Tj .icons {
    justify-content: center !important;
  }
  .cid-sz74vgL1Tj .text-content * {
    text-align: center;
  }
}
.cid-sz74vgL1Tj .mbr-section-title {
  color: #232323;
}
.cid-sz74vihzoG {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sz74vihzoG .mbr-section-subtitle {
  color: #554346;
  text-align: left;
}
.cid-sz74vihzoG .container-table {
  margin: 0 auto;
}
.cid-sz74vihzoG .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-sz74vihzoG .dataTables_wrapper {
  display: block;
}
.cid-sz74vihzoG .dataTables_wrapper .search {
  margin-bottom: .5rem;
}
.cid-sz74vihzoG .dataTables_wrapper .table {
  overflow-x: auto;
}
.cid-sz74vihzoG table {
  width: 100% !important;
  margin-top: 6px;
  border: 1px solid #cccccc;
  margin-bottom: 0;
}
.cid-sz74vihzoG table th {
  border-top: none;
  transition: all .2s;
  border-bottom: none;
}
.cid-sz74vihzoG table th:hover {
  background: #cccccc;
  color: #000000;
}
.cid-sz74vihzoG table td {
  border-top: 1px solid #cccccc;
}
.cid-sz74vihzoG table.table {
  background: #3c6aac;
}
.cid-sz74vihzoG .dataTables_filter {
  text-align: right;
  margin-bottom: .5rem;
}
.cid-sz74vihzoG .dataTables_filter label {
  display: inline;
  white-space: normal !important;
}
.cid-sz74vihzoG .dataTables_filter input {
  display: inline;
  width: auto;
  margin-left: .5rem;
  border-radius: 100px;
  padding-left: 1rem;
}
.cid-sz74vihzoG .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
  white-space: normal !important;
}
@media (max-width: 992px) {
  .cid-sz74vihzoG .dataTables_filter {
    text-align: center;
  }
}
@media (max-width: 350px) {
  .cid-sz74vihzoG .dataTables_filter {
    text-align: center;
  }
  .cid-sz74vihzoG .dataTables_filter input {
    width: 100% !important;
    margin-left: 0 !important;
  }
}
.cid-sz74vihzoG .head-item {
  color: #ffffff;
  text-align: center;
}
.cid-sz74vihzoG .mbr-section-title {
  color: #554346;
  text-align: left;
}
.cid-sz74vihzoG .body-item {
  text-align: center;
  color: #fafafa;
}
.cid-sz74vk5TQX {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sz74vk5TQX .mbr-section-subtitle {
  color: #554346;
  text-align: left;
}
.cid-sz74vk5TQX .container-table {
  margin: 0 auto;
}
.cid-sz74vk5TQX .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-sz74vk5TQX .dataTables_wrapper {
  display: block;
}
.cid-sz74vk5TQX .dataTables_wrapper .search {
  margin-bottom: .5rem;
}
.cid-sz74vk5TQX .dataTables_wrapper .table {
  overflow-x: auto;
}
.cid-sz74vk5TQX table {
  width: 100% !important;
  margin-top: 6px;
  border: 1px solid #cccccc;
  margin-bottom: 0;
}
.cid-sz74vk5TQX table th {
  border-top: none;
  transition: all .2s;
  border-bottom: none;
}
.cid-sz74vk5TQX table th:hover {
  background: #cccccc;
  color: #000000;
}
.cid-sz74vk5TQX table td {
  border-top: 1px solid #cccccc;
}
.cid-sz74vk5TQX table.table {
  background: #ffffff;
}
.cid-sz74vk5TQX .dataTables_filter {
  text-align: right;
  margin-bottom: .5rem;
}
.cid-sz74vk5TQX .dataTables_filter label {
  display: inline;
  white-space: normal !important;
}
.cid-sz74vk5TQX .dataTables_filter input {
  display: inline;
  width: auto;
  margin-left: .5rem;
  border-radius: 100px;
  padding-left: 1rem;
}
.cid-sz74vk5TQX .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
  white-space: normal !important;
}
@media (max-width: 992px) {
  .cid-sz74vk5TQX .dataTables_filter {
    text-align: center;
  }
}
@media (max-width: 350px) {
  .cid-sz74vk5TQX .dataTables_filter {
    text-align: center;
  }
  .cid-sz74vk5TQX .dataTables_filter input {
    width: 100% !important;
    margin-left: 0 !important;
  }
}
.cid-sz74vk5TQX .head-item {
  color: #132c53;
  text-align: center;
}
.cid-sz74vk5TQX .mbr-section-title {
  color: #554346;
  text-align: left;
}
.cid-sz74vk5TQX .body-item {
  text-align: center;
}
.cid-sz74vlUkN1 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sz74vlUkN1 .mbr-section-subtitle {
  color: #554346;
  text-align: left;
}
.cid-sz74vlUkN1 .container-table {
  margin: 0 auto;
}
.cid-sz74vlUkN1 .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-sz74vlUkN1 .dataTables_wrapper {
  display: block;
}
.cid-sz74vlUkN1 .dataTables_wrapper .search {
  margin-bottom: .5rem;
}
.cid-sz74vlUkN1 .dataTables_wrapper .table {
  overflow-x: auto;
}
.cid-sz74vlUkN1 table {
  width: 100% !important;
  margin-top: 6px;
  border: 1px solid #cccccc;
  margin-bottom: 0;
}
.cid-sz74vlUkN1 table th {
  border-top: none;
  transition: all .2s;
  border-bottom: none;
}
.cid-sz74vlUkN1 table th:hover {
  background: #cccccc;
  color: #000000;
}
.cid-sz74vlUkN1 table td {
  border-top: 1px solid #cccccc;
}
.cid-sz74vlUkN1 table.table {
  background: #f9f9f9;
}
.cid-sz74vlUkN1 .dataTables_filter {
  text-align: right;
  margin-bottom: .5rem;
}
.cid-sz74vlUkN1 .dataTables_filter label {
  display: inline;
  white-space: normal !important;
}
.cid-sz74vlUkN1 .dataTables_filter input {
  display: inline;
  width: auto;
  margin-left: .5rem;
  border-radius: 100px;
  padding-left: 1rem;
}
.cid-sz74vlUkN1 .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
  white-space: normal !important;
}
@media (max-width: 992px) {
  .cid-sz74vlUkN1 .dataTables_filter {
    text-align: center;
  }
}
@media (max-width: 350px) {
  .cid-sz74vlUkN1 .dataTables_filter {
    text-align: center;
  }
  .cid-sz74vlUkN1 .dataTables_filter input {
    width: 100% !important;
    margin-left: 0 !important;
  }
}
.cid-sz74vlUkN1 .head-item {
  color: #132c53;
  text-align: center;
}
.cid-sz74vlUkN1 .mbr-section-title {
  color: #554346;
  text-align: left;
}
.cid-sz74vlUkN1 .body-item {
  text-align: center;
}
.cid-sz74vnB5go {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sz74vnB5go .item {
  padding-bottom: 2rem;
}
.cid-sz74vnB5go .item-wrapper {
  position: relative;
}
.cid-sz74vnB5go .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-sz74vnB5go .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-sz74vnB5go .carousel-control,
.cid-sz74vnB5go .close {
  background: #1b1b1b;
}
.cid-sz74vnB5go .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-sz74vnB5go .carousel-control-prev span {
  margin-right: 5px;
}
.cid-sz74vnB5go .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-sz74vnB5go .carousel-control-next span {
  margin-left: 5px;
}
.cid-sz74vnB5go .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-sz74vnB5go .close::before {
  content: '\e91a';
}
.cid-sz74vnB5go .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-sz74vnB5go .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-sz74vnB5go .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sz74vnB5go .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-sz74vnB5go .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-sz74vnB5go .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-sz74vnB5go .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-sz74vnB5go .carousel-indicators li.active,
.cid-sz74vnB5go .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-sz74vnB5go .carousel-indicators li::after,
.cid-sz74vnB5go .carousel-indicators li::before {
  content: none;
}
.cid-sz74vnB5go .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-sz74vnB5go .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-sz74vnB5go .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-sz74vnB5go .carousel-indicators {
    display: none;
  }
}
.cid-sz74vnB5go .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-sz74vnB5go .carousel-inner > .active {
  display: block;
}
.cid-sz74vnB5go .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sz74vnB5go .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-sz74vnB5go .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-sz74vnB5go .carousel-control,
  .cid-sz74vnB5go .carousel-indicators,
  .cid-sz74vnB5go .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-sz74vnB5go .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-sz74vnB5go .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-sz74vnB5go .carousel-indicators .active,
.cid-sz74vnB5go .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-sz74vnB5go .carousel-indicators .active {
  background: #fff;
}
.cid-sz74vnB5go .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-sz74vnB5go .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-sz74vnB5go .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-sz74vnB5go .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-sz74vnB5go .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-sz74vnB5go .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-sz74vnB5go .carousel {
  width: 100%;
}
.cid-sz74vnB5go .modal-backdrop.in {
  opacity: 0.8;
}
.cid-sz74vnB5go .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-sz74vnB5go .modal.fade .modal-dialog,
.cid-sz74vnB5go .modal.in .modal-dialog {
  transform: none;
}
.cid-sz74vnB5go .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-sz74vnB5go H6 {
  text-align: right;
}
.cid-sz74vnB5go H3 {
  text-align: center;
}
.cid-sz74vp3dv7 {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #132c53;
}
.cid-sz74vp3dv7 .mbr-section-subtitle {
  color: #ffffff;
}
.cid-sz74vp3dv7 .mbr-text,
.cid-sz74vp3dv7 .mbr-section-btn {
  color: #4479d9;
}
.cid-sz74vqktyy {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #fafafa;
}
.cid-sz74vqktyy .card-wrapper {
  display: flex;
}
@media (max-width: 991px) {
  .cid-sz74vqktyy .card-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-sz74vqktyy .mbr-iconfont {
  font-size: 2rem;
  color: #6592e6;
  padding-right: 1.5rem;
}
.cid-sz74vqktyy .card-text {
  color: #5a5959;
}
.cid-sz74vqktyy .card-title {
  color: #111111;
}
.cid-sz74vs4AsL {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sz74vs4AsL .image-wrap img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-sz74vs4AsL .image-wrap img {
    display: block;
    margin: auto;
    width: 40%;
  }
}
.cid-sz74vs4AsL .mbr-text,
.cid-sz74vs4AsL .mbr-section-btn {
  color: #5a5959;
}
.cid-sz74vtijnI {
  padding-top: 0px;
  padding-bottom: 0px;
  background: linear-gradient(45deg, #f9f9f9, #f9f9f9);
}
.cid-sz74vtijnI .mbr-section-subtitle {
  font-style: italic;
  letter-spacing: 1rem;
}
.cid-sz74vtijnI .mbr-section-title {
  text-align: center;
  color: #5a5959;
}
.cid-sz74vtijnI H3 {
  text-align: center;
  color: #232323;
}
.cid-sz74vtijnI .mbr-text,
.cid-sz74vtijnI .mbr-section-btn {
  color: #5a5959;
  text-align: center;
}
.cid-sz74vuxrvw {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #132c53;
}
.cid-sz74vuxrvw .mbr-text,
.cid-sz74vuxrvw .mbr-section-btn {
  color: #6592e6;
}
.cid-sz74vuxrvw .mbr-section-title {
  text-align: center;
  color: #ffffff;
}
.cid-sz74vuxrvw .mbr-section-subtitle {
  color: #ffffff;
}
.cid-sz74vvNyVO {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sz74vvNyVO .item {
  display: flex;
  align-items: center;
  margin-bottom: 2rem;
}
.cid-sz74vvNyVO .icon-box {
  background: #6592e6;
  width: 60px;
  min-width: 60px;
  height: 60px;
  border-radius: 50%;
  margin-right: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-sz74vvNyVO .mbr-iconfont {
  font-size: 2rem;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-sz74vvNyVO .card {
    margin-bottom: 2rem;
  }
  .cid-sz74vvNyVO .card-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-sz74vvNyVO .icon-text {
  color: #5a5959;
}
.cid-sz74vxjqfH {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sz74vxjqfH .item {
  display: flex;
  align-items: center;
  margin-bottom: 2rem;
}
.cid-sz74vxjqfH .icon-box {
  background: #6592e6;
  width: 60px;
  min-width: 60px;
  height: 60px;
  border-radius: 50%;
  margin-right: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-sz74vxjqfH .mbr-iconfont {
  font-size: 2rem;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-sz74vxjqfH .card {
    margin-bottom: 2rem;
  }
  .cid-sz74vxjqfH .card-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-sz74vxjqfH .icon-text {
  color: #5a5959;
}
.cid-sz74vzIc4l {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sz74vzIc4l .item {
  display: flex;
  align-items: center;
  margin-bottom: 2rem;
}
.cid-sz74vzIc4l .icon-box {
  background: #6592e6;
  width: 60px;
  min-width: 60px;
  height: 60px;
  border-radius: 50%;
  margin-right: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-sz74vzIc4l .mbr-iconfont {
  font-size: 2rem;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-sz74vzIc4l .card {
    margin-bottom: 2rem;
  }
  .cid-sz74vzIc4l .card-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-sz74vzIc4l .icon-text {
  color: #5a5959;
}
.cid-sz74vBTuBv {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sz74vBTuBv .item {
  display: flex;
  align-items: center;
  margin-bottom: 2rem;
}
.cid-sz74vBTuBv .icon-box {
  background: #6592e6;
  width: 60px;
  min-width: 60px;
  height: 60px;
  border-radius: 50%;
  margin-right: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-sz74vBTuBv .mbr-iconfont {
  font-size: 2rem;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-sz74vBTuBv .card {
    margin-bottom: 2rem;
  }
  .cid-sz74vBTuBv .card-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-sz74vBTuBv .icon-text {
  color: #5a5959;
}
.cid-sz74vEtcnG {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sz74vEtcnG .item {
  display: flex;
  align-items: center;
  margin-bottom: 2rem;
}
.cid-sz74vEtcnG .icon-box {
  background: #6592e6;
  width: 60px;
  min-width: 60px;
  height: 60px;
  border-radius: 50%;
  margin-right: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-sz74vEtcnG .mbr-iconfont {
  font-size: 2rem;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-sz74vEtcnG .card {
    margin-bottom: 2rem;
  }
  .cid-sz74vEtcnG .card-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-sz74vEtcnG .icon-text {
  color: #5a5959;
}
.cid-sz74vG1VEz {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sz74vG1VEz .item {
  display: flex;
  align-items: center;
  margin-bottom: 2rem;
}
.cid-sz74vG1VEz .icon-box {
  background: #6592e6;
  width: 60px;
  min-width: 60px;
  height: 60px;
  border-radius: 50%;
  margin-right: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-sz74vG1VEz .mbr-iconfont {
  font-size: 2rem;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-sz74vG1VEz .card {
    margin-bottom: 2rem;
  }
  .cid-sz74vG1VEz .card-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-sz74vG1VEz .icon-text {
  color: #5a5959;
}
.cid-sz74vHj364 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sz74vHj364 .item {
  display: flex;
  align-items: center;
  margin-bottom: 2rem;
}
.cid-sz74vHj364 .icon-box {
  background: #6592e6;
  width: 60px;
  min-width: 60px;
  height: 60px;
  border-radius: 50%;
  margin-right: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-sz74vHj364 .mbr-iconfont {
  font-size: 2rem;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-sz74vHj364 .card {
    margin-bottom: 2rem;
  }
  .cid-sz74vHj364 .card-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-sz74vHj364 .icon-text {
  color: #5a5959;
}
.cid-sz74vIHroR {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-sz74vIHroR .content-wrapper {
  background: #fafafa;
}
@media (max-width: 991px) {
  .cid-sz74vIHroR .content-wrapper .row {
    flex-direction: column-reverse;
  }
  .cid-sz74vIHroR .content-wrapper .image-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-sz74vIHroR .content-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-sz74vIHroR .content-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-sz74vIHroR .content-wrapper {
    padding: 5rem 3rem;
  }
  .cid-sz74vIHroR .content-wrapper .text-wrapper {
    padding-right: 2rem;
  }
}
.cid-sz74vIHroR .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-sz74vJXvCx {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #ffffff;
}
.cid-sz74vJXvCx .card-wrapper {
  padding: 4rem;
  background-color: #f9f9f9;
  border-radius: 4px;
}
.cid-sz74vJXvCx .row {
  align-items: flex-start;
}
@media (max-width: 992px) {
  .cid-sz74vJXvCx .card {
    margin-bottom: 2rem !important;
  }
}
@media (max-width: 767px) {
  .cid-sz74vJXvCx .card-wrapper {
    padding: 1rem;
  }
}
.cid-sz74vJXvCx ul {
  list-style: none;
}
.cid-sz74vJXvCx li {
  position: relative;
}
.cid-sz74vJXvCx li:before {
  position: absolute;
  left: -30px;
  top: 50%;
  transform: translateY(-50%);
  content: "\e908";
  font-family: 'Moririse2' !important;
  color: #6592e6;
  font-size: 0.8rem;
}
.cid-sz74vJXvCx .mbr-section-btn {
  width: 100%;
}
.cid-sz74vJXvCx .btn {
  width: 100%;
}
.cid-sz74vLiOhG {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sz74vLiOhG ul {
  list-style: none;
  margin: 0;
  padding-left: 2.5rem;
}
.cid-sz74vLiOhG li {
  position: relative;
  margin-bottom: 1rem;
}
.cid-sz74vLiOhG ul li::before {
  position: absolute;
  left: -1.6rem;
  content: "\2022";
  color: #6592e6;
  font-weight: bold;
  font-size: 2rem;
  width: 1.6rem;
}
.cid-sz74vMs7zu {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sz74vMs7zu .item {
  display: flex;
  align-items: center;
  margin-bottom: 2rem;
}
.cid-sz74vMs7zu .icon-box {
  background: #6592e6;
  width: 60px;
  min-width: 60px;
  height: 60px;
  border-radius: 50%;
  margin-right: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-sz74vMs7zu .mbr-iconfont {
  font-size: 2rem;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-sz74vMs7zu .card {
    margin-bottom: 2rem;
  }
  .cid-sz74vMs7zu .card-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-sz74vMs7zu .icon-text {
  color: #5a5959;
}
.cid-sz74vMs7zu .mbr-text,
.cid-sz74vMs7zu .mbr-section-btn {
  color: #5a5959;
}
.cid-sz74vO1wpF {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-sz74vO1wpF .mbr-text,
.cid-sz74vO1wpF .mbr-section-btn {
  color: #232323;
}
.cid-sz74vO1wpF .btn {
  width: 100%;
}
.cid-sz74vO1wpF .mbr-section-btn {
  margin-bottom: 1.2rem;
}
.cid-sz74vO1wpF H1 {
  text-align: center;
}
.cid-sz74vPnaSr {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f9f9f9;
}
.cid-sz74vPnaSr .mbr-text,
.cid-sz74vPnaSr .mbr-section-btn {
  color: #232323;
}
.cid-sz74vPnaSr .btn {
  width: 100%;
}
.cid-sz74vPnaSr .mbr-section-btn {
  margin-bottom: 1.2rem;
}
.cid-sz74vQGNJx {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-sz74vQGNJx .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
@media (min-width: 992px) {
  .cid-sz74vQGNJx form {
    width: 50%;
  }
}
.cid-sz74vQGNJx form .mbr-section-btn {
  text-align: center;
  width: 100%;
}
.cid-sz74vQGNJx form .mbr-section-btn .btn {
  width: 100%;
}
.cid-sz74vS21Q6 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-sz74vS21Q6 .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
.cid-sz74vS21Q6 form.mbr-form {
  border-radius: 10px;
  background-color: #fafafa;
}
@media (min-width: 992px) {
  .cid-sz74vS21Q6 form.mbr-form {
    padding: 3rem 2rem;
    width: 60%;
  }
}
@media (max-width: 991px) {
  .cid-sz74vS21Q6 form.mbr-form {
    padding: 1rem;
  }
}
.cid-sz74vS21Q6 form.mbr-form .mbr-section-btn {
  text-align: center;
  width: 100%;
}
.cid-sz74vS21Q6 form.mbr-form .mbr-section-btn .btn {
  width: 100%;
}
.cid-sz74vTggzR {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f9f9f9;
}
.cid-sz74vTggzR .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
.cid-sz74vTggzR form .mbr-section-btn {
  text-align: center;
  margin-bottom: 1.2rem;
}
.cid-sz74vTggzR form .mbr-section-btn .btn {
  width: 100%;
  height: 100%;
}
.cid-sz74vUv87g {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-sz74vUv87g .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
.cid-sz74vUv87g form.mbr-form {
  border-radius: 10px;
  background-color: #fafafa;
}
@media (min-width: 992px) {
  .cid-sz74vUv87g form.mbr-form {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-sz74vUv87g form.mbr-form {
    padding: 1rem;
  }
}
.cid-sz74vUv87g form.mbr-form .mbr-section-btn {
  text-align: center;
  margin-bottom: 1.2rem;
}
.cid-sz74vUv87g form.mbr-form .mbr-section-btn .btn {
  width: 100%;
  height: 100%;
}
.cid-sz74vVQQ41 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sz755ZdOYS {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #f9f9f9;
}
.cid-sz755ZdOYS .mbr-section-subtitle {
  color: #6592e6;
}
.cid-sz755ZdOYS .formoid {
  margin: auto;
}
.cid-sz755ZdOYS .form-control {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}
.cid-sz755ZdOYS .input-group-btn .btn {
  padding-top: 1rem;
  padding-bottom: 1rem;
  margin: 0 !important;
}
.cid-sz755ZdOYS a:not([href]):not([tabindex]) {
  color: #fff;
}
.cid-sz755ZdOYS a.btn-white:not([href]):not([tabindex]) {
  color: #333;
}
@media (max-width: 768px) {
  .cid-sz755ZdOYS .mbr-form .row {
    -webkit-flex-direction: column;
    flex-direction: column;
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-sz755ZdOYS .form-group,
  .cid-sz755ZdOYS .input-group-btn,
  .cid-sz755ZdOYS .input-group-btn .btn {
    max-width: 300px;
    width: 100%;
  }
}
@media (min-width: 769px) {
  .cid-sz755ZdOYS .mbr-form .row > * {
    padding: 0 0.5rem;
  }
}
.cid-sz74vWXIja {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-sz74vWXIja .card-wrapper {
  background: #f9f9f9;
  border-radius: 4px;
}
@media (max-width: 767px) {
  .cid-sz74vWXIja .card-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-sz74vWXIja .card-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-sz74vWXIja .card-wrapper {
    padding: 4rem;
  }
}
.cid-sz74vWXIja .mbr-text,
.cid-sz74vWXIja .mbr-section-btn {
  color: #5a5959;
}
.cid-sz74vWXIja .card-title,
.cid-sz74vWXIja .card-box {
  text-align: left;
  color: #232323;
}
.cid-sz74vYkmCA {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-sz74vYkmCA .mbr-section-subtitle {
  letter-spacing: .2rem;
}
.cid-sz74vYkmCA .media-container-column {
  background-color: #f9f9f9;
}
@media (max-width: 767px) {
  .cid-sz74vYkmCA .media-container-column {
    padding: 1rem !important;
  }
}
.cid-sz74vYkmCA .mbr-text,
.cid-sz74vYkmCA .mbr-section-btn {
  color: #767676;
}
.cid-sz74vYkmCA H3 {
  color: #767676;
}
.cid-sz74vYkmCA H1 {
  color: #767676;
}
.cid-sz74vZFWyE {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-sz74vZFWyE .card-wrapper {
  background: #fafafa;
  border-radius: 4px;
}
@media (max-width: 767px) {
  .cid-sz74vZFWyE .card-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-sz74vZFWyE .card-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-sz74vZFWyE .card-wrapper {
    padding: 4rem;
  }
}
.cid-sz74vZFWyE .mbr-text,
.cid-sz74vZFWyE .mbr-section-btn {
  color: #5a5959;
}
.cid-sz74vZFWyE .card-title,
.cid-sz74vZFWyE .card-box {
  text-align: center;
  color: #232323;
}
.cid-sz74w0UMkq {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #ffffff;
}
.cid-sz74w0UMkq .card-wrapper {
  padding: 4rem;
  background-color: #fafafa;
  border-radius: 4px;
}
.cid-sz74w0UMkq .row {
  align-items: flex-start;
}
@media (max-width: 992px) {
  .cid-sz74w0UMkq .card {
    margin-bottom: 2rem !important;
  }
}
@media (max-width: 767px) {
  .cid-sz74w0UMkq .card-wrapper {
    padding: 1rem;
  }
}
.cid-sz74w0UMkq ul {
  list-style: none;
}
.cid-sz74w0UMkq li {
  position: relative;
}
.cid-sz74w0UMkq li:before {
  position: absolute;
  left: -30px;
  top: 50%;
  transform: translateY(-50%);
  content: "\e908";
  font-family: 'Moririse2' !important;
  color: #6592e6;
  font-size: 0.8rem;
}
.cid-sz74w0UMkq .mbr-section-btn {
  width: 100%;
}
.cid-sz74w0UMkq .btn {
  width: 100%;
}
.cid-sz75eNiACe {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-sz75eNiACe h2 {
  margin-bottom: 0;
}
.cid-sz75eNiACe h4 {
  font-weight: 500;
  margin-bottom: 0;
  width: 80%;
}
.cid-sz75eNiACe p {
  color: #767676;
  margin-bottom: 0;
}
.cid-sz75eNiACe .card-wrapper {
  border-top: 1px solid #efefef;
  background-color: #ffffff;
  position: relative;
  justify-content: unset;
}
.cid-sz75eNiACe .card-wrapper .card-box {
  padding: 2rem 1rem;
  width: 100%;
}
.cid-sz75eNiACe .card-wrapper .card-box .top-line {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.cid-sz75eNiACe .card-wrapper .card-box .bottom-line {
  width: 70%;
}
@media (max-width: 767px) {
  .cid-sz75eNiACe .card-wrapper .card-box .bottom-line {
    width: 100%;
  }
  .cid-sz75eNiACe .card-wrapper .card-box .bottom-line p {
    text-align: center;
    margin: 1rem 0 0 0;
  }
}
.cid-sz75UZMFFp {
  padding-top: 0px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-sz75UZMFFp h4 {
  width: 85%;
  font-weight: 500;
  margin-bottom: 0;
}
.cid-sz75UZMFFp p {
  color: #767676;
}
.cid-sz75UZMFFp .card-wrapper {
  border-top: 1px solid #efefef;
  background-color: #ffffff;
  position: relative;
  justify-content: unset;
}
.cid-sz75UZMFFp .card-wrapper .card-box {
  padding: 2rem;
  width: 100%;
}
.cid-sz75UZMFFp .card-wrapper .card-box .top-line {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.cid-sz75UZMFFp .card-wrapper .card-box .bottom-line {
  width: 85%;
}
@media (max-width: 767px) {
  .cid-sz75UZMFFp .card-wrapper .card-box .bottom-line {
    width: 100%;
  }
  .cid-sz75UZMFFp .card-wrapper .card-box .bottom-line p {
    text-align: center;
    margin: 1rem 0 0 0;
  }
}
.cid-sz74w2euqB {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #fafafa;
}
.cid-sz74w2euqB .mbr-iconfont {
  font-size: 1.4rem !important;
  font-family: 'Moririse2' !important;
  color: #6592e6;
  margin-left: 1rem;
}
.cid-sz74w2euqB .panel-group {
  border: none;
}
.cid-sz74w2euqB .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-sz74w2euqB .panel-body,
.cid-sz74w2euqB .card-header {
  padding: 1rem 0;
}
.cid-sz74w2euqB .panel-title-edit {
  color: #232323;
}
.cid-sz74w2euqB .card .card-header {
  background-color: transparent;
  margin-bottom: 0;
}
.cid-sz75h1cGjv {
  padding-top: 60px;
  padding-bottom: 60px;
  position: relative;
  background-color: #fcfafa;
}
.cid-sz75h1cGjv p {
  color: #767676;
}
.cid-sz75h1cGjv .card {
  border-radius: 0px;
  margin-bottom: -1px;
}
.cid-sz75h1cGjv .card .card-header {
  border-radius: 0px;
  border: 0px;
  padding: 0;
}
.cid-sz75h1cGjv .card .card-header a.panel-title {
  margin-bottom: 0;
  margin-top: -1px;
  font-weight: 500;
  font-style: normal;
  display: block;
  text-decoration: none !important;
  line-height: normal;
}
.cid-sz75h1cGjv .card .card-header a.panel-title:focus {
  text-decoration: none !important;
}
.cid-sz75h1cGjv .card .card-header a.panel-title h4 {
  border: 1px solid #dfdfdf;
  padding: 1.3rem 2rem;
  margin-bottom: 0;
}
.cid-sz75h1cGjv .card .card-header a.panel-title h4 .sign {
  padding-right: 1rem;
}
.cid-sz75lE3OHv {
  padding-top: 60px;
  padding-bottom: 60px;
  position: relative;
  background-color: #ffffff;
}
.cid-sz75lE3OHv p {
  color: #767676;
}
.cid-sz75lE3OHv .mbr-section-subtitle {
  color: #767676;
  font-weight: 300;
}
.cid-sz75lE3OHv .toggle-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-sz75lE3OHv .card {
  border-radius: 0px;
  margin-bottom: -1px;
}
.cid-sz75lE3OHv .card .card-header {
  border-radius: 0px;
  border: 0px;
  padding: 0;
}
.cid-sz75lE3OHv .card .card-header a.panel-title {
  margin-bottom: 0;
  margin-top: -1px;
  font-weight: 500;
  font-style: normal;
  display: block;
  text-decoration: none !important;
}
.cid-sz75lE3OHv .card .card-header a.panel-title:focus {
  text-decoration: none !important;
}
.cid-sz75lE3OHv .card .card-header a.panel-title h4 {
  border: 1px solid #dfdfdf;
  padding: 1.3rem 2rem;
  margin-bottom: 0;
}
.cid-sz75lE3OHv .card .card-header a.panel-title h4 .sign {
  padding-right: 1rem;
}
.cid-sz75lE3OHv .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
}
@media (max-width: 991px) {
  .cid-sz75lE3OHv .mbr-figure {
    padding-top: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-sz75lE3OHv .mbr-figure {
    padding-left: 4rem;
  }
}
.cid-sz75nk0oEe {
  padding-top: 60px;
  padding-bottom: 60px;
  position: relative;
  background-color: #f9f9f9;
}
.cid-sz75nk0oEe .card {
  border-radius: 0px;
  margin-bottom: -1px;
}
.cid-sz75nk0oEe .card .card-header {
  border-radius: 0px;
  border: 0px;
  padding: 0;
}
.cid-sz75nk0oEe .card .card-header a.panel-title {
  margin-bottom: 0;
  font-style: normal;
  font-weight: 500;
  display: block;
  text-decoration: none !important;
  margin-top: -1px;
  line-height: normal;
}
.cid-sz75nk0oEe .card .card-header a.panel-title:focus {
  text-decoration: none !important;
}
.cid-sz75nk0oEe .card .card-header a.panel-title h4 {
  padding: 1.3rem 2rem;
  border: 1px solid #dfdfdf;
  margin-bottom: 0;
}
.cid-sz75nk0oEe .card .card-header a.panel-title h4 .sign {
  padding-right: 1rem;
}
.cid-sz75nk0oEe .card .panel-body {
  color: #767676;
}
.cid-sz75omANb3 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #f9f9f9;
}
.cid-sz75omANb3 p {
  color: #767676;
}
.cid-sz75omANb3 .mbr-section-subtitle {
  color: #767676;
}
.cid-sz75omANb3 .accordion-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-sz75omANb3 .panel-group {
  width: 100%;
}
.cid-sz75omANb3 .card {
  border-radius: 0px;
  margin-bottom: -1px;
}
.cid-sz75omANb3 .card .card-header {
  border-radius: 0px;
  border: 0px;
  padding: 0;
}
.cid-sz75omANb3 .card .card-header a.panel-title {
  margin-bottom: 0;
  font-style: normal;
  font-weight: 500;
  display: block;
  text-decoration: none !important;
  margin-top: -1px;
  line-height: normal;
}
.cid-sz75omANb3 .card .card-header a.panel-title:focus {
  text-decoration: none !important;
}
.cid-sz75omANb3 .card .card-header a.panel-title h4 {
  padding: 1.3rem 2rem;
  border: 1px solid #dfdfdf;
  margin-bottom: 0;
}
.cid-sz75omANb3 .card .card-header a.panel-title h4 .sign {
  padding-right: 1rem;
}
.cid-sz75omANb3 .mbr-figure {
  -webkit-align-self: flex-start;
  align-self: flex-start;
  padding-left: 4rem;
}
@media (max-width: 991px) {
  .cid-sz75omANb3 .mbr-figure {
    padding-right: 0;
    padding-left: 0;
    padding-top: 2rem;
  }
}
.cid-sz75xp2JPT {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-sz75xp2JPT .mbr-text {
  color: #767676;
}
.cid-sz75xp2JPT .mbr-text p {
  background: #ffffff;
}
.cid-sz74w3QGdp {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #f9f9f9;
}
.cid-sz74w3QGdp .card .card-header {
  background-color: transparent;
  margin-bottom: 0;
}
.cid-sz74w3QGdp .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-sz74w3QGdp .mbr-iconfont {
  padding-left: 1rem;
  font-family: 'Moririse2' !important;
  font-size: 1.4rem !important;
  color: #6592e6;
}
.cid-sz74w3QGdp .panel-body,
.cid-sz74w3QGdp .card-header {
  padding: 1rem 0;
}
.cid-sz74w3QGdp .panel-title-edit {
  color: #000000;
}
.cid-sz75zkkoB2 {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #ffffff;
  background: linear-gradient(45deg, #ffffff, #cebfaf);
}
.cid-sz75zkkoB2 .mbr-section-subtitle {
  color: #767676;
}
.cid-sz75zkkoB2 .btn {
  margin: 0 0 .5rem 0;
}
.cid-sz75Aylngj {
  padding-top: 90px;
  padding-bottom: 90px;
  background: linear-gradient(45deg, #dbd4b8, #25aab2);
}
.cid-sz75Aylngj .btn {
  margin: 0 0 .5rem 0;
}
.cid-sz75CwVC3G {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #efefef;
}
.cid-sz75CwVC3G .card {
  align-self: stretch;
}
.cid-sz75CwVC3G .card-box {
  height: 100%;
  background-color: #fcfafa;
  padding: 2rem;
}
.cid-sz75CwVC3G h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-sz75CwVC3G p {
  color: #767676;
  text-align: left;
}
.cid-sz75CwVC3G .card-wrapper {
  position: relative;
  box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0);
  transition: box-shadow 0.3s;
}
.cid-sz75CwVC3G .card-wrapper:hover {
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s;
}
.cid-sz75CwVC3G .card-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
}
.cid-sz75jyOqsC {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #f9f9f9;
}
.cid-sz75jyOqsC .mbr-section-subtitle {
  color: #767676;
}
.cid-sz75jyOqsC .container-table {
  margin: 0 auto;
}
.cid-sz75jyOqsC .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-sz75jyOqsC .dataTables_wrapper {
  display: block;
}
.cid-sz75jyOqsC .dataTables_wrapper .search {
  margin-bottom: .5rem;
}
.cid-sz75jyOqsC .dataTables_wrapper .table {
  overflow-x: auto;
}
.cid-sz75jyOqsC table {
  width: 100% !important;
  margin-top: 6px;
  border: 1px solid #cccccc;
  margin-bottom: 0;
}
.cid-sz75jyOqsC table th {
  border-top: none;
  transition: all .2s;
  border-bottom: none;
}
.cid-sz75jyOqsC table th:hover {
  background: #cccccc;
  color: #000000;
}
.cid-sz75jyOqsC table td {
  border-top: 1px solid #cccccc;
}
.cid-sz75jyOqsC table.table {
  background: #ffffff;
}
.cid-sz75jyOqsC .dataTables_filter {
  text-align: right;
  margin-bottom: .5rem;
}
.cid-sz75jyOqsC .dataTables_filter label {
  display: inline;
  white-space: normal !important;
}
.cid-sz75jyOqsC .dataTables_filter input {
  display: inline;
  width: auto;
  margin-left: .5rem;
  border-radius: 100px;
  padding-left: 1rem;
}
.cid-sz75jyOqsC .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
  white-space: normal !important;
}
@media (max-width: 992px) {
  .cid-sz75jyOqsC .dataTables_filter {
    text-align: center;
  }
}
@media (max-width: 350px) {
  .cid-sz75jyOqsC .dataTables_filter {
    text-align: center;
  }
  .cid-sz75jyOqsC .dataTables_filter input {
    width: 100% !important;
    margin-left: 0 !important;
  }
}
.cid-sz74w5wETC {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-sz74w5wETC .timeline-element {
  position: relative;
}
.cid-sz74w5wETC .timelines-container {
  display: flex;
  flex-wrap: wrap;
}
.cid-sz74w5wETC .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-sz74w5wETC .mbr-section-title,
.cid-sz74w5wETC .mbr-section-subtitle,
.cid-sz74w5wETC .timeline-date {
  text-align: center;
}
.cid-sz74w5wETC .iconBackground {
  position: absolute;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 2px solid #6592e6;
  margin-left: -9px;
}
@media (max-width: 767px) {
  .cid-sz74w5wETC .iconBackground {
    left: 15px;
    top: 30px;
  }
}
@media (min-width: 768px) {
  .cid-sz74w5wETC .iconBackground {
    top: 70px;
    left: 50%;
  }
}
.cid-sz74w5wETC .row:after {
  content: "";
  position: absolute;
  background-color: #6592e6;
  width: 2px;
}
@media (max-width: 767px) {
  .cid-sz74w5wETC .row:after {
    height: calc(100% + 30px);
    top: 50px;
    left: 15px;
  }
}
@media (min-width: 768px) {
  .cid-sz74w5wETC .row:after {
    height: calc(100% - 20px);
    top: 90px;
    left: 50%;
  }
}
@media (max-width: 767px) {
  .cid-sz74w5wETC .timeline-date-wrapper,
  .cid-sz74w5wETC .timeline-text-wrapper,
  .cid-sz74w5wETC .image-wrapper {
    padding: 0rem;
    padding-left: 2rem;
  }
  .cid-sz74w5wETC .mbr-timeline-date {
    text-align: left !important;
  }
  .cid-sz74w5wETC .mbr-timeline-title {
    text-align: left;
    margin-top: 1rem;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-sz74w5wETC .timeline-date-wrapper,
  .cid-sz74w5wETC .timeline-text-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-sz74w5wETC .timeline-date-wrapper,
  .cid-sz74w5wETC .timeline-text-wrapper,
  .cid-sz74w5wETC .image-wrapper {
    padding: 2rem;
  }
}
.cid-sz75G70iC6 {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-sz75G70iC6 h3 {
  text-align: center;
  font-weight: 300;
}
.cid-sz75G70iC6 .progress {
  width: 100%;
}
.cid-sz75G70iC6 .title-wrap {
  display: flex;
  justify-content: space-between;
  -webkit-justify-content: space-between;
}
.cid-sz75G70iC6 progress {
  height: 8px;
}
.cid-sz75G70iC6 .progressbar-number {
  display: inline-block;
  word-break: normal;
}
.cid-sz75G70iC6 .progress-primary {
  background: rgba(206, 206, 206, 0.4);
  border: none;
  outline: none;
}
.cid-sz75G70iC6 .progress-primary::-webkit-progress-bar {
  background: rgba(206, 206, 206, 0.4);
}
.cid-sz75G70iC6 .mbr-section-subtitle {
  color: #767676;
}
.cid-sz75G70iC6 .section-content-title {
  font-weight: 500;
}
.cid-sz75G70iC6 .progress_value {
  position: relative;
}
.cid-sz75G70iC6 .progress1 .progressbar-number:before,
.cid-sz75G70iC6 .progress2 .progressbar-number:before,
.cid-sz75G70iC6 .progress3 .progressbar-number:before,
.cid-sz75G70iC6 .progress4 .progressbar-number:before,
.cid-sz75G70iC6 .progress5 .progressbar-number:before {
  position: absolute;
  right: 15px;
  top: 0;
}
.cid-sz75G70iC6 progress[value]::-webkit-progress-bar {
  background: rgba(206, 206, 206, 0.4);
}
.cid-sz75G70iC6 progress::-webkit-progress-value {
  background: #149dcc;
}
.cid-sz75G70iC6 progress[value]::-moz-progress-bar {
  background: #149dcc;
}
.cid-sz75G70iC6 progress::-ms-fill {
  background: #149dcc;
}
.cid-sz75G70iC6 .progress1 .progressbar-number:before {
  content: '100';
}
.cid-sz75G70iC6 .progress2 .progressbar-number:before {
  content: '90';
}
.cid-sz75G70iC6 .progress3 .progressbar-number:before {
  content: '80';
}
.cid-sz75G70iC6 .progress4 .progressbar-number:before {
  content: '70';
}
.cid-sz75G70iC6 .progress5 .progressbar-number:before {
  content: '60';
}
@media (min-width: 768px) {
  .cid-sz75G70iC6 .text-elements {
    padding-right: 3rem;
  }
  .cid-sz75G70iC6 .progress_elements {
    padding-left: 3rem;
  }
}
.cid-sz75HeaiQP {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-sz75HeaiQP .progress {
  width: 100%;
}
.cid-sz75HeaiQP progress {
  height: 8px;
}
.cid-sz75HeaiQP h3 {
  text-align: center;
  font-weight: 300;
}
.cid-sz75HeaiQP .mbr-section-subtitle {
  color: #767676;
}
.cid-sz75HeaiQP .progress_value {
  position: relative;
}
.cid-sz75HeaiQP .progress_elements {
  margin: 0 auto;
}
.cid-sz75HeaiQP .title-wrap {
  display: flex;
  justify-content: space-between;
  -webkit-justify-content: space-between;
}
.cid-sz75HeaiQP .progress1 .progressbar-number:before,
.cid-sz75HeaiQP .progress2 .progressbar-number:before,
.cid-sz75HeaiQP .progress3 .progressbar-number:before,
.cid-sz75HeaiQP .progress4 .progressbar-number:before {
  position: absolute;
  right: 15px;
  top: 0;
}
.cid-sz75HeaiQP progress[value]::-webkit-progress-bar {
  background: rgba(206, 206, 206, 0.4);
}
.cid-sz75HeaiQP progress::-webkit-progress-value {
  background: #149dcc;
}
.cid-sz75HeaiQP progress[value]::-moz-progress-bar {
  background: #149dcc;
}
.cid-sz75HeaiQP progress::-ms-fill {
  background: #149dcc;
}
.cid-sz75HeaiQP .progress1 .progressbar-number:before {
  content: '70';
}
.cid-sz75HeaiQP .progress2 .progressbar-number:before {
  content: '80';
}
.cid-sz75HeaiQP .progress3 .progressbar-number:before {
  content: '90';
}
.cid-sz75HeaiQP .progress4 .progressbar-number:before {
  content: '100';
}
.cid-sz75HeaiQP .progress-primary {
  background: rgba(206, 206, 206, 0.4);
  border: none;
  outline: none;
}
.cid-sz75HeaiQP .progress-primary::-webkit-progress-bar {
  background: rgba(206, 206, 206, 0.4);
}
.cid-sz75HeaiQP .progress_value span {
  padding-left: 30px;
}
.cid-sz75HeaiQP .progressbar-number {
  word-break: normal;
}
.cid-sz75IDiIfl {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-sz75IDiIfl h3 {
  text-align: center;
  font-weight: 300;
}
.cid-sz75IDiIfl .wrap {
  width: 150px;
  height: 150px;
  margin: 0 auto;
}
.cid-sz75IDiIfl .mbr-section-subtitle {
  color: #767676;
}
.cid-sz75IDiIfl .card {
  -webkit-flex-basis: 100%;
  flex-basis: 100%;
  word-wrap: break-word;
}
.cid-sz75IDiIfl ellipse {
  stroke: rgba(206, 206, 206, 0.4);
}
.cid-sz75IDiIfl path {
  stroke: #149dcc;
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-sz75IDiIfl .card {
    -webkit-flex-basis: 33%;
    flex-basis: 33%;
  }
}
.cid-sz74w8vXK5 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #fafafa;
}
.cid-sz74w8vXK5 .socicon-bg-facebook {
  background: #3e5b98;
  color: #ffffff;
}
.cid-sz74w8vXK5 .socicon-bg-twitter {
  background: #4da7de;
  color: #ffffff;
}
.cid-sz74w8vXK5 .socicon-bg-googleplus {
  background: #dd4b39;
  color: #ffffff;
}
.cid-sz74w8vXK5 .socicon-bg-vkontakte {
  background: #5a7fa6;
  color: #ffffff;
}
.cid-sz74w8vXK5 .socicon-bg-odnoklassniki {
  background: #f48420;
  color: #ffffff;
}
.cid-sz74w8vXK5 .socicon-bg-pinterest {
  background: #c92619;
  color: #ffffff;
}
.cid-sz74w8vXK5 .socicon-bg-mail {
  background: #134785;
  color: #ffffff;
}
.cid-sz74w8vXK5 .btn-social {
  font-size: 20px;
  border-radius: 50%;
  padding: 0;
  width: 44px;
  height: 44px;
  line-height: 44px;
  text-align: center;
  position: relative;
  cursor: pointer;
  border: none !important;
}
.cid-sz74w8vXK5 .btn-social i {
  top: 0;
  line-height: 44px;
  width: 44px;
}
.cid-sz74w8vXK5 .btn-social + .btn {
  margin-left: .1rem;
}
.cid-sz74w8vXK5 [class^="socicon-"]:before,
.cid-sz74w8vXK5 [class*=" socicon-"]:before {
  line-height: 44px;
}
@media (max-width: 767px) {
  .cid-sz74w8vXK5 .btn {
    font-size: 20px !important;
  }
}
.cid-sz74wa17lq {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sz74wa17lq .image-wrap img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-sz74wa17lq .image-wrap img {
    display: block;
    margin: auto;
    width: 50%;
  }
}
.cid-sz74wboT9d {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #234d8b;
}
.cid-sIgiJHNhtZ {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-sIgiJHNhtZ nav.navbar {
  position: fixed;
}
.cid-sIgiJHNhtZ .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-sIgiJHNhtZ .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sIgiJHNhtZ .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sIgiJHNhtZ .dropdown-item:hover,
.cid-sIgiJHNhtZ .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-sIgiJHNhtZ .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sIgiJHNhtZ .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sIgiJHNhtZ .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sIgiJHNhtZ .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sIgiJHNhtZ .nav-link {
  position: relative;
}
.cid-sIgiJHNhtZ .container {
  display: flex;
  margin: auto;
}
.cid-sIgiJHNhtZ .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sIgiJHNhtZ .dropdown-menu,
.cid-sIgiJHNhtZ .navbar.opened {
  background: #234d8b !important;
}
.cid-sIgiJHNhtZ .nav-item:focus,
.cid-sIgiJHNhtZ .nav-link:focus {
  outline: none;
}
.cid-sIgiJHNhtZ .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sIgiJHNhtZ .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sIgiJHNhtZ .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sIgiJHNhtZ .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sIgiJHNhtZ .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sIgiJHNhtZ .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sIgiJHNhtZ .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #234d8b;
}
.cid-sIgiJHNhtZ .navbar.opened {
  transition: all 0.3s;
}
.cid-sIgiJHNhtZ .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sIgiJHNhtZ .navbar .navbar-logo img {
  width: auto;
}
.cid-sIgiJHNhtZ .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sIgiJHNhtZ .navbar.collapsed {
  justify-content: center;
}
.cid-sIgiJHNhtZ .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sIgiJHNhtZ .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sIgiJHNhtZ .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-sIgiJHNhtZ .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sIgiJHNhtZ .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sIgiJHNhtZ .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-sIgiJHNhtZ .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sIgiJHNhtZ .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sIgiJHNhtZ .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sIgiJHNhtZ .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sIgiJHNhtZ .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sIgiJHNhtZ .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sIgiJHNhtZ .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sIgiJHNhtZ .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-sIgiJHNhtZ .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sIgiJHNhtZ .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sIgiJHNhtZ .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sIgiJHNhtZ .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sIgiJHNhtZ .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sIgiJHNhtZ .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sIgiJHNhtZ .navbar.navbar-short {
  min-height: 60px;
}
.cid-sIgiJHNhtZ .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sIgiJHNhtZ .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sIgiJHNhtZ .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-sIgiJHNhtZ .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sIgiJHNhtZ .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sIgiJHNhtZ .dropdown-item.active,
.cid-sIgiJHNhtZ .dropdown-item:active {
  background-color: transparent;
}
.cid-sIgiJHNhtZ .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sIgiJHNhtZ .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sIgiJHNhtZ .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sIgiJHNhtZ .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #234d8b;
}
.cid-sIgiJHNhtZ .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sIgiJHNhtZ .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sIgiJHNhtZ ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sIgiJHNhtZ .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sIgiJHNhtZ button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sIgiJHNhtZ button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-sIgiJHNhtZ button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sIgiJHNhtZ button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sIgiJHNhtZ button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sIgiJHNhtZ button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sIgiJHNhtZ nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sIgiJHNhtZ nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sIgiJHNhtZ nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sIgiJHNhtZ nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sIgiJHNhtZ .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-sIgiJHNhtZ a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sIgiJHNhtZ .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-sIgiJHNhtZ .navbar {
    height: 70px;
  }
  .cid-sIgiJHNhtZ .navbar.opened {
    height: auto;
  }
  .cid-sIgiJHNhtZ .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sIgiJJsMoy {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sIgiJJsMoy .item {
  padding-bottom: 2rem;
}
.cid-sIgiJJsMoy .item-wrapper {
  position: relative;
}
.cid-sIgiJJsMoy .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-sIgiJJsMoy .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-sIgiJJsMoy .carousel-control,
.cid-sIgiJJsMoy .close {
  background: #1b1b1b;
}
.cid-sIgiJJsMoy .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-sIgiJJsMoy .carousel-control-prev span {
  margin-right: 5px;
}
.cid-sIgiJJsMoy .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-sIgiJJsMoy .carousel-control-next span {
  margin-left: 5px;
}
.cid-sIgiJJsMoy .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-sIgiJJsMoy .close::before {
  content: '\e91a';
}
.cid-sIgiJJsMoy .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-sIgiJJsMoy .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-sIgiJJsMoy .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sIgiJJsMoy .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-sIgiJJsMoy .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-sIgiJJsMoy .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-sIgiJJsMoy .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-sIgiJJsMoy .carousel-indicators li.active,
.cid-sIgiJJsMoy .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-sIgiJJsMoy .carousel-indicators li::after,
.cid-sIgiJJsMoy .carousel-indicators li::before {
  content: none;
}
.cid-sIgiJJsMoy .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-sIgiJJsMoy .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-sIgiJJsMoy .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-sIgiJJsMoy .carousel-indicators {
    display: none;
  }
}
.cid-sIgiJJsMoy .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-sIgiJJsMoy .carousel-inner > .active {
  display: block;
}
.cid-sIgiJJsMoy .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sIgiJJsMoy .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-sIgiJJsMoy .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-sIgiJJsMoy .carousel-control,
  .cid-sIgiJJsMoy .carousel-indicators,
  .cid-sIgiJJsMoy .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-sIgiJJsMoy .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-sIgiJJsMoy .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-sIgiJJsMoy .carousel-indicators .active,
.cid-sIgiJJsMoy .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-sIgiJJsMoy .carousel-indicators .active {
  background: #fff;
}
.cid-sIgiJJsMoy .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-sIgiJJsMoy .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-sIgiJJsMoy .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-sIgiJJsMoy .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-sIgiJJsMoy .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-sIgiJJsMoy .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-sIgiJJsMoy .carousel {
  width: 100%;
}
.cid-sIgiJJsMoy .modal-backdrop.in {
  opacity: 0.8;
}
.cid-sIgiJJsMoy .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-sIgiJJsMoy .modal.fade .modal-dialog,
.cid-sIgiJJsMoy .modal.in .modal-dialog {
  transform: none;
}
.cid-sIgiJJsMoy .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-sIgiJJsMoy H6 {
  text-align: right;
}
.cid-sIgiJJsMoy H3 {
  text-align: center;
}
.cid-sIgiJL1iTu {
  padding-top: 0px;
  padding-bottom: 0px;
  background: linear-gradient(45deg, #f9f9f9, #fafafa);
}
.cid-sIgiJL1iTu .mbr-section-subtitle {
  font-style: italic;
  letter-spacing: 1rem;
}
.cid-sIgiJL1iTu H3 {
  color: #232323;
  text-align: center;
}
.cid-sIgiJLQjIk {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #132c53;
}
.cid-sIgiJLQjIk .mbr-text,
.cid-sIgiJLQjIk .mbr-section-btn {
  color: #6592e6;
}
.cid-sIgiJLQjIk .mbr-section-title {
  text-align: center;
  color: #ffffff;
}
.cid-sIgiJLQjIk .mbr-section-subtitle {
  color: #ffffff;
}
.cid-sIgiJMO02j {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #f9f9f9;
}
.cid-sIgiJMO02j .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
.cid-sIgiJMO02j form .mbr-section-btn {
  text-align: center;
  width: 100%;
}
.cid-sIgiJMO02j form .mbr-section-btn .btn {
  display: inline-flex;
}
@media (max-width: 991px) {
  .cid-sIgiJMO02j form .mbr-section-btn .btn {
    width: 100%;
  }
}
.cid-sIgiJSOSBx {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sIgiJSOSBx .item {
  padding-bottom: 2rem;
}
.cid-sIgiJSOSBx .item-wrapper {
  position: relative;
}
.cid-sIgiJSOSBx .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-sIgiJSOSBx .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-sIgiJSOSBx .carousel-control,
.cid-sIgiJSOSBx .close {
  background: #1b1b1b;
}
.cid-sIgiJSOSBx .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-sIgiJSOSBx .carousel-control-prev span {
  margin-right: 5px;
}
.cid-sIgiJSOSBx .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-sIgiJSOSBx .carousel-control-next span {
  margin-left: 5px;
}
.cid-sIgiJSOSBx .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-sIgiJSOSBx .close::before {
  content: '\e91a';
}
.cid-sIgiJSOSBx .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-sIgiJSOSBx .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-sIgiJSOSBx .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sIgiJSOSBx .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-sIgiJSOSBx .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-sIgiJSOSBx .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-sIgiJSOSBx .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-sIgiJSOSBx .carousel-indicators li.active,
.cid-sIgiJSOSBx .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-sIgiJSOSBx .carousel-indicators li::after,
.cid-sIgiJSOSBx .carousel-indicators li::before {
  content: none;
}
.cid-sIgiJSOSBx .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-sIgiJSOSBx .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-sIgiJSOSBx .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-sIgiJSOSBx .carousel-indicators {
    display: none;
  }
}
.cid-sIgiJSOSBx .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-sIgiJSOSBx .carousel-inner > .active {
  display: block;
}
.cid-sIgiJSOSBx .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sIgiJSOSBx .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-sIgiJSOSBx .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-sIgiJSOSBx .carousel-control,
  .cid-sIgiJSOSBx .carousel-indicators,
  .cid-sIgiJSOSBx .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-sIgiJSOSBx .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-sIgiJSOSBx .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-sIgiJSOSBx .carousel-indicators .active,
.cid-sIgiJSOSBx .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-sIgiJSOSBx .carousel-indicators .active {
  background: #fff;
}
.cid-sIgiJSOSBx .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-sIgiJSOSBx .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-sIgiJSOSBx .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-sIgiJSOSBx .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-sIgiJSOSBx .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-sIgiJSOSBx .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-sIgiJSOSBx .carousel {
  width: 100%;
}
.cid-sIgiJSOSBx .modal-backdrop.in {
  opacity: 0.8;
}
.cid-sIgiJSOSBx .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-sIgiJSOSBx .modal.fade .modal-dialog,
.cid-sIgiJSOSBx .modal.in .modal-dialog {
  transform: none;
}
.cid-sIgiJSOSBx .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-sIgiJSOSBx H6 {
  text-align: right;
}
.cid-sIgiJSOSBx H3 {
  text-align: center;
}
.cid-sIVXSN6HEM {
  padding-top: 0px;
  padding-bottom: 0px;
  background: linear-gradient(45deg, #f9f9f9, #f9f9f9);
}
.cid-sIVXSN6HEM .mbr-section-subtitle {
  font-style: italic;
  letter-spacing: 1rem;
}
.cid-sIVXSN6HEM .mbr-section-title {
  text-align: center;
  color: #5a5959;
}
.cid-sIVXSN6HEM H3 {
  text-align: center;
  color: #232323;
}
.cid-sIVXSN6HEM .mbr-text,
.cid-sIVXSN6HEM .mbr-section-btn {
  color: #5a5959;
  text-align: center;
}
.cid-sIgiJTWbBZ {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #132c53;
}
.cid-sIgiJTWbBZ .mbr-text,
.cid-sIgiJTWbBZ .mbr-section-btn {
  color: #4479d9;
}
.cid-sIgKCAk9xi {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #f4f4f4;
}
.cid-sIgKCAk9xi .mbr-section-subtitle {
  color: #232323;
}
.cid-sIgKCAk9xi .mbr-text {
  color: #5a5959;
}
.cid-sIgL6uAp9P {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-sIgL6uAp9P .mbr-section-subtitle {
  color: #232323;
}
.cid-sIgL6uAp9P .mbr-text {
  color: #5a5959;
}
.cid-sIgLqLh6TM {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #f4f4f4;
}
.cid-sIgLqLh6TM .mbr-section-subtitle {
  color: #232323;
}
.cid-sIgLqLh6TM .mbr-text {
  color: #5a5959;
}
.cid-sIjynuy8Q4 {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-sIjynuy8Q4 .mbr-section-subtitle {
  color: #232323;
}
.cid-sIjynuy8Q4 .mbr-text {
  color: #5a5959;
}
.cid-sIjzOU7cRD {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #f4f4f4;
}
.cid-sIjzOU7cRD .mbr-section-subtitle {
  color: #232323;
}
.cid-sIjzOU7cRD .mbr-text {
  color: #5a5959;
}
.cid-sIjDcqKh7h {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-sIjDcqKh7h .mbr-section-subtitle {
  color: #232323;
}
.cid-sIjDcqKh7h .mbr-text {
  color: #5a5959;
}
.cid-sIm1sroAfl {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-sIm1sroAfl .image-wrap img {
	display: block;
	margin: auto;
	width: 30%;
}
@media (min-width: 992px) {
  .cid-sIm1sroAfl .image-wrap img {
    width: 10%;
  }
}
.cid-sIm1sroAfl .mbr-text,
.cid-sIm1sroAfl .mbr-section-btn {
  text-align: left;
}
.cid-sIgiJXgTcq {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #132c53;
}
.cid-sIgiJXgTcq .mbr-section-subtitle {
  color: #ffffff;
}
.cid-sIgiJXgTcq .mbr-text,
.cid-sIgiJXgTcq .mbr-section-btn {
  color: #4479d9;
}
.cid-sIgiJYbKiM {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #fafafa;
}
.cid-sIgiJYbKiM .card-wrapper {
  display: flex;
}
@media (max-width: 991px) {
  .cid-sIgiJYbKiM .card-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-sIgiJYbKiM .mbr-iconfont {
  font-size: 2rem;
  color: #6592e6;
  padding-right: 1.5rem;
}
.cid-sIgiJYbKiM .card-text {
  color: #5a5959;
}
.cid-sIgiJYbKiM .card-title {
  color: #111111;
}
.cid-sIgiJZwnb0 {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sIgiJZwnb0 .image-wrap img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-sIgiJZwnb0 .image-wrap img {
    display: block;
    margin: auto;
    width: 40%;
  }
}
.cid-sIgiJZwnb0 .mbr-text,
.cid-sIgiJZwnb0 .mbr-section-btn {
  color: #5a5959;
}
.cid-sIgiK0w9zG {
  padding-top: 0px;
  padding-bottom: 0px;
  background: linear-gradient(45deg, #f9f9f9, #f9f9f9);
}
.cid-sIgiK0w9zG .mbr-section-subtitle {
  font-style: italic;
  letter-spacing: 1rem;
}
.cid-sIgiK0w9zG .mbr-section-title {
  text-align: center;
  color: #5a5959;
}
.cid-sIgiK0w9zG H3 {
  text-align: center;
  color: #232323;
}
.cid-sIgiK0w9zG .mbr-text,
.cid-sIgiK0w9zG .mbr-section-btn {
  color: #5a5959;
  text-align: center;
}
.cid-sIgiK1zHDT {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #132c53;
}
.cid-sIgiK1zHDT .mbr-text,
.cid-sIgiK1zHDT .mbr-section-btn {
  color: #6592e6;
}
.cid-sIgiK1zHDT .mbr-section-title {
  text-align: center;
  color: #ffffff;
}
.cid-sIgiK1zHDT .mbr-section-subtitle {
  color: #ffffff;
}
.cid-sIgiK2wEbw {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sIgiK2wEbw .item {
  display: flex;
  align-items: center;
  margin-bottom: 2rem;
}
.cid-sIgiK2wEbw .icon-box {
  background: #6592e6;
  width: 60px;
  min-width: 60px;
  height: 60px;
  border-radius: 50%;
  margin-right: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-sIgiK2wEbw .mbr-iconfont {
  font-size: 2rem;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-sIgiK2wEbw .card {
    margin-bottom: 2rem;
  }
  .cid-sIgiK2wEbw .card-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-sIgiK2wEbw .icon-text {
  color: #5a5959;
}
.cid-sIgiK3GL6V {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sIgiK3GL6V .item {
  display: flex;
  align-items: center;
  margin-bottom: 2rem;
}
.cid-sIgiK3GL6V .icon-box {
  background: #6592e6;
  width: 60px;
  min-width: 60px;
  height: 60px;
  border-radius: 50%;
  margin-right: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-sIgiK3GL6V .mbr-iconfont {
  font-size: 2rem;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-sIgiK3GL6V .card {
    margin-bottom: 2rem;
  }
  .cid-sIgiK3GL6V .card-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-sIgiK3GL6V .icon-text {
  color: #5a5959;
}
.cid-sIgiK4PSz4 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sIgiK4PSz4 .item {
  display: flex;
  align-items: center;
  margin-bottom: 2rem;
}
.cid-sIgiK4PSz4 .icon-box {
  background: #6592e6;
  width: 60px;
  min-width: 60px;
  height: 60px;
  border-radius: 50%;
  margin-right: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-sIgiK4PSz4 .mbr-iconfont {
  font-size: 2rem;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-sIgiK4PSz4 .card {
    margin-bottom: 2rem;
  }
  .cid-sIgiK4PSz4 .card-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-sIgiK4PSz4 .icon-text {
  color: #5a5959;
}
.cid-sIgiK66GyM {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sIgiK66GyM .item {
  display: flex;
  align-items: center;
  margin-bottom: 2rem;
}
.cid-sIgiK66GyM .icon-box {
  background: #6592e6;
  width: 60px;
  min-width: 60px;
  height: 60px;
  border-radius: 50%;
  margin-right: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-sIgiK66GyM .mbr-iconfont {
  font-size: 2rem;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-sIgiK66GyM .card {
    margin-bottom: 2rem;
  }
  .cid-sIgiK66GyM .card-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-sIgiK66GyM .icon-text {
  color: #5a5959;
}
.cid-sIgiK7erbc {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sIgiK7erbc .item {
  display: flex;
  align-items: center;
  margin-bottom: 2rem;
}
.cid-sIgiK7erbc .icon-box {
  background: #6592e6;
  width: 60px;
  min-width: 60px;
  height: 60px;
  border-radius: 50%;
  margin-right: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-sIgiK7erbc .mbr-iconfont {
  font-size: 2rem;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-sIgiK7erbc .card {
    margin-bottom: 2rem;
  }
  .cid-sIgiK7erbc .card-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-sIgiK7erbc .icon-text {
  color: #5a5959;
}
.cid-sIgiK8pDaW {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sIgiK8pDaW .item {
  display: flex;
  align-items: center;
  margin-bottom: 2rem;
}
.cid-sIgiK8pDaW .icon-box {
  background: #6592e6;
  width: 60px;
  min-width: 60px;
  height: 60px;
  border-radius: 50%;
  margin-right: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-sIgiK8pDaW .mbr-iconfont {
  font-size: 2rem;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-sIgiK8pDaW .card {
    margin-bottom: 2rem;
  }
  .cid-sIgiK8pDaW .card-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-sIgiK8pDaW .icon-text {
  color: #5a5959;
}
.cid-sIgiK9EeJY {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sIgiK9EeJY .item {
  display: flex;
  align-items: center;
  margin-bottom: 2rem;
}
.cid-sIgiK9EeJY .icon-box {
  background: #6592e6;
  width: 60px;
  min-width: 60px;
  height: 60px;
  border-radius: 50%;
  margin-right: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-sIgiK9EeJY .mbr-iconfont {
  font-size: 2rem;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-sIgiK9EeJY .card {
    margin-bottom: 2rem;
  }
  .cid-sIgiK9EeJY .card-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-sIgiK9EeJY .icon-text {
  color: #5a5959;
}
.cid-sIgiKb3q7B {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #fafafa;
}
.cid-sIgiKb3q7B .socicon-bg-facebook {
  background: #3e5b98;
  color: #ffffff;
}
.cid-sIgiKb3q7B .socicon-bg-twitter {
  background: #4da7de;
  color: #ffffff;
}
.cid-sIgiKb3q7B .socicon-bg-googleplus {
  background: #dd4b39;
  color: #ffffff;
}
.cid-sIgiKb3q7B .socicon-bg-vkontakte {
  background: #5a7fa6;
  color: #ffffff;
}
.cid-sIgiKb3q7B .socicon-bg-odnoklassniki {
  background: #f48420;
  color: #ffffff;
}
.cid-sIgiKb3q7B .socicon-bg-pinterest {
  background: #c92619;
  color: #ffffff;
}
.cid-sIgiKb3q7B .socicon-bg-mail {
  background: #134785;
  color: #ffffff;
}
.cid-sIgiKb3q7B .btn-social {
  font-size: 20px;
  border-radius: 50%;
  padding: 0;
  width: 44px;
  height: 44px;
  line-height: 44px;
  text-align: center;
  position: relative;
  cursor: pointer;
  border: none !important;
}
.cid-sIgiKb3q7B .btn-social i {
  top: 0;
  line-height: 44px;
  width: 44px;
}
.cid-sIgiKb3q7B .btn-social + .btn {
  margin-left: .1rem;
}
.cid-sIgiKb3q7B [class^="socicon-"]:before,
.cid-sIgiKb3q7B [class*=" socicon-"]:before {
  line-height: 44px;
}
@media (max-width: 767px) {
  .cid-sIgiKb3q7B .btn {
    font-size: 20px !important;
  }
}
.cid-sIgiKc39Rh {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sIgiKc39Rh .image-wrap img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-sIgiKc39Rh .image-wrap img {
    display: block;
    margin: auto;
    width: 50%;
  }
}
.cid-sIgiKd8abq {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #234d8b;
}
.cid-sxVQq8q1Dl {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-sxVQq8q1Dl nav.navbar {
  position: fixed;
}
.cid-sxVQq8q1Dl .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-sxVQq8q1Dl .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sxVQq8q1Dl .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sxVQq8q1Dl .dropdown-item:hover,
.cid-sxVQq8q1Dl .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-sxVQq8q1Dl .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sxVQq8q1Dl .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sxVQq8q1Dl .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sxVQq8q1Dl .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sxVQq8q1Dl .nav-link {
  position: relative;
}
.cid-sxVQq8q1Dl .container {
  display: flex;
  margin: auto;
}
.cid-sxVQq8q1Dl .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sxVQq8q1Dl .dropdown-menu,
.cid-sxVQq8q1Dl .navbar.opened {
  background: #234d8b !important;
}
.cid-sxVQq8q1Dl .nav-item:focus,
.cid-sxVQq8q1Dl .nav-link:focus {
  outline: none;
}
.cid-sxVQq8q1Dl .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sxVQq8q1Dl .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sxVQq8q1Dl .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sxVQq8q1Dl .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sxVQq8q1Dl .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sxVQq8q1Dl .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sxVQq8q1Dl .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #234d8b;
}
.cid-sxVQq8q1Dl .navbar.opened {
  transition: all 0.3s;
}
.cid-sxVQq8q1Dl .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sxVQq8q1Dl .navbar .navbar-logo img {
  width: auto;
}
.cid-sxVQq8q1Dl .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sxVQq8q1Dl .navbar.collapsed {
  justify-content: center;
}
.cid-sxVQq8q1Dl .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sxVQq8q1Dl .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sxVQq8q1Dl .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-sxVQq8q1Dl .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sxVQq8q1Dl .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sxVQq8q1Dl .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-sxVQq8q1Dl .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sxVQq8q1Dl .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sxVQq8q1Dl .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sxVQq8q1Dl .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sxVQq8q1Dl .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sxVQq8q1Dl .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sxVQq8q1Dl .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sxVQq8q1Dl .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-sxVQq8q1Dl .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sxVQq8q1Dl .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sxVQq8q1Dl .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sxVQq8q1Dl .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sxVQq8q1Dl .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sxVQq8q1Dl .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sxVQq8q1Dl .navbar.navbar-short {
  min-height: 60px;
}
.cid-sxVQq8q1Dl .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sxVQq8q1Dl .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sxVQq8q1Dl .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-sxVQq8q1Dl .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sxVQq8q1Dl .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sxVQq8q1Dl .dropdown-item.active,
.cid-sxVQq8q1Dl .dropdown-item:active {
  background-color: transparent;
}
.cid-sxVQq8q1Dl .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sxVQq8q1Dl .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sxVQq8q1Dl .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sxVQq8q1Dl .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #234d8b;
}
.cid-sxVQq8q1Dl .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sxVQq8q1Dl .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sxVQq8q1Dl ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sxVQq8q1Dl .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sxVQq8q1Dl button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sxVQq8q1Dl button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-sxVQq8q1Dl button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sxVQq8q1Dl button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sxVQq8q1Dl button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sxVQq8q1Dl button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sxVQq8q1Dl nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sxVQq8q1Dl nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sxVQq8q1Dl nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sxVQq8q1Dl nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sxVQq8q1Dl .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-sxVQq8q1Dl a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sxVQq8q1Dl .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-sxVQq8q1Dl .navbar {
    height: 70px;
  }
  .cid-sxVQq8q1Dl .navbar.opened {
    height: auto;
  }
  .cid-sxVQq8q1Dl .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sxVQq9FSqI {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sxVQq9FSqI .item {
  padding-bottom: 2rem;
}
.cid-sxVQq9FSqI .item-wrapper {
  position: relative;
}
.cid-sxVQq9FSqI .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-sxVQq9FSqI .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-sxVQq9FSqI .carousel-control,
.cid-sxVQq9FSqI .close {
  background: #1b1b1b;
}
.cid-sxVQq9FSqI .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-sxVQq9FSqI .carousel-control-prev span {
  margin-right: 5px;
}
.cid-sxVQq9FSqI .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-sxVQq9FSqI .carousel-control-next span {
  margin-left: 5px;
}
.cid-sxVQq9FSqI .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-sxVQq9FSqI .close::before {
  content: '\e91a';
}
.cid-sxVQq9FSqI .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-sxVQq9FSqI .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-sxVQq9FSqI .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sxVQq9FSqI .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-sxVQq9FSqI .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-sxVQq9FSqI .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-sxVQq9FSqI .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-sxVQq9FSqI .carousel-indicators li.active,
.cid-sxVQq9FSqI .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-sxVQq9FSqI .carousel-indicators li::after,
.cid-sxVQq9FSqI .carousel-indicators li::before {
  content: none;
}
.cid-sxVQq9FSqI .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-sxVQq9FSqI .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-sxVQq9FSqI .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-sxVQq9FSqI .carousel-indicators {
    display: none;
  }
}
.cid-sxVQq9FSqI .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-sxVQq9FSqI .carousel-inner > .active {
  display: block;
}
.cid-sxVQq9FSqI .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sxVQq9FSqI .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-sxVQq9FSqI .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-sxVQq9FSqI .carousel-control,
  .cid-sxVQq9FSqI .carousel-indicators,
  .cid-sxVQq9FSqI .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-sxVQq9FSqI .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-sxVQq9FSqI .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-sxVQq9FSqI .carousel-indicators .active,
.cid-sxVQq9FSqI .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-sxVQq9FSqI .carousel-indicators .active {
  background: #fff;
}
.cid-sxVQq9FSqI .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-sxVQq9FSqI .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-sxVQq9FSqI .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-sxVQq9FSqI .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-sxVQq9FSqI .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-sxVQq9FSqI .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-sxVQq9FSqI .carousel {
  width: 100%;
}
.cid-sxVQq9FSqI .modal-backdrop.in {
  opacity: 0.8;
}
.cid-sxVQq9FSqI .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-sxVQq9FSqI .modal.fade .modal-dialog,
.cid-sxVQq9FSqI .modal.in .modal-dialog {
  transform: none;
}
.cid-sxVQq9FSqI .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-sxVQq9FSqI H6 {
  text-align: right;
}
.cid-sxVQq9FSqI H3 {
  text-align: center;
}
.cid-sxVQqaMCKk {
  padding-top: 0px;
  padding-bottom: 0px;
  background: linear-gradient(45deg, #f9f9f9, #fafafa);
}
.cid-sxVQqaMCKk .mbr-section-subtitle {
  font-style: italic;
  letter-spacing: 1rem;
}
.cid-sxVQqaMCKk H3 {
  color: #232323;
  text-align: center;
}
.cid-sxVQqbCoFi {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #132c53;
}
.cid-sxVQqbCoFi .mbr-text,
.cid-sxVQqbCoFi .mbr-section-btn {
  color: #6592e6;
}
.cid-sxVQqbCoFi .mbr-section-title {
  text-align: center;
  color: #ffffff;
}
.cid-sxVQqbCoFi .mbr-section-subtitle {
  color: #ffffff;
}
.cid-sxVR9wno2t {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #f9f9f9;
}
.cid-sxVR9wno2t .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
.cid-sxVR9wno2t form .mbr-section-btn {
  text-align: center;
  width: 100%;
}
.cid-sxVR9wno2t form .mbr-section-btn .btn {
  display: inline-flex;
}
@media (max-width: 991px) {
  .cid-sxVR9wno2t form .mbr-section-btn .btn {
    width: 100%;
  }
}
.cid-sysJHhKLdK {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #fafafa;
}
.cid-sysJHhKLdK .media-container-row {
  justify-content: space-between;
}
.cid-sysJHhKLdK .text-content {
  max-width: 50%;
}
@media (max-width: 768px) {
  .cid-sysJHhKLdK .text-content {
    max-width: none;
  }
}
.cid-sysJHhKLdK .mbr-iconfont-social {
  margin: 0.5rem;
  font-size: 32px;
  display: flex;
  border-radius: 50%;
  text-align: center;
  color: #6592e6;
  border: 2px solid #6592e6;
  justify-content: center;
  align-content: center;
  transition: all 0.3s;
}
.cid-sysJHhKLdK .mbr-iconfont-social:before {
  padding: 0.6rem;
}
.cid-sysJHhKLdK .mbr-iconfont-social:hover {
  background-color: #6592e6;
  color: #ffffff;
}
@media (max-width: 768px) {
  .cid-sysJHhKLdK .icons {
    justify-content: center !important;
  }
  .cid-sysJHhKLdK .text-content * {
    text-align: center;
  }
}
.cid-sysJHhKLdK .mbr-section-title {
  color: #232323;
}
.cid-sysJJxfZKM {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #fafafa;
}
.cid-sysJJxfZKM .mbr-section-subtitle {
  color: #554346;
  text-align: left;
}
.cid-sysJJxfZKM .container-table {
  margin: 0 auto;
}
.cid-sysJJxfZKM .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-sysJJxfZKM .dataTables_wrapper {
  display: block;
}
.cid-sysJJxfZKM .dataTables_wrapper .search {
  margin-bottom: .5rem;
}
.cid-sysJJxfZKM .dataTables_wrapper .table {
  overflow-x: auto;
}
.cid-sysJJxfZKM table {
  width: 100% !important;
  margin-top: 6px;
  border: 1px solid #cccccc;
  margin-bottom: 0;
}
.cid-sysJJxfZKM table th {
  border-top: none;
  transition: all .2s;
  border-bottom: none;
}
.cid-sysJJxfZKM table th:hover {
  background: #cccccc;
  color: #000000;
}
.cid-sysJJxfZKM table td {
  border-top: 1px solid #cccccc;
}
.cid-sysJJxfZKM table.table {
  background: #3c6aac;
}
.cid-sysJJxfZKM .dataTables_filter {
  text-align: right;
  margin-bottom: .5rem;
}
.cid-sysJJxfZKM .dataTables_filter label {
  display: inline;
  white-space: normal !important;
}
.cid-sysJJxfZKM .dataTables_filter input {
  display: inline;
  width: auto;
  margin-left: .5rem;
  border-radius: 100px;
  padding-left: 1rem;
}
.cid-sysJJxfZKM .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
  white-space: normal !important;
}
@media (max-width: 992px) {
  .cid-sysJJxfZKM .dataTables_filter {
    text-align: center;
  }
}
@media (max-width: 350px) {
  .cid-sysJJxfZKM .dataTables_filter {
    text-align: center;
  }
  .cid-sysJJxfZKM .dataTables_filter input {
    width: 100% !important;
    margin-left: 0 !important;
  }
}
.cid-sysJJxfZKM .head-item {
  color: #ffffff;
  text-align: center;
}
.cid-sysJJxfZKM .mbr-section-title {
  color: #554346;
  text-align: left;
}
.cid-sysJJxfZKM .body-item {
  text-align: center;
  color: #fafafa;
}
.cid-sxVVJzbKx8 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #fafafa;
}
.cid-sxVVJzbKx8 .mbr-section-subtitle {
  color: #554346;
  text-align: left;
}
.cid-sxVVJzbKx8 .container-table {
  margin: 0 auto;
}
.cid-sxVVJzbKx8 .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-sxVVJzbKx8 .dataTables_wrapper {
  display: block;
}
.cid-sxVVJzbKx8 .dataTables_wrapper .search {
  margin-bottom: .5rem;
}
.cid-sxVVJzbKx8 .dataTables_wrapper .table {
  overflow-x: auto;
}
.cid-sxVVJzbKx8 table {
  width: 100% !important;
  margin-top: 6px;
  border: 1px solid #cccccc;
  margin-bottom: 0;
}
.cid-sxVVJzbKx8 table th {
  border-top: none;
  transition: all .2s;
  border-bottom: none;
}
.cid-sxVVJzbKx8 table th:hover {
  background: #cccccc;
  color: #000000;
}
.cid-sxVVJzbKx8 table td {
  border-top: 1px solid #cccccc;
}
.cid-sxVVJzbKx8 table.table {
  background: #ffffff;
}
.cid-sxVVJzbKx8 .dataTables_filter {
  text-align: right;
  margin-bottom: .5rem;
}
.cid-sxVVJzbKx8 .dataTables_filter label {
  display: inline;
  white-space: normal !important;
}
.cid-sxVVJzbKx8 .dataTables_filter input {
  display: inline;
  width: auto;
  margin-left: .5rem;
  border-radius: 100px;
  padding-left: 1rem;
}
.cid-sxVVJzbKx8 .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
  white-space: normal !important;
}
@media (max-width: 992px) {
  .cid-sxVVJzbKx8 .dataTables_filter {
    text-align: center;
  }
}
@media (max-width: 350px) {
  .cid-sxVVJzbKx8 .dataTables_filter {
    text-align: center;
  }
  .cid-sxVVJzbKx8 .dataTables_filter input {
    width: 100% !important;
    margin-left: 0 !important;
  }
}
.cid-sxVVJzbKx8 .head-item {
  color: #132c53;
  text-align: center;
}
.cid-sxVVJzbKx8 .mbr-section-title {
  color: #554346;
  text-align: left;
}
.cid-sxVVJzbKx8 .body-item {
  text-align: center;
  color: #6f6f6f;
}
.cid-sysHlFdlhi {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #fafafa;
}
.cid-sysHlFdlhi .mbr-section-subtitle {
  color: #554346;
  text-align: left;
}
.cid-sysHlFdlhi .container-table {
  margin: 0 auto;
}
.cid-sysHlFdlhi .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-sysHlFdlhi .dataTables_wrapper {
  display: block;
}
.cid-sysHlFdlhi .dataTables_wrapper .search {
  margin-bottom: .5rem;
}
.cid-sysHlFdlhi .dataTables_wrapper .table {
  overflow-x: auto;
}
.cid-sysHlFdlhi table {
  width: 100% !important;
  margin-top: 6px;
  border: 1px solid #cccccc;
  margin-bottom: 0;
}
.cid-sysHlFdlhi table th {
  border-top: none;
  transition: all .2s;
  border-bottom: none;
}
.cid-sysHlFdlhi table th:hover {
  background: #cccccc;
  color: #000000;
}
.cid-sysHlFdlhi table td {
  border-top: 1px solid #cccccc;
}
.cid-sysHlFdlhi table.table {
  background: #f9f9f9;
}
.cid-sysHlFdlhi .dataTables_filter {
  text-align: right;
  margin-bottom: .5rem;
}
.cid-sysHlFdlhi .dataTables_filter label {
  display: inline;
  white-space: normal !important;
}
.cid-sysHlFdlhi .dataTables_filter input {
  display: inline;
  width: auto;
  margin-left: .5rem;
  border-radius: 100px;
  padding-left: 1rem;
}
.cid-sysHlFdlhi .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
  white-space: normal !important;
}
@media (max-width: 992px) {
  .cid-sysHlFdlhi .dataTables_filter {
    text-align: center;
  }
}
@media (max-width: 350px) {
  .cid-sysHlFdlhi .dataTables_filter {
    text-align: center;
  }
  .cid-sysHlFdlhi .dataTables_filter input {
    width: 100% !important;
    margin-left: 0 !important;
  }
}
.cid-sysHlFdlhi .head-item {
  color: #132c53;
  text-align: center;
}
.cid-sysHlFdlhi .mbr-section-title {
  color: #554346;
  text-align: left;
}
.cid-sysHlFdlhi .body-item {
  text-align: center;
  color: #132c53;
}
.cid-syt0igBJIc {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-syt0igBJIc .item {
  padding-bottom: 2rem;
}
.cid-syt0igBJIc .item-wrapper {
  position: relative;
}
.cid-syt0igBJIc .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-syt0igBJIc .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-syt0igBJIc .carousel-control,
.cid-syt0igBJIc .close {
  background: #1b1b1b;
}
.cid-syt0igBJIc .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-syt0igBJIc .carousel-control-prev span {
  margin-right: 5px;
}
.cid-syt0igBJIc .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-syt0igBJIc .carousel-control-next span {
  margin-left: 5px;
}
.cid-syt0igBJIc .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-syt0igBJIc .close::before {
  content: '\e91a';
}
.cid-syt0igBJIc .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-syt0igBJIc .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-syt0igBJIc .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-syt0igBJIc .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-syt0igBJIc .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-syt0igBJIc .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-syt0igBJIc .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-syt0igBJIc .carousel-indicators li.active,
.cid-syt0igBJIc .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-syt0igBJIc .carousel-indicators li::after,
.cid-syt0igBJIc .carousel-indicators li::before {
  content: none;
}
.cid-syt0igBJIc .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-syt0igBJIc .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-syt0igBJIc .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-syt0igBJIc .carousel-indicators {
    display: none;
  }
}
.cid-syt0igBJIc .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-syt0igBJIc .carousel-inner > .active {
  display: block;
}
.cid-syt0igBJIc .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-syt0igBJIc .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-syt0igBJIc .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-syt0igBJIc .carousel-control,
  .cid-syt0igBJIc .carousel-indicators,
  .cid-syt0igBJIc .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-syt0igBJIc .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-syt0igBJIc .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-syt0igBJIc .carousel-indicators .active,
.cid-syt0igBJIc .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-syt0igBJIc .carousel-indicators .active {
  background: #fff;
}
.cid-syt0igBJIc .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-syt0igBJIc .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-syt0igBJIc .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-syt0igBJIc .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-syt0igBJIc .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-syt0igBJIc .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-syt0igBJIc .carousel {
  width: 100%;
}
.cid-syt0igBJIc .modal-backdrop.in {
  opacity: 0.8;
}
.cid-syt0igBJIc .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-syt0igBJIc .modal.fade .modal-dialog,
.cid-syt0igBJIc .modal.in .modal-dialog {
  transform: none;
}
.cid-syt0igBJIc .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-syt0igBJIc H6 {
  text-align: right;
}
.cid-syt0igBJIc H3 {
  text-align: center;
}
.cid-sIVVvUcex5 {
  padding-top: 0px;
  padding-bottom: 0px;
  background: linear-gradient(45deg, #f9f9f9, #f9f9f9);
}
.cid-sIVVvUcex5 .mbr-section-subtitle {
  font-style: italic;
  letter-spacing: 1rem;
}
.cid-sIVVvUcex5 .mbr-section-title {
  text-align: center;
  color: #5a5959;
}
.cid-sIVVvUcex5 H3 {
  text-align: center;
  color: #232323;
}
.cid-sIVVvUcex5 .mbr-text,
.cid-sIVVvUcex5 .mbr-section-btn {
  color: #5a5959;
  text-align: center;
}
.cid-sysjX1m2l6 {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #132c53;
}
.cid-sysjX1m2l6 .mbr-text,
.cid-sysjX1m2l6 .mbr-section-btn {
  color: #4479d9;
}
.cid-sysmKPwiwK {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #fafafa;
}
.cid-sysmKPwiwK .card-wrapper {
  padding-right: 2rem;
}
@media (max-width: 992px) {
  .cid-sysmKPwiwK .card {
    margin-bottom: 2rem!important;
  }
  .cid-sysmKPwiwK .card-wrapper {
    padding: 0 1rem;
  }
}
@media (max-width: 767px) {
  .cid-sysmKPwiwK .link-wrap {
    align-items: center;
  }
}
.cid-sysmKPwiwK .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-sysmKPwiwK .card-title,
.cid-sysmKPwiwK .card-box {
  color: #4479d9;
}
.cid-sysmKPwiwK .mbr-text {
  color: #232323;
}
.cid-sIVVtjjla1 {
  padding-top: 0px;
  padding-bottom: 0px;
  background: linear-gradient(45deg, #f9f9f9, #f9f9f9);
}
.cid-sIVVtjjla1 .mbr-section-subtitle {
  font-style: italic;
  letter-spacing: 1rem;
}
.cid-sIVVtjjla1 .mbr-section-title {
  text-align: center;
  color: #5a5959;
}
.cid-sIVVtjjla1 H3 {
  text-align: center;
  color: #232323;
}
.cid-sIVVtjjla1 .mbr-text,
.cid-sIVVtjjla1 .mbr-section-btn {
  color: #5a5959;
  text-align: center;
}
.cid-syt1SaYzYX {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #132c53;
}
.cid-syt1SaYzYX .mbr-section-subtitle {
  color: #ffffff;
}
.cid-syt1SaYzYX .mbr-text,
.cid-syt1SaYzYX .mbr-section-btn {
  color: #4479d9;
}
.cid-sxVQqfyPbe {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #fafafa;
}
.cid-sxVQqfyPbe .card-wrapper {
  display: flex;
}
@media (max-width: 991px) {
  .cid-sxVQqfyPbe .card-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-sxVQqfyPbe .mbr-iconfont {
  font-size: 2rem;
  color: #6592e6;
  padding-right: 1.5rem;
}
.cid-sxVQqfyPbe .card-text {
  color: #5a5959;
}
.cid-sxVQqfyPbe .card-title {
  color: #111111;
}
.cid-sxVQqgL7eK {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sxVQqgL7eK .image-wrap img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-sxVQqgL7eK .image-wrap img {
    display: block;
    margin: auto;
    width: 40%;
  }
}
.cid-sxVQqgL7eK .mbr-text,
.cid-sxVQqgL7eK .mbr-section-btn {
  color: #5a5959;
}
.cid-sxVQqhHU0z {
  padding-top: 0px;
  padding-bottom: 0px;
  background: linear-gradient(45deg, #f9f9f9, #f9f9f9);
}
.cid-sxVQqhHU0z .mbr-section-subtitle {
  font-style: italic;
  letter-spacing: 1rem;
}
.cid-sxVQqhHU0z .mbr-section-title {
  text-align: center;
  color: #5a5959;
}
.cid-sxVQqhHU0z H3 {
  text-align: center;
  color: #232323;
}
.cid-sxVQqhHU0z .mbr-text,
.cid-sxVQqhHU0z .mbr-section-btn {
  color: #5a5959;
  text-align: center;
}
.cid-sxVQqiymh8 {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #132c53;
}
.cid-sxVQqiymh8 .mbr-text,
.cid-sxVQqiymh8 .mbr-section-btn {
  color: #6592e6;
}
.cid-sxVQqiymh8 .mbr-section-title {
  text-align: center;
  color: #ffffff;
}
.cid-sxVQqiymh8 .mbr-section-subtitle {
  color: #ffffff;
}
.cid-sxVQqjqERK {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sxVQqjqERK .item {
  display: flex;
  align-items: center;
  margin-bottom: 2rem;
}
.cid-sxVQqjqERK .icon-box {
  background: #6592e6;
  width: 60px;
  min-width: 60px;
  height: 60px;
  border-radius: 50%;
  margin-right: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-sxVQqjqERK .mbr-iconfont {
  font-size: 2rem;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-sxVQqjqERK .card {
    margin-bottom: 2rem;
  }
  .cid-sxVQqjqERK .card-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-sxVQqjqERK .icon-text {
  color: #5a5959;
}
.cid-sxVQqkGqoz {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sxVQqkGqoz .item {
  display: flex;
  align-items: center;
  margin-bottom: 2rem;
}
.cid-sxVQqkGqoz .icon-box {
  background: #6592e6;
  width: 60px;
  min-width: 60px;
  height: 60px;
  border-radius: 50%;
  margin-right: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-sxVQqkGqoz .mbr-iconfont {
  font-size: 2rem;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-sxVQqkGqoz .card {
    margin-bottom: 2rem;
  }
  .cid-sxVQqkGqoz .card-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-sxVQqkGqoz .icon-text {
  color: #5a5959;
}
.cid-sxVQqlK20L {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sxVQqlK20L .item {
  display: flex;
  align-items: center;
  margin-bottom: 2rem;
}
.cid-sxVQqlK20L .icon-box {
  background: #6592e6;
  width: 60px;
  min-width: 60px;
  height: 60px;
  border-radius: 50%;
  margin-right: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-sxVQqlK20L .mbr-iconfont {
  font-size: 2rem;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-sxVQqlK20L .card {
    margin-bottom: 2rem;
  }
  .cid-sxVQqlK20L .card-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-sxVQqlK20L .icon-text {
  color: #5a5959;
}
.cid-sxVQqmKaLf {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sxVQqmKaLf .item {
  display: flex;
  align-items: center;
  margin-bottom: 2rem;
}
.cid-sxVQqmKaLf .icon-box {
  background: #6592e6;
  width: 60px;
  min-width: 60px;
  height: 60px;
  border-radius: 50%;
  margin-right: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-sxVQqmKaLf .mbr-iconfont {
  font-size: 2rem;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-sxVQqmKaLf .card {
    margin-bottom: 2rem;
  }
  .cid-sxVQqmKaLf .card-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-sxVQqmKaLf .icon-text {
  color: #5a5959;
}
.cid-syGZsq4Tqg {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-syGZsq4Tqg .item {
  display: flex;
  align-items: center;
  margin-bottom: 2rem;
}
.cid-syGZsq4Tqg .icon-box {
  background: #6592e6;
  width: 60px;
  min-width: 60px;
  height: 60px;
  border-radius: 50%;
  margin-right: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-syGZsq4Tqg .mbr-iconfont {
  font-size: 2rem;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-syGZsq4Tqg .card {
    margin-bottom: 2rem;
  }
  .cid-syGZsq4Tqg .card-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-syGZsq4Tqg .icon-text {
  color: #5a5959;
}
.cid-sxVQqnZnf4 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sxVQqnZnf4 .item {
  display: flex;
  align-items: center;
  margin-bottom: 2rem;
}
.cid-sxVQqnZnf4 .icon-box {
  background: #6592e6;
  width: 60px;
  min-width: 60px;
  height: 60px;
  border-radius: 50%;
  margin-right: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-sxVQqnZnf4 .mbr-iconfont {
  font-size: 2rem;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-sxVQqnZnf4 .card {
    margin-bottom: 2rem;
  }
  .cid-sxVQqnZnf4 .card-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-sxVQqnZnf4 .icon-text {
  color: #5a5959;
}
.cid-sxVQqoZui2 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sxVQqoZui2 .item {
  display: flex;
  align-items: center;
  margin-bottom: 2rem;
}
.cid-sxVQqoZui2 .icon-box {
  background: #6592e6;
  width: 60px;
  min-width: 60px;
  height: 60px;
  border-radius: 50%;
  margin-right: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-sxVQqoZui2 .mbr-iconfont {
  font-size: 2rem;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-sxVQqoZui2 .card {
    margin-bottom: 2rem;
  }
  .cid-sxVQqoZui2 .card-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-sxVQqoZui2 .icon-text {
  color: #5a5959;
}
.cid-sxVQqq2DaS {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #fafafa;
}
.cid-sxVQqq2DaS .socicon-bg-facebook {
  background: #3e5b98;
  color: #ffffff;
}
.cid-sxVQqq2DaS .socicon-bg-twitter {
  background: #4da7de;
  color: #ffffff;
}
.cid-sxVQqq2DaS .socicon-bg-googleplus {
  background: #dd4b39;
  color: #ffffff;
}
.cid-sxVQqq2DaS .socicon-bg-vkontakte {
  background: #5a7fa6;
  color: #ffffff;
}
.cid-sxVQqq2DaS .socicon-bg-odnoklassniki {
  background: #f48420;
  color: #ffffff;
}
.cid-sxVQqq2DaS .socicon-bg-pinterest {
  background: #c92619;
  color: #ffffff;
}
.cid-sxVQqq2DaS .socicon-bg-mail {
  background: #134785;
  color: #ffffff;
}
.cid-sxVQqq2DaS .btn-social {
  font-size: 20px;
  border-radius: 50%;
  padding: 0;
  width: 44px;
  height: 44px;
  line-height: 44px;
  text-align: center;
  position: relative;
  cursor: pointer;
  border: none !important;
}
.cid-sxVQqq2DaS .btn-social i {
  top: 0;
  line-height: 44px;
  width: 44px;
}
.cid-sxVQqq2DaS .btn-social + .btn {
  margin-left: .1rem;
}
.cid-sxVQqq2DaS [class^="socicon-"]:before,
.cid-sxVQqq2DaS [class*=" socicon-"]:before {
  line-height: 44px;
}
@media (max-width: 767px) {
  .cid-sxVQqq2DaS .btn {
    font-size: 20px !important;
  }
}
.cid-sxVQqqRiQ1 {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sxVQqqRiQ1 .image-wrap img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-sxVQqqRiQ1 .image-wrap img {
    display: block;
    margin: auto;
    width: 50%;
  }
}
.cid-sxVQqrJQu8 {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #234d8b;
}
.cid-sHYzSV733f {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-sHYzSV733f nav.navbar {
  position: fixed;
}
.cid-sHYzSV733f .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-sHYzSV733f .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sHYzSV733f .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sHYzSV733f .dropdown-item:hover,
.cid-sHYzSV733f .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-sHYzSV733f .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sHYzSV733f .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sHYzSV733f .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sHYzSV733f .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sHYzSV733f .nav-link {
  position: relative;
}
.cid-sHYzSV733f .container {
  display: flex;
  margin: auto;
}
.cid-sHYzSV733f .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sHYzSV733f .dropdown-menu,
.cid-sHYzSV733f .navbar.opened {
  background: #234d8b !important;
}
.cid-sHYzSV733f .nav-item:focus,
.cid-sHYzSV733f .nav-link:focus {
  outline: none;
}
.cid-sHYzSV733f .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sHYzSV733f .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sHYzSV733f .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sHYzSV733f .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sHYzSV733f .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sHYzSV733f .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sHYzSV733f .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #234d8b;
}
.cid-sHYzSV733f .navbar.opened {
  transition: all 0.3s;
}
.cid-sHYzSV733f .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sHYzSV733f .navbar .navbar-logo img {
  width: auto;
}
.cid-sHYzSV733f .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sHYzSV733f .navbar.collapsed {
  justify-content: center;
}
.cid-sHYzSV733f .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sHYzSV733f .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sHYzSV733f .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-sHYzSV733f .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sHYzSV733f .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sHYzSV733f .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-sHYzSV733f .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sHYzSV733f .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sHYzSV733f .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sHYzSV733f .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sHYzSV733f .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sHYzSV733f .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sHYzSV733f .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sHYzSV733f .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-sHYzSV733f .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sHYzSV733f .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sHYzSV733f .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sHYzSV733f .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sHYzSV733f .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sHYzSV733f .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sHYzSV733f .navbar.navbar-short {
  min-height: 60px;
}
.cid-sHYzSV733f .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sHYzSV733f .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sHYzSV733f .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-sHYzSV733f .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sHYzSV733f .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sHYzSV733f .dropdown-item.active,
.cid-sHYzSV733f .dropdown-item:active {
  background-color: transparent;
}
.cid-sHYzSV733f .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sHYzSV733f .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sHYzSV733f .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sHYzSV733f .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #234d8b;
}
.cid-sHYzSV733f .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sHYzSV733f .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sHYzSV733f ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sHYzSV733f .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sHYzSV733f button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sHYzSV733f button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-sHYzSV733f button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sHYzSV733f button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sHYzSV733f button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sHYzSV733f button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sHYzSV733f nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sHYzSV733f nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sHYzSV733f nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sHYzSV733f nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sHYzSV733f .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-sHYzSV733f a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sHYzSV733f .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-sHYzSV733f .navbar {
    height: 70px;
  }
  .cid-sHYzSV733f .navbar.opened {
    height: auto;
  }
  .cid-sHYzSV733f .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sHYzSWNyfE {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sHYzSWNyfE .item {
  padding-bottom: 2rem;
}
.cid-sHYzSWNyfE .item-wrapper {
  position: relative;
}
.cid-sHYzSWNyfE .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-sHYzSWNyfE .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-sHYzSWNyfE .carousel-control,
.cid-sHYzSWNyfE .close {
  background: #1b1b1b;
}
.cid-sHYzSWNyfE .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-sHYzSWNyfE .carousel-control-prev span {
  margin-right: 5px;
}
.cid-sHYzSWNyfE .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-sHYzSWNyfE .carousel-control-next span {
  margin-left: 5px;
}
.cid-sHYzSWNyfE .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-sHYzSWNyfE .close::before {
  content: '\e91a';
}
.cid-sHYzSWNyfE .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-sHYzSWNyfE .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-sHYzSWNyfE .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sHYzSWNyfE .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-sHYzSWNyfE .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-sHYzSWNyfE .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-sHYzSWNyfE .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-sHYzSWNyfE .carousel-indicators li.active,
.cid-sHYzSWNyfE .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-sHYzSWNyfE .carousel-indicators li::after,
.cid-sHYzSWNyfE .carousel-indicators li::before {
  content: none;
}
.cid-sHYzSWNyfE .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-sHYzSWNyfE .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-sHYzSWNyfE .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-sHYzSWNyfE .carousel-indicators {
    display: none;
  }
}
.cid-sHYzSWNyfE .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-sHYzSWNyfE .carousel-inner > .active {
  display: block;
}
.cid-sHYzSWNyfE .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sHYzSWNyfE .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-sHYzSWNyfE .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-sHYzSWNyfE .carousel-control,
  .cid-sHYzSWNyfE .carousel-indicators,
  .cid-sHYzSWNyfE .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-sHYzSWNyfE .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-sHYzSWNyfE .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-sHYzSWNyfE .carousel-indicators .active,
.cid-sHYzSWNyfE .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-sHYzSWNyfE .carousel-indicators .active {
  background: #fff;
}
.cid-sHYzSWNyfE .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-sHYzSWNyfE .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-sHYzSWNyfE .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-sHYzSWNyfE .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-sHYzSWNyfE .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-sHYzSWNyfE .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-sHYzSWNyfE .carousel {
  width: 100%;
}
.cid-sHYzSWNyfE .modal-backdrop.in {
  opacity: 0.8;
}
.cid-sHYzSWNyfE .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-sHYzSWNyfE .modal.fade .modal-dialog,
.cid-sHYzSWNyfE .modal.in .modal-dialog {
  transform: none;
}
.cid-sHYzSWNyfE .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-sHYzSWNyfE H6 {
  text-align: right;
}
.cid-sHYzSWNyfE H3 {
  text-align: center;
}
.cid-sHYzSXZhb0 {
  padding-top: 0px;
  padding-bottom: 0px;
  background: linear-gradient(45deg, #f9f9f9, #fafafa);
}
.cid-sHYzSXZhb0 .mbr-section-subtitle {
  font-style: italic;
  letter-spacing: 1rem;
}
.cid-sHYzSXZhb0 H3 {
  color: #232323;
  text-align: center;
}
.cid-sHYzSYPzTW {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #132c53;
}
.cid-sHYzSYPzTW .mbr-text,
.cid-sHYzSYPzTW .mbr-section-btn {
  color: #6592e6;
}
.cid-sHYzSYPzTW .mbr-section-title {
  text-align: center;
  color: #ffffff;
}
.cid-sHYzSYPzTW .mbr-section-subtitle {
  color: #ffffff;
}
.cid-sHYzSZHuJ2 {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #f9f9f9;
}
.cid-sHYzSZHuJ2 .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
.cid-sHYzSZHuJ2 form .mbr-section-btn {
  text-align: center;
  width: 100%;
}
.cid-sHYzSZHuJ2 form .mbr-section-btn .btn {
  display: inline-flex;
}
@media (max-width: 991px) {
  .cid-sHYzSZHuJ2 form .mbr-section-btn .btn {
    width: 100%;
  }
}
.cid-sHYzT0CjrS {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #fafafa;
}
.cid-sHYzT0CjrS .media-container-row {
  justify-content: space-between;
}
.cid-sHYzT0CjrS .text-content {
  max-width: 50%;
}
@media (max-width: 768px) {
  .cid-sHYzT0CjrS .text-content {
    max-width: none;
  }
}
.cid-sHYzT0CjrS .mbr-iconfont-social {
  margin: 0.5rem;
  font-size: 32px;
  display: flex;
  border-radius: 50%;
  text-align: center;
  color: #6592e6;
  border: 2px solid #6592e6;
  justify-content: center;
  align-content: center;
  transition: all 0.3s;
}
.cid-sHYzT0CjrS .mbr-iconfont-social:before {
  padding: 0.6rem;
}
.cid-sHYzT0CjrS .mbr-iconfont-social:hover {
  background-color: #6592e6;
  color: #ffffff;
}
@media (max-width: 768px) {
  .cid-sHYzT0CjrS .icons {
    justify-content: center !important;
  }
  .cid-sHYzT0CjrS .text-content * {
    text-align: center;
  }
}
.cid-sHYzT0CjrS .mbr-section-title {
  color: #232323;
}
.cid-sHYzT1N1EY {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #fafafa;
}
.cid-sHYzT1N1EY .mbr-section-subtitle {
  color: #554346;
  text-align: left;
}
.cid-sHYzT1N1EY .container-table {
  margin: 0 auto;
}
.cid-sHYzT1N1EY .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-sHYzT1N1EY .dataTables_wrapper {
  display: block;
}
.cid-sHYzT1N1EY .dataTables_wrapper .search {
  margin-bottom: .5rem;
}
.cid-sHYzT1N1EY .dataTables_wrapper .table {
  overflow-x: auto;
}
.cid-sHYzT1N1EY table {
  width: 100% !important;
  margin-top: 6px;
  border: 1px solid #cccccc;
  margin-bottom: 0;
}
.cid-sHYzT1N1EY table th {
  border-top: none;
  transition: all .2s;
  border-bottom: none;
}
.cid-sHYzT1N1EY table th:hover {
  background: #cccccc;
  color: #000000;
}
.cid-sHYzT1N1EY table td {
  border-top: 1px solid #cccccc;
}
.cid-sHYzT1N1EY table.table {
  background: #3c6aac;
}
.cid-sHYzT1N1EY .dataTables_filter {
  text-align: right;
  margin-bottom: .5rem;
}
.cid-sHYzT1N1EY .dataTables_filter label {
  display: inline;
  white-space: normal !important;
}
.cid-sHYzT1N1EY .dataTables_filter input {
  display: inline;
  width: auto;
  margin-left: .5rem;
  border-radius: 100px;
  padding-left: 1rem;
}
.cid-sHYzT1N1EY .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
  white-space: normal !important;
}
@media (max-width: 992px) {
  .cid-sHYzT1N1EY .dataTables_filter {
    text-align: center;
  }
}
@media (max-width: 350px) {
  .cid-sHYzT1N1EY .dataTables_filter {
    text-align: center;
  }
  .cid-sHYzT1N1EY .dataTables_filter input {
    width: 100% !important;
    margin-left: 0 !important;
  }
}
.cid-sHYzT1N1EY .head-item {
  color: #ffffff;
  text-align: center;
}
.cid-sHYzT1N1EY .mbr-section-title {
  color: #554346;
  text-align: left;
}
.cid-sHYzT1N1EY .body-item {
  text-align: center;
  color: #fafafa;
}
.cid-sHYzT3czCX {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #fafafa;
}
.cid-sHYzT3czCX .mbr-section-subtitle {
  color: #554346;
  text-align: left;
}
.cid-sHYzT3czCX .container-table {
  margin: 0 auto;
}
.cid-sHYzT3czCX .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-sHYzT3czCX .dataTables_wrapper {
  display: block;
}
.cid-sHYzT3czCX .dataTables_wrapper .search {
  margin-bottom: .5rem;
}
.cid-sHYzT3czCX .dataTables_wrapper .table {
  overflow-x: auto;
}
.cid-sHYzT3czCX table {
  width: 100% !important;
  margin-top: 6px;
  border: 1px solid #cccccc;
  margin-bottom: 0;
}
.cid-sHYzT3czCX table th {
  border-top: none;
  transition: all .2s;
  border-bottom: none;
}
.cid-sHYzT3czCX table th:hover {
  background: #cccccc;
  color: #000000;
}
.cid-sHYzT3czCX table td {
  border-top: 1px solid #cccccc;
}
.cid-sHYzT3czCX table.table {
  background: #ffffff;
}
.cid-sHYzT3czCX .dataTables_filter {
  text-align: right;
  margin-bottom: .5rem;
}
.cid-sHYzT3czCX .dataTables_filter label {
  display: inline;
  white-space: normal !important;
}
.cid-sHYzT3czCX .dataTables_filter input {
  display: inline;
  width: auto;
  margin-left: .5rem;
  border-radius: 100px;
  padding-left: 1rem;
}
.cid-sHYzT3czCX .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
  white-space: normal !important;
}
@media (max-width: 992px) {
  .cid-sHYzT3czCX .dataTables_filter {
    text-align: center;
  }
}
@media (max-width: 350px) {
  .cid-sHYzT3czCX .dataTables_filter {
    text-align: center;
  }
  .cid-sHYzT3czCX .dataTables_filter input {
    width: 100% !important;
    margin-left: 0 !important;
  }
}
.cid-sHYzT3czCX .head-item {
  color: #132c53;
  text-align: center;
}
.cid-sHYzT3czCX .mbr-section-title {
  color: #554346;
  text-align: left;
}
.cid-sHYzT3czCX .body-item {
  text-align: center;
  color: #6f6f6f;
}
.cid-sHYzT4zkPO {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #fafafa;
}
.cid-sHYzT4zkPO .mbr-section-subtitle {
  color: #554346;
  text-align: left;
}
.cid-sHYzT4zkPO .container-table {
  margin: 0 auto;
}
.cid-sHYzT4zkPO .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-sHYzT4zkPO .dataTables_wrapper {
  display: block;
}
.cid-sHYzT4zkPO .dataTables_wrapper .search {
  margin-bottom: .5rem;
}
.cid-sHYzT4zkPO .dataTables_wrapper .table {
  overflow-x: auto;
}
.cid-sHYzT4zkPO table {
  width: 100% !important;
  margin-top: 6px;
  border: 1px solid #cccccc;
  margin-bottom: 0;
}
.cid-sHYzT4zkPO table th {
  border-top: none;
  transition: all .2s;
  border-bottom: none;
}
.cid-sHYzT4zkPO table th:hover {
  background: #cccccc;
  color: #000000;
}
.cid-sHYzT4zkPO table td {
  border-top: 1px solid #cccccc;
}
.cid-sHYzT4zkPO table.table {
  background: #f9f9f9;
}
.cid-sHYzT4zkPO .dataTables_filter {
  text-align: right;
  margin-bottom: .5rem;
}
.cid-sHYzT4zkPO .dataTables_filter label {
  display: inline;
  white-space: normal !important;
}
.cid-sHYzT4zkPO .dataTables_filter input {
  display: inline;
  width: auto;
  margin-left: .5rem;
  border-radius: 100px;
  padding-left: 1rem;
}
.cid-sHYzT4zkPO .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
  white-space: normal !important;
}
@media (max-width: 992px) {
  .cid-sHYzT4zkPO .dataTables_filter {
    text-align: center;
  }
}
@media (max-width: 350px) {
  .cid-sHYzT4zkPO .dataTables_filter {
    text-align: center;
  }
  .cid-sHYzT4zkPO .dataTables_filter input {
    width: 100% !important;
    margin-left: 0 !important;
  }
}
.cid-sHYzT4zkPO .head-item {
  color: #132c53;
  text-align: center;
}
.cid-sHYzT4zkPO .mbr-section-title {
  color: #554346;
  text-align: left;
}
.cid-sHYzT4zkPO .body-item {
  text-align: center;
  color: #132c53;
}
.cid-sHYzT61XUk {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sHYzT61XUk .item {
  padding-bottom: 2rem;
}
.cid-sHYzT61XUk .item-wrapper {
  position: relative;
}
.cid-sHYzT61XUk .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-sHYzT61XUk .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-sHYzT61XUk .carousel-control,
.cid-sHYzT61XUk .close {
  background: #1b1b1b;
}
.cid-sHYzT61XUk .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-sHYzT61XUk .carousel-control-prev span {
  margin-right: 5px;
}
.cid-sHYzT61XUk .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-sHYzT61XUk .carousel-control-next span {
  margin-left: 5px;
}
.cid-sHYzT61XUk .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-sHYzT61XUk .close::before {
  content: '\e91a';
}
.cid-sHYzT61XUk .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-sHYzT61XUk .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-sHYzT61XUk .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sHYzT61XUk .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-sHYzT61XUk .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-sHYzT61XUk .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-sHYzT61XUk .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-sHYzT61XUk .carousel-indicators li.active,
.cid-sHYzT61XUk .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-sHYzT61XUk .carousel-indicators li::after,
.cid-sHYzT61XUk .carousel-indicators li::before {
  content: none;
}
.cid-sHYzT61XUk .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-sHYzT61XUk .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-sHYzT61XUk .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-sHYzT61XUk .carousel-indicators {
    display: none;
  }
}
.cid-sHYzT61XUk .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-sHYzT61XUk .carousel-inner > .active {
  display: block;
}
.cid-sHYzT61XUk .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sHYzT61XUk .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-sHYzT61XUk .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-sHYzT61XUk .carousel-control,
  .cid-sHYzT61XUk .carousel-indicators,
  .cid-sHYzT61XUk .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-sHYzT61XUk .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-sHYzT61XUk .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-sHYzT61XUk .carousel-indicators .active,
.cid-sHYzT61XUk .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-sHYzT61XUk .carousel-indicators .active {
  background: #fff;
}
.cid-sHYzT61XUk .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-sHYzT61XUk .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-sHYzT61XUk .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-sHYzT61XUk .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-sHYzT61XUk .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-sHYzT61XUk .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-sHYzT61XUk .carousel {
  width: 100%;
}
.cid-sHYzT61XUk .modal-backdrop.in {
  opacity: 0.8;
}
.cid-sHYzT61XUk .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-sHYzT61XUk .modal.fade .modal-dialog,
.cid-sHYzT61XUk .modal.in .modal-dialog {
  transform: none;
}
.cid-sHYzT61XUk .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-sHYzT61XUk H6 {
  text-align: right;
}
.cid-sHYzT61XUk H3 {
  text-align: center;
}
.cid-sIVXx2n4G3 {
  padding-top: 0px;
  padding-bottom: 0px;
  background: linear-gradient(45deg, #f9f9f9, #f9f9f9);
}
.cid-sIVXx2n4G3 .mbr-section-subtitle {
  font-style: italic;
  letter-spacing: 1rem;
}
.cid-sIVXx2n4G3 .mbr-section-title {
  text-align: center;
  color: #5a5959;
}
.cid-sIVXx2n4G3 H3 {
  text-align: center;
  color: #232323;
}
.cid-sIVXx2n4G3 .mbr-text,
.cid-sIVXx2n4G3 .mbr-section-btn {
  color: #5a5959;
  text-align: center;
}
.cid-sHYzT7lZHL {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #132c53;
}
.cid-sHYzT7lZHL .mbr-text,
.cid-sHYzT7lZHL .mbr-section-btn {
  color: #4479d9;
}
.cid-sHZ4nm8oS4 {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #fafafa;
}
.cid-sHZ4nm8oS4 .nav-tabs .nav-item.open .nav-link:focus,
.cid-sHZ4nm8oS4 .nav-tabs .nav-link.active:focus {
  outline: none;
}
.cid-sHZ4nm8oS4 .nav-tabs {
  flex-wrap: wrap;
  border-bottom: 1px solid #6592e6;
}
@media (max-width: 767px) {
  .cid-sHZ4nm8oS4 .nav-item {
    width: 100%;
    margin: 0;
  }
}
.cid-sHZ4nm8oS4 .nav-tabs .nav-link {
  transition: all .5s;
  border: none;
  border-bottom: 3px solid transparent;
  border-radius: 0 !important;
}
.cid-sHZ4nm8oS4 .nav-tabs .nav-link:not(.active) {
  color: #000000;
}
.cid-sHZ4nm8oS4 .nav-tabs .nav-item {
  margin-right: 1.5rem;
}
.cid-sHZ4nm8oS4 .nav-link,
.cid-sHZ4nm8oS4 .nav-link.active {
  padding: 1rem 0;
  background-color: transparent;
}
.cid-sHZ4nm8oS4 .nav-tabs .nav-link.active {
  color: #6592e6;
  border-bottom: 3px solid #6592e6;
}
.cid-sHZ4nm8oS4 H4 {
  text-align: center;
}
.cid-sHZ4nm8oS4 H3 {
  text-align: left;
}
.cid-sHZ4nm8oS4 P {
  color: #5a5959;
}
.cid-sHYzT8iTvL {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-sHYzT8iTvL .card-wrapper {
  padding-right: 2rem;
}
@media (max-width: 992px) {
  .cid-sHYzT8iTvL .card {
    margin-bottom: 2rem!important;
  }
  .cid-sHYzT8iTvL .card-wrapper {
    padding: 0 1rem;
  }
}
@media (max-width: 767px) {
  .cid-sHYzT8iTvL .link-wrap {
    align-items: center;
  }
}
.cid-sHYzT8iTvL .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-sHYzT8iTvL .card-title,
.cid-sHYzT8iTvL .card-box {
  color: #4479d9;
}
.cid-sHYzT8iTvL .mbr-text {
  color: #232323;
}
.cid-sHYzT9ezKu {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #132c53;
}
.cid-sHYzT9ezKu .mbr-section-subtitle {
  color: #ffffff;
}
.cid-sHYzT9ezKu .mbr-text,
.cid-sHYzT9ezKu .mbr-section-btn {
  color: #4479d9;
}
.cid-sHYzTa7VTa {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #fafafa;
}
.cid-sHYzTa7VTa .card-wrapper {
  display: flex;
}
@media (max-width: 991px) {
  .cid-sHYzTa7VTa .card-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-sHYzTa7VTa .mbr-iconfont {
  font-size: 2rem;
  color: #6592e6;
  padding-right: 1.5rem;
}
.cid-sHYzTa7VTa .card-text {
  color: #5a5959;
}
.cid-sHYzTa7VTa .card-title {
  color: #111111;
}
.cid-sHYzTbs8TS {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sHYzTbs8TS .image-wrap img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-sHYzTbs8TS .image-wrap img {
    display: block;
    margin: auto;
    width: 40%;
  }
}
.cid-sHYzTbs8TS .mbr-text,
.cid-sHYzTbs8TS .mbr-section-btn {
  color: #5a5959;
}
.cid-sHYzTcmiG2 {
  padding-top: 0px;
  padding-bottom: 0px;
  background: linear-gradient(45deg, #f9f9f9, #f9f9f9);
}
.cid-sHYzTcmiG2 .mbr-section-subtitle {
  font-style: italic;
  letter-spacing: 1rem;
}
.cid-sHYzTcmiG2 .mbr-section-title {
  text-align: center;
  color: #5a5959;
}
.cid-sHYzTcmiG2 H3 {
  text-align: center;
  color: #232323;
}
.cid-sHYzTcmiG2 .mbr-text,
.cid-sHYzTcmiG2 .mbr-section-btn {
  color: #5a5959;
  text-align: center;
}
.cid-sHYzTdjZmM {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #132c53;
}
.cid-sHYzTdjZmM .mbr-text,
.cid-sHYzTdjZmM .mbr-section-btn {
  color: #6592e6;
}
.cid-sHYzTdjZmM .mbr-section-title {
  text-align: center;
  color: #ffffff;
}
.cid-sHYzTdjZmM .mbr-section-subtitle {
  color: #ffffff;
}
.cid-sHYzTebtP8 {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sHYzTebtP8 .item {
  display: flex;
  align-items: center;
  margin-bottom: 2rem;
}
.cid-sHYzTebtP8 .icon-box {
  background: #6592e6;
  width: 60px;
  min-width: 60px;
  height: 60px;
  border-radius: 50%;
  margin-right: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-sHYzTebtP8 .mbr-iconfont {
  font-size: 2rem;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-sHYzTebtP8 .card {
    margin-bottom: 2rem;
  }
  .cid-sHYzTebtP8 .card-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-sHYzTebtP8 .icon-text {
  color: #5a5959;
}
.cid-sHYzTfgEIj {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sHYzTfgEIj .item {
  display: flex;
  align-items: center;
  margin-bottom: 2rem;
}
.cid-sHYzTfgEIj .icon-box {
  background: #6592e6;
  width: 60px;
  min-width: 60px;
  height: 60px;
  border-radius: 50%;
  margin-right: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-sHYzTfgEIj .mbr-iconfont {
  font-size: 2rem;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-sHYzTfgEIj .card {
    margin-bottom: 2rem;
  }
  .cid-sHYzTfgEIj .card-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-sHYzTfgEIj .icon-text {
  color: #5a5959;
}
.cid-sHYzTgpQQR {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sHYzTgpQQR .item {
  display: flex;
  align-items: center;
  margin-bottom: 2rem;
}
.cid-sHYzTgpQQR .icon-box {
  background: #6592e6;
  width: 60px;
  min-width: 60px;
  height: 60px;
  border-radius: 50%;
  margin-right: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-sHYzTgpQQR .mbr-iconfont {
  font-size: 2rem;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-sHYzTgpQQR .card {
    margin-bottom: 2rem;
  }
  .cid-sHYzTgpQQR .card-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-sHYzTgpQQR .icon-text {
  color: #5a5959;
}
.cid-sHYzThFbMc {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sHYzThFbMc .item {
  display: flex;
  align-items: center;
  margin-bottom: 2rem;
}
.cid-sHYzThFbMc .icon-box {
  background: #6592e6;
  width: 60px;
  min-width: 60px;
  height: 60px;
  border-radius: 50%;
  margin-right: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-sHYzThFbMc .mbr-iconfont {
  font-size: 2rem;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-sHYzThFbMc .card {
    margin-bottom: 2rem;
  }
  .cid-sHYzThFbMc .card-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-sHYzThFbMc .icon-text {
  color: #5a5959;
}
.cid-sHYzTiM5kE {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sHYzTiM5kE .item {
  display: flex;
  align-items: center;
  margin-bottom: 2rem;
}
.cid-sHYzTiM5kE .icon-box {
  background: #6592e6;
  width: 60px;
  min-width: 60px;
  height: 60px;
  border-radius: 50%;
  margin-right: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-sHYzTiM5kE .mbr-iconfont {
  font-size: 2rem;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-sHYzTiM5kE .card {
    margin-bottom: 2rem;
  }
  .cid-sHYzTiM5kE .card-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-sHYzTiM5kE .icon-text {
  color: #5a5959;
}
.cid-sHYzTjTcE6 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sHYzTjTcE6 .item {
  display: flex;
  align-items: center;
  margin-bottom: 2rem;
}
.cid-sHYzTjTcE6 .icon-box {
  background: #6592e6;
  width: 60px;
  min-width: 60px;
  height: 60px;
  border-radius: 50%;
  margin-right: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-sHYzTjTcE6 .mbr-iconfont {
  font-size: 2rem;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-sHYzTjTcE6 .card {
    margin-bottom: 2rem;
  }
  .cid-sHYzTjTcE6 .card-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-sHYzTjTcE6 .icon-text {
  color: #5a5959;
}
.cid-sHYzTl0px7 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sHYzTl0px7 .item {
  display: flex;
  align-items: center;
  margin-bottom: 2rem;
}
.cid-sHYzTl0px7 .icon-box {
  background: #6592e6;
  width: 60px;
  min-width: 60px;
  height: 60px;
  border-radius: 50%;
  margin-right: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-sHYzTl0px7 .mbr-iconfont {
  font-size: 2rem;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-sHYzTl0px7 .card {
    margin-bottom: 2rem;
  }
  .cid-sHYzTl0px7 .card-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-sHYzTl0px7 .icon-text {
  color: #5a5959;
}
.cid-sHYzTm8CQN {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #fafafa;
}
.cid-sHYzTm8CQN .socicon-bg-facebook {
  background: #3e5b98;
  color: #ffffff;
}
.cid-sHYzTm8CQN .socicon-bg-twitter {
  background: #4da7de;
  color: #ffffff;
}
.cid-sHYzTm8CQN .socicon-bg-googleplus {
  background: #dd4b39;
  color: #ffffff;
}
.cid-sHYzTm8CQN .socicon-bg-vkontakte {
  background: #5a7fa6;
  color: #ffffff;
}
.cid-sHYzTm8CQN .socicon-bg-odnoklassniki {
  background: #f48420;
  color: #ffffff;
}
.cid-sHYzTm8CQN .socicon-bg-pinterest {
  background: #c92619;
  color: #ffffff;
}
.cid-sHYzTm8CQN .socicon-bg-mail {
  background: #134785;
  color: #ffffff;
}
.cid-sHYzTm8CQN .btn-social {
  font-size: 20px;
  border-radius: 50%;
  padding: 0;
  width: 44px;
  height: 44px;
  line-height: 44px;
  text-align: center;
  position: relative;
  cursor: pointer;
  border: none !important;
}
.cid-sHYzTm8CQN .btn-social i {
  top: 0;
  line-height: 44px;
  width: 44px;
}
.cid-sHYzTm8CQN .btn-social + .btn {
  margin-left: .1rem;
}
.cid-sHYzTm8CQN [class^="socicon-"]:before,
.cid-sHYzTm8CQN [class*=" socicon-"]:before {
  line-height: 44px;
}
@media (max-width: 767px) {
  .cid-sHYzTm8CQN .btn {
    font-size: 20px !important;
  }
}
.cid-sHYzTnggOn {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sHYzTnggOn .image-wrap img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-sHYzTnggOn .image-wrap img {
    display: block;
    margin: auto;
    width: 50%;
  }
}
.cid-sHYzToddRr {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #234d8b;
}
.cid-sxTO0ZU8uF {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-sxTO0ZU8uF nav.navbar {
  position: fixed;
}
.cid-sxTO0ZU8uF .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-sxTO0ZU8uF .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sxTO0ZU8uF .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sxTO0ZU8uF .dropdown-item:hover,
.cid-sxTO0ZU8uF .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-sxTO0ZU8uF .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sxTO0ZU8uF .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sxTO0ZU8uF .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sxTO0ZU8uF .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sxTO0ZU8uF .nav-link {
  position: relative;
}
.cid-sxTO0ZU8uF .container {
  display: flex;
  margin: auto;
}
.cid-sxTO0ZU8uF .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sxTO0ZU8uF .dropdown-menu,
.cid-sxTO0ZU8uF .navbar.opened {
  background: #234d8b !important;
}
.cid-sxTO0ZU8uF .nav-item:focus,
.cid-sxTO0ZU8uF .nav-link:focus {
  outline: none;
}
.cid-sxTO0ZU8uF .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sxTO0ZU8uF .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sxTO0ZU8uF .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sxTO0ZU8uF .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sxTO0ZU8uF .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sxTO0ZU8uF .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sxTO0ZU8uF .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #234d8b;
}
.cid-sxTO0ZU8uF .navbar.opened {
  transition: all 0.3s;
}
.cid-sxTO0ZU8uF .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sxTO0ZU8uF .navbar .navbar-logo img {
  width: auto;
}
.cid-sxTO0ZU8uF .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sxTO0ZU8uF .navbar.collapsed {
  justify-content: center;
}
.cid-sxTO0ZU8uF .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sxTO0ZU8uF .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sxTO0ZU8uF .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-sxTO0ZU8uF .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sxTO0ZU8uF .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sxTO0ZU8uF .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-sxTO0ZU8uF .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sxTO0ZU8uF .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sxTO0ZU8uF .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sxTO0ZU8uF .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sxTO0ZU8uF .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sxTO0ZU8uF .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sxTO0ZU8uF .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sxTO0ZU8uF .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-sxTO0ZU8uF .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sxTO0ZU8uF .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sxTO0ZU8uF .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sxTO0ZU8uF .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sxTO0ZU8uF .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sxTO0ZU8uF .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sxTO0ZU8uF .navbar.navbar-short {
  min-height: 60px;
}
.cid-sxTO0ZU8uF .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sxTO0ZU8uF .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sxTO0ZU8uF .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-sxTO0ZU8uF .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sxTO0ZU8uF .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sxTO0ZU8uF .dropdown-item.active,
.cid-sxTO0ZU8uF .dropdown-item:active {
  background-color: transparent;
}
.cid-sxTO0ZU8uF .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sxTO0ZU8uF .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sxTO0ZU8uF .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sxTO0ZU8uF .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #234d8b;
}
.cid-sxTO0ZU8uF .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sxTO0ZU8uF .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sxTO0ZU8uF ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sxTO0ZU8uF .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sxTO0ZU8uF button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sxTO0ZU8uF button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-sxTO0ZU8uF button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sxTO0ZU8uF button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sxTO0ZU8uF button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sxTO0ZU8uF button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sxTO0ZU8uF nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sxTO0ZU8uF nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sxTO0ZU8uF nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sxTO0ZU8uF nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sxTO0ZU8uF .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-sxTO0ZU8uF a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sxTO0ZU8uF .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-sxTO0ZU8uF .navbar {
    height: 70px;
  }
  .cid-sxTO0ZU8uF .navbar.opened {
    height: auto;
  }
  .cid-sxTO0ZU8uF .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sxTO11M4Pb {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sxTO11M4Pb .item {
  padding-bottom: 2rem;
}
.cid-sxTO11M4Pb .item-wrapper {
  position: relative;
}
.cid-sxTO11M4Pb .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-sxTO11M4Pb .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-sxTO11M4Pb .carousel-control,
.cid-sxTO11M4Pb .close {
  background: #1b1b1b;
}
.cid-sxTO11M4Pb .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-sxTO11M4Pb .carousel-control-prev span {
  margin-right: 5px;
}
.cid-sxTO11M4Pb .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-sxTO11M4Pb .carousel-control-next span {
  margin-left: 5px;
}
.cid-sxTO11M4Pb .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-sxTO11M4Pb .close::before {
  content: '\e91a';
}
.cid-sxTO11M4Pb .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-sxTO11M4Pb .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-sxTO11M4Pb .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sxTO11M4Pb .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-sxTO11M4Pb .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-sxTO11M4Pb .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-sxTO11M4Pb .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-sxTO11M4Pb .carousel-indicators li.active,
.cid-sxTO11M4Pb .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-sxTO11M4Pb .carousel-indicators li::after,
.cid-sxTO11M4Pb .carousel-indicators li::before {
  content: none;
}
.cid-sxTO11M4Pb .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-sxTO11M4Pb .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-sxTO11M4Pb .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-sxTO11M4Pb .carousel-indicators {
    display: none;
  }
}
.cid-sxTO11M4Pb .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-sxTO11M4Pb .carousel-inner > .active {
  display: block;
}
.cid-sxTO11M4Pb .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sxTO11M4Pb .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-sxTO11M4Pb .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-sxTO11M4Pb .carousel-control,
  .cid-sxTO11M4Pb .carousel-indicators,
  .cid-sxTO11M4Pb .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-sxTO11M4Pb .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-sxTO11M4Pb .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-sxTO11M4Pb .carousel-indicators .active,
.cid-sxTO11M4Pb .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-sxTO11M4Pb .carousel-indicators .active {
  background: #fff;
}
.cid-sxTO11M4Pb .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-sxTO11M4Pb .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-sxTO11M4Pb .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-sxTO11M4Pb .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-sxTO11M4Pb .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-sxTO11M4Pb .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-sxTO11M4Pb .carousel {
  width: 100%;
}
.cid-sxTO11M4Pb .modal-backdrop.in {
  opacity: 0.8;
}
.cid-sxTO11M4Pb .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-sxTO11M4Pb .modal.fade .modal-dialog,
.cid-sxTO11M4Pb .modal.in .modal-dialog {
  transform: none;
}
.cid-sxTO11M4Pb .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-sxTO11M4Pb H6 {
  text-align: right;
}
.cid-sxTO11M4Pb H3 {
  text-align: center;
}
.cid-sxTO13v8ds {
  padding-top: 0px;
  padding-bottom: 0px;
  background: linear-gradient(45deg, #f9f9f9, #efefef);
}
.cid-sxTO13v8ds .mbr-section-subtitle {
  font-style: italic;
  letter-spacing: 1rem;
}
.cid-sxTO13v8ds .mbr-section-title {
  text-align: center;
  color: #ffffff;
}
.cid-sxTO13v8ds H3 {
  text-align: center;
  color: #353535;
}
.cid-sxTO13v8ds .mbr-text,
.cid-sxTO13v8ds .mbr-section-btn {
  color: #ffffff;
  text-align: center;
}
.cid-sxTO14h5JP {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #132c53;
}
.cid-sxTO14h5JP .mbr-text,
.cid-sxTO14h5JP .mbr-section-btn {
  color: #6592e6;
}
.cid-sxTO14h5JP .mbr-section-title {
  text-align: center;
  color: #ffffff;
}
.cid-sxTO14h5JP .mbr-section-subtitle {
  color: #ffffff;
}
.cid-sLs5uo86pE {
  padding-top: 6rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
#koekude {
  font-size: 1.4rem !important;
  font-family: 'Moririse2' !important;
  color: #6592e6;
  margin-left: 1rem;
}
.cid-sLs5uo86pE .panel-group {
  border: none;
}
.cid-sLs5uo86pE .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-sLs5uo86pE .panel-body,
.cid-sLs5uo86pE .card-header {
  padding: 1rem 0;
}
.cid-sLs5uo86pE .panel-title-edit {
  color: #232323;
}
.cid-sLs5uo86pE .card .card-header {
  background-color: transparent;
  margin-bottom: 0;
}
.cid-sLs5uo86pE H4 {
  color: #6592e6;
}
.cid-sLs5uo86pE .panel-text {
  color: #5a5959;
}
.cid-sLs6tZXGaW {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-sLs6tZXGaW .mbr-iconfont {
  font-size: 1.4rem !important;
  font-family: 'Moririse2' !important;
  color: #6592e6;
  margin-left: 1rem;
}
.cid-sLs6tZXGaW .panel-group {
  border: none;
}
.cid-sLs6tZXGaW .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-sLs6tZXGaW .panel-body,
.cid-sLs6tZXGaW .card-header {
  padding: 1rem 0;
}
.cid-sLs6tZXGaW .panel-title-edit {
  color: #232323;
}
.cid-sLs6tZXGaW .card .card-header {
  background-color: transparent;
  margin-bottom: 0;
}
.cid-sLs6tZXGaW H4 {
  color: #6592e6;
}
.cid-sLs6tZXGaW .panel-text {
  color: #5a5959;
}
.cid-sLt6kbAPQB {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sLt6kbAPQB .item {
  padding-bottom: 2rem;
}
.cid-sLt6kbAPQB .item-wrapper {
  position: relative;
}
.cid-sLt6kbAPQB .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-sLt6kbAPQB .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-sLt6kbAPQB .carousel-control,
.cid-sLt6kbAPQB .close {
  background: #1b1b1b;
}
.cid-sLt6kbAPQB .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-sLt6kbAPQB .carousel-control-prev span {
  margin-right: 5px;
}
.cid-sLt6kbAPQB .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-sLt6kbAPQB .carousel-control-next span {
  margin-left: 5px;
}
.cid-sLt6kbAPQB .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-sLt6kbAPQB .close::before {
  content: '\e91a';
}
.cid-sLt6kbAPQB .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-sLt6kbAPQB .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-sLt6kbAPQB .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sLt6kbAPQB .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-sLt6kbAPQB .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-sLt6kbAPQB .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-sLt6kbAPQB .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-sLt6kbAPQB .carousel-indicators li.active,
.cid-sLt6kbAPQB .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-sLt6kbAPQB .carousel-indicators li::after,
.cid-sLt6kbAPQB .carousel-indicators li::before {
  content: none;
}
.cid-sLt6kbAPQB .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-sLt6kbAPQB .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-sLt6kbAPQB .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-sLt6kbAPQB .carousel-indicators {
    display: none;
  }
}
.cid-sLt6kbAPQB .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-sLt6kbAPQB .carousel-inner > .active {
  display: block;
}
.cid-sLt6kbAPQB .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sLt6kbAPQB .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-sLt6kbAPQB .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-sLt6kbAPQB .carousel-control,
  .cid-sLt6kbAPQB .carousel-indicators,
  .cid-sLt6kbAPQB .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-sLt6kbAPQB .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-sLt6kbAPQB .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-sLt6kbAPQB .carousel-indicators .active,
.cid-sLt6kbAPQB .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-sLt6kbAPQB .carousel-indicators .active {
  background: #fff;
}
.cid-sLt6kbAPQB .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-sLt6kbAPQB .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-sLt6kbAPQB .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-sLt6kbAPQB .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-sLt6kbAPQB .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-sLt6kbAPQB .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-sLt6kbAPQB .carousel {
  width: 100%;
}
.cid-sLt6kbAPQB .modal-backdrop.in {
  opacity: 0.8;
}
.cid-sLt6kbAPQB .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-sLt6kbAPQB .modal.fade .modal-dialog,
.cid-sLt6kbAPQB .modal.in .modal-dialog {
  transform: none;
}
.cid-sLt6kbAPQB .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-sLt6kbAPQB H6 {
  text-align: right;
  color: #b5b5b5;
}
.cid-sLt6kbAPQB H3 {
  text-align: center;
}
.cid-sLt6kbAPQB H4 {
  color: #3d3c3c;
}
.cid-sxTO158Sx7 {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #fafafa;
}
.cid-sxTO158Sx7 .mbr-section-subtitle {
  color: #232323;
}
.cid-sxTO158Sx7 .mbr-text {
  color: #5a5959;
}
.cid-sxTO15POfe {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #fafafa;
}
.cid-sxTO15POfe .mbr-text {
  color: #5a5959;
}
.cid-sxTO15POfe .mbr-section-subtitle {
  color: #232323;
}
.cid-sy5o63LLj9 {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #fafafa;
}
.cid-sy5o63LLj9 .mbr-text {
  color: #5a5959;
}
.cid-sxTWDDiTQc {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-sxTWDDiTQc .item {
  display: flex;
  align-items: center;
  margin-bottom: 2rem;
}
.cid-sxTWDDiTQc .icon-box {
  background: #6592e6;
  width: 60px;
  min-width: 60px;
  height: 60px;
  border-radius: 50%;
  margin-right: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-sxTWDDiTQc .mbr-iconfont {
  font-size: 2rem;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-sxTWDDiTQc .card {
    margin-bottom: 2rem;
  }
  .cid-sxTWDDiTQc .card-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-sxTWDDiTQc .icon-text {
  color: #5a5959;
}
.cid-sxTWDDiTQc .mbr-text,
.cid-sxTWDDiTQc .mbr-section-btn {
  color: #5a5959;
}
.cid-sxTO16xYtC {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sxTO16xYtC .image-wrap img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-sxTO16xYtC .image-wrap img {
    display: block;
    margin: auto;
    width: 40%;
  }
}
.cid-sxTO17zP9x {
  padding-top: 0rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-sxTO17zP9x .img-wrapper {
  text-align: center;
}
.cid-sxTO17zP9x img {
  margin: auto;
  width: 140px;
  padding-bottom: 2rem;
}
.cid-sxTO17zP9x .row {
  align-items: flex-start;
}
.cid-sxTO17zP9x .card-wrapper {
  border-radius: 4px;
  background: #fafafa;
}
@media (max-width: 992px) {
  .cid-sxTO17zP9x .card-wrapper {
    margin-bottom: 2rem;
  }
}
@media (min-width: 768px) {
  .cid-sxTO17zP9x .card-wrapper {
    padding: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-sxTO17zP9x .card-wrapper {
    padding: 1rem;
  }
}
.cid-sxTO19IFyx {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-sxTO19IFyx .mbr-text {
  color: #c1c1c1;
}
.cid-sxTO19IFyx .mbr-text,
.cid-sxTO19IFyx .mbr-section-btn {
  color: #353535;
  text-align: center;
}
.cid-sxTO19IFyx H3 {
  text-align: center;
}
.cid-sxTO1aveTD {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #fafafa;
}
.cid-sxTO1aveTD .socicon-bg-facebook {
  background: #3e5b98;
  color: #ffffff;
}
.cid-sxTO1aveTD .socicon-bg-twitter {
  background: #4da7de;
  color: #ffffff;
}
.cid-sxTO1aveTD .socicon-bg-googleplus {
  background: #dd4b39;
  color: #ffffff;
}
.cid-sxTO1aveTD .socicon-bg-vkontakte {
  background: #5a7fa6;
  color: #ffffff;
}
.cid-sxTO1aveTD .socicon-bg-odnoklassniki {
  background: #f48420;
  color: #ffffff;
}
.cid-sxTO1aveTD .socicon-bg-pinterest {
  background: #c92619;
  color: #ffffff;
}
.cid-sxTO1aveTD .socicon-bg-mail {
  background: #134785;
  color: #ffffff;
}
.cid-sxTO1aveTD .btn-social {
  font-size: 20px;
  border-radius: 50%;
  padding: 0;
  width: 44px;
  height: 44px;
  line-height: 44px;
  text-align: center;
  position: relative;
  cursor: pointer;
  border: none !important;
}
.cid-sxTO1aveTD .btn-social i {
  top: 0;
  line-height: 44px;
  width: 44px;
}
.cid-sxTO1aveTD .btn-social + .btn {
  margin-left: .1rem;
}
.cid-sxTO1aveTD [class^="socicon-"]:before,
.cid-sxTO1aveTD [class*=" socicon-"]:before {
  line-height: 44px;
}
@media (max-width: 767px) {
  .cid-sxTO1aveTD .btn {
    font-size: 20px !important;
  }
}
.cid-sxTO1bUxXI {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sxTO1bUxXI .image-wrap img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-sxTO1bUxXI .image-wrap img {
    display: block;
    margin: auto;
    width: 50%;
  }
}
.cid-sxTO1cP1jc {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #234d8b;
}
.cid-sxHp0GJClV {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-sxHp0GJClV nav.navbar {
  position: fixed;
}
.cid-sxHp0GJClV .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-sxHp0GJClV .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sxHp0GJClV .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sxHp0GJClV .dropdown-item:hover,
.cid-sxHp0GJClV .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-sxHp0GJClV .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sxHp0GJClV .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sxHp0GJClV .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sxHp0GJClV .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sxHp0GJClV .nav-link {
  position: relative;
}
.cid-sxHp0GJClV .container {
  display: flex;
  margin: auto;
}
.cid-sxHp0GJClV .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sxHp0GJClV .dropdown-menu,
.cid-sxHp0GJClV .navbar.opened {
  background: #234d8b !important;
}
.cid-sxHp0GJClV .nav-item:focus,
.cid-sxHp0GJClV .nav-link:focus {
  outline: none;
}
.cid-sxHp0GJClV .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sxHp0GJClV .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sxHp0GJClV .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sxHp0GJClV .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sxHp0GJClV .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sxHp0GJClV .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sxHp0GJClV .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #234d8b;
}
.cid-sxHp0GJClV .navbar.opened {
  transition: all 0.3s;
}
.cid-sxHp0GJClV .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sxHp0GJClV .navbar .navbar-logo img {
  width: auto;
}
.cid-sxHp0GJClV .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sxHp0GJClV .navbar.collapsed {
  justify-content: center;
}
.cid-sxHp0GJClV .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sxHp0GJClV .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sxHp0GJClV .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-sxHp0GJClV .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sxHp0GJClV .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sxHp0GJClV .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-sxHp0GJClV .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sxHp0GJClV .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sxHp0GJClV .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sxHp0GJClV .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sxHp0GJClV .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sxHp0GJClV .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sxHp0GJClV .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sxHp0GJClV .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-sxHp0GJClV .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sxHp0GJClV .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sxHp0GJClV .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sxHp0GJClV .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sxHp0GJClV .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sxHp0GJClV .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sxHp0GJClV .navbar.navbar-short {
  min-height: 60px;
}
.cid-sxHp0GJClV .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sxHp0GJClV .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sxHp0GJClV .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-sxHp0GJClV .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sxHp0GJClV .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sxHp0GJClV .dropdown-item.active,
.cid-sxHp0GJClV .dropdown-item:active {
  background-color: transparent;
}
.cid-sxHp0GJClV .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sxHp0GJClV .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sxHp0GJClV .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sxHp0GJClV .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #234d8b;
}
.cid-sxHp0GJClV .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sxHp0GJClV .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sxHp0GJClV ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sxHp0GJClV .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sxHp0GJClV button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sxHp0GJClV button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-sxHp0GJClV button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sxHp0GJClV button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sxHp0GJClV button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sxHp0GJClV button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sxHp0GJClV nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sxHp0GJClV nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sxHp0GJClV nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sxHp0GJClV nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sxHp0GJClV .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-sxHp0GJClV a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sxHp0GJClV .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-sxHp0GJClV .navbar {
    height: 70px;
  }
  .cid-sxHp0GJClV .navbar.opened {
    height: auto;
  }
  .cid-sxHp0GJClV .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sxHp0I6TCG {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sxHp0I6TCG .item {
  padding-bottom: 2rem;
}
.cid-sxHp0I6TCG .item-wrapper {
  position: relative;
}
.cid-sxHp0I6TCG .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-sxHp0I6TCG .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-sxHp0I6TCG .carousel-control,
.cid-sxHp0I6TCG .close {
  background: #1b1b1b;
}
.cid-sxHp0I6TCG .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-sxHp0I6TCG .carousel-control-prev span {
  margin-right: 5px;
}
.cid-sxHp0I6TCG .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-sxHp0I6TCG .carousel-control-next span {
  margin-left: 5px;
}
.cid-sxHp0I6TCG .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-sxHp0I6TCG .close::before {
  content: '\e91a';
}
.cid-sxHp0I6TCG .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-sxHp0I6TCG .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-sxHp0I6TCG .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sxHp0I6TCG .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-sxHp0I6TCG .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-sxHp0I6TCG .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-sxHp0I6TCG .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-sxHp0I6TCG .carousel-indicators li.active,
.cid-sxHp0I6TCG .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-sxHp0I6TCG .carousel-indicators li::after,
.cid-sxHp0I6TCG .carousel-indicators li::before {
  content: none;
}
.cid-sxHp0I6TCG .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-sxHp0I6TCG .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-sxHp0I6TCG .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-sxHp0I6TCG .carousel-indicators {
    display: none;
  }
}
.cid-sxHp0I6TCG .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-sxHp0I6TCG .carousel-inner > .active {
  display: block;
}
.cid-sxHp0I6TCG .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sxHp0I6TCG .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-sxHp0I6TCG .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-sxHp0I6TCG .carousel-control,
  .cid-sxHp0I6TCG .carousel-indicators,
  .cid-sxHp0I6TCG .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-sxHp0I6TCG .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-sxHp0I6TCG .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-sxHp0I6TCG .carousel-indicators .active,
.cid-sxHp0I6TCG .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-sxHp0I6TCG .carousel-indicators .active {
  background: #fff;
}
.cid-sxHp0I6TCG .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-sxHp0I6TCG .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-sxHp0I6TCG .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-sxHp0I6TCG .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-sxHp0I6TCG .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-sxHp0I6TCG .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-sxHp0I6TCG .carousel {
  width: 100%;
}
.cid-sxHp0I6TCG .modal-backdrop.in {
  opacity: 0.8;
}
.cid-sxHp0I6TCG .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-sxHp0I6TCG .modal.fade .modal-dialog,
.cid-sxHp0I6TCG .modal.in .modal-dialog {
  transform: none;
}
.cid-sxHp0I6TCG .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-sxHp0I6TCG H6 {
  text-align: right;
}
.cid-sxHp0I6TCG H3 {
  text-align: center;
}
.cid-sxNO4DWd8j {
  padding-top: 0px;
  padding-bottom: 0px;
  background: linear-gradient(45deg, #f9f9f9, #fafafa);
}
.cid-sxNO4DWd8j .mbr-section-subtitle {
  font-style: italic;
  letter-spacing: 1rem;
}
.cid-sxNO4DWd8j H3 {
  color: #232323;
  text-align: center;
}
.cid-sxHIBYND75 {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #132c53;
}
.cid-sxHIBYND75 .mbr-text,
.cid-sxHIBYND75 .mbr-section-btn {
  color: #6592e6;
}
.cid-sxHIBYND75 .mbr-section-title {
  text-align: center;
  color: #ffffff;
}
.cid-sxHIBYND75 .mbr-section-subtitle {
  color: #ffffff;
}
.cid-sxHJazSK7k {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #fafafa;
}
.cid-sxHJazSK7k .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
.cid-sxHJazSK7k form .mbr-section-btn {
  text-align: center;
  width: 100%;
}
.cid-sxHJazSK7k form .mbr-section-btn .btn {
  display: inline-flex;
}
@media (max-width: 991px) {
  .cid-sxHJazSK7k form .mbr-section-btn .btn {
    width: 100%;
  }
}
.cid-sxHJazSK7k .mbr-section-title {
  color: #4479d9;
}
.cid-sxHJazSK7k .mbr-section-subtitle {
  color: #5a5959;
}
.cid-sxHp0Lt5yo {
  padding-top: 15px;
  padding-bottom: 0px;
  background: linear-gradient(45deg, #873993, #234d8b);
}
.cid-sxHp0Lt5yo .mbr-section-subtitle {
  font-style: italic;
  letter-spacing: 1rem;
}
.cid-sxHp0Lt5yo .mbr-section-title {
  text-align: center;
  color: #ffffff;
}
.cid-sxHp0Lt5yo H3 {
  text-align: center;
  color: #ffffff;
}
.cid-sxHp0Lt5yo .mbr-text,
.cid-sxHp0Lt5yo .mbr-section-btn {
  color: #ffffff;
  text-align: center;
}
.cid-sxHp0Mje9d {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-sxHp0Mje9d .mbr-text {
  color: #c1c1c1;
}
.cid-sxHp0Mje9d .mbr-text,
.cid-sxHp0Mje9d .mbr-section-btn {
  color: #353535;
  text-align: center;
}
.cid-sxHp0Mje9d H3 {
  text-align: center;
}
.cid-sxHp0MYXkr {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #fafafa;
}
.cid-sxHp0MYXkr .socicon-bg-facebook {
  background: #3e5b98;
  color: #ffffff;
}
.cid-sxHp0MYXkr .socicon-bg-twitter {
  background: #4da7de;
  color: #ffffff;
}
.cid-sxHp0MYXkr .socicon-bg-googleplus {
  background: #dd4b39;
  color: #ffffff;
}
.cid-sxHp0MYXkr .socicon-bg-vkontakte {
  background: #5a7fa6;
  color: #ffffff;
}
.cid-sxHp0MYXkr .socicon-bg-odnoklassniki {
  background: #f48420;
  color: #ffffff;
}
.cid-sxHp0MYXkr .socicon-bg-pinterest {
  background: #c92619;
  color: #ffffff;
}
.cid-sxHp0MYXkr .socicon-bg-mail {
  background: #134785;
  color: #ffffff;
}
.cid-sxHp0MYXkr .btn-social {
  font-size: 20px;
  border-radius: 50%;
  padding: 0;
  width: 44px;
  height: 44px;
  line-height: 44px;
  text-align: center;
  position: relative;
  cursor: pointer;
  border: none !important;
}
.cid-sxHp0MYXkr .btn-social i {
  top: 0;
  line-height: 44px;
  width: 44px;
}
.cid-sxHp0MYXkr .btn-social + .btn {
  margin-left: .1rem;
}
.cid-sxHp0MYXkr [class^="socicon-"]:before,
.cid-sxHp0MYXkr [class*=" socicon-"]:before {
  line-height: 44px;
}
@media (max-width: 767px) {
  .cid-sxHp0MYXkr .btn {
    font-size: 20px !important;
  }
}
.cid-sxHp0NI4xV {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-sxHp0NI4xV .line {
  background-color: #fafafa;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-sxHp0NI4xV .mbr-text {
  text-align: center;
  color: #353535;
}
.cid-sxTwMZdvYp {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sxTwMZdvYp .image-wrap img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-sxTwMZdvYp .image-wrap img {
    display: block;
    margin: auto;
    width: 50%;
  }
}
.cid-sxHp0PtbXe {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #234d8b;
}
.cid-sL927qnter {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-sL927qnter nav.navbar {
  position: fixed;
}
.cid-sL927qnter .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-sL927qnter .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sL927qnter .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sL927qnter .dropdown-item:hover,
.cid-sL927qnter .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-sL927qnter .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sL927qnter .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sL927qnter .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sL927qnter .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sL927qnter .nav-link {
  position: relative;
}
.cid-sL927qnter .container {
  display: flex;
  margin: auto;
}
.cid-sL927qnter .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sL927qnter .dropdown-menu,
.cid-sL927qnter .navbar.opened {
  background: #234d8b !important;
}
.cid-sL927qnter .nav-item:focus,
.cid-sL927qnter .nav-link:focus {
  outline: none;
}
.cid-sL927qnter .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sL927qnter .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sL927qnter .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sL927qnter .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sL927qnter .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sL927qnter .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sL927qnter .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #234d8b;
}
.cid-sL927qnter .navbar.opened {
  transition: all 0.3s;
}
.cid-sL927qnter .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sL927qnter .navbar .navbar-logo img {
  width: auto;
}
.cid-sL927qnter .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sL927qnter .navbar.collapsed {
  justify-content: center;
}
.cid-sL927qnter .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sL927qnter .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sL927qnter .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-sL927qnter .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sL927qnter .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sL927qnter .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-sL927qnter .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sL927qnter .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sL927qnter .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sL927qnter .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sL927qnter .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sL927qnter .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sL927qnter .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sL927qnter .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-sL927qnter .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sL927qnter .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sL927qnter .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sL927qnter .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sL927qnter .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sL927qnter .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sL927qnter .navbar.navbar-short {
  min-height: 60px;
}
.cid-sL927qnter .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sL927qnter .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sL927qnter .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-sL927qnter .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sL927qnter .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sL927qnter .dropdown-item.active,
.cid-sL927qnter .dropdown-item:active {
  background-color: transparent;
}
.cid-sL927qnter .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sL927qnter .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sL927qnter .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sL927qnter .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #234d8b;
}
.cid-sL927qnter .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sL927qnter .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sL927qnter ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sL927qnter .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sL927qnter button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sL927qnter button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-sL927qnter button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sL927qnter button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sL927qnter button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sL927qnter button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sL927qnter nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sL927qnter nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sL927qnter nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sL927qnter nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sL927qnter .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-sL927qnter a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sL927qnter .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-sL927qnter .navbar {
    height: 70px;
  }
  .cid-sL927qnter .navbar.opened {
    height: auto;
  }
  .cid-sL927qnter .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sL927rTjjQ {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sL927rTjjQ .item {
  padding-bottom: 2rem;
}
.cid-sL927rTjjQ .item-wrapper {
  position: relative;
}
.cid-sL927rTjjQ .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-sL927rTjjQ .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-sL927rTjjQ .carousel-control,
.cid-sL927rTjjQ .close {
  background: #1b1b1b;
}
.cid-sL927rTjjQ .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-sL927rTjjQ .carousel-control-prev span {
  margin-right: 5px;
}
.cid-sL927rTjjQ .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-sL927rTjjQ .carousel-control-next span {
  margin-left: 5px;
}
.cid-sL927rTjjQ .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-sL927rTjjQ .close::before {
  content: '\e91a';
}
.cid-sL927rTjjQ .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-sL927rTjjQ .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-sL927rTjjQ .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sL927rTjjQ .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-sL927rTjjQ .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-sL927rTjjQ .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-sL927rTjjQ .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-sL927rTjjQ .carousel-indicators li.active,
.cid-sL927rTjjQ .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-sL927rTjjQ .carousel-indicators li::after,
.cid-sL927rTjjQ .carousel-indicators li::before {
  content: none;
}
.cid-sL927rTjjQ .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-sL927rTjjQ .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-sL927rTjjQ .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-sL927rTjjQ .carousel-indicators {
    display: none;
  }
}
.cid-sL927rTjjQ .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-sL927rTjjQ .carousel-inner > .active {
  display: block;
}
.cid-sL927rTjjQ .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sL927rTjjQ .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-sL927rTjjQ .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-sL927rTjjQ .carousel-control,
  .cid-sL927rTjjQ .carousel-indicators,
  .cid-sL927rTjjQ .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-sL927rTjjQ .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-sL927rTjjQ .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-sL927rTjjQ .carousel-indicators .active,
.cid-sL927rTjjQ .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-sL927rTjjQ .carousel-indicators .active {
  background: #fff;
}
.cid-sL927rTjjQ .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-sL927rTjjQ .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-sL927rTjjQ .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-sL927rTjjQ .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-sL927rTjjQ .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-sL927rTjjQ .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-sL927rTjjQ .carousel {
  width: 100%;
}
.cid-sL927rTjjQ .modal-backdrop.in {
  opacity: 0.8;
}
.cid-sL927rTjjQ .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-sL927rTjjQ .modal.fade .modal-dialog,
.cid-sL927rTjjQ .modal.in .modal-dialog {
  transform: none;
}
.cid-sL927rTjjQ .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-sL927rTjjQ H6 {
  text-align: right;
}
.cid-sL927rTjjQ H3 {
  text-align: center;
}
.cid-sL927t5zgi {
  padding-top: 0px;
  padding-bottom: 0px;
  background: linear-gradient(45deg, #f9f9f9, #fafafa);
}
.cid-sL927t5zgi .mbr-section-subtitle {
  font-style: italic;
  letter-spacing: 1rem;
}
.cid-sL927t5zgi H3 {
  color: #232323;
  text-align: center;
}
.cid-sL927tN7bs {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #132c53;
}
.cid-sL927tN7bs .mbr-text,
.cid-sL927tN7bs .mbr-section-btn {
  color: #6592e6;
}
.cid-sL927tN7bs .mbr-section-title {
  text-align: center;
  color: #ffffff;
}
.cid-sL927tN7bs .mbr-section-subtitle {
  color: #ffffff;
}
.cid-sL927uwc0C {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #f9f9f9;
}
.cid-sL927uwc0C .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
.cid-sL927uwc0C form .mbr-section-btn {
  text-align: center;
  width: 100%;
}
.cid-sL927uwc0C form .mbr-section-btn .btn {
  display: inline-flex;
}
@media (max-width: 991px) {
  .cid-sL927uwc0C form .mbr-section-btn .btn {
    width: 100%;
  }
}
.cid-sL927vp7xq {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sL927vp7xq .item {
  padding-bottom: 2rem;
}
.cid-sL927vp7xq .item-wrapper {
  position: relative;
}
.cid-sL927vp7xq .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-sL927vp7xq .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-sL927vp7xq .carousel-control,
.cid-sL927vp7xq .close {
  background: #1b1b1b;
}
.cid-sL927vp7xq .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-sL927vp7xq .carousel-control-prev span {
  margin-right: 5px;
}
.cid-sL927vp7xq .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-sL927vp7xq .carousel-control-next span {
  margin-left: 5px;
}
.cid-sL927vp7xq .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-sL927vp7xq .close::before {
  content: '\e91a';
}
.cid-sL927vp7xq .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-sL927vp7xq .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-sL927vp7xq .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sL927vp7xq .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-sL927vp7xq .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-sL927vp7xq .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-sL927vp7xq .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-sL927vp7xq .carousel-indicators li.active,
.cid-sL927vp7xq .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-sL927vp7xq .carousel-indicators li::after,
.cid-sL927vp7xq .carousel-indicators li::before {
  content: none;
}
.cid-sL927vp7xq .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-sL927vp7xq .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-sL927vp7xq .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-sL927vp7xq .carousel-indicators {
    display: none;
  }
}
.cid-sL927vp7xq .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-sL927vp7xq .carousel-inner > .active {
  display: block;
}
.cid-sL927vp7xq .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sL927vp7xq .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-sL927vp7xq .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-sL927vp7xq .carousel-control,
  .cid-sL927vp7xq .carousel-indicators,
  .cid-sL927vp7xq .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-sL927vp7xq .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-sL927vp7xq .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-sL927vp7xq .carousel-indicators .active,
.cid-sL927vp7xq .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-sL927vp7xq .carousel-indicators .active {
  background: #fff;
}
.cid-sL927vp7xq .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-sL927vp7xq .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-sL927vp7xq .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-sL927vp7xq .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-sL927vp7xq .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-sL927vp7xq .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-sL927vp7xq .carousel {
  width: 100%;
}
.cid-sL927vp7xq .modal-backdrop.in {
  opacity: 0.8;
}
.cid-sL927vp7xq .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-sL927vp7xq .modal.fade .modal-dialog,
.cid-sL927vp7xq .modal.in .modal-dialog {
  transform: none;
}
.cid-sL927vp7xq .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-sL927vp7xq H6 {
  text-align: right;
}
.cid-sL927vp7xq H3 {
  text-align: center;
}
.cid-sL927wpX3u {
  padding-top: 0px;
  padding-bottom: 0px;
  background: linear-gradient(45deg, #f9f9f9, #f9f9f9);
}
.cid-sL927wpX3u .mbr-section-subtitle {
  font-style: italic;
  letter-spacing: 1rem;
}
.cid-sL927wpX3u .mbr-section-title {
  text-align: center;
  color: #5a5959;
}
.cid-sL927wpX3u H3 {
  text-align: center;
  color: #232323;
}
.cid-sL927wpX3u .mbr-text,
.cid-sL927wpX3u .mbr-section-btn {
  color: #5a5959;
  text-align: center;
}
.cid-sL927x6RvB {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #132c53;
}
.cid-sL927x6RvB .mbr-text,
.cid-sL927x6RvB .mbr-section-btn {
  color: #4479d9;
}
.cid-sL927xYknI {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #4479d9;
}
.cid-sL927xYknI .mbr-section-subtitle {
  color: #ffffff;
}
.cid-sL927xYknI .mbr-text {
  color: #ffffff;
}
.cid-sL927yBXSI {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #f4f4f4;
}
.cid-sL927yBXSI .mbr-section-subtitle {
  color: #232323;
}
.cid-sL927yBXSI .mbr-text {
  color: #5a5959;
}
.cid-sL927zfUTk {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-sL927zfUTk .mbr-section-subtitle {
  color: #232323;
}
.cid-sL927zfUTk .mbr-text {
  color: #5a5959;
}
.cid-sL927zRF5U {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #f4f4f4;
}
.cid-sL927zRF5U .mbr-section-subtitle {
  color: #232323;
}
.cid-sL927zRF5U .mbr-text {
  color: #5a5959;
}
.cid-sL927Au1wK {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-sL927Au1wK .mbr-section-subtitle {
  color: #232323;
}
.cid-sL927Au1wK .mbr-text {
  color: #5a5959;
}
.cid-sL927B92tX {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #f4f4f4;
}
.cid-sL927B92tX .mbr-section-subtitle {
  color: #232323;
}
.cid-sL927B92tX .mbr-text {
  color: #5a5959;
}
.cid-sL927BOUhq {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-sL927BOUhq .mbr-section-subtitle {
  color: #232323;
}
.cid-sL927BOUhq .mbr-text {
  color: #5a5959;
}
.cid-sL9PJU0NkU {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #f4f4f4;
}
.cid-sL9PJU0NkU .mbr-section-subtitle {
  color: #232323;
}
.cid-sL9PJU0NkU .mbr-text {
  color: #5a5959;
}
.cid-sL9PKYpZUX {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-sL9PKYpZUX .mbr-section-subtitle {
  color: #232323;
}
.cid-sL9PKYpZUX .mbr-text {
  color: #5a5959;
}
.cid-sL9PM0gpvo {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #f4f4f4;
}
.cid-sL9PM0gpvo .mbr-section-subtitle {
  color: #232323;
}
.cid-sL9PM0gpvo .mbr-text {
  color: #5a5959;
}
.cid-sL927Cr4QC {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-sL927Cr4QC .image-wrap img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-sL927Cr4QC .image-wrap img {
    display: block;
    margin: auto;
    width: 10%;
  }
}
.cid-sL927Cr4QC .mbr-text,
.cid-sL927Cr4QC .mbr-section-btn {
  text-align: left;
}
.cid-sL927Dhr74 {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #132c53;
}
.cid-sL927Dhr74 .mbr-section-subtitle {
  color: #ffffff;
}
.cid-sL927Dhr74 .mbr-text,
.cid-sL927Dhr74 .mbr-section-btn {
  color: #4479d9;
}
.cid-sL927E914c {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #fafafa;
}
.cid-sL927E914c .card-wrapper {
  display: flex;
}
@media (max-width: 991px) {
  .cid-sL927E914c .card-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-sL927E914c .mbr-iconfont {
  font-size: 2rem;
  color: #6592e6;
  padding-right: 1.5rem;
}
.cid-sL927E914c .card-text {
  color: #5a5959;
}
.cid-sL927E914c .card-title {
  color: #111111;
}
.cid-sL927Fe7sg {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sL927Fe7sg .image-wrap img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-sL927Fe7sg .image-wrap img {
    display: block;
    margin: auto;
    width: 40%;
  }
}
.cid-sL927Fe7sg .mbr-text,
.cid-sL927Fe7sg .mbr-section-btn {
  color: #5a5959;
}
.cid-sL927G1y2l {
  padding-top: 0px;
  padding-bottom: 0px;
  background: linear-gradient(45deg, #f9f9f9, #f9f9f9);
}
.cid-sL927G1y2l .mbr-section-subtitle {
  font-style: italic;
  letter-spacing: 1rem;
}
.cid-sL927G1y2l .mbr-section-title {
  text-align: center;
  color: #5a5959;
}
.cid-sL927G1y2l H3 {
  text-align: center;
  color: #232323;
}
.cid-sL927G1y2l .mbr-text,
.cid-sL927G1y2l .mbr-section-btn {
  color: #5a5959;
  text-align: center;
}
.cid-sL927GOOQR {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #132c53;
}
.cid-sL927GOOQR .mbr-text,
.cid-sL927GOOQR .mbr-section-btn {
  color: #6592e6;
}
.cid-sL927GOOQR .mbr-section-title {
  text-align: center;
  color: #ffffff;
}
.cid-sL927GOOQR .mbr-section-subtitle {
  color: #ffffff;
}
.cid-sL927HChhB {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sL927HChhB .item {
  display: flex;
  align-items: center;
  margin-bottom: 2rem;
}
.cid-sL927HChhB .icon-box {
  background: #6592e6;
  width: 60px;
  min-width: 60px;
  height: 60px;
  border-radius: 50%;
  margin-right: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-sL927HChhB .mbr-iconfont {
  font-size: 2rem;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-sL927HChhB .card {
    margin-bottom: 2rem;
  }
  .cid-sL927HChhB .card-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-sL927HChhB .icon-text {
  color: #5a5959;
}
.cid-sL927IBGiC {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sL927IBGiC .item {
  display: flex;
  align-items: center;
  margin-bottom: 2rem;
}
.cid-sL927IBGiC .icon-box {
  background: #6592e6;
  width: 60px;
  min-width: 60px;
  height: 60px;
  border-radius: 50%;
  margin-right: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-sL927IBGiC .mbr-iconfont {
  font-size: 2rem;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-sL927IBGiC .card {
    margin-bottom: 2rem;
  }
  .cid-sL927IBGiC .card-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-sL927IBGiC .icon-text {
  color: #5a5959;
}
.cid-sL927JHSQz {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sL927JHSQz .item {
  display: flex;
  align-items: center;
  margin-bottom: 2rem;
}
.cid-sL927JHSQz .icon-box {
  background: #6592e6;
  width: 60px;
  min-width: 60px;
  height: 60px;
  border-radius: 50%;
  margin-right: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-sL927JHSQz .mbr-iconfont {
  font-size: 2rem;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-sL927JHSQz .card {
    margin-bottom: 2rem;
  }
  .cid-sL927JHSQz .card-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-sL927JHSQz .icon-text {
  color: #5a5959;
}
.cid-sL927KE9bu {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sL927KE9bu .item {
  display: flex;
  align-items: center;
  margin-bottom: 2rem;
}
.cid-sL927KE9bu .icon-box {
  background: #6592e6;
  width: 60px;
  min-width: 60px;
  height: 60px;
  border-radius: 50%;
  margin-right: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-sL927KE9bu .mbr-iconfont {
  font-size: 2rem;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-sL927KE9bu .card {
    margin-bottom: 2rem;
  }
  .cid-sL927KE9bu .card-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-sL927KE9bu .icon-text {
  color: #5a5959;
}
.cid-sL927LExhS {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sL927LExhS .item {
  display: flex;
  align-items: center;
  margin-bottom: 2rem;
}
.cid-sL927LExhS .icon-box {
  background: #6592e6;
  width: 60px;
  min-width: 60px;
  height: 60px;
  border-radius: 50%;
  margin-right: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-sL927LExhS .mbr-iconfont {
  font-size: 2rem;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-sL927LExhS .card {
    margin-bottom: 2rem;
  }
  .cid-sL927LExhS .card-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-sL927LExhS .icon-text {
  color: #5a5959;
}
.cid-sL927MFWg7 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sL927MFWg7 .item {
  display: flex;
  align-items: center;
  margin-bottom: 2rem;
}
.cid-sL927MFWg7 .icon-box {
  background: #6592e6;
  width: 60px;
  min-width: 60px;
  height: 60px;
  border-radius: 50%;
  margin-right: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-sL927MFWg7 .mbr-iconfont {
  font-size: 2rem;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-sL927MFWg7 .card {
    margin-bottom: 2rem;
  }
  .cid-sL927MFWg7 .card-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-sL927MFWg7 .icon-text {
  color: #5a5959;
}
.cid-sL927NF5Bf {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sL927NF5Bf .item {
  display: flex;
  align-items: center;
  margin-bottom: 2rem;
}
.cid-sL927NF5Bf .icon-box {
  background: #6592e6;
  width: 60px;
  min-width: 60px;
  height: 60px;
  border-radius: 50%;
  margin-right: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-sL927NF5Bf .mbr-iconfont {
  font-size: 2rem;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-sL927NF5Bf .card {
    margin-bottom: 2rem;
  }
  .cid-sL927NF5Bf .card-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-sL927NF5Bf .icon-text {
  color: #5a5959;
}
.cid-sL927OOzkb {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #fafafa;
}
.cid-sL927OOzkb .socicon-bg-facebook {
  background: #3e5b98;
  color: #ffffff;
}
.cid-sL927OOzkb .socicon-bg-twitter {
  background: #4da7de;
  color: #ffffff;
}
.cid-sL927OOzkb .socicon-bg-googleplus {
  background: #dd4b39;
  color: #ffffff;
}
.cid-sL927OOzkb .socicon-bg-vkontakte {
  background: #5a7fa6;
  color: #ffffff;
}
.cid-sL927OOzkb .socicon-bg-odnoklassniki {
  background: #f48420;
  color: #ffffff;
}
.cid-sL927OOzkb .socicon-bg-pinterest {
  background: #c92619;
  color: #ffffff;
}
.cid-sL927OOzkb .socicon-bg-mail {
  background: #134785;
  color: #ffffff;
}
.cid-sL927OOzkb .btn-social {
  font-size: 20px;
  border-radius: 50%;
  padding: 0;
  width: 44px;
  height: 44px;
  line-height: 44px;
  text-align: center;
  position: relative;
  cursor: pointer;
  border: none !important;
}
.cid-sL927OOzkb .btn-social i {
  top: 0;
  line-height: 44px;
  width: 44px;
}
.cid-sL927OOzkb .btn-social + .btn {
  margin-left: .1rem;
}
.cid-sL927OOzkb [class^="socicon-"]:before,
.cid-sL927OOzkb [class*=" socicon-"]:before {
  line-height: 44px;
}
@media (max-width: 767px) {
  .cid-sL927OOzkb .btn {
    font-size: 20px !important;
  }
}
.cid-sL927PExCK {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sL927PExCK .image-wrap img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-sL927PExCK .image-wrap img {
    display: block;
    margin: auto;
    width: 50%;
  }
}
.cid-sL927QvIBq {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #234d8b;
}
.cid-sLnCMvsTGT {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-sLnCMvsTGT nav.navbar {
  position: fixed;
}
.cid-sLnCMvsTGT .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-sLnCMvsTGT .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sLnCMvsTGT .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sLnCMvsTGT .dropdown-item:hover,
.cid-sLnCMvsTGT .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-sLnCMvsTGT .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sLnCMvsTGT .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sLnCMvsTGT .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sLnCMvsTGT .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sLnCMvsTGT .nav-link {
  position: relative;
}
.cid-sLnCMvsTGT .container {
  display: flex;
  margin: auto;
}
.cid-sLnCMvsTGT .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sLnCMvsTGT .dropdown-menu,
.cid-sLnCMvsTGT .navbar.opened {
  background: #234d8b !important;
}
.cid-sLnCMvsTGT .nav-item:focus,
.cid-sLnCMvsTGT .nav-link:focus {
  outline: none;
}
.cid-sLnCMvsTGT .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sLnCMvsTGT .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sLnCMvsTGT .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sLnCMvsTGT .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sLnCMvsTGT .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sLnCMvsTGT .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sLnCMvsTGT .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #234d8b;
}
.cid-sLnCMvsTGT .navbar.opened {
  transition: all 0.3s;
}
.cid-sLnCMvsTGT .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sLnCMvsTGT .navbar .navbar-logo img {
  width: auto;
}
.cid-sLnCMvsTGT .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sLnCMvsTGT .navbar.collapsed {
  justify-content: center;
}
.cid-sLnCMvsTGT .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sLnCMvsTGT .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sLnCMvsTGT .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-sLnCMvsTGT .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sLnCMvsTGT .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sLnCMvsTGT .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-sLnCMvsTGT .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sLnCMvsTGT .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sLnCMvsTGT .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sLnCMvsTGT .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sLnCMvsTGT .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sLnCMvsTGT .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sLnCMvsTGT .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sLnCMvsTGT .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-sLnCMvsTGT .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sLnCMvsTGT .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sLnCMvsTGT .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sLnCMvsTGT .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sLnCMvsTGT .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sLnCMvsTGT .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sLnCMvsTGT .navbar.navbar-short {
  min-height: 60px;
}
.cid-sLnCMvsTGT .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sLnCMvsTGT .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sLnCMvsTGT .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-sLnCMvsTGT .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sLnCMvsTGT .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sLnCMvsTGT .dropdown-item.active,
.cid-sLnCMvsTGT .dropdown-item:active {
  background-color: transparent;
}
.cid-sLnCMvsTGT .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sLnCMvsTGT .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sLnCMvsTGT .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sLnCMvsTGT .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #234d8b;
}
.cid-sLnCMvsTGT .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sLnCMvsTGT .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sLnCMvsTGT ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sLnCMvsTGT .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sLnCMvsTGT button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sLnCMvsTGT button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-sLnCMvsTGT button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sLnCMvsTGT button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sLnCMvsTGT button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sLnCMvsTGT button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sLnCMvsTGT nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sLnCMvsTGT nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sLnCMvsTGT nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sLnCMvsTGT nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sLnCMvsTGT .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-sLnCMvsTGT a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sLnCMvsTGT .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-sLnCMvsTGT .navbar {
    height: 70px;
  }
  .cid-sLnCMvsTGT .navbar.opened {
    height: auto;
  }
  .cid-sLnCMvsTGT .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sLnCMwAcFH {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sLnCMwAcFH .item {
  padding-bottom: 2rem;
}
.cid-sLnCMwAcFH .item-wrapper {
  position: relative;
}
.cid-sLnCMwAcFH .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-sLnCMwAcFH .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-sLnCMwAcFH .carousel-control,
.cid-sLnCMwAcFH .close {
  background: #1b1b1b;
}
.cid-sLnCMwAcFH .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-sLnCMwAcFH .carousel-control-prev span {
  margin-right: 5px;
}
.cid-sLnCMwAcFH .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-sLnCMwAcFH .carousel-control-next span {
  margin-left: 5px;
}
.cid-sLnCMwAcFH .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-sLnCMwAcFH .close::before {
  content: '\e91a';
}
.cid-sLnCMwAcFH .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-sLnCMwAcFH .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-sLnCMwAcFH .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sLnCMwAcFH .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-sLnCMwAcFH .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-sLnCMwAcFH .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-sLnCMwAcFH .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-sLnCMwAcFH .carousel-indicators li.active,
.cid-sLnCMwAcFH .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-sLnCMwAcFH .carousel-indicators li::after,
.cid-sLnCMwAcFH .carousel-indicators li::before {
  content: none;
}
.cid-sLnCMwAcFH .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-sLnCMwAcFH .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-sLnCMwAcFH .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-sLnCMwAcFH .carousel-indicators {
    display: none;
  }
}
.cid-sLnCMwAcFH .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-sLnCMwAcFH .carousel-inner > .active {
  display: block;
}
.cid-sLnCMwAcFH .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sLnCMwAcFH .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-sLnCMwAcFH .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-sLnCMwAcFH .carousel-control,
  .cid-sLnCMwAcFH .carousel-indicators,
  .cid-sLnCMwAcFH .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-sLnCMwAcFH .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-sLnCMwAcFH .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-sLnCMwAcFH .carousel-indicators .active,
.cid-sLnCMwAcFH .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-sLnCMwAcFH .carousel-indicators .active {
  background: #fff;
}
.cid-sLnCMwAcFH .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-sLnCMwAcFH .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-sLnCMwAcFH .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-sLnCMwAcFH .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-sLnCMwAcFH .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-sLnCMwAcFH .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-sLnCMwAcFH .carousel {
  width: 100%;
}
.cid-sLnCMwAcFH .modal-backdrop.in {
  opacity: 0.8;
}
.cid-sLnCMwAcFH .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-sLnCMwAcFH .modal.fade .modal-dialog,
.cid-sLnCMwAcFH .modal.in .modal-dialog {
  transform: none;
}
.cid-sLnCMwAcFH .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-sLnCMwAcFH H6 {
  text-align: right;
}
.cid-sLnCMwAcFH H3 {
  text-align: center;
}
.cid-sLnCMxLmQe {
  padding-top: 0px;
  padding-bottom: 0px;
  background: linear-gradient(45deg, #f9f9f9, #fafafa);
}
.cid-sLnCMxLmQe .mbr-section-subtitle {
  font-style: italic;
  letter-spacing: 1rem;
}
.cid-sLnCMxLmQe H3 {
  color: #232323;
  text-align: center;
}
.cid-sLnCMyzOCN {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #132c53;
}
.cid-sLnCMyzOCN .mbr-text,
.cid-sLnCMyzOCN .mbr-section-btn {
  color: #6592e6;
}
.cid-sLnCMyzOCN .mbr-section-title {
  text-align: center;
  color: #ffffff;
}
.cid-sLnCMyzOCN .mbr-section-subtitle {
  color: #ffffff;
}
.cid-sLnCMzplzy {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #f9f9f9;
}
.cid-sLnCMzplzy .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
.cid-sLnCMzplzy form .mbr-section-btn {
  text-align: center;
  width: 100%;
}
.cid-sLnCMzplzy form .mbr-section-btn .btn {
  display: inline-flex;
}
@media (max-width: 991px) {
  .cid-sLnCMzplzy form .mbr-section-btn .btn {
    width: 100%;
  }
}
.cid-sLnCMAfOgC {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sLnCMAfOgC .item {
  padding-bottom: 2rem;
}
.cid-sLnCMAfOgC .item-wrapper {
  position: relative;
}
.cid-sLnCMAfOgC .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-sLnCMAfOgC .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-sLnCMAfOgC .carousel-control,
.cid-sLnCMAfOgC .close {
  background: #1b1b1b;
}
.cid-sLnCMAfOgC .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-sLnCMAfOgC .carousel-control-prev span {
  margin-right: 5px;
}
.cid-sLnCMAfOgC .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-sLnCMAfOgC .carousel-control-next span {
  margin-left: 5px;
}
.cid-sLnCMAfOgC .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-sLnCMAfOgC .close::before {
  content: '\e91a';
}
.cid-sLnCMAfOgC .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-sLnCMAfOgC .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-sLnCMAfOgC .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sLnCMAfOgC .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-sLnCMAfOgC .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-sLnCMAfOgC .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-sLnCMAfOgC .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-sLnCMAfOgC .carousel-indicators li.active,
.cid-sLnCMAfOgC .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-sLnCMAfOgC .carousel-indicators li::after,
.cid-sLnCMAfOgC .carousel-indicators li::before {
  content: none;
}
.cid-sLnCMAfOgC .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-sLnCMAfOgC .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-sLnCMAfOgC .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-sLnCMAfOgC .carousel-indicators {
    display: none;
  }
}
.cid-sLnCMAfOgC .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-sLnCMAfOgC .carousel-inner > .active {
  display: block;
}
.cid-sLnCMAfOgC .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sLnCMAfOgC .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-sLnCMAfOgC .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-sLnCMAfOgC .carousel-control,
  .cid-sLnCMAfOgC .carousel-indicators,
  .cid-sLnCMAfOgC .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-sLnCMAfOgC .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-sLnCMAfOgC .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-sLnCMAfOgC .carousel-indicators .active,
.cid-sLnCMAfOgC .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-sLnCMAfOgC .carousel-indicators .active {
  background: #fff;
}
.cid-sLnCMAfOgC .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-sLnCMAfOgC .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-sLnCMAfOgC .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-sLnCMAfOgC .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-sLnCMAfOgC .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-sLnCMAfOgC .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-sLnCMAfOgC .carousel {
  width: 100%;
}
.cid-sLnCMAfOgC .modal-backdrop.in {
  opacity: 0.8;
}
.cid-sLnCMAfOgC .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-sLnCMAfOgC .modal.fade .modal-dialog,
.cid-sLnCMAfOgC .modal.in .modal-dialog {
  transform: none;
}
.cid-sLnCMAfOgC .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-sLnCMAfOgC H6 {
  text-align: right;
}
.cid-sLnCMAfOgC H3 {
  text-align: center;
}
.cid-sLnCMBwARu {
  padding-top: 0px;
  padding-bottom: 0px;
  background: linear-gradient(45deg, #f9f9f9, #f9f9f9);
}
.cid-sLnCMBwARu .mbr-section-subtitle {
  font-style: italic;
  letter-spacing: 1rem;
}
.cid-sLnCMBwARu .mbr-section-title {
  text-align: center;
  color: #5a5959;
}
.cid-sLnCMBwARu H3 {
  text-align: center;
  color: #232323;
}
.cid-sLnCMBwARu .mbr-text,
.cid-sLnCMBwARu .mbr-section-btn {
  color: #5a5959;
  text-align: center;
}
.cid-sLnCMCpvCV {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #132c53;
}
.cid-sLnCMCpvCV .mbr-text,
.cid-sLnCMCpvCV .mbr-section-btn {
  color: #4479d9;
}
.cid-sLnEF8hQD0 {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #4479d9;
}
.cid-sLnEF8hQD0 .mbr-section-subtitle {
  color: #ffffff;
}
.cid-sLnEF8hQD0 .mbr-text {
  color: #ffffff;
}
.cid-sLnCMDjOkg {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #f4f4f4;
}
.cid-sLnCMDjOkg .mbr-section-subtitle {
  color: #232323;
}
.cid-sLnCMDjOkg .mbr-text {
  color: #5a5959;
}
.cid-sLnCME44I3 {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-sLnCME44I3 .mbr-section-subtitle {
  color: #232323;
}
.cid-sLnCME44I3 .mbr-text {
  color: #5a5959;
}
.cid-sLnCMEP7cC {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #f4f4f4;
}
.cid-sLnCMEP7cC .mbr-section-subtitle {
  color: #232323;
}
.cid-sLnCMEP7cC .mbr-text {
  color: #5a5959;
}
.cid-sLnCMFFm38 {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-sLnCMFFm38 .mbr-section-subtitle {
  color: #232323;
}
.cid-sLnCMFFm38 .mbr-text {
  color: #5a5959;
}
.cid-sLnCMGB9nO {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #f4f4f4;
}
.cid-sLnCMGB9nO .mbr-section-subtitle {
  color: #232323;
}
.cid-sLnCMGB9nO .mbr-text {
  color: #5a5959;
}
.cid-sLnCMHneOz {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-sLnCMHneOz .mbr-section-subtitle {
  color: #232323;
}
.cid-sLnCMHneOz .mbr-text {
  color: #5a5959;
}
.cid-sLnCMIcLxu {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #f4f4f4;
}
.cid-sLnCMIcLxu .mbr-section-subtitle {
  color: #232323;
}
.cid-sLnCMIcLxu .mbr-text {
  color: #5a5959;
}
.cid-sLnCMIXe2E {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-sLnCMIXe2E .image-wrap img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-sLnCMIXe2E .image-wrap img {
    display: block;
    margin: auto;
    width: 10%;
  }
}
.cid-sLnCMIXe2E .mbr-text,
.cid-sLnCMIXe2E .mbr-section-btn {
  text-align: left;
}
.cid-sLnCMJSuOr {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #132c53;
}
.cid-sLnCMJSuOr .mbr-section-subtitle {
  color: #ffffff;
}
.cid-sLnCMJSuOr .mbr-text,
.cid-sLnCMJSuOr .mbr-section-btn {
  color: #4479d9;
}
.cid-sLnCMKLGq3 {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #fafafa;
}
.cid-sLnCMKLGq3 .card-wrapper {
  display: flex;
}
@media (max-width: 991px) {
  .cid-sLnCMKLGq3 .card-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-sLnCMKLGq3 .mbr-iconfont {
  font-size: 2rem;
  color: #6592e6;
  padding-right: 1.5rem;
}
.cid-sLnCMKLGq3 .card-text {
  color: #5a5959;
}
.cid-sLnCMKLGq3 .card-title {
  color: #111111;
}
.cid-sLnCMMcuJH {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sLnCMMcuJH .image-wrap img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-sLnCMMcuJH .image-wrap img {
    display: block;
    margin: auto;
    width: 40%;
  }
}
.cid-sLnCMMcuJH .mbr-text,
.cid-sLnCMMcuJH .mbr-section-btn {
  color: #5a5959;
}
.cid-sLnCMN7py5 {
  padding-top: 0px;
  padding-bottom: 0px;
  background: linear-gradient(45deg, #f9f9f9, #f9f9f9);
}
.cid-sLnCMN7py5 .mbr-section-subtitle {
  font-style: italic;
  letter-spacing: 1rem;
}
.cid-sLnCMN7py5 .mbr-section-title {
  text-align: center;
  color: #5a5959;
}
.cid-sLnCMN7py5 H3 {
  text-align: center;
  color: #232323;
}
.cid-sLnCMN7py5 .mbr-text,
.cid-sLnCMN7py5 .mbr-section-btn {
  color: #5a5959;
  text-align: center;
}
.cid-sLnCMO3Hkd {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #132c53;
}
.cid-sLnCMO3Hkd .mbr-text,
.cid-sLnCMO3Hkd .mbr-section-btn {
  color: #6592e6;
}
.cid-sLnCMO3Hkd .mbr-section-title {
  text-align: center;
  color: #ffffff;
}
.cid-sLnCMO3Hkd .mbr-section-subtitle {
  color: #ffffff;
}
.cid-sLnCMP0yo6 {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sLnCMP0yo6 .item {
  display: flex;
  align-items: center;
  margin-bottom: 2rem;
}
.cid-sLnCMP0yo6 .icon-box {
  background: #6592e6;
  width: 60px;
  min-width: 60px;
  height: 60px;
  border-radius: 50%;
  margin-right: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-sLnCMP0yo6 .mbr-iconfont {
  font-size: 2rem;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-sLnCMP0yo6 .card {
    margin-bottom: 2rem;
  }
  .cid-sLnCMP0yo6 .card-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-sLnCMP0yo6 .icon-text {
  color: #5a5959;
}
.cid-sLnCMQdC1b {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sLnCMQdC1b .item {
  display: flex;
  align-items: center;
  margin-bottom: 2rem;
}
.cid-sLnCMQdC1b .icon-box {
  background: #6592e6;
  width: 60px;
  min-width: 60px;
  height: 60px;
  border-radius: 50%;
  margin-right: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-sLnCMQdC1b .mbr-iconfont {
  font-size: 2rem;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-sLnCMQdC1b .card {
    margin-bottom: 2rem;
  }
  .cid-sLnCMQdC1b .card-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-sLnCMQdC1b .icon-text {
  color: #5a5959;
}
.cid-sLnCMRlypW {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sLnCMRlypW .item {
  display: flex;
  align-items: center;
  margin-bottom: 2rem;
}
.cid-sLnCMRlypW .icon-box {
  background: #6592e6;
  width: 60px;
  min-width: 60px;
  height: 60px;
  border-radius: 50%;
  margin-right: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-sLnCMRlypW .mbr-iconfont {
  font-size: 2rem;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-sLnCMRlypW .card {
    margin-bottom: 2rem;
  }
  .cid-sLnCMRlypW .card-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-sLnCMRlypW .icon-text {
  color: #5a5959;
}
.cid-sLnCMSu04L {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sLnCMSu04L .item {
  display: flex;
  align-items: center;
  margin-bottom: 2rem;
}
.cid-sLnCMSu04L .icon-box {
  background: #6592e6;
  width: 60px;
  min-width: 60px;
  height: 60px;
  border-radius: 50%;
  margin-right: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-sLnCMSu04L .mbr-iconfont {
  font-size: 2rem;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-sLnCMSu04L .card {
    margin-bottom: 2rem;
  }
  .cid-sLnCMSu04L .card-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-sLnCMSu04L .icon-text {
  color: #5a5959;
}
.cid-sLnCMTG4uB {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sLnCMTG4uB .item {
  display: flex;
  align-items: center;
  margin-bottom: 2rem;
}
.cid-sLnCMTG4uB .icon-box {
  background: #6592e6;
  width: 60px;
  min-width: 60px;
  height: 60px;
  border-radius: 50%;
  margin-right: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-sLnCMTG4uB .mbr-iconfont {
  font-size: 2rem;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-sLnCMTG4uB .card {
    margin-bottom: 2rem;
  }
  .cid-sLnCMTG4uB .card-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-sLnCMTG4uB .icon-text {
  color: #5a5959;
}
.cid-sLnCMUYbUE {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sLnCMUYbUE .item {
  display: flex;
  align-items: center;
  margin-bottom: 2rem;
}
.cid-sLnCMUYbUE .icon-box {
  background: #6592e6;
  width: 60px;
  min-width: 60px;
  height: 60px;
  border-radius: 50%;
  margin-right: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-sLnCMUYbUE .mbr-iconfont {
  font-size: 2rem;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-sLnCMUYbUE .card {
    margin-bottom: 2rem;
  }
  .cid-sLnCMUYbUE .card-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-sLnCMUYbUE .icon-text {
  color: #5a5959;
}
.cid-sLnCMW9ZWr {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sLnCMW9ZWr .item {
  display: flex;
  align-items: center;
  margin-bottom: 2rem;
}
.cid-sLnCMW9ZWr .icon-box {
  background: #6592e6;
  width: 60px;
  min-width: 60px;
  height: 60px;
  border-radius: 50%;
  margin-right: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-sLnCMW9ZWr .mbr-iconfont {
  font-size: 2rem;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-sLnCMW9ZWr .card {
    margin-bottom: 2rem;
  }
  .cid-sLnCMW9ZWr .card-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-sLnCMW9ZWr .icon-text {
  color: #5a5959;
}
.cid-sLnCMXl8E4 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #fafafa;
}
.cid-sLnCMXl8E4 .socicon-bg-facebook {
  background: #3e5b98;
  color: #ffffff;
}
.cid-sLnCMXl8E4 .socicon-bg-twitter {
  background: #4da7de;
  color: #ffffff;
}
.cid-sLnCMXl8E4 .socicon-bg-googleplus {
  background: #dd4b39;
  color: #ffffff;
}
.cid-sLnCMXl8E4 .socicon-bg-vkontakte {
  background: #5a7fa6;
  color: #ffffff;
}
.cid-sLnCMXl8E4 .socicon-bg-odnoklassniki {
  background: #f48420;
  color: #ffffff;
}
.cid-sLnCMXl8E4 .socicon-bg-pinterest {
  background: #c92619;
  color: #ffffff;
}
.cid-sLnCMXl8E4 .socicon-bg-mail {
  background: #134785;
  color: #ffffff;
}
.cid-sLnCMXl8E4 .btn-social {
  font-size: 20px;
  border-radius: 50%;
  padding: 0;
  width: 44px;
  height: 44px;
  line-height: 44px;
  text-align: center;
  position: relative;
  cursor: pointer;
  border: none !important;
}
.cid-sLnCMXl8E4 .btn-social i {
  top: 0;
  line-height: 44px;
  width: 44px;
}
.cid-sLnCMXl8E4 .btn-social + .btn {
  margin-left: .1rem;
}
.cid-sLnCMXl8E4 [class^="socicon-"]:before,
.cid-sLnCMXl8E4 [class*=" socicon-"]:before {
  line-height: 44px;
}
@media (max-width: 767px) {
  .cid-sLnCMXl8E4 .btn {
    font-size: 20px !important;
  }
}
.cid-sLnCMYkg8M {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sLnCMYkg8M .image-wrap img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-sLnCMYkg8M .image-wrap img {
    display: block;
    margin: auto;
    width: 50%;
  }
}
.cid-sLnCMZBemO {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #234d8b;
}
