@import url(https://fonts.googleapis.com/css?family=Fjalla+One:400&display=swap);
@import url(https://fonts.googleapis.com/css?family=Sora:100,200,300,400,500,600,700,800&display=swap&display=swap);





body {
  font-family: Sora;
}
.display-1 {
  font-family: 'Fjalla One', sans-serif;
  font-size: 4.625rem;
  line-height: 1.075;
  letter-spacing: .15px;
}
.display-1 > .mbr-iconfont {
  font-size: 5.78125rem;
}
.display-2 {
  font-family: 'Fjalla One', sans-serif;
  font-size: 3.125rem;
  line-height: 1.075;
  letter-spacing: .46px;
}
.display-2 > .mbr-iconfont {
  font-size: 3.90625rem;
}
.display-4 {
  font-family: 'Sora', sans-serif;
  font-size: 1rem;
  line-height: 2;
  letter-spacing: .37px;
}
.display-4 > .mbr-iconfont {
  font-size: 1.25rem;
}
.display-5 {
  font-family: 'Fjalla One', sans-serif;
  font-size: 1.875rem;
  line-height: 1.375;
  letter-spacing: .09px;
}
.display-5 > .mbr-iconfont {
  font-size: 2.34375rem;
}
.display-7 {
  font-family: 'Sora', sans-serif;
  font-size: 1.31rem;
  line-height: 1.5;
  letter-spacing: .37px;
}
.display-7 > .mbr-iconfont {
  font-size: 1.6375rem;
}
/* ---- Fluid typography for mobile devices ---- */
/* 1.4 - font scale ratio ( bootstrap == 1.42857 ) */
/* 100vw - current viewport width */
/* (48 - 20)  48 == 48rem == 768px, 20 == 20rem == 320px(minimal supported viewport) */
/* 0.65 - min scale variable, may vary */
@media (max-width: 992px) {
  .display-1 {
    font-size: 3.7rem;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 3.2375rem;
    font-size: calc( 2.26875rem + (4.625 - 2.26875) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (2.26875rem + (4.625 - 2.26875) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 2.5rem;
    font-size: calc( 1.74375rem + (3.125 - 1.74375) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.3 * (1.74375rem + (3.125 - 1.74375) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 0.8rem;
    font-size: calc( 1rem + (1 - 1) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1rem + (1 - 1) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 1.5rem;
    font-size: calc( 1.30625rem + (1.875 - 1.30625) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.30625rem + (1.875 - 1.30625) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-7 {
    font-size: 1.048rem;
    font-size: calc( 1.1085rem + (1.31 - 1.1085) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.1085rem + (1.31 - 1.1085) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* Buttons */
.btn {
  padding: 14px 40px;
  border-radius: 0;
}
.btn-sm {
  padding: 12px 31px;
  border-radius: 0;
}
.btn-md {
  padding: 14px 40px;
  border-radius: 0;
}
.btn-lg {
  padding: 14px 40px;
  border-radius: 0;
}
.bg-primary {
  background-color: #110d3e !important;
}
.bg-success {
  background-color: #231f59 !important;
}
.bg-info {
  background-color: #fa5800 !important;
}
.bg-warning {
  background-color: #c17b71 !important;
}
.bg-danger {
  background-color: #e9ddd8 !important;
}
.btn-primary,
.btn-primary:active {
  position: relative;
  overflow: hidden;
  z-index: 0;
  background-color: #110d3e !important;
  border-color: #110d3e !important;
  color: #ffffff !important;
}
.btn-primary:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: -10%;
  width: 120%;
  height: 200%;
  background: #ffc900;
  transform: rotate(-25deg) scaleX(0);
  transform-origin: 0 50%;
  transition: transform ease-out 0.5s;
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus,
.btn-primary.active {
  color: #000000 !important;
  border-color: #ffc900 !important;
}
.btn-primary:hover:before,
.btn-primary:focus:before,
.btn-primary.focus:before,
.btn-primary.active:before {
  transform: rotate(0) scaleX(1);
  transition-timing-function: ease-in;
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #ffc900 !important;
  border-color: #ffc900 !important;
}
.btn-secondary,
.btn-secondary:active {
  position: relative;
  overflow: hidden;
  z-index: 0;
  background-color: #ffc900 !important;
  border-color: #ffc900 !important;
  color: #000000 !important;
}
.btn-secondary:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: -10%;
  width: 120%;
  height: 200%;
  background: #110d3e;
  transform: rotate(-25deg) scaleX(0);
  transform-origin: 0 50%;
  transition: transform ease-out 0.5s;
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus,
.btn-secondary.active {
  color: #ffffff !important;
  border-color: #110d3e !important;
}
.btn-secondary:hover:before,
.btn-secondary:focus:before,
.btn-secondary.focus:before,
.btn-secondary.active:before {
  transform: rotate(0) scaleX(1);
  transition-timing-function: ease-in;
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #000000 !important;
  background-color: #110d3e !important;
  border-color: #110d3e !important;
}
.btn-info,
.btn-info:active {
  position: relative;
  overflow: hidden;
  z-index: 0;
  background-color: #fa5800 !important;
  border-color: #fa5800 !important;
  color: #ffffff !important;
}
.btn-info:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: -10%;
  width: 120%;
  height: 200%;
  background: #ffc900;
  transform: rotate(-25deg) scaleX(0);
  transform-origin: 0 50%;
  transition: transform ease-out 0.5s;
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus,
.btn-info.active {
  color: #000000 !important;
  border-color: #ffc900 !important;
}
.btn-info:hover:before,
.btn-info:focus:before,
.btn-info.focus:before,
.btn-info.active:before {
  transform: rotate(0) scaleX(1);
  transition-timing-function: ease-in;
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #ffc900 !important;
  border-color: #ffc900 !important;
}
.btn-success,
.btn-success:active {
  position: relative;
  overflow: hidden;
  z-index: 0;
  background-color: #231f59 !important;
  border-color: #231f59 !important;
  color: #ffffff !important;
}
.btn-success:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: -10%;
  width: 120%;
  height: 200%;
  background: #110d3e;
  transform: rotate(-25deg) scaleX(0);
  transform-origin: 0 50%;
  transition: transform ease-out 0.5s;
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus,
.btn-success.active {
  color: #ffffff !important;
  border-color: #110d3e !important;
}
.btn-success:hover:before,
.btn-success:focus:before,
.btn-success.focus:before,
.btn-success.active:before {
  transform: rotate(0) scaleX(1);
  transition-timing-function: ease-in;
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #110d3e !important;
  border-color: #110d3e !important;
}
.btn-warning,
.btn-warning:active {
  position: relative;
  overflow: hidden;
  z-index: 0;
  background-color: #c17b71 !important;
  border-color: #c17b71 !important;
  color: #ffffff !important;
}
.btn-warning:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: -10%;
  width: 120%;
  height: 200%;
  background: #231f59;
  transform: rotate(-25deg) scaleX(0);
  transform-origin: 0 50%;
  transition: transform ease-out 0.5s;
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus,
.btn-warning.active {
  color: #ffffff !important;
  border-color: #231f59 !important;
}
.btn-warning:hover:before,
.btn-warning:focus:before,
.btn-warning.focus:before,
.btn-warning.active:before {
  transform: rotate(0) scaleX(1);
  transition-timing-function: ease-in;
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #ffffff !important;
  background-color: #231f59 !important;
  border-color: #231f59 !important;
}
.btn-danger,
.btn-danger:active {
  position: relative;
  overflow: hidden;
  z-index: 0;
  background-color: #e9ddd8 !important;
  border-color: #e9ddd8 !important;
  color: #7c5646 !important;
}
.btn-danger:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: -10%;
  width: 120%;
  height: 200%;
  background: #231f59;
  transform: rotate(-25deg) scaleX(0);
  transform-origin: 0 50%;
  transition: transform ease-out 0.5s;
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus,
.btn-danger.active {
  color: #ffffff !important;
  border-color: #231f59 !important;
}
.btn-danger:hover:before,
.btn-danger:focus:before,
.btn-danger.focus:before,
.btn-danger.active:before {
  transform: rotate(0) scaleX(1);
  transition-timing-function: ease-in;
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #7c5646 !important;
  background-color: #231f59 !important;
  border-color: #231f59 !important;
}
.btn-white,
.btn-white:active {
  position: relative;
  overflow: hidden;
  z-index: 0;
  background-color: #ffffff !important;
  border-color: #ffffff !important;
  color: #808080 !important;
}
.btn-white:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: -10%;
  width: 120%;
  height: 200%;
  background: #cac8bc;
  transform: rotate(-25deg) scaleX(0);
  transform-origin: 0 50%;
  transition: transform ease-out 0.5s;
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus,
.btn-white.active {
  color: #ffffff !important;
  border-color: #cac8bc !important;
}
.btn-white:hover:before,
.btn-white:focus:before,
.btn-white.focus:before,
.btn-white.active:before {
  transform: rotate(0) scaleX(1);
  transition-timing-function: ease-in;
}
.btn-white.disabled,
.btn-white:disabled {
  color: #808080 !important;
  background-color: #cac8bc !important;
  border-color: #cac8bc !important;
}
.btn-black,
.btn-black:active {
  position: relative;
  overflow: hidden;
  z-index: 0;
  background-color: #282727 !important;
  border-color: #282727 !important;
  color: #ffffff !important;
}
.btn-black:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: -10%;
  width: 120%;
  height: 200%;
  background: #000000;
  transform: rotate(-25deg) scaleX(0);
  transform-origin: 0 50%;
  transition: transform ease-out 0.5s;
}
.btn-black:hover,
.btn-black:focus,
.btn-black.focus,
.btn-black.active {
  color: #ffffff !important;
  border-color: #000000 !important;
}
.btn-black:hover:before,
.btn-black:focus:before,
.btn-black.focus:before,
.btn-black.active:before {
  transform: rotate(0) scaleX(1);
  transition-timing-function: ease-in;
}
.btn-black.disabled,
.btn-black:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn[class*="outline"] {
  border: 0;
  border-bottom: 1px solid;
  padding: 0 0 4px 0;
}
.btn[class*="outline"].btn-lg {
  padding: 0 0 5px 0;
}
.btn-primary-outline {
  border-color: #110d3e;
  color: #110d3e;
  background-color: transparent;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background-color: transparent !important;
  border-color: #ffc900;
  color: #ffc900;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  background-color: transparent !important;
  color: #b38d00;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #000000 !important;
  background-color: #ffc900 !important;
  border-color: #ffc900 !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background-color: transparent !important;
  border-color: #fa5800;
  color: #fa5800;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  background-color: transparent !important;
  color: #ae3d00;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #fa5800 !important;
  border-color: #fa5800 !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background-color: transparent !important;
  border-color: #231f59;
  color: #231f59;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  background-color: transparent !important;
  color: #0d0b20;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #ffffff !important;
  background-color: #231f59 !important;
  border-color: #231f59 !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background-color: transparent !important;
  border-color: #c17b71;
  color: #c17b71;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  background-color: transparent !important;
  color: #a05146;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #ffffff !important;
  background-color: #c17b71 !important;
  border-color: #c17b71 !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background-color: transparent !important;
  border-color: #e9ddd8;
  color: #e9ddd8;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  background-color: transparent !important;
  color: #cdb2a7;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #7c5646 !important;
  background-color: #e9ddd8 !important;
  border-color: #e9ddd8 !important;
}
.btn-black-outline,
.btn-black-outline:active {
  background-color: transparent !important;
  border-color: #282727;
  color: #282727;
}
.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.focus,
.btn-black-outline.active {
  background-color: transparent !important;
  color: #010101;
}
.btn-black-outline.disabled,
.btn-black-outline:disabled {
  color: #ffffff !important;
  background-color: #282727 !important;
  border-color: #282727 !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 {
  background-color: transparent !important;
  color: #d4d4d4;
}
.btn-white-outline.disabled,
.btn-white-outline:disabled {
  color: #7a7a7a !important;
  background-color: #fafafa !important;
  border-color: #fafafa !important;
}
.text-primary {
  color: #110d3e !important;
}
.text-secondary {
  color: #ffc900 !important;
}
.text-success {
  color: #231f59 !important;
}
.text-info {
  color: #fa5800 !important;
}
.text-warning {
  color: #c17b71 !important;
}
.text-danger {
  color: #e9ddd8 !important;
}
.text-white {
  color: #fafafa !important;
}
.text-black {
  color: #282727 !important;
}
a.text-primary:hover,
a.text-primary:focus,
a.text-primary.active {
  color: #000000 !important;
}
a.text-secondary:hover,
a.text-secondary:focus,
a.text-secondary.active {
  color: #997900 !important;
}
a.text-success:hover,
a.text-success:focus,
a.text-success.active {
  color: #05050d !important;
}
a.text-info:hover,
a.text-info:focus,
a.text-info.active {
  color: #943400 !important;
}
a.text-warning:hover,
a.text-warning:focus,
a.text-warning.active {
  color: #8e483e !important;
}
a.text-danger:hover,
a.text-danger:focus,
a.text-danger.active {
  color: #c4a497 !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;
}
.nav-tabs .nav-link.active {
  color: #110d3e;
}
.nav-tabs .nav-link:not(.active) {
  color: #282727;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #fa5800;
}
.alert-warning {
  background-color: #c17b71;
}
.alert-danger {
  background-color: #e9ddd8;
}
.mbr-section-btn a.btn:not(.btn-form) {
  border-radius: 100px;
}
.mbr-gallery-filter li a {
  border-radius: 100px !important;
}
.mbr-gallery-filter li.active .btn {
  background-color: #110d3e;
  border-color: #110d3e;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
.nav-tabs .nav-link {
  border-radius: 100px !important;
}
a,
a:hover {
  color: #110d3e;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #6055db;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #4840b8;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #ffdbc7;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #e8cdca;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #ffffff;
}
/* Scroll to top button*/
#scrollToTop a {
  border-radius: 100px;
}
.form-control {
  font-family: 'Sora', sans-serif;
  font-size: 1rem;
  line-height: 2;
  letter-spacing: .37px;
  font-weight: 400;
}
.form-control > .mbr-iconfont {
  font-size: 1.25rem;
}
.form-control:-webkit-input-placeholder {
  font-family: 'Sora', sans-serif;
  font-size: 1rem;
  line-height: 2;
  letter-spacing: .37px;
  font-weight: 400;
  color: #ef8e81 !important;
}
.form-control:-webkit-input-placeholder > .mbr-iconfont {
  font-size: 1.25rem;
}
blockquote {
  border-color: #110d3e;
}
/* Forms */
.mbr-form .input-group-btn a.btn {
  border-radius: 100px !important;
}
.mbr-form .input-group-btn a.btn:hover {
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.mbr-form .input-group-btn button[type="submit"] {
  border-radius: 100px !important;
  padding: 1rem 3rem;
}
.mbr-form .input-group-btn button[type="submit"]:hover {
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
form .btn {
  border-radius: 0 !important;
}
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #110d3e;
  color: #ffffff;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #110d3e;
}
.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: #110d3e;
  border-bottom-color: #110d3e;
}
.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: #110d3e !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: #ffc900 !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='%23110d3e' %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-suOUBasEBL {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-suOUBasEBL .menu-text {
  padding: 0 2rem;
  color: #5b6c8f;
}
@media (max-width: 992px) {
  .cid-suOUBasEBL .menu-text {
    text-align: center;
    padding: 0.5rem 1rem;
  }
}
.cid-suOUBasEBL .iconfont-wrapper {
  color: #103178 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
@media (max-width: 992px) {
  .cid-suOUBasEBL .iconfont-wrapper {
    padding: 0 0.25rem;
  }
}
.cid-suOUBasEBL .container {
  display: flex;
  margin: auto;
}
@media (max-width: 767px) {
  .cid-suOUBasEBL .container {
    padding: 0 1rem;
  }
}
.cid-suOUBasEBL .menu-tite {
  background: #110d3e;
  width: 100%;
  padding: 0.4rem 1rem;
  text-align: center;
  color: #ffc800;
}
.cid-suOUBasEBL .nav-link {
  position: relative;
}
.cid-suOUBasEBL .nav-link:hover {
  color: #fa5800 !important;
}
.cid-suOUBasEBL nav.navbar {
  position: fixed;
}
.cid-suOUBasEBL .navbar {
  padding: 0!important;
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-suOUBasEBL .navbar.opened {
  transition: all 0.3s;
}
.cid-suOUBasEBL .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-suOUBasEBL .navbar .navbar-logo img {
  width: auto;
}
.cid-suOUBasEBL .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-suOUBasEBL .navbar.collapsed {
  justify-content: center;
}
.cid-suOUBasEBL .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-suOUBasEBL .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-suOUBasEBL .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 6.1rem);
  }
}
.cid-suOUBasEBL .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-suOUBasEBL .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-suOUBasEBL .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-suOUBasEBL .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-suOUBasEBL .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-suOUBasEBL .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-suOUBasEBL .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-suOUBasEBL .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-suOUBasEBL .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-suOUBasEBL .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-suOUBasEBL .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-suOUBasEBL .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-suOUBasEBL .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-suOUBasEBL .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-suOUBasEBL .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-suOUBasEBL .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-suOUBasEBL .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-suOUBasEBL .navbar.navbar-short {
  min-height: 60px;
}
.cid-suOUBasEBL .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-suOUBasEBL .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-suOUBasEBL .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-suOUBasEBL .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-suOUBasEBL .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-suOUBasEBL .dropdown-item:hover,
.cid-suOUBasEBL .dropdown-item:focus {
  background: #110d3e !important;
  color: white !important;
}
.cid-suOUBasEBL .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-suOUBasEBL .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-suOUBasEBL .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 0.5em !important;
}
.cid-suOUBasEBL .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-suOUBasEBL .dropdown-menu,
.cid-suOUBasEBL .navbar.opened {
  background: #ffffff !important;
}
.cid-suOUBasEBL .nav-item:focus,
.cid-suOUBasEBL .nav-link:focus {
  outline: none;
}
.cid-suOUBasEBL .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-suOUBasEBL .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-suOUBasEBL .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-suOUBasEBL .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-suOUBasEBL .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-suOUBasEBL .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-suOUBasEBL .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-suOUBasEBL .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-suOUBasEBL .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-suOUBasEBL .dropdown-item.active,
.cid-suOUBasEBL .dropdown-item:active {
  background-color: transparent;
}
.cid-suOUBasEBL .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-suOUBasEBL .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-suOUBasEBL .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-suOUBasEBL .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-suOUBasEBL .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-suOUBasEBL .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-suOUBasEBL ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-suOUBasEBL .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-suOUBasEBL button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-suOUBasEBL button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-suOUBasEBL button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-suOUBasEBL button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-suOUBasEBL button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-suOUBasEBL button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-suOUBasEBL nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-suOUBasEBL nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-suOUBasEBL nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-suOUBasEBL nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-suOUBasEBL .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-suOUBasEBL a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-suOUBasEBL .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-suOUBasEBL .navbar {
    height: 70px;
  }
  .cid-suOUBasEBL .navbar.opened {
    height: auto;
  }
  .cid-suOUBasEBL .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-suOSCJthUI {
  padding-top: 0rem;
  padding-bottom: 0rem;
}
.cid-suOSCJthUI .carousel {
  height: 800px;
}
.cid-suOSCJthUI .carousel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-suOSCJthUI .carousel-item,
.cid-suOSCJthUI .carousel-inner {
  height: 100%;
}
.cid-suOSCJthUI .mbr-overlay {
  z-index: 1;
}
.cid-suOSCJthUI .carousel-caption {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  height: 60%;
  overflow: hidden;
  bottom: 0;
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 100px 50px;
}
@media (max-width: 767px) {
  .cid-suOSCJthUI .carousel-caption {
    height: 102%;
  }
}
.cid-suOSCJthUI .carousel-control {
  display: inline-flex;
  width: 2rem;
  height: 2rem;
  transition: all 0.3s;
  top: calc(50% + 60%/2 + 1rem);
  transform: translateY(-50%);
  left: 0;
  margin-left: 50px;
  color: #ffc900;
  opacity: 1;
}
.cid-suOSCJthUI .carousel-control.carousel-control-next {
  margin-left: 100px;
}
.cid-suOSCJthUI .carousel-control > span {
  font-size: 2rem;
}
@media (max-width: 767px) {
  .cid-suOSCJthUI .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-suOSCJthUI .carousel-control:hover {
  opacity: 0.6;
}
.cid-suOSCJthUI .item-wrapper {
  width: 100%;
}
.cid-suOSCJthUI .mbr-section-subtitle,
.cid-suOSCJthUI .slider-subtitle {
  margin-bottom: 30px;
}
.cid-suOSCJthUI .caption-text {
  margin-bottom: 20.4px;
}
@media (max-width: 767px) {
  .cid-suOSCJthUI .container .carousel-control {
    margin-bottom: 0;
  }
  .cid-suOSCJthUI .content-slider-wrap {
    width: 100% !important;
  }
}
.cid-suOSCJthUI .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem !important;
}
.cid-suOSCJthUI .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-suOSCJthUI .carousel-indicators li.active,
.cid-suOSCJthUI .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-suOSCJthUI .carousel-indicators li::after,
.cid-suOSCJthUI .carousel-indicators li::before {
  content: none;
}
.cid-suOSCJthUI .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-suOSCJthUI .carousel-indicators {
    display: none !important;
  }
}
.cid-suOSCJthUI H5 {
  color: #e9ddd8;
}
.cid-suOSCJthUI .mbr-section-subtitle {
  color: #ebc6b8;
}
.cid-suOSCJthUI P {
  color: #ffffff;
}
.cid-suPn3SB4Yk {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #cac8bc;
}
.cid-suPn3SB4Yk .mbr-iconfont {
  display: block;
  font-size: 4rem;
  color: #ffc900;
  margin-bottom: 2rem;
  transition: all 0.3s;
}
.cid-suPn3SB4Yk .card-text {
  color: #777777;
}
.cid-suPn3SB4Yk .link {
  font-size: 2rem;
  margin-right: 1rem;
  border: 1px solid #efefef;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0rem;
}
.cid-suPn3SB4Yk .wrapper {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}
.cid-suPn3SB4Yk .card-link {
  opacity: 0;
  color: #ffffff;
  transition: all 0.3s;
  transform: translateX(-10px);
}
.cid-suPn3SB4Yk .card-wrapper {
  padding: 3rem;
  transition: all 0.3s;
  background: #ffffff;
  position: relative;
}
.cid-suPn3SB4Yk .card-wrapper:before {
  position: absolute;
  right: -100px;
  bottom: -100px;
  content: '';
  transition: all 0.3s;
  width: 200px;
  height: 200px;
  background: #ffc900;
  transform: rotate(45deg);
  opacity: 0.1;
}
.cid-suPn3SB4Yk .card-wrapper:hover {
  background: #110d3e;
}
.cid-suPn3SB4Yk .card-wrapper:hover:before {
  opacity: 1;
}
.cid-suPn3SB4Yk .card-wrapper:hover .card-title,
.cid-suPn3SB4Yk .card-wrapper:hover .card-text,
.cid-suPn3SB4Yk .card-wrapper:hover .mbr-iconfont {
  color: #ffffff !important;
}
.cid-suPn3SB4Yk .card-wrapper:hover .card-link {
  opacity: 1;
  transform: translateX(0px);
}
@media (max-width: 767px) {
  .cid-suPn3SB4Yk .card-wrapper {
    padding: 2rem 1rem;
    background: #110d3e;
  }
  .cid-suPn3SB4Yk .card-wrapper:before {
    opacity: 1;
  }
  .cid-suPn3SB4Yk .card-wrapper .card-title,
  .cid-suPn3SB4Yk .card-wrapper .card-text,
  .cid-suPn3SB4Yk .card-wrapper .mbr-iconfont {
    color: #ffffff !important;
  }
  .cid-suPn3SB4Yk .card-wrapper .card-link {
    opacity: 1;
    transform: translateX(0px);
  }
}
.cid-suPn3SB4Yk .center {
  background: #110d3e;
}
.cid-suPn3SB4Yk .center:before {
  opacity: 1;
}
.cid-suPn3SB4Yk .center .card-title,
.cid-suPn3SB4Yk .center .card-text,
.cid-suPn3SB4Yk .center .mbr-iconfont {
  color: #ffffff !important;
}
.cid-suPn3SB4Yk .center .card-link {
  opacity: 1;
  transform: translateX(0px);
}
.cid-suPn3SB4Yk .row {
  justify-content: center;
}
.cid-suQ6Pp2Pqh {
  padding-top: 75px;
  padding-bottom: 75px;
  background-image: url("../../../assets/images/mbr-1920x1279.jpg");
}
.cid-suQ6Pp2Pqh .img-wrap {
  position: relative;
}
.cid-suQ6Pp2Pqh .img-wrap img {
  width: 100%;
}
.cid-suQ6Pp2Pqh .mbr-section-subtitle {
  color: #ffc900;
  margin-bottom: 14px;
}
.cid-suQ6Pp2Pqh .mbr-section-title {
  color: #110d3e;
}
.cid-suQ6Pp2Pqh .mbr-text {
  color: #fa5800;
}
.cid-suQ6Pp2Pqh .mbr-section-btn {
  display: flex;
  flex-wrap: wrap;
  margin-top: 47px;
}
.cid-suQ6Pp2Pqh .mbr-section-btn .btn:first-child {
  margin-left: 0 !important;
}
.cid-suQ6Pp2Pqh .cards-wrap {
  margin-top: 30px;
}
.cid-suQ6Pp2Pqh .wrapper {
  border-radius: 0.25rem;
  margin-bottom: 26px;
  text-align: left;
}
.cid-suQ6Pp2Pqh .wrapper .icon {
  margin-bottom: 21px;
  border-radius: 50%;
  position: relative;
  padding: 16px;
  display: inline-block;
  transition: all .3s;
}
.cid-suQ6Pp2Pqh .wrapper .icon:hover {
  -webkit-animation-name: animation-wobble-vertical;
  animation-name: animation-wobble-vertical;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
  -webkit-animation-iteration-count: 1;
  animation-iteration-count: 1;
}
.cid-suQ6Pp2Pqh .wrapper .icon .mbr-iconfont {
  font-size: 38px;
  color: #ffc900;
  position: relative;
  display: block;
}
.cid-suQ6Pp2Pqh .wrapper .icon1 {
  background-color: #c5e9d8;
}
.cid-suQ6Pp2Pqh .wrapper .icon1 .mbr-iconfont {
  color: #110d3e;
}
.cid-suQ6Pp2Pqh .wrapper .icon2 {
  background-color: #ede0b3;
}
.cid-suQ6Pp2Pqh .wrapper .icon2 .mbr-iconfont {
  color: #000000;
}
.cid-suQ6Pp2Pqh .wrapper .icon3 {
  background-color: #5a67a1;
}
.cid-suQ6Pp2Pqh .wrapper .icon3 .mbr-iconfont {
  color: #ffffff;
}
.cid-suQ6Pp2Pqh .wrapper .icon4 {
  background-color: #e3e5e6;
}
.cid-suQ6Pp2Pqh .wrapper .mbr-card-title {
  color: #110d3e;
  margin-bottom: 17px;
}
.cid-suQ6Pp2Pqh .wrapper .mbr-text {
  margin-bottom: 19px;
  color: #fa5800;
}
@media (max-width: 768px) {
  .cid-suQ6Pp2Pqh .mbr-section-btn {
    justify-content: center;
  }
  .cid-suQ6Pp2Pqh * {
    text-align: left;
  }
}
@-webkit-keyframes animation-wobble-vertical {
  16.65% {
    transform: translateY(8px);
  }
  33.3% {
    transform: translateY(-6px);
  }
  49.95% {
    transform: translateY(4px);
  }
  66.6% {
    transform: translateY(-2px);
  }
  83.25% {
    transform: translateY(1px);
  }
  100% {
    transform: translateY(0);
  }
}
@keyframes animation-wobble-vertical {
  16.65% {
    transform: translateY(8px);
  }
  33.3% {
    transform: translateY(-6px);
  }
  49.95% {
    transform: translateY(4px);
  }
  66.6% {
    transform: translateY(-2px);
  }
  83.25% {
    transform: translateY(1px);
  }
  100% {
    transform: translateY(0);
  }
}
.cid-suQ6Pp2Pqh .wrapper .mbr-text,
.cid-suQ6Pp2Pqh .img {
  color: #060424;
}
.cid-suQ6Pp2Pqh .mbr-text,
.cid-suQ6Pp2Pqh .mbr-section-btn {
  color: #060424;
}
.cid-suPFtayv2O {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/mbr-1920x1357.jpg");
}
.cid-suPFtayv2O .mbr-section-title {
  color: #fa5800;
  text-align: center;
}
.cid-suPFtayv2O .mbr-section-subtitle {
  color: #0037ff;
  text-align: center;
}
.cid-suPFtayv2O .mbr-text,
.cid-suPFtayv2O .link {
  color: #707070;
}
.cid-suPFtayv2O .card-subtitle {
  color: #fa5800;
  text-align: center;
}
.cid-suPFtayv2O .card-wrapper,
.cid-suPFtayv2O .item-wrapper {
  overflow: visible;
}
.cid-suPFtayv2O .card-wrapper {
  margin-bottom: 5rem;
}
.cid-suPFtayv2O .card-title,
.cid-suPFtayv2O .card-box {
  text-align: center;
  color: #231f59;
}
.cid-suPz2Z7dsg {
  padding-top: 5rem;
  padding-bottom: 3rem;
  background-image: url("../../../assets/images/mbr-1920x1358.jpg");
}
@media (min-width: 1500px) {
  .cid-suPz2Z7dsg .container {
    max-width: 1400px;
  }
}
.cid-suPz2Z7dsg .mbr-iconfont {
  font-size: 3rem;
  color: #f2f1eb;
}
.cid-suPz2Z7dsg .iconfont-wrapper {
  margin-bottom: 1rem;
  border: 2px solid #f2f1eb;
  border-radius: 50%;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 5rem;
  height: 5rem;
}
.cid-suPz2Z7dsg .row {
  justify-content: center;
}
.cid-suPz2Z7dsg .card {
  margin-bottom: 3rem;
}
.cid-suPz2Z7dsg .card-title {
  margin-top: 1rem;
}
.cid-suPz2Z7dsg .card-text {
  margin-top: 0.6875rem;
}
.cid-suPz2Z7dsg .mbr-section-tag {
  color: #9e9e9e;
  margin-bottom: 0.4375rem;
}
.cid-suPz2Z7dsg .mbr-section-title {
  margin-bottom: 1rem;
  color: #ffffff;
}
.cid-suPz2Z7dsg .mbr-section-title b:last-child,
.cid-suPz2Z7dsg .mbr-section-title strong:last-child {
  color: #ffc900;
}
.cid-suPz2Z7dsg .mbr-section-subtitle {
  margin-bottom: 0.625rem;
}
.cid-suPz2Z7dsg .mbr-section-head {
  margin-bottom: 6.875rem;
}
.cid-suPz2Z7dsg .card-title,
.cid-suPz2Z7dsg .icon-container {
  color: #ffc900;
}
.cid-suPKRG9Ade {
  overflow: hidden !important;
  padding-top: 4rem;
  padding-bottom: 1rem;
  background-color: #050047;
}
.cid-suPKRG9Ade .title__block {
  padding-bottom: 40px;
}
.cid-suPKRG9Ade .carousel {
  margin-bottom: 80px;
}
.cid-suPKRG9Ade .carousel-item {
  -webkit-justify-content: center;
  justify-content: center;
  transition: none !important;
}
.cid-suPKRG9Ade .carousel-controls a span {
  width: 56px;
  height: 56px;
  line-height: 36px;
  font-size: 18px;
  position: absolute;
  padding: 10px;
  border-radius: 50%;
  color: #ffffff;
  background: rgba(255, 201, 0, 0.3);
  transition: all cubic-bezier(0.4, 0, 0.2, 1) 0.4s;
}
.cid-suPKRG9Ade .carousel-controls a:hover span {
  background: rgba(255, 201, 0, 0.6);
}
.cid-suPKRG9Ade .carousel-inner {
  overflow: visible !important;
}
.cid-suPKRG9Ade .carousel-item:first-child {
  display: flex;
  transform: translateX(50%);
}
.cid-suPKRG9Ade .carousel-item.active + .carousel-item {
  display: flex;
  transform: translateX(50%);
}
.cid-suPKRG9Ade .carousel-item.active {
  display: flex;
  transform: translateX(-50%);
}
.cid-suPKRG9Ade .user {
  height: 370px;
}
.cid-suPKRG9Ade .user img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 6px;
}
.cid-suPKRG9Ade .carousel-control-prev {
  top: auto;
  left: -3%;
  bottom: -45px;
  opacity: 1;
  transition: all cubic-bezier(0.4, 0, 0.2, 1) 0.4s;
}
.cid-suPKRG9Ade .carousel-control-next {
  top: auto;
  left: 2%;
  margin-left: 8px;
  bottom: -45px;
  opacity: 1;
  transition: all cubic-bezier(0.4, 0, 0.2, 1) 0.4s;
}
@media (max-width: 1199px) {
  .cid-suPKRG9Ade .carousel-control-next {
    left: 3%;
  }
}
@media (max-width: 991px) {
  .cid-suPKRG9Ade .carousel-control-prev {
    left: -2%;
  }
  .cid-suPKRG9Ade .carousel-control-next {
    left: 6%;
  }
  .cid-suPKRG9Ade .user {
    height: auto;
  }
}
@media (max-width: 767px) {
  .cid-suPKRG9Ade .carousel-item > .user:nth-child(2) {
    display: none;
  }
  .cid-suPKRG9Ade .carousel-item:first-child {
    transform: translateX(0);
  }
  .cid-suPKRG9Ade .carousel-item.active + .carousel-item {
    transform: translateX(0);
  }
  .cid-suPKRG9Ade .carousel-item.active {
    transform: translateX(0);
  }
  .cid-suPKRG9Ade .carousel-controls {
    display: none;
  }
  .cid-suPKRG9Ade .carousel {
    margin-bottom: 0;
  }
}
.cid-suPKRG9Ade .mbr-section-title {
  color: #ffffff;
}
.cid-suPOImv2sx {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-suPOImv2sx .item-subtitle,
.cid-suPOImv2sx .item-title,
.cid-suPOImv2sx .mbr-section-title {
  margin-bottom: 12px;
}
.cid-suPOImv2sx .mbr-section-btn .btn-white-outline {
  padding: 3px 0;
  margin-bottom: 0;
  border: none !important;
  background-color: transparent !important;
}
.cid-suPOImv2sx .item-img {
  overflow: hidden;
  position: absolute;
  z-index: 0;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.cid-suPOImv2sx .item-img img {
  transition: all cubic-bezier(0.4, 0, 0.2, 1) 0.6s;
  width: 102%;
  height: 102%;
  object-fit: cover;
  will-change: transform;
}
.cid-suPOImv2sx .item:focus,
.cid-suPOImv2sx span:focus {
  outline: none;
}
.cid-suPOImv2sx .item {
  margin-bottom: 3rem;
}
@media (max-width: 991px) {
  .cid-suPOImv2sx .item:last-child {
    margin-bottom: 0;
  }
}
.cid-suPOImv2sx .row {
  margin-left: 0;
  margin-right: 0;
}
.cid-suPOImv2sx .item {
  padding: 0;
  margin: 0;
}
.cid-suPOImv2sx .item-wrapper {
  position: relative;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
  min-height: 400px;
}
.cid-suPOImv2sx .item-wrapper:hover .item-img img {
  transform: scale3d(1.2, 1.2, 2);
}
.cid-suPOImv2sx .item-content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  padding: 10% 20%;
}
.cid-suPOImv2sx .item-content > div,
.cid-suPOImv2sx .item-content p {
  z-index: 5;
  position: relative;
}
@media (max-width: 1199px) {
  .cid-suPOImv2sx .item-content {
    padding: 8% 15%;
  }
}
@media (max-width: 991px) {
  .cid-suPOImv2sx .item-content {
    padding: 50px 75px;
  }
}
@media (max-width: 575px) {
  .cid-suPOImv2sx .item-content {
    padding: 30px 20px;
  }
}
.cid-suPOImv2sx .mbr-section-title {
  color: #231f59;
}
.cid-suPPDkN8Xs {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #fef8f5;
}
.cid-suPPDkN8Xs .item-subtitle,
.cid-suPPDkN8Xs .item-title,
.cid-suPPDkN8Xs .mbr-section-title {
  margin-bottom: 12px;
}
.cid-suPPDkN8Xs .mbr-section-btn .btn-white-outline {
  padding: 3px 0;
  margin-bottom: 0;
  border: none !important;
  background-color: transparent !important;
}
.cid-suPPDkN8Xs .item-img {
  overflow: hidden;
  position: absolute;
  z-index: 0;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.cid-suPPDkN8Xs .item-img img {
  transition: all cubic-bezier(0.4, 0, 0.2, 1) 0.6s;
  width: 102%;
  height: 102%;
  object-fit: cover;
  will-change: transform;
}
.cid-suPPDkN8Xs .item:focus,
.cid-suPPDkN8Xs span:focus {
  outline: none;
}
.cid-suPPDkN8Xs .item {
  margin-bottom: 3rem;
}
@media (max-width: 991px) {
  .cid-suPPDkN8Xs .item:last-child {
    margin-bottom: 0;
  }
}
.cid-suPPDkN8Xs .row {
  margin-left: 0;
  margin-right: 0;
}
.cid-suPPDkN8Xs .item {
  padding: 0;
  margin: 0;
}
.cid-suPPDkN8Xs .item-wrapper {
  position: relative;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
  min-height: 400px;
}
.cid-suPPDkN8Xs .item-wrapper:hover .item-img img {
  transform: scale3d(1.2, 1.2, 2);
}
.cid-suPPDkN8Xs .item-content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  padding: 10% 20%;
}
.cid-suPPDkN8Xs .item-content > div,
.cid-suPPDkN8Xs .item-content p {
  z-index: 5;
  position: relative;
}
@media (max-width: 1199px) {
  .cid-suPPDkN8Xs .item-content {
    padding: 8% 15%;
  }
}
@media (max-width: 991px) {
  .cid-suPPDkN8Xs .item-content {
    padding: 50px 75px;
  }
}
@media (max-width: 575px) {
  .cid-suPPDkN8Xs .item-content {
    padding: 30px 20px;
  }
}
.cid-suPXU7HCcE {
  padding-top: 75px;
  padding-bottom: 75px;
  background-image: url("../../../assets/images/mbr-1920x1280.jpg");
}
@media (max-width: 767px) {
  .cid-suPXU7HCcE .content {
    text-align: center;
  }
  .cid-suPXU7HCcE .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-suPXU7HCcE .logo-subtitle {
  color: #8d97ad;
}
.cid-suPXU7HCcE .media-wrap {
  padding-bottom: 2rem;
}
@media (max-width: 767px) {
  .cid-suPXU7HCcE .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-suPXU7HCcE .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-suPXU7HCcE .media-wrap img {
  height: 6rem;
  display: inline-block;
  width: auto;
}
@media (max-width: 767px) {
  .cid-suPXU7HCcE .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-suPXU7HCcE .footer-lower hr {
  margin: 1rem 0;
  border-color: #efefef;
  opacity: .05;
}
.cid-suPXU7HCcE .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-suPXU7HCcE .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #232323;
}
.cid-suPXU7HCcE .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-suPXU7HCcE .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-suPXU7HCcE .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-suPXU7HCcE .footer-lower .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-suPXU7HCcE .list-item {
  display: flex;
}
.cid-suPXU7HCcE .list-item .mbr-iconfont {
  padding-right: 1rem;
  font-size: 24px;
  color: #188ef4;
}
.cid-suPXU7HCcE ul.list {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.cid-suPXU7HCcE ul.list li {
  display: flex;
  word-break: break-all;
}
.cid-suPXU7HCcE ul.list li::before {
  font-family: MobiriseIcons !important;
  content: '';
  padding-right: .5rem;
}
.cid-suPXU7HCcE P {
  color: #cac8bc;
}
.cid-suPXU7HCcE .column-title {
  color: #ffc900;
}
.cid-suPXU7HCcE .mbr-text {
  color: #cac8bc;
}
.cid-suPXU7HCcE .copyright > p {
  text-align: center;
}
.cid-suPXU7HCcE .logo-subtitle,
.cid-suPXU7HCcE .media-wrap {
  color: #ffffff;
}
.cid-suQphvN1o3 {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-suQphvN1o3 .menu-text {
  padding: 0 2rem;
  color: #5b6c8f;
}
@media (max-width: 992px) {
  .cid-suQphvN1o3 .menu-text {
    text-align: center;
    padding: 0.5rem 1rem;
  }
}
.cid-suQphvN1o3 .iconfont-wrapper {
  color: #103178 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
@media (max-width: 992px) {
  .cid-suQphvN1o3 .iconfont-wrapper {
    padding: 0 0.25rem;
  }
}
.cid-suQphvN1o3 .container {
  display: flex;
  margin: auto;
}
@media (max-width: 767px) {
  .cid-suQphvN1o3 .container {
    padding: 0 1rem;
  }
}
.cid-suQphvN1o3 .menu-tite {
  background: #110d3e;
  width: 100%;
  padding: 0.4rem 1rem;
  text-align: center;
  color: #ffc800;
}
.cid-suQphvN1o3 .nav-link {
  position: relative;
}
.cid-suQphvN1o3 .nav-link:hover {
  color: #fa5800 !important;
}
.cid-suQphvN1o3 nav.navbar {
  position: fixed;
}
.cid-suQphvN1o3 .navbar {
  padding: 0!important;
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-suQphvN1o3 .navbar.opened {
  transition: all 0.3s;
}
.cid-suQphvN1o3 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-suQphvN1o3 .navbar .navbar-logo img {
  width: auto;
}
.cid-suQphvN1o3 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-suQphvN1o3 .navbar.collapsed {
  justify-content: center;
}
.cid-suQphvN1o3 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-suQphvN1o3 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-suQphvN1o3 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 6.1rem);
  }
}
.cid-suQphvN1o3 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-suQphvN1o3 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-suQphvN1o3 .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-suQphvN1o3 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-suQphvN1o3 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-suQphvN1o3 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-suQphvN1o3 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-suQphvN1o3 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-suQphvN1o3 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-suQphvN1o3 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-suQphvN1o3 .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-suQphvN1o3 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-suQphvN1o3 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-suQphvN1o3 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-suQphvN1o3 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-suQphvN1o3 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-suQphvN1o3 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-suQphvN1o3 .navbar.navbar-short {
  min-height: 60px;
}
.cid-suQphvN1o3 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-suQphvN1o3 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-suQphvN1o3 .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-suQphvN1o3 .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-suQphvN1o3 .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-suQphvN1o3 .dropdown-item:hover,
.cid-suQphvN1o3 .dropdown-item:focus {
  background: #110d3e !important;
  color: white !important;
}
.cid-suQphvN1o3 .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-suQphvN1o3 .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-suQphvN1o3 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 0.5em !important;
}
.cid-suQphvN1o3 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-suQphvN1o3 .dropdown-menu,
.cid-suQphvN1o3 .navbar.opened {
  background: #ffffff !important;
}
.cid-suQphvN1o3 .nav-item:focus,
.cid-suQphvN1o3 .nav-link:focus {
  outline: none;
}
.cid-suQphvN1o3 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-suQphvN1o3 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-suQphvN1o3 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-suQphvN1o3 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-suQphvN1o3 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-suQphvN1o3 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-suQphvN1o3 .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-suQphvN1o3 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-suQphvN1o3 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-suQphvN1o3 .dropdown-item.active,
.cid-suQphvN1o3 .dropdown-item:active {
  background-color: transparent;
}
.cid-suQphvN1o3 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-suQphvN1o3 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-suQphvN1o3 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-suQphvN1o3 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-suQphvN1o3 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-suQphvN1o3 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-suQphvN1o3 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-suQphvN1o3 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-suQphvN1o3 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-suQphvN1o3 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-suQphvN1o3 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-suQphvN1o3 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-suQphvN1o3 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-suQphvN1o3 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-suQphvN1o3 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-suQphvN1o3 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-suQphvN1o3 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-suQphvN1o3 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-suQphvN1o3 .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-suQphvN1o3 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-suQphvN1o3 .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-suQphvN1o3 .navbar {
    height: 70px;
  }
  .cid-suQphvN1o3 .navbar.opened {
    height: auto;
  }
  .cid-suQphvN1o3 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-suQpBX6y2B {
  overflow: visible;
  padding-top: 10rem;
  padding-bottom: 2rem;
  background-color: #050047;
  background: linear-gradient(to right bottom, rgba(5, 0, 71, 0.8), #5e2ced);
}
.cid-suQpBX6y2B .mbr-overlay {
  background: #ffffff;
}
.cid-suQpBX6y2B .animation {
  pointer-events: none;
}
.cid-suQpBX6y2B .mbr-section-subtitle {
  margin-bottom: 10px;
}
.cid-suQpBX6y2B .mbr-section-title {
  margin-bottom: 27px;
}
.cid-suQpBX6y2B .mbr-text {
  margin-bottom: 35px;
  line-height: 1.54;
}
@media (min-width: 768px) {
  .cid-suQpBX6y2B .circle1 {
    position: absolute;
    left: 70px;
    bottom: 70px;
    width: 200px;
    height: 200px;
    z-index: 1;
    background-color: #fff;
    border-radius: 50%;
    opacity: .1;
    animation: circleAnimation 13s linear infinite;
  }
  .cid-suQpBX6y2B .circle2 {
    top: 150px;
    left: 47.6%;
    width: 100px;
    height: 100px;
    position: absolute;
    z-index: 1;
    background-color: #fff;
    border-radius: 50%;
    opacity: .1;
    animation: circleAnimation 11s linear infinite;
  }
  .cid-suQpBX6y2B .circle3 {
    right: 15%;
    bottom: 140px;
    width: 170px;
    height: 170px;
    position: absolute;
    z-index: 1;
    background-color: #fff;
    border-radius: 50%;
    opacity: .1;
    animation: circleAnimation 10s linear infinite;
  }
  .cid-suQpBX6y2B .circle4 {
    right: 3%;
    top: 190px;
    width: 50px;
    height: 50px;
    position: absolute;
    z-index: 1;
    background-color: #fff;
    border-radius: 50%;
    opacity: .1;
    animation: circleAnimation 9s linear infinite;
  }
  @keyframes circleAnimation {
    0% {
      transform: scale(1);
    }
    50% {
      transform: scale(1.5);
    }
    55% {
      transform: scale(1.5);
    }
    100% {
      transform: scale(1);
    }
  }
}
@media (max-width: 991px) {
  .cid-suQpBX6y2B .mbr-section-title {
    margin-bottom: 17px;
  }
  .cid-suQpBX6y2B .mbr-text {
    margin-bottom: 20px;
  }
  .cid-suQpBX6y2B .mbr-section-btn {
    margin-bottom: 40px;
  }
  .cid-suQpBX6y2B .image__block {
    margin-bottom: -100px;
  }
}
.cid-suQqnvPvh9 {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-suQqnvPvh9 .mbr-text,
.cid-suQqnvPvh9 .ornament {
  text-align: left;
}
.cid-suQuEGLw15 {
  padding-top: 75px;
  padding-bottom: 75px;
  background-image: url("../../../assets/images/mbr-1920x1279.jpg");
}
.cid-suQuEGLw15 .img-wrap {
  position: relative;
}
.cid-suQuEGLw15 .img-wrap img {
  width: 100%;
}
.cid-suQuEGLw15 .mbr-section-subtitle {
  color: #ffc900;
  margin-bottom: 14px;
}
.cid-suQuEGLw15 .mbr-section-title {
  color: #110d3e;
}
.cid-suQuEGLw15 .mbr-text {
  color: #fa5800;
}
.cid-suQuEGLw15 .mbr-section-btn {
  display: flex;
  flex-wrap: wrap;
  margin-top: 47px;
}
.cid-suQuEGLw15 .mbr-section-btn .btn:first-child {
  margin-left: 0 !important;
}
.cid-suQuEGLw15 .cards-wrap {
  margin-top: 30px;
}
.cid-suQuEGLw15 .wrapper {
  border-radius: 0.25rem;
  margin-bottom: 26px;
  text-align: left;
}
.cid-suQuEGLw15 .wrapper .icon {
  margin-bottom: 21px;
  border-radius: 50%;
  position: relative;
  padding: 16px;
  display: inline-block;
  transition: all .3s;
}
.cid-suQuEGLw15 .wrapper .icon:hover {
  -webkit-animation-name: animation-wobble-vertical;
  animation-name: animation-wobble-vertical;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
  -webkit-animation-iteration-count: 1;
  animation-iteration-count: 1;
}
.cid-suQuEGLw15 .wrapper .icon .mbr-iconfont {
  font-size: 38px;
  color: #ffc900;
  position: relative;
  display: block;
}
.cid-suQuEGLw15 .wrapper .icon1 {
  background-color: #c5e9d8;
}
.cid-suQuEGLw15 .wrapper .icon1 .mbr-iconfont {
  color: #110d3e;
}
.cid-suQuEGLw15 .wrapper .icon2 {
  background-color: #ede0b3;
}
.cid-suQuEGLw15 .wrapper .icon2 .mbr-iconfont {
  color: #000000;
}
.cid-suQuEGLw15 .wrapper .icon3 {
  background-color: #5a67a1;
}
.cid-suQuEGLw15 .wrapper .icon3 .mbr-iconfont {
  color: #ffffff;
}
.cid-suQuEGLw15 .wrapper .icon4 {
  background-color: #e3e5e6;
}
.cid-suQuEGLw15 .wrapper .mbr-card-title {
  color: #110d3e;
  margin-bottom: 17px;
}
.cid-suQuEGLw15 .wrapper .mbr-text {
  margin-bottom: 19px;
  color: #fa5800;
}
@media (max-width: 768px) {
  .cid-suQuEGLw15 .mbr-section-btn {
    justify-content: center;
  }
  .cid-suQuEGLw15 * {
    text-align: left;
  }
}
@-webkit-keyframes animation-wobble-vertical {
  16.65% {
    transform: translateY(8px);
  }
  33.3% {
    transform: translateY(-6px);
  }
  49.95% {
    transform: translateY(4px);
  }
  66.6% {
    transform: translateY(-2px);
  }
  83.25% {
    transform: translateY(1px);
  }
  100% {
    transform: translateY(0);
  }
}
@keyframes animation-wobble-vertical {
  16.65% {
    transform: translateY(8px);
  }
  33.3% {
    transform: translateY(-6px);
  }
  49.95% {
    transform: translateY(4px);
  }
  66.6% {
    transform: translateY(-2px);
  }
  83.25% {
    transform: translateY(1px);
  }
  100% {
    transform: translateY(0);
  }
}
.cid-suQuEGLw15 .wrapper .mbr-text,
.cid-suQuEGLw15 .img {
  color: #060424;
}
.cid-suQuEGLw15 .mbr-text,
.cid-suQuEGLw15 .mbr-section-btn {
  color: #060424;
}
.cid-suQphLcwv4 {
  padding-top: 5rem;
  padding-bottom: 3rem;
  background-image: url("../../../assets/images/mbr-1920x1358.jpg");
}
@media (min-width: 1500px) {
  .cid-suQphLcwv4 .container {
    max-width: 1400px;
  }
}
.cid-suQphLcwv4 .mbr-iconfont {
  font-size: 3rem;
  color: #f2f1eb;
}
.cid-suQphLcwv4 .iconfont-wrapper {
  margin-bottom: 1rem;
  border: 2px solid #f2f1eb;
  border-radius: 50%;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 5rem;
  height: 5rem;
}
.cid-suQphLcwv4 .row {
  justify-content: center;
}
.cid-suQphLcwv4 .card {
  margin-bottom: 3rem;
}
.cid-suQphLcwv4 .card-title {
  margin-top: 1rem;
}
.cid-suQphLcwv4 .card-text {
  margin-top: 0.6875rem;
}
.cid-suQphLcwv4 .mbr-section-tag {
  color: #9e9e9e;
  margin-bottom: 0.4375rem;
}
.cid-suQphLcwv4 .mbr-section-title {
  margin-bottom: 1rem;
  color: #ffffff;
}
.cid-suQphLcwv4 .mbr-section-title b:last-child,
.cid-suQphLcwv4 .mbr-section-title strong:last-child {
  color: #ffc900;
}
.cid-suQphLcwv4 .mbr-section-subtitle {
  margin-bottom: 0.625rem;
}
.cid-suQphLcwv4 .mbr-section-head {
  margin-bottom: 6.875rem;
}
.cid-suQphLcwv4 .card-title,
.cid-suQphLcwv4 .icon-container {
  color: #ffc900;
}
.cid-suQphNVKW2 {
  overflow: hidden !important;
  padding-top: 4rem;
  padding-bottom: 1rem;
  background-color: #050047;
}
.cid-suQphNVKW2 .title__block {
  padding-bottom: 40px;
}
.cid-suQphNVKW2 .carousel {
  margin-bottom: 80px;
}
.cid-suQphNVKW2 .carousel-item {
  -webkit-justify-content: center;
  justify-content: center;
  transition: none !important;
}
.cid-suQphNVKW2 .carousel-controls a span {
  width: 56px;
  height: 56px;
  line-height: 36px;
  font-size: 18px;
  position: absolute;
  padding: 10px;
  border-radius: 50%;
  color: #ffffff;
  background: rgba(255, 201, 0, 0.3);
  transition: all cubic-bezier(0.4, 0, 0.2, 1) 0.4s;
}
.cid-suQphNVKW2 .carousel-controls a:hover span {
  background: rgba(255, 201, 0, 0.6);
}
.cid-suQphNVKW2 .carousel-inner {
  overflow: visible !important;
}
.cid-suQphNVKW2 .carousel-item:first-child {
  display: flex;
  transform: translateX(50%);
}
.cid-suQphNVKW2 .carousel-item.active + .carousel-item {
  display: flex;
  transform: translateX(50%);
}
.cid-suQphNVKW2 .carousel-item.active {
  display: flex;
  transform: translateX(-50%);
}
.cid-suQphNVKW2 .user {
  height: 370px;
}
.cid-suQphNVKW2 .user img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 6px;
}
.cid-suQphNVKW2 .carousel-control-prev {
  top: auto;
  left: -3%;
  bottom: -45px;
  opacity: 1;
  transition: all cubic-bezier(0.4, 0, 0.2, 1) 0.4s;
}
.cid-suQphNVKW2 .carousel-control-next {
  top: auto;
  left: 2%;
  margin-left: 8px;
  bottom: -45px;
  opacity: 1;
  transition: all cubic-bezier(0.4, 0, 0.2, 1) 0.4s;
}
@media (max-width: 1199px) {
  .cid-suQphNVKW2 .carousel-control-next {
    left: 3%;
  }
}
@media (max-width: 991px) {
  .cid-suQphNVKW2 .carousel-control-prev {
    left: -2%;
  }
  .cid-suQphNVKW2 .carousel-control-next {
    left: 6%;
  }
  .cid-suQphNVKW2 .user {
    height: auto;
  }
}
@media (max-width: 767px) {
  .cid-suQphNVKW2 .carousel-item > .user:nth-child(2) {
    display: none;
  }
  .cid-suQphNVKW2 .carousel-item:first-child {
    transform: translateX(0);
  }
  .cid-suQphNVKW2 .carousel-item.active + .carousel-item {
    transform: translateX(0);
  }
  .cid-suQphNVKW2 .carousel-item.active {
    transform: translateX(0);
  }
  .cid-suQphNVKW2 .carousel-controls {
    display: none;
  }
  .cid-suQphNVKW2 .carousel {
    margin-bottom: 0;
  }
}
.cid-suQphNVKW2 .mbr-section-title {
  color: #ffffff;
}
.cid-suQphQLV1c {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-suQphQLV1c .item-subtitle,
.cid-suQphQLV1c .item-title,
.cid-suQphQLV1c .mbr-section-title {
  margin-bottom: 12px;
}
.cid-suQphQLV1c .mbr-section-btn .btn-white-outline {
  padding: 3px 0;
  margin-bottom: 0;
  border: none !important;
  background-color: transparent !important;
}
.cid-suQphQLV1c .item-img {
  overflow: hidden;
  position: absolute;
  z-index: 0;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.cid-suQphQLV1c .item-img img {
  transition: all cubic-bezier(0.4, 0, 0.2, 1) 0.6s;
  width: 102%;
  height: 102%;
  object-fit: cover;
  will-change: transform;
}
.cid-suQphQLV1c .item:focus,
.cid-suQphQLV1c span:focus {
  outline: none;
}
.cid-suQphQLV1c .item {
  margin-bottom: 3rem;
}
@media (max-width: 991px) {
  .cid-suQphQLV1c .item:last-child {
    margin-bottom: 0;
  }
}
.cid-suQphQLV1c .row {
  margin-left: 0;
  margin-right: 0;
}
.cid-suQphQLV1c .item {
  padding: 0;
  margin: 0;
}
.cid-suQphQLV1c .item-wrapper {
  position: relative;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
  min-height: 400px;
}
.cid-suQphQLV1c .item-wrapper:hover .item-img img {
  transform: scale3d(1.2, 1.2, 2);
}
.cid-suQphQLV1c .item-content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  padding: 10% 20%;
}
.cid-suQphQLV1c .item-content > div,
.cid-suQphQLV1c .item-content p {
  z-index: 5;
  position: relative;
}
@media (max-width: 1199px) {
  .cid-suQphQLV1c .item-content {
    padding: 8% 15%;
  }
}
@media (max-width: 991px) {
  .cid-suQphQLV1c .item-content {
    padding: 50px 75px;
  }
}
@media (max-width: 575px) {
  .cid-suQphQLV1c .item-content {
    padding: 30px 20px;
  }
}
.cid-suQphQLV1c .mbr-section-title {
  color: #231f59;
}
.cid-suQphSLP08 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #fef8f5;
}
.cid-suQphSLP08 .item-subtitle,
.cid-suQphSLP08 .item-title,
.cid-suQphSLP08 .mbr-section-title {
  margin-bottom: 12px;
}
.cid-suQphSLP08 .mbr-section-btn .btn-white-outline {
  padding: 3px 0;
  margin-bottom: 0;
  border: none !important;
  background-color: transparent !important;
}
.cid-suQphSLP08 .item-img {
  overflow: hidden;
  position: absolute;
  z-index: 0;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.cid-suQphSLP08 .item-img img {
  transition: all cubic-bezier(0.4, 0, 0.2, 1) 0.6s;
  width: 102%;
  height: 102%;
  object-fit: cover;
  will-change: transform;
}
.cid-suQphSLP08 .item:focus,
.cid-suQphSLP08 span:focus {
  outline: none;
}
.cid-suQphSLP08 .item {
  margin-bottom: 3rem;
}
@media (max-width: 991px) {
  .cid-suQphSLP08 .item:last-child {
    margin-bottom: 0;
  }
}
.cid-suQphSLP08 .row {
  margin-left: 0;
  margin-right: 0;
}
.cid-suQphSLP08 .item {
  padding: 0;
  margin: 0;
}
.cid-suQphSLP08 .item-wrapper {
  position: relative;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
  min-height: 400px;
}
.cid-suQphSLP08 .item-wrapper:hover .item-img img {
  transform: scale3d(1.2, 1.2, 2);
}
.cid-suQphSLP08 .item-content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  padding: 10% 20%;
}
.cid-suQphSLP08 .item-content > div,
.cid-suQphSLP08 .item-content p {
  z-index: 5;
  position: relative;
}
@media (max-width: 1199px) {
  .cid-suQphSLP08 .item-content {
    padding: 8% 15%;
  }
}
@media (max-width: 991px) {
  .cid-suQphSLP08 .item-content {
    padding: 50px 75px;
  }
}
@media (max-width: 575px) {
  .cid-suQphSLP08 .item-content {
    padding: 30px 20px;
  }
}
.cid-suQphIzcrv {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/mbr-1920x1357.jpg");
}
.cid-suQphIzcrv .mbr-section-title {
  color: #fa5800;
  text-align: center;
}
.cid-suQphIzcrv .mbr-section-subtitle {
  color: #0037ff;
  text-align: center;
}
.cid-suQphIzcrv .mbr-text,
.cid-suQphIzcrv .link {
  color: #707070;
}
.cid-suQphIzcrv .card-subtitle {
  color: #fa5800;
  text-align: center;
}
.cid-suQphIzcrv .card-wrapper,
.cid-suQphIzcrv .item-wrapper {
  overflow: visible;
}
.cid-suQphIzcrv .card-wrapper {
  margin-bottom: 5rem;
}
.cid-suQphIzcrv .card-title,
.cid-suQphIzcrv .card-box {
  text-align: center;
  color: #231f59;
}
.cid-suQphUJIFB {
  padding-top: 75px;
  padding-bottom: 75px;
  background-image: url("../../../assets/images/mbr-1920x1280.jpg");
}
@media (max-width: 767px) {
  .cid-suQphUJIFB .content {
    text-align: center;
  }
  .cid-suQphUJIFB .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-suQphUJIFB .logo-subtitle {
  color: #8d97ad;
}
.cid-suQphUJIFB .media-wrap {
  padding-bottom: 2rem;
}
@media (max-width: 767px) {
  .cid-suQphUJIFB .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-suQphUJIFB .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-suQphUJIFB .media-wrap img {
  height: 6rem;
  display: inline-block;
  width: auto;
}
@media (max-width: 767px) {
  .cid-suQphUJIFB .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-suQphUJIFB .footer-lower hr {
  margin: 1rem 0;
  border-color: #efefef;
  opacity: .05;
}
.cid-suQphUJIFB .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-suQphUJIFB .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #232323;
}
.cid-suQphUJIFB .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-suQphUJIFB .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-suQphUJIFB .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-suQphUJIFB .footer-lower .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-suQphUJIFB .list-item {
  display: flex;
}
.cid-suQphUJIFB .list-item .mbr-iconfont {
  padding-right: 1rem;
  font-size: 24px;
  color: #188ef4;
}
.cid-suQphUJIFB ul.list {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.cid-suQphUJIFB ul.list li {
  display: flex;
  word-break: break-all;
}
.cid-suQphUJIFB ul.list li::before {
  font-family: MobiriseIcons !important;
  content: '';
  padding-right: .5rem;
}
.cid-suQphUJIFB P {
  color: #cac8bc;
}
.cid-suQphUJIFB .column-title {
  color: #ffc900;
}
.cid-suQphUJIFB .mbr-text {
  color: #cac8bc;
}
.cid-suQphUJIFB .copyright > p {
  text-align: center;
}
.cid-suQphUJIFB .logo-subtitle,
.cid-suQphUJIFB .media-wrap {
  color: #ffffff;
}
.cid-suQw2cn7kL {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-suQw2cn7kL .menu-text {
  padding: 0 2rem;
  color: #5b6c8f;
}
@media (max-width: 992px) {
  .cid-suQw2cn7kL .menu-text {
    text-align: center;
    padding: 0.5rem 1rem;
  }
}
.cid-suQw2cn7kL .iconfont-wrapper {
  color: #103178 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
@media (max-width: 992px) {
  .cid-suQw2cn7kL .iconfont-wrapper {
    padding: 0 0.25rem;
  }
}
.cid-suQw2cn7kL .container {
  display: flex;
  margin: auto;
}
@media (max-width: 767px) {
  .cid-suQw2cn7kL .container {
    padding: 0 1rem;
  }
}
.cid-suQw2cn7kL .menu-tite {
  background: #110d3e;
  width: 100%;
  padding: 0.4rem 1rem;
  text-align: center;
  color: #ffc800;
}
.cid-suQw2cn7kL .nav-link {
  position: relative;
}
.cid-suQw2cn7kL .nav-link:hover {
  color: #fa5800 !important;
}
.cid-suQw2cn7kL nav.navbar {
  position: fixed;
}
.cid-suQw2cn7kL .navbar {
  padding: 0!important;
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-suQw2cn7kL .navbar.opened {
  transition: all 0.3s;
}
.cid-suQw2cn7kL .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-suQw2cn7kL .navbar .navbar-logo img {
  width: auto;
}
.cid-suQw2cn7kL .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-suQw2cn7kL .navbar.collapsed {
  justify-content: center;
}
.cid-suQw2cn7kL .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-suQw2cn7kL .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-suQw2cn7kL .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 6.1rem);
  }
}
.cid-suQw2cn7kL .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-suQw2cn7kL .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-suQw2cn7kL .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-suQw2cn7kL .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-suQw2cn7kL .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-suQw2cn7kL .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-suQw2cn7kL .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-suQw2cn7kL .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-suQw2cn7kL .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-suQw2cn7kL .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-suQw2cn7kL .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-suQw2cn7kL .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-suQw2cn7kL .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-suQw2cn7kL .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-suQw2cn7kL .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-suQw2cn7kL .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-suQw2cn7kL .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-suQw2cn7kL .navbar.navbar-short {
  min-height: 60px;
}
.cid-suQw2cn7kL .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-suQw2cn7kL .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-suQw2cn7kL .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-suQw2cn7kL .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-suQw2cn7kL .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-suQw2cn7kL .dropdown-item:hover,
.cid-suQw2cn7kL .dropdown-item:focus {
  background: #110d3e !important;
  color: white !important;
}
.cid-suQw2cn7kL .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-suQw2cn7kL .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-suQw2cn7kL .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 0.5em !important;
}
.cid-suQw2cn7kL .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-suQw2cn7kL .dropdown-menu,
.cid-suQw2cn7kL .navbar.opened {
  background: #ffffff !important;
}
.cid-suQw2cn7kL .nav-item:focus,
.cid-suQw2cn7kL .nav-link:focus {
  outline: none;
}
.cid-suQw2cn7kL .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-suQw2cn7kL .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-suQw2cn7kL .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-suQw2cn7kL .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-suQw2cn7kL .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-suQw2cn7kL .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-suQw2cn7kL .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-suQw2cn7kL .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-suQw2cn7kL .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-suQw2cn7kL .dropdown-item.active,
.cid-suQw2cn7kL .dropdown-item:active {
  background-color: transparent;
}
.cid-suQw2cn7kL .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-suQw2cn7kL .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-suQw2cn7kL .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-suQw2cn7kL .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-suQw2cn7kL .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-suQw2cn7kL .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-suQw2cn7kL ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-suQw2cn7kL .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-suQw2cn7kL button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-suQw2cn7kL button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-suQw2cn7kL button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-suQw2cn7kL button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-suQw2cn7kL button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-suQw2cn7kL button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-suQw2cn7kL nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-suQw2cn7kL nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-suQw2cn7kL nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-suQw2cn7kL nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-suQw2cn7kL .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-suQw2cn7kL a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-suQw2cn7kL .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-suQw2cn7kL .navbar {
    height: 70px;
  }
  .cid-suQw2cn7kL .navbar.opened {
    height: auto;
  }
  .cid-suQw2cn7kL .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-suQw2e4x83 {
  overflow: visible;
  padding-top: 10rem;
  padding-bottom: 2rem;
  background-color: #050047;
  background: linear-gradient(to right bottom, rgba(5, 0, 71, 0.8), #5e2ced);
}
.cid-suQw2e4x83 .mbr-overlay {
  background: #ffffff;
}
.cid-suQw2e4x83 .animation {
  pointer-events: none;
}
.cid-suQw2e4x83 .mbr-section-subtitle {
  margin-bottom: 10px;
}
.cid-suQw2e4x83 .mbr-section-title {
  margin-bottom: 27px;
}
.cid-suQw2e4x83 .mbr-text {
  margin-bottom: 35px;
  line-height: 1.54;
}
@media (min-width: 768px) {
  .cid-suQw2e4x83 .circle1 {
    position: absolute;
    left: 70px;
    bottom: 70px;
    width: 200px;
    height: 200px;
    z-index: 1;
    background-color: #fff;
    border-radius: 50%;
    opacity: .1;
    animation: circleAnimation 13s linear infinite;
  }
  .cid-suQw2e4x83 .circle2 {
    top: 150px;
    left: 47.6%;
    width: 100px;
    height: 100px;
    position: absolute;
    z-index: 1;
    background-color: #fff;
    border-radius: 50%;
    opacity: .1;
    animation: circleAnimation 11s linear infinite;
  }
  .cid-suQw2e4x83 .circle3 {
    right: 15%;
    bottom: 140px;
    width: 170px;
    height: 170px;
    position: absolute;
    z-index: 1;
    background-color: #fff;
    border-radius: 50%;
    opacity: .1;
    animation: circleAnimation 10s linear infinite;
  }
  .cid-suQw2e4x83 .circle4 {
    right: 3%;
    top: 190px;
    width: 50px;
    height: 50px;
    position: absolute;
    z-index: 1;
    background-color: #fff;
    border-radius: 50%;
    opacity: .1;
    animation: circleAnimation 9s linear infinite;
  }
  @keyframes circleAnimation {
    0% {
      transform: scale(1);
    }
    50% {
      transform: scale(1.5);
    }
    55% {
      transform: scale(1.5);
    }
    100% {
      transform: scale(1);
    }
  }
}
@media (max-width: 991px) {
  .cid-suQw2e4x83 .mbr-section-title {
    margin-bottom: 17px;
  }
  .cid-suQw2e4x83 .mbr-text {
    margin-bottom: 20px;
  }
  .cid-suQw2e4x83 .mbr-section-btn {
    margin-bottom: 40px;
  }
  .cid-suQw2e4x83 .image__block {
    margin-bottom: -100px;
  }
}
.cid-suQyxv9WAO {
  padding-top: 15px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-suQyxv9WAO .mbr-figure {
  margin: 0 auto;
  display: -webkit-flex;
  justify-content: center;
  -webkit-justify-content: center;
}
.cid-suQyxv9WAO .mbr-figure img {
  height: 375px;
  width: 375px;
  margin: 0 auto;
  object-fit: cover;
  margin-bottom: 3rem;
  border-radius: 100%;
}
.cid-suQyxv9WAO .mbr-text,
.cid-suQyxv9WAO .mbr-section-btn {
  color: #4c4c4c;
  text-align: left;
}
@media (max-width: 767px) {
  .cid-suQyxv9WAO img {
    height: 250px!important;
    width: 250px!important;
  }
}
.cid-suQyxv9WAO P {
  color: #282727;
}
.cid-suQw2Ctzrr {
  padding-top: 75px;
  padding-bottom: 75px;
  background-image: url("../../../assets/images/mbr-1920x1280.jpg");
}
@media (max-width: 767px) {
  .cid-suQw2Ctzrr .content {
    text-align: center;
  }
  .cid-suQw2Ctzrr .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-suQw2Ctzrr .logo-subtitle {
  color: #8d97ad;
}
.cid-suQw2Ctzrr .media-wrap {
  padding-bottom: 2rem;
}
@media (max-width: 767px) {
  .cid-suQw2Ctzrr .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-suQw2Ctzrr .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-suQw2Ctzrr .media-wrap img {
  height: 6rem;
  display: inline-block;
  width: auto;
}
@media (max-width: 767px) {
  .cid-suQw2Ctzrr .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-suQw2Ctzrr .footer-lower hr {
  margin: 1rem 0;
  border-color: #efefef;
  opacity: .05;
}
.cid-suQw2Ctzrr .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-suQw2Ctzrr .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #232323;
}
.cid-suQw2Ctzrr .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-suQw2Ctzrr .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-suQw2Ctzrr .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-suQw2Ctzrr .footer-lower .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-suQw2Ctzrr .list-item {
  display: flex;
}
.cid-suQw2Ctzrr .list-item .mbr-iconfont {
  padding-right: 1rem;
  font-size: 24px;
  color: #188ef4;
}
.cid-suQw2Ctzrr ul.list {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.cid-suQw2Ctzrr ul.list li {
  display: flex;
  word-break: break-all;
}
.cid-suQw2Ctzrr ul.list li::before {
  font-family: MobiriseIcons !important;
  content: '';
  padding-right: .5rem;
}
.cid-suQw2Ctzrr P {
  color: #cac8bc;
}
.cid-suQw2Ctzrr .column-title {
  color: #ffc900;
}
.cid-suQw2Ctzrr .mbr-text {
  color: #cac8bc;
}
.cid-suQw2Ctzrr .copyright > p {
  text-align: center;
}
.cid-suQw2Ctzrr .logo-subtitle,
.cid-suQw2Ctzrr .media-wrap {
  color: #ffffff;
}
.cid-suQBbYvYQA {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-suQBbYvYQA .menu-text {
  padding: 0 2rem;
  color: #5b6c8f;
}
@media (max-width: 992px) {
  .cid-suQBbYvYQA .menu-text {
    text-align: center;
    padding: 0.5rem 1rem;
  }
}
.cid-suQBbYvYQA .iconfont-wrapper {
  color: #103178 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
@media (max-width: 992px) {
  .cid-suQBbYvYQA .iconfont-wrapper {
    padding: 0 0.25rem;
  }
}
.cid-suQBbYvYQA .container {
  display: flex;
  margin: auto;
}
@media (max-width: 767px) {
  .cid-suQBbYvYQA .container {
    padding: 0 1rem;
  }
}
.cid-suQBbYvYQA .menu-tite {
  background: #110d3e;
  width: 100%;
  padding: 0.4rem 1rem;
  text-align: center;
  color: #ffc800;
}
.cid-suQBbYvYQA .nav-link {
  position: relative;
}
.cid-suQBbYvYQA .nav-link:hover {
  color: #fa5800 !important;
}
.cid-suQBbYvYQA nav.navbar {
  position: fixed;
}
.cid-suQBbYvYQA .navbar {
  padding: 0!important;
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-suQBbYvYQA .navbar.opened {
  transition: all 0.3s;
}
.cid-suQBbYvYQA .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-suQBbYvYQA .navbar .navbar-logo img {
  width: auto;
}
.cid-suQBbYvYQA .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-suQBbYvYQA .navbar.collapsed {
  justify-content: center;
}
.cid-suQBbYvYQA .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-suQBbYvYQA .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-suQBbYvYQA .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 6.1rem);
  }
}
.cid-suQBbYvYQA .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-suQBbYvYQA .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-suQBbYvYQA .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-suQBbYvYQA .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-suQBbYvYQA .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-suQBbYvYQA .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-suQBbYvYQA .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-suQBbYvYQA .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-suQBbYvYQA .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-suQBbYvYQA .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-suQBbYvYQA .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-suQBbYvYQA .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-suQBbYvYQA .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-suQBbYvYQA .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-suQBbYvYQA .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-suQBbYvYQA .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-suQBbYvYQA .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-suQBbYvYQA .navbar.navbar-short {
  min-height: 60px;
}
.cid-suQBbYvYQA .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-suQBbYvYQA .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-suQBbYvYQA .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-suQBbYvYQA .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-suQBbYvYQA .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-suQBbYvYQA .dropdown-item:hover,
.cid-suQBbYvYQA .dropdown-item:focus {
  background: #110d3e !important;
  color: white !important;
}
.cid-suQBbYvYQA .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-suQBbYvYQA .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-suQBbYvYQA .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 0.5em !important;
}
.cid-suQBbYvYQA .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-suQBbYvYQA .dropdown-menu,
.cid-suQBbYvYQA .navbar.opened {
  background: #ffffff !important;
}
.cid-suQBbYvYQA .nav-item:focus,
.cid-suQBbYvYQA .nav-link:focus {
  outline: none;
}
.cid-suQBbYvYQA .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-suQBbYvYQA .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-suQBbYvYQA .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-suQBbYvYQA .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-suQBbYvYQA .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-suQBbYvYQA .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-suQBbYvYQA .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-suQBbYvYQA .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-suQBbYvYQA .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-suQBbYvYQA .dropdown-item.active,
.cid-suQBbYvYQA .dropdown-item:active {
  background-color: transparent;
}
.cid-suQBbYvYQA .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-suQBbYvYQA .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-suQBbYvYQA .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-suQBbYvYQA .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-suQBbYvYQA .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-suQBbYvYQA .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-suQBbYvYQA ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-suQBbYvYQA .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-suQBbYvYQA button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-suQBbYvYQA button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-suQBbYvYQA button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-suQBbYvYQA button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-suQBbYvYQA button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-suQBbYvYQA button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-suQBbYvYQA nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-suQBbYvYQA nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-suQBbYvYQA nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-suQBbYvYQA nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-suQBbYvYQA .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-suQBbYvYQA a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-suQBbYvYQA .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-suQBbYvYQA .navbar {
    height: 70px;
  }
  .cid-suQBbYvYQA .navbar.opened {
    height: auto;
  }
  .cid-suQBbYvYQA .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-suQBc13ceh {
  overflow: visible;
  padding-top: 10rem;
  padding-bottom: 2rem;
  background-color: #050047;
  background: linear-gradient(to right bottom, rgba(5, 0, 71, 0.8), #5e2ced);
}
.cid-suQBc13ceh .mbr-overlay {
  background: #ffffff;
}
.cid-suQBc13ceh .animation {
  pointer-events: none;
}
.cid-suQBc13ceh .mbr-section-subtitle {
  margin-bottom: 10px;
}
.cid-suQBc13ceh .mbr-section-title {
  margin-bottom: 27px;
}
.cid-suQBc13ceh .mbr-text {
  margin-bottom: 35px;
  line-height: 1.54;
}
@media (min-width: 768px) {
  .cid-suQBc13ceh .circle1 {
    position: absolute;
    left: 70px;
    bottom: 70px;
    width: 200px;
    height: 200px;
    z-index: 1;
    background-color: #fff;
    border-radius: 50%;
    opacity: .1;
    animation: circleAnimation 13s linear infinite;
  }
  .cid-suQBc13ceh .circle2 {
    top: 150px;
    left: 47.6%;
    width: 100px;
    height: 100px;
    position: absolute;
    z-index: 1;
    background-color: #fff;
    border-radius: 50%;
    opacity: .1;
    animation: circleAnimation 11s linear infinite;
  }
  .cid-suQBc13ceh .circle3 {
    right: 15%;
    bottom: 140px;
    width: 170px;
    height: 170px;
    position: absolute;
    z-index: 1;
    background-color: #fff;
    border-radius: 50%;
    opacity: .1;
    animation: circleAnimation 10s linear infinite;
  }
  .cid-suQBc13ceh .circle4 {
    right: 3%;
    top: 190px;
    width: 50px;
    height: 50px;
    position: absolute;
    z-index: 1;
    background-color: #fff;
    border-radius: 50%;
    opacity: .1;
    animation: circleAnimation 9s linear infinite;
  }
  @keyframes circleAnimation {
    0% {
      transform: scale(1);
    }
    50% {
      transform: scale(1.5);
    }
    55% {
      transform: scale(1.5);
    }
    100% {
      transform: scale(1);
    }
  }
}
@media (max-width: 991px) {
  .cid-suQBc13ceh .mbr-section-title {
    margin-bottom: 17px;
  }
  .cid-suQBc13ceh .mbr-text {
    margin-bottom: 20px;
  }
  .cid-suQBc13ceh .mbr-section-btn {
    margin-bottom: 40px;
  }
  .cid-suQBc13ceh .image__block {
    margin-bottom: -100px;
  }
}
.cid-suQBc6eZ3D {
  padding-top: 15px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-suQBc6eZ3D .mbr-figure {
  margin: 0 auto;
  display: -webkit-flex;
  justify-content: center;
  -webkit-justify-content: center;
}
.cid-suQBc6eZ3D .mbr-figure img {
  height: 375px;
  width: 375px;
  margin: 0 auto;
  object-fit: cover;
  margin-bottom: 3rem;
  border-radius: 100%;
}
.cid-suQBc6eZ3D .mbr-text,
.cid-suQBc6eZ3D .mbr-section-btn {
  color: #4c4c4c;
  text-align: left;
}
@media (max-width: 767px) {
  .cid-suQBc6eZ3D img {
    height: 250px!important;
    width: 250px!important;
  }
}
.cid-suQBc6eZ3D P {
  color: #282727;
}
.cid-suQBcceO5Z {
  padding-top: 75px;
  padding-bottom: 75px;
  background-image: url("../../../assets/images/mbr-1920x1280.jpg");
}
@media (max-width: 767px) {
  .cid-suQBcceO5Z .content {
    text-align: center;
  }
  .cid-suQBcceO5Z .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-suQBcceO5Z .logo-subtitle {
  color: #8d97ad;
}
.cid-suQBcceO5Z .media-wrap {
  padding-bottom: 2rem;
}
@media (max-width: 767px) {
  .cid-suQBcceO5Z .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-suQBcceO5Z .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-suQBcceO5Z .media-wrap img {
  height: 6rem;
  display: inline-block;
  width: auto;
}
@media (max-width: 767px) {
  .cid-suQBcceO5Z .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-suQBcceO5Z .footer-lower hr {
  margin: 1rem 0;
  border-color: #efefef;
  opacity: .05;
}
.cid-suQBcceO5Z .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-suQBcceO5Z .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #232323;
}
.cid-suQBcceO5Z .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-suQBcceO5Z .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-suQBcceO5Z .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-suQBcceO5Z .footer-lower .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-suQBcceO5Z .list-item {
  display: flex;
}
.cid-suQBcceO5Z .list-item .mbr-iconfont {
  padding-right: 1rem;
  font-size: 24px;
  color: #188ef4;
}
.cid-suQBcceO5Z ul.list {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.cid-suQBcceO5Z ul.list li {
  display: flex;
  word-break: break-all;
}
.cid-suQBcceO5Z ul.list li::before {
  font-family: MobiriseIcons !important;
  content: '';
  padding-right: .5rem;
}
.cid-suQBcceO5Z P {
  color: #cac8bc;
}
.cid-suQBcceO5Z .column-title {
  color: #ffc900;
}
.cid-suQBcceO5Z .mbr-text {
  color: #cac8bc;
}
.cid-suQBcceO5Z .copyright > p {
  text-align: center;
}
.cid-suQBcceO5Z .logo-subtitle,
.cid-suQBcceO5Z .media-wrap {
  color: #ffffff;
}
.cid-suQGgNcvWr {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-suQGgNcvWr .menu-text {
  padding: 0 2rem;
  color: #5b6c8f;
}
@media (max-width: 992px) {
  .cid-suQGgNcvWr .menu-text {
    text-align: center;
    padding: 0.5rem 1rem;
  }
}
.cid-suQGgNcvWr .iconfont-wrapper {
  color: #103178 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
@media (max-width: 992px) {
  .cid-suQGgNcvWr .iconfont-wrapper {
    padding: 0 0.25rem;
  }
}
.cid-suQGgNcvWr .container {
  display: flex;
  margin: auto;
}
@media (max-width: 767px) {
  .cid-suQGgNcvWr .container {
    padding: 0 1rem;
  }
}
.cid-suQGgNcvWr .menu-tite {
  background: #110d3e;
  width: 100%;
  padding: 0.4rem 1rem;
  text-align: center;
  color: #ffc800;
}
.cid-suQGgNcvWr .nav-link {
  position: relative;
}
.cid-suQGgNcvWr .nav-link:hover {
  color: #fa5800 !important;
}
.cid-suQGgNcvWr nav.navbar {
  position: fixed;
}
.cid-suQGgNcvWr .navbar {
  padding: 0!important;
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-suQGgNcvWr .navbar.opened {
  transition: all 0.3s;
}
.cid-suQGgNcvWr .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-suQGgNcvWr .navbar .navbar-logo img {
  width: auto;
}
.cid-suQGgNcvWr .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-suQGgNcvWr .navbar.collapsed {
  justify-content: center;
}
.cid-suQGgNcvWr .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-suQGgNcvWr .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-suQGgNcvWr .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 6.1rem);
  }
}
.cid-suQGgNcvWr .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-suQGgNcvWr .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-suQGgNcvWr .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-suQGgNcvWr .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-suQGgNcvWr .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-suQGgNcvWr .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-suQGgNcvWr .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-suQGgNcvWr .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-suQGgNcvWr .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-suQGgNcvWr .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-suQGgNcvWr .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-suQGgNcvWr .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-suQGgNcvWr .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-suQGgNcvWr .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-suQGgNcvWr .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-suQGgNcvWr .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-suQGgNcvWr .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-suQGgNcvWr .navbar.navbar-short {
  min-height: 60px;
}
.cid-suQGgNcvWr .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-suQGgNcvWr .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-suQGgNcvWr .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-suQGgNcvWr .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-suQGgNcvWr .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-suQGgNcvWr .dropdown-item:hover,
.cid-suQGgNcvWr .dropdown-item:focus {
  background: #110d3e !important;
  color: white !important;
}
.cid-suQGgNcvWr .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-suQGgNcvWr .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-suQGgNcvWr .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 0.5em !important;
}
.cid-suQGgNcvWr .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-suQGgNcvWr .dropdown-menu,
.cid-suQGgNcvWr .navbar.opened {
  background: #ffffff !important;
}
.cid-suQGgNcvWr .nav-item:focus,
.cid-suQGgNcvWr .nav-link:focus {
  outline: none;
}
.cid-suQGgNcvWr .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-suQGgNcvWr .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-suQGgNcvWr .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-suQGgNcvWr .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-suQGgNcvWr .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-suQGgNcvWr .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-suQGgNcvWr .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-suQGgNcvWr .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-suQGgNcvWr .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-suQGgNcvWr .dropdown-item.active,
.cid-suQGgNcvWr .dropdown-item:active {
  background-color: transparent;
}
.cid-suQGgNcvWr .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-suQGgNcvWr .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-suQGgNcvWr .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-suQGgNcvWr .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-suQGgNcvWr .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-suQGgNcvWr .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-suQGgNcvWr ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-suQGgNcvWr .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-suQGgNcvWr button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-suQGgNcvWr button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-suQGgNcvWr button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-suQGgNcvWr button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-suQGgNcvWr button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-suQGgNcvWr button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-suQGgNcvWr nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-suQGgNcvWr nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-suQGgNcvWr nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-suQGgNcvWr nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-suQGgNcvWr .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-suQGgNcvWr a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-suQGgNcvWr .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-suQGgNcvWr .navbar {
    height: 70px;
  }
  .cid-suQGgNcvWr .navbar.opened {
    height: auto;
  }
  .cid-suQGgNcvWr .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-suQGgT3BxC {
  overflow: visible;
  padding-top: 10rem;
  padding-bottom: 2rem;
  background-color: #050047;
  background: linear-gradient(to right bottom, rgba(5, 0, 71, 0.8), #5e2ced);
}
.cid-suQGgT3BxC .mbr-overlay {
  background: #ffffff;
}
.cid-suQGgT3BxC .animation {
  pointer-events: none;
}
.cid-suQGgT3BxC .mbr-section-subtitle {
  margin-bottom: 10px;
}
.cid-suQGgT3BxC .mbr-section-title {
  margin-bottom: 27px;
}
.cid-suQGgT3BxC .mbr-text {
  margin-bottom: 35px;
  line-height: 1.54;
}
@media (min-width: 768px) {
  .cid-suQGgT3BxC .circle1 {
    position: absolute;
    left: 70px;
    bottom: 70px;
    width: 200px;
    height: 200px;
    z-index: 1;
    background-color: #fff;
    border-radius: 50%;
    opacity: .1;
    animation: circleAnimation 13s linear infinite;
  }
  .cid-suQGgT3BxC .circle2 {
    top: 150px;
    left: 47.6%;
    width: 100px;
    height: 100px;
    position: absolute;
    z-index: 1;
    background-color: #fff;
    border-radius: 50%;
    opacity: .1;
    animation: circleAnimation 11s linear infinite;
  }
  .cid-suQGgT3BxC .circle3 {
    right: 15%;
    bottom: 140px;
    width: 170px;
    height: 170px;
    position: absolute;
    z-index: 1;
    background-color: #fff;
    border-radius: 50%;
    opacity: .1;
    animation: circleAnimation 10s linear infinite;
  }
  .cid-suQGgT3BxC .circle4 {
    right: 3%;
    top: 190px;
    width: 50px;
    height: 50px;
    position: absolute;
    z-index: 1;
    background-color: #fff;
    border-radius: 50%;
    opacity: .1;
    animation: circleAnimation 9s linear infinite;
  }
  @keyframes circleAnimation {
    0% {
      transform: scale(1);
    }
    50% {
      transform: scale(1.5);
    }
    55% {
      transform: scale(1.5);
    }
    100% {
      transform: scale(1);
    }
  }
}
@media (max-width: 991px) {
  .cid-suQGgT3BxC .mbr-section-title {
    margin-bottom: 17px;
  }
  .cid-suQGgT3BxC .mbr-text {
    margin-bottom: 20px;
  }
  .cid-suQGgT3BxC .mbr-section-btn {
    margin-bottom: 40px;
  }
  .cid-suQGgT3BxC .image__block {
    margin-bottom: -100px;
  }
}
.cid-suQGh1sIIq {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-suQGh1sIIq .item-subtitle,
.cid-suQGh1sIIq .item-title,
.cid-suQGh1sIIq .mbr-section-title {
  margin-bottom: 12px;
}
.cid-suQGh1sIIq .mbr-section-btn .btn-white-outline {
  padding: 3px 0;
  margin-bottom: 0;
  border: none !important;
  background-color: transparent !important;
}
.cid-suQGh1sIIq .item-img {
  overflow: hidden;
  position: absolute;
  z-index: 0;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.cid-suQGh1sIIq .item-img img {
  transition: all cubic-bezier(0.4, 0, 0.2, 1) 0.6s;
  width: 102%;
  height: 102%;
  object-fit: cover;
  will-change: transform;
}
.cid-suQGh1sIIq .item:focus,
.cid-suQGh1sIIq span:focus {
  outline: none;
}
.cid-suQGh1sIIq .item {
  margin-bottom: 3rem;
}
@media (max-width: 991px) {
  .cid-suQGh1sIIq .item:last-child {
    margin-bottom: 0;
  }
}
.cid-suQGh1sIIq .row {
  margin-left: 0;
  margin-right: 0;
}
.cid-suQGh1sIIq .item {
  padding: 0;
  margin: 0;
}
.cid-suQGh1sIIq .item-wrapper {
  position: relative;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
  min-height: 400px;
}
.cid-suQGh1sIIq .item-wrapper:hover .item-img img {
  transform: scale3d(1.2, 1.2, 2);
}
.cid-suQGh1sIIq .item-content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  padding: 10% 20%;
}
.cid-suQGh1sIIq .item-content > div,
.cid-suQGh1sIIq .item-content p {
  z-index: 5;
  position: relative;
}
@media (max-width: 1199px) {
  .cid-suQGh1sIIq .item-content {
    padding: 8% 15%;
  }
}
@media (max-width: 991px) {
  .cid-suQGh1sIIq .item-content {
    padding: 50px 75px;
  }
}
@media (max-width: 575px) {
  .cid-suQGh1sIIq .item-content {
    padding: 30px 20px;
  }
}
.cid-suQGh1sIIq .mbr-section-title {
  color: #231f59;
}
.cid-suQGh36xaL {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #fef8f5;
}
.cid-suQGh36xaL .item-subtitle,
.cid-suQGh36xaL .item-title,
.cid-suQGh36xaL .mbr-section-title {
  margin-bottom: 12px;
}
.cid-suQGh36xaL .mbr-section-btn .btn-white-outline {
  padding: 3px 0;
  margin-bottom: 0;
  border: none !important;
  background-color: transparent !important;
}
.cid-suQGh36xaL .item-img {
  overflow: hidden;
  position: absolute;
  z-index: 0;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.cid-suQGh36xaL .item-img img {
  transition: all cubic-bezier(0.4, 0, 0.2, 1) 0.6s;
  width: 102%;
  height: 102%;
  object-fit: cover;
  will-change: transform;
}
.cid-suQGh36xaL .item:focus,
.cid-suQGh36xaL span:focus {
  outline: none;
}
.cid-suQGh36xaL .item {
  margin-bottom: 3rem;
}
@media (max-width: 991px) {
  .cid-suQGh36xaL .item:last-child {
    margin-bottom: 0;
  }
}
.cid-suQGh36xaL .row {
  margin-left: 0;
  margin-right: 0;
}
.cid-suQGh36xaL .item {
  padding: 0;
  margin: 0;
}
.cid-suQGh36xaL .item-wrapper {
  position: relative;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
  min-height: 400px;
}
.cid-suQGh36xaL .item-wrapper:hover .item-img img {
  transform: scale3d(1.2, 1.2, 2);
}
.cid-suQGh36xaL .item-content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  padding: 10% 20%;
}
.cid-suQGh36xaL .item-content > div,
.cid-suQGh36xaL .item-content p {
  z-index: 5;
  position: relative;
}
@media (max-width: 1199px) {
  .cid-suQGh36xaL .item-content {
    padding: 8% 15%;
  }
}
@media (max-width: 991px) {
  .cid-suQGh36xaL .item-content {
    padding: 50px 75px;
  }
}
@media (max-width: 575px) {
  .cid-suQGh36xaL .item-content {
    padding: 30px 20px;
  }
}
.cid-suQGgV8h1J {
  padding-top: 5rem;
  padding-bottom: 3rem;
  background-image: url("../../../assets/images/mbr-1920x1358.jpg");
}
@media (min-width: 1500px) {
  .cid-suQGgV8h1J .container {
    max-width: 1400px;
  }
}
.cid-suQGgV8h1J .mbr-iconfont {
  font-size: 3rem;
  color: #f2f1eb;
}
.cid-suQGgV8h1J .iconfont-wrapper {
  margin-bottom: 1rem;
  border: 2px solid #f2f1eb;
  border-radius: 50%;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 5rem;
  height: 5rem;
}
.cid-suQGgV8h1J .row {
  justify-content: center;
}
.cid-suQGgV8h1J .card {
  margin-bottom: 3rem;
}
.cid-suQGgV8h1J .card-title {
  margin-top: 1rem;
}
.cid-suQGgV8h1J .card-text {
  margin-top: 0.6875rem;
}
.cid-suQGgV8h1J .mbr-section-tag {
  color: #9e9e9e;
  margin-bottom: 0.4375rem;
}
.cid-suQGgV8h1J .mbr-section-title {
  margin-bottom: 1rem;
  color: #ffffff;
}
.cid-suQGgV8h1J .mbr-section-title b:last-child,
.cid-suQGgV8h1J .mbr-section-title strong:last-child {
  color: #ffc900;
}
.cid-suQGgV8h1J .mbr-section-subtitle {
  margin-bottom: 0.625rem;
}
.cid-suQGgV8h1J .mbr-section-head {
  margin-bottom: 6.875rem;
}
.cid-suQGgV8h1J .card-title,
.cid-suQGgV8h1J .icon-container {
  color: #ffc900;
}
.cid-suQGgYuhiQ {
  overflow: hidden !important;
  padding-top: 4rem;
  padding-bottom: 1rem;
  background-color: #050047;
}
.cid-suQGgYuhiQ .title__block {
  padding-bottom: 40px;
}
.cid-suQGgYuhiQ .carousel {
  margin-bottom: 80px;
}
.cid-suQGgYuhiQ .carousel-item {
  -webkit-justify-content: center;
  justify-content: center;
  transition: none !important;
}
.cid-suQGgYuhiQ .carousel-controls a span {
  width: 56px;
  height: 56px;
  line-height: 36px;
  font-size: 18px;
  position: absolute;
  padding: 10px;
  border-radius: 50%;
  color: #ffffff;
  background: rgba(255, 201, 0, 0.3);
  transition: all cubic-bezier(0.4, 0, 0.2, 1) 0.4s;
}
.cid-suQGgYuhiQ .carousel-controls a:hover span {
  background: rgba(255, 201, 0, 0.6);
}
.cid-suQGgYuhiQ .carousel-inner {
  overflow: visible !important;
}
.cid-suQGgYuhiQ .carousel-item:first-child {
  display: flex;
  transform: translateX(50%);
}
.cid-suQGgYuhiQ .carousel-item.active + .carousel-item {
  display: flex;
  transform: translateX(50%);
}
.cid-suQGgYuhiQ .carousel-item.active {
  display: flex;
  transform: translateX(-50%);
}
.cid-suQGgYuhiQ .user {
  height: 370px;
}
.cid-suQGgYuhiQ .user img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 6px;
}
.cid-suQGgYuhiQ .carousel-control-prev {
  top: auto;
  left: -3%;
  bottom: -45px;
  opacity: 1;
  transition: all cubic-bezier(0.4, 0, 0.2, 1) 0.4s;
}
.cid-suQGgYuhiQ .carousel-control-next {
  top: auto;
  left: 2%;
  margin-left: 8px;
  bottom: -45px;
  opacity: 1;
  transition: all cubic-bezier(0.4, 0, 0.2, 1) 0.4s;
}
@media (max-width: 1199px) {
  .cid-suQGgYuhiQ .carousel-control-next {
    left: 3%;
  }
}
@media (max-width: 991px) {
  .cid-suQGgYuhiQ .carousel-control-prev {
    left: -2%;
  }
  .cid-suQGgYuhiQ .carousel-control-next {
    left: 6%;
  }
  .cid-suQGgYuhiQ .user {
    height: auto;
  }
}
@media (max-width: 767px) {
  .cid-suQGgYuhiQ .carousel-item > .user:nth-child(2) {
    display: none;
  }
  .cid-suQGgYuhiQ .carousel-item:first-child {
    transform: translateX(0);
  }
  .cid-suQGgYuhiQ .carousel-item.active + .carousel-item {
    transform: translateX(0);
  }
  .cid-suQGgYuhiQ .carousel-item.active {
    transform: translateX(0);
  }
  .cid-suQGgYuhiQ .carousel-controls {
    display: none;
  }
  .cid-suQGgYuhiQ .carousel {
    margin-bottom: 0;
  }
}
.cid-suQGgYuhiQ .mbr-section-title {
  color: #ffffff;
}
.cid-suQGh547IH {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/mbr-1920x1357.jpg");
}
.cid-suQGh547IH .mbr-section-title {
  color: #fa5800;
  text-align: center;
}
.cid-suQGh547IH .mbr-section-subtitle {
  color: #0037ff;
  text-align: center;
}
.cid-suQGh547IH .mbr-text,
.cid-suQGh547IH .link {
  color: #707070;
}
.cid-suQGh547IH .card-subtitle {
  color: #fa5800;
  text-align: center;
}
.cid-suQGh547IH .card-wrapper,
.cid-suQGh547IH .item-wrapper {
  overflow: visible;
}
.cid-suQGh547IH .card-wrapper {
  margin-bottom: 5rem;
}
.cid-suQGh547IH .card-title,
.cid-suQGh547IH .card-box {
  text-align: center;
  color: #231f59;
}
.cid-suQGh8i2rz {
  padding-top: 75px;
  padding-bottom: 75px;
  background-image: url("../../../assets/images/mbr-1920x1280.jpg");
}
@media (max-width: 767px) {
  .cid-suQGh8i2rz .content {
    text-align: center;
  }
  .cid-suQGh8i2rz .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-suQGh8i2rz .logo-subtitle {
  color: #8d97ad;
}
.cid-suQGh8i2rz .media-wrap {
  padding-bottom: 2rem;
}
@media (max-width: 767px) {
  .cid-suQGh8i2rz .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-suQGh8i2rz .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-suQGh8i2rz .media-wrap img {
  height: 6rem;
  display: inline-block;
  width: auto;
}
@media (max-width: 767px) {
  .cid-suQGh8i2rz .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-suQGh8i2rz .footer-lower hr {
  margin: 1rem 0;
  border-color: #efefef;
  opacity: .05;
}
.cid-suQGh8i2rz .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-suQGh8i2rz .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #232323;
}
.cid-suQGh8i2rz .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-suQGh8i2rz .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-suQGh8i2rz .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-suQGh8i2rz .footer-lower .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-suQGh8i2rz .list-item {
  display: flex;
}
.cid-suQGh8i2rz .list-item .mbr-iconfont {
  padding-right: 1rem;
  font-size: 24px;
  color: #188ef4;
}
.cid-suQGh8i2rz ul.list {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.cid-suQGh8i2rz ul.list li {
  display: flex;
  word-break: break-all;
}
.cid-suQGh8i2rz ul.list li::before {
  font-family: MobiriseIcons !important;
  content: '';
  padding-right: .5rem;
}
.cid-suQGh8i2rz P {
  color: #cac8bc;
}
.cid-suQGh8i2rz .column-title {
  color: #ffc900;
}
.cid-suQGh8i2rz .mbr-text {
  color: #cac8bc;
}
.cid-suQGh8i2rz .copyright > p {
  text-align: center;
}
.cid-suQGh8i2rz .logo-subtitle,
.cid-suQGh8i2rz .media-wrap {
  color: #ffffff;
}
.cid-suQHrDUtA8 {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-suQHrDUtA8 .menu-text {
  padding: 0 2rem;
  color: #5b6c8f;
}
@media (max-width: 992px) {
  .cid-suQHrDUtA8 .menu-text {
    text-align: center;
    padding: 0.5rem 1rem;
  }
}
.cid-suQHrDUtA8 .iconfont-wrapper {
  color: #103178 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
@media (max-width: 992px) {
  .cid-suQHrDUtA8 .iconfont-wrapper {
    padding: 0 0.25rem;
  }
}
.cid-suQHrDUtA8 .container {
  display: flex;
  margin: auto;
}
@media (max-width: 767px) {
  .cid-suQHrDUtA8 .container {
    padding: 0 1rem;
  }
}
.cid-suQHrDUtA8 .menu-tite {
  background: #110d3e;
  width: 100%;
  padding: 0.4rem 1rem;
  text-align: center;
  color: #ffc800;
}
.cid-suQHrDUtA8 .nav-link {
  position: relative;
}
.cid-suQHrDUtA8 .nav-link:hover {
  color: #fa5800 !important;
}
.cid-suQHrDUtA8 nav.navbar {
  position: fixed;
}
.cid-suQHrDUtA8 .navbar {
  padding: 0!important;
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-suQHrDUtA8 .navbar.opened {
  transition: all 0.3s;
}
.cid-suQHrDUtA8 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-suQHrDUtA8 .navbar .navbar-logo img {
  width: auto;
}
.cid-suQHrDUtA8 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-suQHrDUtA8 .navbar.collapsed {
  justify-content: center;
}
.cid-suQHrDUtA8 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-suQHrDUtA8 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-suQHrDUtA8 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 6.1rem);
  }
}
.cid-suQHrDUtA8 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-suQHrDUtA8 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-suQHrDUtA8 .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-suQHrDUtA8 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-suQHrDUtA8 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-suQHrDUtA8 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-suQHrDUtA8 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-suQHrDUtA8 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-suQHrDUtA8 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-suQHrDUtA8 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-suQHrDUtA8 .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-suQHrDUtA8 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-suQHrDUtA8 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-suQHrDUtA8 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-suQHrDUtA8 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-suQHrDUtA8 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-suQHrDUtA8 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-suQHrDUtA8 .navbar.navbar-short {
  min-height: 60px;
}
.cid-suQHrDUtA8 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-suQHrDUtA8 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-suQHrDUtA8 .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-suQHrDUtA8 .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-suQHrDUtA8 .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-suQHrDUtA8 .dropdown-item:hover,
.cid-suQHrDUtA8 .dropdown-item:focus {
  background: #110d3e !important;
  color: white !important;
}
.cid-suQHrDUtA8 .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-suQHrDUtA8 .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-suQHrDUtA8 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 0.5em !important;
}
.cid-suQHrDUtA8 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-suQHrDUtA8 .dropdown-menu,
.cid-suQHrDUtA8 .navbar.opened {
  background: #ffffff !important;
}
.cid-suQHrDUtA8 .nav-item:focus,
.cid-suQHrDUtA8 .nav-link:focus {
  outline: none;
}
.cid-suQHrDUtA8 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-suQHrDUtA8 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-suQHrDUtA8 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-suQHrDUtA8 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-suQHrDUtA8 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-suQHrDUtA8 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-suQHrDUtA8 .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-suQHrDUtA8 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-suQHrDUtA8 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-suQHrDUtA8 .dropdown-item.active,
.cid-suQHrDUtA8 .dropdown-item:active {
  background-color: transparent;
}
.cid-suQHrDUtA8 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-suQHrDUtA8 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-suQHrDUtA8 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-suQHrDUtA8 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-suQHrDUtA8 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-suQHrDUtA8 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-suQHrDUtA8 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-suQHrDUtA8 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-suQHrDUtA8 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-suQHrDUtA8 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-suQHrDUtA8 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-suQHrDUtA8 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-suQHrDUtA8 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-suQHrDUtA8 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-suQHrDUtA8 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-suQHrDUtA8 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-suQHrDUtA8 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-suQHrDUtA8 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-suQHrDUtA8 .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-suQHrDUtA8 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-suQHrDUtA8 .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-suQHrDUtA8 .navbar {
    height: 70px;
  }
  .cid-suQHrDUtA8 .navbar.opened {
    height: auto;
  }
  .cid-suQHrDUtA8 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-suQHrIRQFA {
  overflow: visible;
  padding-top: 10rem;
  padding-bottom: 2rem;
  background-color: #050047;
  background: linear-gradient(to right bottom, rgba(5, 0, 71, 0.8), #5e2ced);
}
.cid-suQHrIRQFA .mbr-overlay {
  background: #ffffff;
}
.cid-suQHrIRQFA .animation {
  pointer-events: none;
}
.cid-suQHrIRQFA .mbr-section-subtitle {
  margin-bottom: 10px;
}
.cid-suQHrIRQFA .mbr-section-title {
  margin-bottom: 27px;
}
.cid-suQHrIRQFA .mbr-text {
  margin-bottom: 35px;
  line-height: 1.54;
}
@media (min-width: 768px) {
  .cid-suQHrIRQFA .circle1 {
    position: absolute;
    left: 70px;
    bottom: 70px;
    width: 200px;
    height: 200px;
    z-index: 1;
    background-color: #fff;
    border-radius: 50%;
    opacity: .1;
    animation: circleAnimation 13s linear infinite;
  }
  .cid-suQHrIRQFA .circle2 {
    top: 150px;
    left: 47.6%;
    width: 100px;
    height: 100px;
    position: absolute;
    z-index: 1;
    background-color: #fff;
    border-radius: 50%;
    opacity: .1;
    animation: circleAnimation 11s linear infinite;
  }
  .cid-suQHrIRQFA .circle3 {
    right: 15%;
    bottom: 140px;
    width: 170px;
    height: 170px;
    position: absolute;
    z-index: 1;
    background-color: #fff;
    border-radius: 50%;
    opacity: .1;
    animation: circleAnimation 10s linear infinite;
  }
  .cid-suQHrIRQFA .circle4 {
    right: 3%;
    top: 190px;
    width: 50px;
    height: 50px;
    position: absolute;
    z-index: 1;
    background-color: #fff;
    border-radius: 50%;
    opacity: .1;
    animation: circleAnimation 9s linear infinite;
  }
  @keyframes circleAnimation {
    0% {
      transform: scale(1);
    }
    50% {
      transform: scale(1.5);
    }
    55% {
      transform: scale(1.5);
    }
    100% {
      transform: scale(1);
    }
  }
}
@media (max-width: 991px) {
  .cid-suQHrIRQFA .mbr-section-title {
    margin-bottom: 17px;
  }
  .cid-suQHrIRQFA .mbr-text {
    margin-bottom: 20px;
  }
  .cid-suQHrIRQFA .mbr-section-btn {
    margin-bottom: 40px;
  }
  .cid-suQHrIRQFA .image__block {
    margin-bottom: -100px;
  }
}
.cid-suQI6hCtdx {
  padding-top: 105px;
  padding-bottom: 105px;
  background-color: #ffffff;
}
.cid-suQI6hCtdx .wrap {
  display: flex;
  border-bottom: 1px dotted #83868c;
  margin-bottom: 39px;
  padding-bottom: 20px;
}
.cid-suQI6hCtdx .wrap .ico1 {
  font-size: 2rem;
  margin-right: 30px;
  color: #ffc600;
}
.cid-suQI6hCtdx .wrap .mbr-text {
  z-index: 2;
  position: relative;
  color: #fa5800;
}
.cid-suQI6hCtdx .wrap .mbr-section-subtitle {
  color: #110d3e;
  display: inline-block;
  margin-right: 20px;
}
.cid-suQI6hCtdx .wrap .ico-line {
  display: inline-block;
}
.cid-suQI6hCtdx .wrap .ico-line .mbr-iconfont {
  color: #279e64;
  font-size: 14px;
}
.cid-suQI6hCtdx .col-md-12:last-child .wrap,
.cid-suQI6hCtdx .col-lg-12:last-child .wrap {
  border-bottom: none;
}
.cid-suQI6hCtdx .col-md-12.last-child .wrap,
.cid-suQI6hCtdx .col-lg-12.last-child .wrap {
  border-bottom: none;
}
@media (max-width: 768px) {
  .cid-suQI6hCtdx * {
    text-align: left;
  }
  .cid-suQI6hCtdx .ico1 {
    display: none;
  }
}
.cid-suQI6hCtdx .wrap .content .mbr-text {
  color: #282727;
}
.cid-suQHrMo3jC {
  padding-top: 75px;
  padding-bottom: 75px;
  background-image: url("../../../assets/images/mbr-1920x1280.jpg");
}
@media (max-width: 767px) {
  .cid-suQHrMo3jC .content {
    text-align: center;
  }
  .cid-suQHrMo3jC .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-suQHrMo3jC .logo-subtitle {
  color: #8d97ad;
}
.cid-suQHrMo3jC .media-wrap {
  padding-bottom: 2rem;
}
@media (max-width: 767px) {
  .cid-suQHrMo3jC .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-suQHrMo3jC .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-suQHrMo3jC .media-wrap img {
  height: 6rem;
  display: inline-block;
  width: auto;
}
@media (max-width: 767px) {
  .cid-suQHrMo3jC .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-suQHrMo3jC .footer-lower hr {
  margin: 1rem 0;
  border-color: #efefef;
  opacity: .05;
}
.cid-suQHrMo3jC .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-suQHrMo3jC .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #232323;
}
.cid-suQHrMo3jC .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-suQHrMo3jC .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-suQHrMo3jC .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-suQHrMo3jC .footer-lower .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-suQHrMo3jC .list-item {
  display: flex;
}
.cid-suQHrMo3jC .list-item .mbr-iconfont {
  padding-right: 1rem;
  font-size: 24px;
  color: #188ef4;
}
.cid-suQHrMo3jC ul.list {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.cid-suQHrMo3jC ul.list li {
  display: flex;
  word-break: break-all;
}
.cid-suQHrMo3jC ul.list li::before {
  font-family: MobiriseIcons !important;
  content: '';
  padding-right: .5rem;
}
.cid-suQHrMo3jC P {
  color: #cac8bc;
}
.cid-suQHrMo3jC .column-title {
  color: #ffc900;
}
.cid-suQHrMo3jC .mbr-text {
  color: #cac8bc;
}
.cid-suQHrMo3jC .copyright > p {
  text-align: center;
}
.cid-suQHrMo3jC .logo-subtitle,
.cid-suQHrMo3jC .media-wrap {
  color: #ffffff;
}
.cid-suQJIPdnO1 {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-suQJIPdnO1 .menu-text {
  padding: 0 2rem;
  color: #5b6c8f;
}
@media (max-width: 992px) {
  .cid-suQJIPdnO1 .menu-text {
    text-align: center;
    padding: 0.5rem 1rem;
  }
}
.cid-suQJIPdnO1 .iconfont-wrapper {
  color: #103178 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
@media (max-width: 992px) {
  .cid-suQJIPdnO1 .iconfont-wrapper {
    padding: 0 0.25rem;
  }
}
.cid-suQJIPdnO1 .container {
  display: flex;
  margin: auto;
}
@media (max-width: 767px) {
  .cid-suQJIPdnO1 .container {
    padding: 0 1rem;
  }
}
.cid-suQJIPdnO1 .menu-tite {
  background: #110d3e;
  width: 100%;
  padding: 0.4rem 1rem;
  text-align: center;
  color: #ffc800;
}
.cid-suQJIPdnO1 .nav-link {
  position: relative;
}
.cid-suQJIPdnO1 .nav-link:hover {
  color: #fa5800 !important;
}
.cid-suQJIPdnO1 nav.navbar {
  position: fixed;
}
.cid-suQJIPdnO1 .navbar {
  padding: 0!important;
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-suQJIPdnO1 .navbar.opened {
  transition: all 0.3s;
}
.cid-suQJIPdnO1 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-suQJIPdnO1 .navbar .navbar-logo img {
  width: auto;
}
.cid-suQJIPdnO1 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-suQJIPdnO1 .navbar.collapsed {
  justify-content: center;
}
.cid-suQJIPdnO1 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-suQJIPdnO1 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-suQJIPdnO1 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 6.1rem);
  }
}
.cid-suQJIPdnO1 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-suQJIPdnO1 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-suQJIPdnO1 .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-suQJIPdnO1 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-suQJIPdnO1 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-suQJIPdnO1 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-suQJIPdnO1 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-suQJIPdnO1 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-suQJIPdnO1 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-suQJIPdnO1 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-suQJIPdnO1 .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-suQJIPdnO1 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-suQJIPdnO1 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-suQJIPdnO1 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-suQJIPdnO1 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-suQJIPdnO1 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-suQJIPdnO1 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-suQJIPdnO1 .navbar.navbar-short {
  min-height: 60px;
}
.cid-suQJIPdnO1 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-suQJIPdnO1 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-suQJIPdnO1 .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-suQJIPdnO1 .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-suQJIPdnO1 .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-suQJIPdnO1 .dropdown-item:hover,
.cid-suQJIPdnO1 .dropdown-item:focus {
  background: #110d3e !important;
  color: white !important;
}
.cid-suQJIPdnO1 .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-suQJIPdnO1 .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-suQJIPdnO1 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 0.5em !important;
}
.cid-suQJIPdnO1 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-suQJIPdnO1 .dropdown-menu,
.cid-suQJIPdnO1 .navbar.opened {
  background: #ffffff !important;
}
.cid-suQJIPdnO1 .nav-item:focus,
.cid-suQJIPdnO1 .nav-link:focus {
  outline: none;
}
.cid-suQJIPdnO1 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-suQJIPdnO1 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-suQJIPdnO1 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-suQJIPdnO1 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-suQJIPdnO1 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-suQJIPdnO1 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-suQJIPdnO1 .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-suQJIPdnO1 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-suQJIPdnO1 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-suQJIPdnO1 .dropdown-item.active,
.cid-suQJIPdnO1 .dropdown-item:active {
  background-color: transparent;
}
.cid-suQJIPdnO1 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-suQJIPdnO1 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-suQJIPdnO1 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-suQJIPdnO1 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-suQJIPdnO1 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-suQJIPdnO1 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-suQJIPdnO1 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-suQJIPdnO1 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-suQJIPdnO1 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-suQJIPdnO1 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-suQJIPdnO1 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-suQJIPdnO1 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-suQJIPdnO1 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-suQJIPdnO1 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-suQJIPdnO1 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-suQJIPdnO1 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-suQJIPdnO1 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-suQJIPdnO1 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-suQJIPdnO1 .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-suQJIPdnO1 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-suQJIPdnO1 .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-suQJIPdnO1 .navbar {
    height: 70px;
  }
  .cid-suQJIPdnO1 .navbar.opened {
    height: auto;
  }
  .cid-suQJIPdnO1 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-suQJIW3Ifm {
  overflow: visible;
  padding-top: 10rem;
  padding-bottom: 2rem;
  background-color: #050047;
  background: linear-gradient(to right bottom, rgba(5, 0, 71, 0.8), #5e2ced);
}
.cid-suQJIW3Ifm .mbr-overlay {
  background: #ffffff;
}
.cid-suQJIW3Ifm .animation {
  pointer-events: none;
}
.cid-suQJIW3Ifm .mbr-section-subtitle {
  margin-bottom: 10px;
}
.cid-suQJIW3Ifm .mbr-section-title {
  margin-bottom: 27px;
}
.cid-suQJIW3Ifm .mbr-text {
  margin-bottom: 35px;
  line-height: 1.54;
}
@media (min-width: 768px) {
  .cid-suQJIW3Ifm .circle1 {
    position: absolute;
    left: 70px;
    bottom: 70px;
    width: 200px;
    height: 200px;
    z-index: 1;
    background-color: #fff;
    border-radius: 50%;
    opacity: .1;
    animation: circleAnimation 13s linear infinite;
  }
  .cid-suQJIW3Ifm .circle2 {
    top: 150px;
    left: 47.6%;
    width: 100px;
    height: 100px;
    position: absolute;
    z-index: 1;
    background-color: #fff;
    border-radius: 50%;
    opacity: .1;
    animation: circleAnimation 11s linear infinite;
  }
  .cid-suQJIW3Ifm .circle3 {
    right: 15%;
    bottom: 140px;
    width: 170px;
    height: 170px;
    position: absolute;
    z-index: 1;
    background-color: #fff;
    border-radius: 50%;
    opacity: .1;
    animation: circleAnimation 10s linear infinite;
  }
  .cid-suQJIW3Ifm .circle4 {
    right: 3%;
    top: 190px;
    width: 50px;
    height: 50px;
    position: absolute;
    z-index: 1;
    background-color: #fff;
    border-radius: 50%;
    opacity: .1;
    animation: circleAnimation 9s linear infinite;
  }
  @keyframes circleAnimation {
    0% {
      transform: scale(1);
    }
    50% {
      transform: scale(1.5);
    }
    55% {
      transform: scale(1.5);
    }
    100% {
      transform: scale(1);
    }
  }
}
@media (max-width: 991px) {
  .cid-suQJIW3Ifm .mbr-section-title {
    margin-bottom: 17px;
  }
  .cid-suQJIW3Ifm .mbr-text {
    margin-bottom: 20px;
  }
  .cid-suQJIW3Ifm .mbr-section-btn {
    margin-bottom: 40px;
  }
  .cid-suQJIW3Ifm .image__block {
    margin-bottom: -100px;
  }
}
.cid-suQJJ0BPgg {
  padding-top: 60px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-suQJJ0BPgg .wrap {
  display: flex;
  border-bottom: 1px dotted #83868c;
  margin-bottom: 39px;
  padding-bottom: 20px;
}
.cid-suQJJ0BPgg .wrap .ico1 {
  font-size: 2rem;
  margin-right: 30px;
  color: #ffc600;
}
.cid-suQJJ0BPgg .wrap .mbr-text {
  z-index: 2;
  position: relative;
  color: #fa5800;
}
.cid-suQJJ0BPgg .wrap .mbr-section-subtitle {
  color: #110d3e;
  display: inline-block;
  margin-right: 20px;
}
.cid-suQJJ0BPgg .wrap .ico-line {
  display: inline-block;
}
.cid-suQJJ0BPgg .wrap .ico-line .mbr-iconfont {
  color: #279e64;
  font-size: 14px;
}
.cid-suQJJ0BPgg .col-md-12:last-child .wrap,
.cid-suQJJ0BPgg .col-lg-12:last-child .wrap {
  border-bottom: none;
}
.cid-suQJJ0BPgg .col-md-12.last-child .wrap,
.cid-suQJJ0BPgg .col-lg-12.last-child .wrap {
  border-bottom: none;
}
@media (max-width: 768px) {
  .cid-suQJJ0BPgg * {
    text-align: left;
  }
  .cid-suQJJ0BPgg .ico1 {
    display: none;
  }
}
.cid-suQJJ0BPgg .wrap .content .mbr-text {
  color: #282727;
}
.cid-suQJJ68AN0 {
  padding-top: 75px;
  padding-bottom: 75px;
  background-image: url("../../../assets/images/mbr-1920x1280.jpg");
}
@media (max-width: 767px) {
  .cid-suQJJ68AN0 .content {
    text-align: center;
  }
  .cid-suQJJ68AN0 .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-suQJJ68AN0 .logo-subtitle {
  color: #8d97ad;
}
.cid-suQJJ68AN0 .media-wrap {
  padding-bottom: 2rem;
}
@media (max-width: 767px) {
  .cid-suQJJ68AN0 .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-suQJJ68AN0 .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-suQJJ68AN0 .media-wrap img {
  height: 6rem;
  display: inline-block;
  width: auto;
}
@media (max-width: 767px) {
  .cid-suQJJ68AN0 .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-suQJJ68AN0 .footer-lower hr {
  margin: 1rem 0;
  border-color: #efefef;
  opacity: .05;
}
.cid-suQJJ68AN0 .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-suQJJ68AN0 .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #232323;
}
.cid-suQJJ68AN0 .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-suQJJ68AN0 .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-suQJJ68AN0 .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-suQJJ68AN0 .footer-lower .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-suQJJ68AN0 .list-item {
  display: flex;
}
.cid-suQJJ68AN0 .list-item .mbr-iconfont {
  padding-right: 1rem;
  font-size: 24px;
  color: #188ef4;
}
.cid-suQJJ68AN0 ul.list {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.cid-suQJJ68AN0 ul.list li {
  display: flex;
  word-break: break-all;
}
.cid-suQJJ68AN0 ul.list li::before {
  font-family: MobiriseIcons !important;
  content: '';
  padding-right: .5rem;
}
.cid-suQJJ68AN0 P {
  color: #cac8bc;
}
.cid-suQJJ68AN0 .column-title {
  color: #ffc900;
}
.cid-suQJJ68AN0 .mbr-text {
  color: #cac8bc;
}
.cid-suQJJ68AN0 .copyright > p {
  text-align: center;
}
.cid-suQJJ68AN0 .logo-subtitle,
.cid-suQJJ68AN0 .media-wrap {
  color: #ffffff;
}
.cid-suQESHzxtz {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-suQESHzxtz .menu-text {
  padding: 0 2rem;
  color: #5b6c8f;
}
@media (max-width: 992px) {
  .cid-suQESHzxtz .menu-text {
    text-align: center;
    padding: 0.5rem 1rem;
  }
}
.cid-suQESHzxtz .iconfont-wrapper {
  color: #103178 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
@media (max-width: 992px) {
  .cid-suQESHzxtz .iconfont-wrapper {
    padding: 0 0.25rem;
  }
}
.cid-suQESHzxtz .container {
  display: flex;
  margin: auto;
}
@media (max-width: 767px) {
  .cid-suQESHzxtz .container {
    padding: 0 1rem;
  }
}
.cid-suQESHzxtz .menu-tite {
  background: #110d3e;
  width: 100%;
  padding: 0.4rem 1rem;
  text-align: center;
  color: #ffc800;
}
.cid-suQESHzxtz .nav-link {
  position: relative;
}
.cid-suQESHzxtz .nav-link:hover {
  color: #fa5800 !important;
}
.cid-suQESHzxtz nav.navbar {
  position: fixed;
}
.cid-suQESHzxtz .navbar {
  padding: 0!important;
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-suQESHzxtz .navbar.opened {
  transition: all 0.3s;
}
.cid-suQESHzxtz .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-suQESHzxtz .navbar .navbar-logo img {
  width: auto;
}
.cid-suQESHzxtz .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-suQESHzxtz .navbar.collapsed {
  justify-content: center;
}
.cid-suQESHzxtz .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-suQESHzxtz .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-suQESHzxtz .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 6.1rem);
  }
}
.cid-suQESHzxtz .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-suQESHzxtz .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-suQESHzxtz .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-suQESHzxtz .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-suQESHzxtz .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-suQESHzxtz .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-suQESHzxtz .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-suQESHzxtz .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-suQESHzxtz .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-suQESHzxtz .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-suQESHzxtz .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-suQESHzxtz .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-suQESHzxtz .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-suQESHzxtz .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-suQESHzxtz .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-suQESHzxtz .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-suQESHzxtz .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-suQESHzxtz .navbar.navbar-short {
  min-height: 60px;
}
.cid-suQESHzxtz .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-suQESHzxtz .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-suQESHzxtz .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-suQESHzxtz .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-suQESHzxtz .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-suQESHzxtz .dropdown-item:hover,
.cid-suQESHzxtz .dropdown-item:focus {
  background: #110d3e !important;
  color: white !important;
}
.cid-suQESHzxtz .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-suQESHzxtz .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-suQESHzxtz .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 0.5em !important;
}
.cid-suQESHzxtz .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-suQESHzxtz .dropdown-menu,
.cid-suQESHzxtz .navbar.opened {
  background: #ffffff !important;
}
.cid-suQESHzxtz .nav-item:focus,
.cid-suQESHzxtz .nav-link:focus {
  outline: none;
}
.cid-suQESHzxtz .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-suQESHzxtz .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-suQESHzxtz .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-suQESHzxtz .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-suQESHzxtz .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-suQESHzxtz .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-suQESHzxtz .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-suQESHzxtz .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-suQESHzxtz .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-suQESHzxtz .dropdown-item.active,
.cid-suQESHzxtz .dropdown-item:active {
  background-color: transparent;
}
.cid-suQESHzxtz .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-suQESHzxtz .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-suQESHzxtz .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-suQESHzxtz .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-suQESHzxtz .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-suQESHzxtz .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-suQESHzxtz ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-suQESHzxtz .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-suQESHzxtz button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-suQESHzxtz button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-suQESHzxtz button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-suQESHzxtz button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-suQESHzxtz button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-suQESHzxtz button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-suQESHzxtz nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-suQESHzxtz nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-suQESHzxtz nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-suQESHzxtz nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-suQESHzxtz .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-suQESHzxtz a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-suQESHzxtz .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-suQESHzxtz .navbar {
    height: 70px;
  }
  .cid-suQESHzxtz .navbar.opened {
    height: auto;
  }
  .cid-suQESHzxtz .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-suQESVcqC9 {
  overflow: visible;
  padding-top: 10rem;
  padding-bottom: 2rem;
  background-color: #050047;
  background: linear-gradient(to right bottom, rgba(5, 0, 71, 0.8), #5e2ced);
}
.cid-suQESVcqC9 .mbr-overlay {
  background: #ffffff;
}
.cid-suQESVcqC9 .animation {
  pointer-events: none;
}
.cid-suQESVcqC9 .mbr-section-subtitle {
  margin-bottom: 10px;
}
.cid-suQESVcqC9 .mbr-section-title {
  margin-bottom: 27px;
}
.cid-suQESVcqC9 .mbr-text {
  margin-bottom: 35px;
  line-height: 1.54;
}
@media (min-width: 768px) {
  .cid-suQESVcqC9 .circle1 {
    position: absolute;
    left: 70px;
    bottom: 70px;
    width: 200px;
    height: 200px;
    z-index: 1;
    background-color: #fff;
    border-radius: 50%;
    opacity: .1;
    animation: circleAnimation 13s linear infinite;
  }
  .cid-suQESVcqC9 .circle2 {
    top: 150px;
    left: 47.6%;
    width: 100px;
    height: 100px;
    position: absolute;
    z-index: 1;
    background-color: #fff;
    border-radius: 50%;
    opacity: .1;
    animation: circleAnimation 11s linear infinite;
  }
  .cid-suQESVcqC9 .circle3 {
    right: 15%;
    bottom: 140px;
    width: 170px;
    height: 170px;
    position: absolute;
    z-index: 1;
    background-color: #fff;
    border-radius: 50%;
    opacity: .1;
    animation: circleAnimation 10s linear infinite;
  }
  .cid-suQESVcqC9 .circle4 {
    right: 3%;
    top: 190px;
    width: 50px;
    height: 50px;
    position: absolute;
    z-index: 1;
    background-color: #fff;
    border-radius: 50%;
    opacity: .1;
    animation: circleAnimation 9s linear infinite;
  }
  @keyframes circleAnimation {
    0% {
      transform: scale(1);
    }
    50% {
      transform: scale(1.5);
    }
    55% {
      transform: scale(1.5);
    }
    100% {
      transform: scale(1);
    }
  }
}
@media (max-width: 991px) {
  .cid-suQESVcqC9 .mbr-section-title {
    margin-bottom: 17px;
  }
  .cid-suQESVcqC9 .mbr-text {
    margin-bottom: 20px;
  }
  .cid-suQESVcqC9 .mbr-section-btn {
    margin-bottom: 40px;
  }
  .cid-suQESVcqC9 .image__block {
    margin-bottom: -100px;
  }
}
.cid-suQET5gKst {
  padding-top: 5rem;
  padding-bottom: 3rem;
  background-image: url("../../../assets/images/mbr-1920x1358.jpg");
}
@media (min-width: 1500px) {
  .cid-suQET5gKst .container {
    max-width: 1400px;
  }
}
.cid-suQET5gKst .mbr-iconfont {
  font-size: 3rem;
  color: #f2f1eb;
}
.cid-suQET5gKst .iconfont-wrapper {
  margin-bottom: 1rem;
  border: 2px solid #f2f1eb;
  border-radius: 50%;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 5rem;
  height: 5rem;
}
.cid-suQET5gKst .row {
  justify-content: center;
}
.cid-suQET5gKst .card {
  margin-bottom: 3rem;
}
.cid-suQET5gKst .card-title {
  margin-top: 1rem;
}
.cid-suQET5gKst .card-text {
  margin-top: 0.6875rem;
}
.cid-suQET5gKst .mbr-section-tag {
  color: #9e9e9e;
  margin-bottom: 0.4375rem;
}
.cid-suQET5gKst .mbr-section-title {
  margin-bottom: 1rem;
  color: #ffffff;
}
.cid-suQET5gKst .mbr-section-title b:last-child,
.cid-suQET5gKst .mbr-section-title strong:last-child {
  color: #ffc900;
}
.cid-suQET5gKst .mbr-section-subtitle {
  margin-bottom: 0.625rem;
}
.cid-suQET5gKst .mbr-section-head {
  margin-bottom: 6.875rem;
}
.cid-suQET5gKst .card-title,
.cid-suQET5gKst .icon-container {
  color: #ffc900;
}
.cid-suQET8066r {
  overflow: hidden !important;
  padding-top: 4rem;
  padding-bottom: 1rem;
  background-color: #050047;
}
.cid-suQET8066r .title__block {
  padding-bottom: 40px;
}
.cid-suQET8066r .carousel {
  margin-bottom: 80px;
}
.cid-suQET8066r .carousel-item {
  -webkit-justify-content: center;
  justify-content: center;
  transition: none !important;
}
.cid-suQET8066r .carousel-controls a span {
  width: 56px;
  height: 56px;
  line-height: 36px;
  font-size: 18px;
  position: absolute;
  padding: 10px;
  border-radius: 50%;
  color: #ffffff;
  background: rgba(255, 201, 0, 0.3);
  transition: all cubic-bezier(0.4, 0, 0.2, 1) 0.4s;
}
.cid-suQET8066r .carousel-controls a:hover span {
  background: rgba(255, 201, 0, 0.6);
}
.cid-suQET8066r .carousel-inner {
  overflow: visible !important;
}
.cid-suQET8066r .carousel-item:first-child {
  display: flex;
  transform: translateX(50%);
}
.cid-suQET8066r .carousel-item.active + .carousel-item {
  display: flex;
  transform: translateX(50%);
}
.cid-suQET8066r .carousel-item.active {
  display: flex;
  transform: translateX(-50%);
}
.cid-suQET8066r .user {
  height: 370px;
}
.cid-suQET8066r .user img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 6px;
}
.cid-suQET8066r .carousel-control-prev {
  top: auto;
  left: -3%;
  bottom: -45px;
  opacity: 1;
  transition: all cubic-bezier(0.4, 0, 0.2, 1) 0.4s;
}
.cid-suQET8066r .carousel-control-next {
  top: auto;
  left: 2%;
  margin-left: 8px;
  bottom: -45px;
  opacity: 1;
  transition: all cubic-bezier(0.4, 0, 0.2, 1) 0.4s;
}
@media (max-width: 1199px) {
  .cid-suQET8066r .carousel-control-next {
    left: 3%;
  }
}
@media (max-width: 991px) {
  .cid-suQET8066r .carousel-control-prev {
    left: -2%;
  }
  .cid-suQET8066r .carousel-control-next {
    left: 6%;
  }
  .cid-suQET8066r .user {
    height: auto;
  }
}
@media (max-width: 767px) {
  .cid-suQET8066r .carousel-item > .user:nth-child(2) {
    display: none;
  }
  .cid-suQET8066r .carousel-item:first-child {
    transform: translateX(0);
  }
  .cid-suQET8066r .carousel-item.active + .carousel-item {
    transform: translateX(0);
  }
  .cid-suQET8066r .carousel-item.active {
    transform: translateX(0);
  }
  .cid-suQET8066r .carousel-controls {
    display: none;
  }
  .cid-suQET8066r .carousel {
    margin-bottom: 0;
  }
}
.cid-suQET8066r .mbr-section-title {
  color: #ffffff;
}
.cid-suQETatpwA {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-suQETatpwA .item-subtitle,
.cid-suQETatpwA .item-title,
.cid-suQETatpwA .mbr-section-title {
  margin-bottom: 12px;
}
.cid-suQETatpwA .mbr-section-btn .btn-white-outline {
  padding: 3px 0;
  margin-bottom: 0;
  border: none !important;
  background-color: transparent !important;
}
.cid-suQETatpwA .item-img {
  overflow: hidden;
  position: absolute;
  z-index: 0;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.cid-suQETatpwA .item-img img {
  transition: all cubic-bezier(0.4, 0, 0.2, 1) 0.6s;
  width: 102%;
  height: 102%;
  object-fit: cover;
  will-change: transform;
}
.cid-suQETatpwA .item:focus,
.cid-suQETatpwA span:focus {
  outline: none;
}
.cid-suQETatpwA .item {
  margin-bottom: 3rem;
}
@media (max-width: 991px) {
  .cid-suQETatpwA .item:last-child {
    margin-bottom: 0;
  }
}
.cid-suQETatpwA .row {
  margin-left: 0;
  margin-right: 0;
}
.cid-suQETatpwA .item {
  padding: 0;
  margin: 0;
}
.cid-suQETatpwA .item-wrapper {
  position: relative;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
  min-height: 400px;
}
.cid-suQETatpwA .item-wrapper:hover .item-img img {
  transform: scale3d(1.2, 1.2, 2);
}
.cid-suQETatpwA .item-content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  padding: 10% 20%;
}
.cid-suQETatpwA .item-content > div,
.cid-suQETatpwA .item-content p {
  z-index: 5;
  position: relative;
}
@media (max-width: 1199px) {
  .cid-suQETatpwA .item-content {
    padding: 8% 15%;
  }
}
@media (max-width: 991px) {
  .cid-suQETatpwA .item-content {
    padding: 50px 75px;
  }
}
@media (max-width: 575px) {
  .cid-suQETatpwA .item-content {
    padding: 30px 20px;
  }
}
.cid-suQETatpwA .mbr-section-title {
  color: #231f59;
}
.cid-suQETd4v7r {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #fef8f5;
}
.cid-suQETd4v7r .item-subtitle,
.cid-suQETd4v7r .item-title,
.cid-suQETd4v7r .mbr-section-title {
  margin-bottom: 12px;
}
.cid-suQETd4v7r .mbr-section-btn .btn-white-outline {
  padding: 3px 0;
  margin-bottom: 0;
  border: none !important;
  background-color: transparent !important;
}
.cid-suQETd4v7r .item-img {
  overflow: hidden;
  position: absolute;
  z-index: 0;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.cid-suQETd4v7r .item-img img {
  transition: all cubic-bezier(0.4, 0, 0.2, 1) 0.6s;
  width: 102%;
  height: 102%;
  object-fit: cover;
  will-change: transform;
}
.cid-suQETd4v7r .item:focus,
.cid-suQETd4v7r span:focus {
  outline: none;
}
.cid-suQETd4v7r .item {
  margin-bottom: 3rem;
}
@media (max-width: 991px) {
  .cid-suQETd4v7r .item:last-child {
    margin-bottom: 0;
  }
}
.cid-suQETd4v7r .row {
  margin-left: 0;
  margin-right: 0;
}
.cid-suQETd4v7r .item {
  padding: 0;
  margin: 0;
}
.cid-suQETd4v7r .item-wrapper {
  position: relative;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
  min-height: 400px;
}
.cid-suQETd4v7r .item-wrapper:hover .item-img img {
  transform: scale3d(1.2, 1.2, 2);
}
.cid-suQETd4v7r .item-content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  padding: 10% 20%;
}
.cid-suQETd4v7r .item-content > div,
.cid-suQETd4v7r .item-content p {
  z-index: 5;
  position: relative;
}
@media (max-width: 1199px) {
  .cid-suQETd4v7r .item-content {
    padding: 8% 15%;
  }
}
@media (max-width: 991px) {
  .cid-suQETd4v7r .item-content {
    padding: 50px 75px;
  }
}
@media (max-width: 575px) {
  .cid-suQETd4v7r .item-content {
    padding: 30px 20px;
  }
}
.cid-suQETgbQ5l {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/mbr-1920x1357.jpg");
}
.cid-suQETgbQ5l .mbr-section-title {
  color: #fa5800;
  text-align: center;
}
.cid-suQETgbQ5l .mbr-section-subtitle {
  color: #0037ff;
  text-align: center;
}
.cid-suQETgbQ5l .mbr-text,
.cid-suQETgbQ5l .link {
  color: #707070;
}
.cid-suQETgbQ5l .card-subtitle {
  color: #fa5800;
  text-align: center;
}
.cid-suQETgbQ5l .card-wrapper,
.cid-suQETgbQ5l .item-wrapper {
  overflow: visible;
}
.cid-suQETgbQ5l .card-wrapper {
  margin-bottom: 5rem;
}
.cid-suQETgbQ5l .card-title,
.cid-suQETgbQ5l .card-box {
  text-align: center;
  color: #231f59;
}
.cid-suQETj6H1t {
  padding-top: 75px;
  padding-bottom: 75px;
  background-image: url("../../../assets/images/mbr-1920x1280.jpg");
}
@media (max-width: 767px) {
  .cid-suQETj6H1t .content {
    text-align: center;
  }
  .cid-suQETj6H1t .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-suQETj6H1t .logo-subtitle {
  color: #8d97ad;
}
.cid-suQETj6H1t .media-wrap {
  padding-bottom: 2rem;
}
@media (max-width: 767px) {
  .cid-suQETj6H1t .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-suQETj6H1t .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-suQETj6H1t .media-wrap img {
  height: 6rem;
  display: inline-block;
  width: auto;
}
@media (max-width: 767px) {
  .cid-suQETj6H1t .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-suQETj6H1t .footer-lower hr {
  margin: 1rem 0;
  border-color: #efefef;
  opacity: .05;
}
.cid-suQETj6H1t .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-suQETj6H1t .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #232323;
}
.cid-suQETj6H1t .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-suQETj6H1t .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-suQETj6H1t .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-suQETj6H1t .footer-lower .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-suQETj6H1t .list-item {
  display: flex;
}
.cid-suQETj6H1t .list-item .mbr-iconfont {
  padding-right: 1rem;
  font-size: 24px;
  color: #188ef4;
}
.cid-suQETj6H1t ul.list {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.cid-suQETj6H1t ul.list li {
  display: flex;
  word-break: break-all;
}
.cid-suQETj6H1t ul.list li::before {
  font-family: MobiriseIcons !important;
  content: '';
  padding-right: .5rem;
}
.cid-suQETj6H1t P {
  color: #cac8bc;
}
.cid-suQETj6H1t .column-title {
  color: #ffc900;
}
.cid-suQETj6H1t .mbr-text {
  color: #cac8bc;
}
.cid-suQETj6H1t .copyright > p {
  text-align: center;
}
.cid-suQETj6H1t .logo-subtitle,
.cid-suQETj6H1t .media-wrap {
  color: #ffffff;
}
.cid-suQP34z23u {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-suQP34z23u .menu-text {
  padding: 0 2rem;
  color: #5b6c8f;
}
@media (max-width: 992px) {
  .cid-suQP34z23u .menu-text {
    text-align: center;
    padding: 0.5rem 1rem;
  }
}
.cid-suQP34z23u .iconfont-wrapper {
  color: #103178 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
@media (max-width: 992px) {
  .cid-suQP34z23u .iconfont-wrapper {
    padding: 0 0.25rem;
  }
}
.cid-suQP34z23u .container {
  display: flex;
  margin: auto;
}
@media (max-width: 767px) {
  .cid-suQP34z23u .container {
    padding: 0 1rem;
  }
}
.cid-suQP34z23u .menu-tite {
  background: #110d3e;
  width: 100%;
  padding: 0.4rem 1rem;
  text-align: center;
  color: #ffc800;
}
.cid-suQP34z23u .nav-link {
  position: relative;
}
.cid-suQP34z23u .nav-link:hover {
  color: #fa5800 !important;
}
.cid-suQP34z23u nav.navbar {
  position: fixed;
}
.cid-suQP34z23u .navbar {
  padding: 0!important;
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-suQP34z23u .navbar.opened {
  transition: all 0.3s;
}
.cid-suQP34z23u .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-suQP34z23u .navbar .navbar-logo img {
  width: auto;
}
.cid-suQP34z23u .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-suQP34z23u .navbar.collapsed {
  justify-content: center;
}
.cid-suQP34z23u .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-suQP34z23u .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-suQP34z23u .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 6.1rem);
  }
}
.cid-suQP34z23u .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-suQP34z23u .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-suQP34z23u .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-suQP34z23u .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-suQP34z23u .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-suQP34z23u .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-suQP34z23u .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-suQP34z23u .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-suQP34z23u .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-suQP34z23u .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-suQP34z23u .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-suQP34z23u .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-suQP34z23u .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-suQP34z23u .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-suQP34z23u .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-suQP34z23u .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-suQP34z23u .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-suQP34z23u .navbar.navbar-short {
  min-height: 60px;
}
.cid-suQP34z23u .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-suQP34z23u .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-suQP34z23u .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-suQP34z23u .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-suQP34z23u .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-suQP34z23u .dropdown-item:hover,
.cid-suQP34z23u .dropdown-item:focus {
  background: #110d3e !important;
  color: white !important;
}
.cid-suQP34z23u .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-suQP34z23u .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-suQP34z23u .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 0.5em !important;
}
.cid-suQP34z23u .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-suQP34z23u .dropdown-menu,
.cid-suQP34z23u .navbar.opened {
  background: #ffffff !important;
}
.cid-suQP34z23u .nav-item:focus,
.cid-suQP34z23u .nav-link:focus {
  outline: none;
}
.cid-suQP34z23u .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-suQP34z23u .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-suQP34z23u .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-suQP34z23u .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-suQP34z23u .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-suQP34z23u .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-suQP34z23u .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-suQP34z23u .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-suQP34z23u .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-suQP34z23u .dropdown-item.active,
.cid-suQP34z23u .dropdown-item:active {
  background-color: transparent;
}
.cid-suQP34z23u .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-suQP34z23u .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-suQP34z23u .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-suQP34z23u .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-suQP34z23u .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-suQP34z23u .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-suQP34z23u ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-suQP34z23u .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-suQP34z23u button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-suQP34z23u button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-suQP34z23u button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-suQP34z23u button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-suQP34z23u button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-suQP34z23u button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-suQP34z23u nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-suQP34z23u nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-suQP34z23u nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-suQP34z23u nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-suQP34z23u .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-suQP34z23u a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-suQP34z23u .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-suQP34z23u .navbar {
    height: 70px;
  }
  .cid-suQP34z23u .navbar.opened {
    height: auto;
  }
  .cid-suQP34z23u .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-suQP3820yR {
  overflow: visible;
  padding-top: 10rem;
  padding-bottom: 2rem;
  background-color: #050047;
  background: linear-gradient(to right bottom, rgba(5, 0, 71, 0.8), #5e2ced);
}
.cid-suQP3820yR .mbr-overlay {
  background: #ffffff;
}
.cid-suQP3820yR .animation {
  pointer-events: none;
}
.cid-suQP3820yR .mbr-section-subtitle {
  margin-bottom: 10px;
}
.cid-suQP3820yR .mbr-section-title {
  margin-bottom: 27px;
}
.cid-suQP3820yR .mbr-text {
  margin-bottom: 35px;
  line-height: 1.54;
}
@media (min-width: 768px) {
  .cid-suQP3820yR .circle1 {
    position: absolute;
    left: 70px;
    bottom: 70px;
    width: 200px;
    height: 200px;
    z-index: 1;
    background-color: #fff;
    border-radius: 50%;
    opacity: .1;
    animation: circleAnimation 13s linear infinite;
  }
  .cid-suQP3820yR .circle2 {
    top: 150px;
    left: 47.6%;
    width: 100px;
    height: 100px;
    position: absolute;
    z-index: 1;
    background-color: #fff;
    border-radius: 50%;
    opacity: .1;
    animation: circleAnimation 11s linear infinite;
  }
  .cid-suQP3820yR .circle3 {
    right: 15%;
    bottom: 140px;
    width: 170px;
    height: 170px;
    position: absolute;
    z-index: 1;
    background-color: #fff;
    border-radius: 50%;
    opacity: .1;
    animation: circleAnimation 10s linear infinite;
  }
  .cid-suQP3820yR .circle4 {
    right: 3%;
    top: 190px;
    width: 50px;
    height: 50px;
    position: absolute;
    z-index: 1;
    background-color: #fff;
    border-radius: 50%;
    opacity: .1;
    animation: circleAnimation 9s linear infinite;
  }
  @keyframes circleAnimation {
    0% {
      transform: scale(1);
    }
    50% {
      transform: scale(1.5);
    }
    55% {
      transform: scale(1.5);
    }
    100% {
      transform: scale(1);
    }
  }
}
@media (max-width: 991px) {
  .cid-suQP3820yR .mbr-section-title {
    margin-bottom: 17px;
  }
  .cid-suQP3820yR .mbr-text {
    margin-bottom: 20px;
  }
  .cid-suQP3820yR .mbr-section-btn {
    margin-bottom: 40px;
  }
  .cid-suQP3820yR .image__block {
    margin-bottom: -100px;
  }
}
.cid-suQP3pUU0M {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/mbr-1920x1357.jpg");
}
.cid-suQP3pUU0M .mbr-section-title {
  color: #fa5800;
  text-align: center;
}
.cid-suQP3pUU0M .mbr-section-subtitle {
  color: #0037ff;
  text-align: center;
}
.cid-suQP3pUU0M .mbr-text,
.cid-suQP3pUU0M .link {
  color: #707070;
}
.cid-suQP3pUU0M .card-subtitle {
  color: #fa5800;
  text-align: center;
}
.cid-suQP3pUU0M .card-wrapper,
.cid-suQP3pUU0M .item-wrapper {
  overflow: visible;
}
.cid-suQP3pUU0M .card-wrapper {
  margin-bottom: 5rem;
}
.cid-suQP3pUU0M .card-title,
.cid-suQP3pUU0M .card-box {
  text-align: center;
  color: #231f59;
}
.cid-suQP3b0Bym {
  padding-top: 5rem;
  padding-bottom: 3rem;
  background-image: url("../../../assets/images/mbr-1920x1358.jpg");
}
@media (min-width: 1500px) {
  .cid-suQP3b0Bym .container {
    max-width: 1400px;
  }
}
.cid-suQP3b0Bym .mbr-iconfont {
  font-size: 3rem;
  color: #f2f1eb;
}
.cid-suQP3b0Bym .iconfont-wrapper {
  margin-bottom: 1rem;
  border: 2px solid #f2f1eb;
  border-radius: 50%;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 5rem;
  height: 5rem;
}
.cid-suQP3b0Bym .row {
  justify-content: center;
}
.cid-suQP3b0Bym .card {
  margin-bottom: 3rem;
}
.cid-suQP3b0Bym .card-title {
  margin-top: 1rem;
}
.cid-suQP3b0Bym .card-text {
  margin-top: 0.6875rem;
}
.cid-suQP3b0Bym .mbr-section-tag {
  color: #9e9e9e;
  margin-bottom: 0.4375rem;
}
.cid-suQP3b0Bym .mbr-section-title {
  margin-bottom: 1rem;
  color: #ffffff;
}
.cid-suQP3b0Bym .mbr-section-title b:last-child,
.cid-suQP3b0Bym .mbr-section-title strong:last-child {
  color: #ffc900;
}
.cid-suQP3b0Bym .mbr-section-subtitle {
  margin-bottom: 0.625rem;
}
.cid-suQP3b0Bym .mbr-section-head {
  margin-bottom: 6.875rem;
}
.cid-suQP3b0Bym .card-title,
.cid-suQP3b0Bym .icon-container {
  color: #ffc900;
}
.cid-suQP3eLF1Z {
  overflow: hidden !important;
  padding-top: 4rem;
  padding-bottom: 1rem;
  background-color: #050047;
}
.cid-suQP3eLF1Z .title__block {
  padding-bottom: 40px;
}
.cid-suQP3eLF1Z .carousel {
  margin-bottom: 80px;
}
.cid-suQP3eLF1Z .carousel-item {
  -webkit-justify-content: center;
  justify-content: center;
  transition: none !important;
}
.cid-suQP3eLF1Z .carousel-controls a span {
  width: 56px;
  height: 56px;
  line-height: 36px;
  font-size: 18px;
  position: absolute;
  padding: 10px;
  border-radius: 50%;
  color: #ffffff;
  background: rgba(255, 201, 0, 0.3);
  transition: all cubic-bezier(0.4, 0, 0.2, 1) 0.4s;
}
.cid-suQP3eLF1Z .carousel-controls a:hover span {
  background: rgba(255, 201, 0, 0.6);
}
.cid-suQP3eLF1Z .carousel-inner {
  overflow: visible !important;
}
.cid-suQP3eLF1Z .carousel-item:first-child {
  display: flex;
  transform: translateX(50%);
}
.cid-suQP3eLF1Z .carousel-item.active + .carousel-item {
  display: flex;
  transform: translateX(50%);
}
.cid-suQP3eLF1Z .carousel-item.active {
  display: flex;
  transform: translateX(-50%);
}
.cid-suQP3eLF1Z .user {
  height: 370px;
}
.cid-suQP3eLF1Z .user img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 6px;
}
.cid-suQP3eLF1Z .carousel-control-prev {
  top: auto;
  left: -3%;
  bottom: -45px;
  opacity: 1;
  transition: all cubic-bezier(0.4, 0, 0.2, 1) 0.4s;
}
.cid-suQP3eLF1Z .carousel-control-next {
  top: auto;
  left: 2%;
  margin-left: 8px;
  bottom: -45px;
  opacity: 1;
  transition: all cubic-bezier(0.4, 0, 0.2, 1) 0.4s;
}
@media (max-width: 1199px) {
  .cid-suQP3eLF1Z .carousel-control-next {
    left: 3%;
  }
}
@media (max-width: 991px) {
  .cid-suQP3eLF1Z .carousel-control-prev {
    left: -2%;
  }
  .cid-suQP3eLF1Z .carousel-control-next {
    left: 6%;
  }
  .cid-suQP3eLF1Z .user {
    height: auto;
  }
}
@media (max-width: 767px) {
  .cid-suQP3eLF1Z .carousel-item > .user:nth-child(2) {
    display: none;
  }
  .cid-suQP3eLF1Z .carousel-item:first-child {
    transform: translateX(0);
  }
  .cid-suQP3eLF1Z .carousel-item.active + .carousel-item {
    transform: translateX(0);
  }
  .cid-suQP3eLF1Z .carousel-item.active {
    transform: translateX(0);
  }
  .cid-suQP3eLF1Z .carousel-controls {
    display: none;
  }
  .cid-suQP3eLF1Z .carousel {
    margin-bottom: 0;
  }
}
.cid-suQP3eLF1Z .mbr-section-title {
  color: #ffffff;
}
.cid-suQP3kdBHB {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-suQP3kdBHB .item-subtitle,
.cid-suQP3kdBHB .item-title,
.cid-suQP3kdBHB .mbr-section-title {
  margin-bottom: 12px;
}
.cid-suQP3kdBHB .mbr-section-btn .btn-white-outline {
  padding: 3px 0;
  margin-bottom: 0;
  border: none !important;
  background-color: transparent !important;
}
.cid-suQP3kdBHB .item-img {
  overflow: hidden;
  position: absolute;
  z-index: 0;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.cid-suQP3kdBHB .item-img img {
  transition: all cubic-bezier(0.4, 0, 0.2, 1) 0.6s;
  width: 102%;
  height: 102%;
  object-fit: cover;
  will-change: transform;
}
.cid-suQP3kdBHB .item:focus,
.cid-suQP3kdBHB span:focus {
  outline: none;
}
.cid-suQP3kdBHB .item {
  margin-bottom: 3rem;
}
@media (max-width: 991px) {
  .cid-suQP3kdBHB .item:last-child {
    margin-bottom: 0;
  }
}
.cid-suQP3kdBHB .row {
  margin-left: 0;
  margin-right: 0;
}
.cid-suQP3kdBHB .item {
  padding: 0;
  margin: 0;
}
.cid-suQP3kdBHB .item-wrapper {
  position: relative;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
  min-height: 400px;
}
.cid-suQP3kdBHB .item-wrapper:hover .item-img img {
  transform: scale3d(1.2, 1.2, 2);
}
.cid-suQP3kdBHB .item-content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  padding: 10% 20%;
}
.cid-suQP3kdBHB .item-content > div,
.cid-suQP3kdBHB .item-content p {
  z-index: 5;
  position: relative;
}
@media (max-width: 1199px) {
  .cid-suQP3kdBHB .item-content {
    padding: 8% 15%;
  }
}
@media (max-width: 991px) {
  .cid-suQP3kdBHB .item-content {
    padding: 50px 75px;
  }
}
@media (max-width: 575px) {
  .cid-suQP3kdBHB .item-content {
    padding: 30px 20px;
  }
}
.cid-suQP3kdBHB .mbr-section-title {
  color: #231f59;
}
.cid-suQP3n7l68 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #fef8f5;
}
.cid-suQP3n7l68 .item-subtitle,
.cid-suQP3n7l68 .item-title,
.cid-suQP3n7l68 .mbr-section-title {
  margin-bottom: 12px;
}
.cid-suQP3n7l68 .mbr-section-btn .btn-white-outline {
  padding: 3px 0;
  margin-bottom: 0;
  border: none !important;
  background-color: transparent !important;
}
.cid-suQP3n7l68 .item-img {
  overflow: hidden;
  position: absolute;
  z-index: 0;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.cid-suQP3n7l68 .item-img img {
  transition: all cubic-bezier(0.4, 0, 0.2, 1) 0.6s;
  width: 102%;
  height: 102%;
  object-fit: cover;
  will-change: transform;
}
.cid-suQP3n7l68 .item:focus,
.cid-suQP3n7l68 span:focus {
  outline: none;
}
.cid-suQP3n7l68 .item {
  margin-bottom: 3rem;
}
@media (max-width: 991px) {
  .cid-suQP3n7l68 .item:last-child {
    margin-bottom: 0;
  }
}
.cid-suQP3n7l68 .row {
  margin-left: 0;
  margin-right: 0;
}
.cid-suQP3n7l68 .item {
  padding: 0;
  margin: 0;
}
.cid-suQP3n7l68 .item-wrapper {
  position: relative;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
  min-height: 400px;
}
.cid-suQP3n7l68 .item-wrapper:hover .item-img img {
  transform: scale3d(1.2, 1.2, 2);
}
.cid-suQP3n7l68 .item-content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  padding: 10% 20%;
}
.cid-suQP3n7l68 .item-content > div,
.cid-suQP3n7l68 .item-content p {
  z-index: 5;
  position: relative;
}
@media (max-width: 1199px) {
  .cid-suQP3n7l68 .item-content {
    padding: 8% 15%;
  }
}
@media (max-width: 991px) {
  .cid-suQP3n7l68 .item-content {
    padding: 50px 75px;
  }
}
@media (max-width: 575px) {
  .cid-suQP3n7l68 .item-content {
    padding: 30px 20px;
  }
}
.cid-suQP3thBj8 {
  padding-top: 75px;
  padding-bottom: 75px;
  background-image: url("../../../assets/images/mbr-1920x1280.jpg");
}
@media (max-width: 767px) {
  .cid-suQP3thBj8 .content {
    text-align: center;
  }
  .cid-suQP3thBj8 .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-suQP3thBj8 .logo-subtitle {
  color: #8d97ad;
}
.cid-suQP3thBj8 .media-wrap {
  padding-bottom: 2rem;
}
@media (max-width: 767px) {
  .cid-suQP3thBj8 .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-suQP3thBj8 .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-suQP3thBj8 .media-wrap img {
  height: 6rem;
  display: inline-block;
  width: auto;
}
@media (max-width: 767px) {
  .cid-suQP3thBj8 .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-suQP3thBj8 .footer-lower hr {
  margin: 1rem 0;
  border-color: #efefef;
  opacity: .05;
}
.cid-suQP3thBj8 .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-suQP3thBj8 .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #232323;
}
.cid-suQP3thBj8 .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-suQP3thBj8 .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-suQP3thBj8 .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-suQP3thBj8 .footer-lower .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-suQP3thBj8 .list-item {
  display: flex;
}
.cid-suQP3thBj8 .list-item .mbr-iconfont {
  padding-right: 1rem;
  font-size: 24px;
  color: #188ef4;
}
.cid-suQP3thBj8 ul.list {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.cid-suQP3thBj8 ul.list li {
  display: flex;
  word-break: break-all;
}
.cid-suQP3thBj8 ul.list li::before {
  font-family: MobiriseIcons !important;
  content: '';
  padding-right: .5rem;
}
.cid-suQP3thBj8 P {
  color: #cac8bc;
}
.cid-suQP3thBj8 .column-title {
  color: #ffc900;
}
.cid-suQP3thBj8 .mbr-text {
  color: #cac8bc;
}
.cid-suQP3thBj8 .copyright > p {
  text-align: center;
}
.cid-suQP3thBj8 .logo-subtitle,
.cid-suQP3thBj8 .media-wrap {
  color: #ffffff;
}
.cid-suQPYLlPZZ {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-suQPYLlPZZ .menu-text {
  padding: 0 2rem;
  color: #5b6c8f;
}
@media (max-width: 992px) {
  .cid-suQPYLlPZZ .menu-text {
    text-align: center;
    padding: 0.5rem 1rem;
  }
}
.cid-suQPYLlPZZ .iconfont-wrapper {
  color: #103178 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
@media (max-width: 992px) {
  .cid-suQPYLlPZZ .iconfont-wrapper {
    padding: 0 0.25rem;
  }
}
.cid-suQPYLlPZZ .container {
  display: flex;
  margin: auto;
}
@media (max-width: 767px) {
  .cid-suQPYLlPZZ .container {
    padding: 0 1rem;
  }
}
.cid-suQPYLlPZZ .menu-tite {
  background: #110d3e;
  width: 100%;
  padding: 0.4rem 1rem;
  text-align: center;
  color: #ffc800;
}
.cid-suQPYLlPZZ .nav-link {
  position: relative;
}
.cid-suQPYLlPZZ .nav-link:hover {
  color: #fa5800 !important;
}
.cid-suQPYLlPZZ nav.navbar {
  position: fixed;
}
.cid-suQPYLlPZZ .navbar {
  padding: 0!important;
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-suQPYLlPZZ .navbar.opened {
  transition: all 0.3s;
}
.cid-suQPYLlPZZ .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-suQPYLlPZZ .navbar .navbar-logo img {
  width: auto;
}
.cid-suQPYLlPZZ .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-suQPYLlPZZ .navbar.collapsed {
  justify-content: center;
}
.cid-suQPYLlPZZ .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-suQPYLlPZZ .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-suQPYLlPZZ .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 6.1rem);
  }
}
.cid-suQPYLlPZZ .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-suQPYLlPZZ .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-suQPYLlPZZ .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-suQPYLlPZZ .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-suQPYLlPZZ .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-suQPYLlPZZ .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-suQPYLlPZZ .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-suQPYLlPZZ .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-suQPYLlPZZ .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-suQPYLlPZZ .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-suQPYLlPZZ .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-suQPYLlPZZ .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-suQPYLlPZZ .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-suQPYLlPZZ .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-suQPYLlPZZ .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-suQPYLlPZZ .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-suQPYLlPZZ .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-suQPYLlPZZ .navbar.navbar-short {
  min-height: 60px;
}
.cid-suQPYLlPZZ .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-suQPYLlPZZ .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-suQPYLlPZZ .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-suQPYLlPZZ .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-suQPYLlPZZ .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-suQPYLlPZZ .dropdown-item:hover,
.cid-suQPYLlPZZ .dropdown-item:focus {
  background: #110d3e !important;
  color: white !important;
}
.cid-suQPYLlPZZ .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-suQPYLlPZZ .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-suQPYLlPZZ .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 0.5em !important;
}
.cid-suQPYLlPZZ .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-suQPYLlPZZ .dropdown-menu,
.cid-suQPYLlPZZ .navbar.opened {
  background: #ffffff !important;
}
.cid-suQPYLlPZZ .nav-item:focus,
.cid-suQPYLlPZZ .nav-link:focus {
  outline: none;
}
.cid-suQPYLlPZZ .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-suQPYLlPZZ .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-suQPYLlPZZ .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-suQPYLlPZZ .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-suQPYLlPZZ .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-suQPYLlPZZ .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-suQPYLlPZZ .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-suQPYLlPZZ .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-suQPYLlPZZ .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-suQPYLlPZZ .dropdown-item.active,
.cid-suQPYLlPZZ .dropdown-item:active {
  background-color: transparent;
}
.cid-suQPYLlPZZ .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-suQPYLlPZZ .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-suQPYLlPZZ .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-suQPYLlPZZ .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-suQPYLlPZZ .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-suQPYLlPZZ .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-suQPYLlPZZ ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-suQPYLlPZZ .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-suQPYLlPZZ button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-suQPYLlPZZ button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-suQPYLlPZZ button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-suQPYLlPZZ button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-suQPYLlPZZ button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-suQPYLlPZZ button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-suQPYLlPZZ nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-suQPYLlPZZ nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-suQPYLlPZZ nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-suQPYLlPZZ nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-suQPYLlPZZ .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-suQPYLlPZZ a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-suQPYLlPZZ .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-suQPYLlPZZ .navbar {
    height: 70px;
  }
  .cid-suQPYLlPZZ .navbar.opened {
    height: auto;
  }
  .cid-suQPYLlPZZ .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-suQPYQOBUT {
  overflow: visible;
  padding-top: 10rem;
  padding-bottom: 2rem;
  background-color: #050047;
  background: linear-gradient(to right bottom, rgba(5, 0, 71, 0.8), #5e2ced);
}
.cid-suQPYQOBUT .mbr-overlay {
  background: #ffffff;
}
.cid-suQPYQOBUT .animation {
  pointer-events: none;
}
.cid-suQPYQOBUT .mbr-section-subtitle {
  margin-bottom: 10px;
}
.cid-suQPYQOBUT .mbr-section-title {
  margin-bottom: 27px;
}
.cid-suQPYQOBUT .mbr-text {
  margin-bottom: 35px;
  line-height: 1.54;
}
@media (min-width: 768px) {
  .cid-suQPYQOBUT .circle1 {
    position: absolute;
    left: 70px;
    bottom: 70px;
    width: 200px;
    height: 200px;
    z-index: 1;
    background-color: #fff;
    border-radius: 50%;
    opacity: .1;
    animation: circleAnimation 13s linear infinite;
  }
  .cid-suQPYQOBUT .circle2 {
    top: 150px;
    left: 47.6%;
    width: 100px;
    height: 100px;
    position: absolute;
    z-index: 1;
    background-color: #fff;
    border-radius: 50%;
    opacity: .1;
    animation: circleAnimation 11s linear infinite;
  }
  .cid-suQPYQOBUT .circle3 {
    right: 15%;
    bottom: 140px;
    width: 170px;
    height: 170px;
    position: absolute;
    z-index: 1;
    background-color: #fff;
    border-radius: 50%;
    opacity: .1;
    animation: circleAnimation 10s linear infinite;
  }
  .cid-suQPYQOBUT .circle4 {
    right: 3%;
    top: 190px;
    width: 50px;
    height: 50px;
    position: absolute;
    z-index: 1;
    background-color: #fff;
    border-radius: 50%;
    opacity: .1;
    animation: circleAnimation 9s linear infinite;
  }
  @keyframes circleAnimation {
    0% {
      transform: scale(1);
    }
    50% {
      transform: scale(1.5);
    }
    55% {
      transform: scale(1.5);
    }
    100% {
      transform: scale(1);
    }
  }
}
@media (max-width: 991px) {
  .cid-suQPYQOBUT .mbr-section-title {
    margin-bottom: 17px;
  }
  .cid-suQPYQOBUT .mbr-text {
    margin-bottom: 20px;
  }
  .cid-suQPYQOBUT .mbr-section-btn {
    margin-bottom: 40px;
  }
  .cid-suQPYQOBUT .image__block {
    margin-bottom: -100px;
  }
}
.cid-suQQjEXze4 {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #f2f1eb;
}
.cid-suQQjEXze4 .mbr-overlay {
  padding: 0;
  background: #ffffff;
  opacity: 1;
  transform: scale(3) skewX(25deg);
  transform-origin: left bottom;
  left: -100%;
}
.cid-suQQjEXze4 .titles-section {
  margin-bottom: 40px;
}
.cid-suQQjEXze4 .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #231f59;
}
.cid-suQQjEXze4 .mbr-section-title {
  color: #6a3649;
}
.cid-suQQjEXze4 .mbr-section-subtitle {
  color: #6a3649;
}
.cid-suQQjEXze4 .card-text {
  text-align: center;
  color: #4c4a4b;
}
.cid-suQQjEXze4 .card .card-title,
.cid-suQQjEXze4 .iconfont-wrapper {
  color: #060424;
}
.cid-suQR2r977b {
  padding-top: 90px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/mbr-1-1920x1280.jpg");
}
.cid-suQR2r977b .row {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  -webkit-align-items: stretch;
  align-items: stretch;
}
.cid-suQR2r977b .content-panel {
  padding: 3rem;
  background-color: #232323;
}
@media (min-width: 767px) {
  .cid-suQR2r977b .text-block {
    padding-right: 0;
    padding-left: 0;
  }
}
.cid-suQR2r977b .google-map {
  width: 100%;
  height: 30rem;
}
.cid-suQR2r977b .google-map iframe {
  width: inherit;
  height: 100%;
}
.cid-suQR2r977b .google-map iframe .place-card {
  margin-left: 40px !important;
}
.cid-suQR2r977b .google-map .place-card {
  margin-left: 40px !important;
}
.cid-suQPZdBgQY {
  padding-top: 75px;
  padding-bottom: 75px;
  background-image: url("../../../assets/images/mbr-1920x1280.jpg");
}
@media (max-width: 767px) {
  .cid-suQPZdBgQY .content {
    text-align: center;
  }
  .cid-suQPZdBgQY .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-suQPZdBgQY .logo-subtitle {
  color: #8d97ad;
}
.cid-suQPZdBgQY .media-wrap {
  padding-bottom: 2rem;
}
@media (max-width: 767px) {
  .cid-suQPZdBgQY .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-suQPZdBgQY .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-suQPZdBgQY .media-wrap img {
  height: 6rem;
  display: inline-block;
  width: auto;
}
@media (max-width: 767px) {
  .cid-suQPZdBgQY .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-suQPZdBgQY .footer-lower hr {
  margin: 1rem 0;
  border-color: #efefef;
  opacity: .05;
}
.cid-suQPZdBgQY .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-suQPZdBgQY .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #232323;
}
.cid-suQPZdBgQY .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-suQPZdBgQY .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-suQPZdBgQY .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-suQPZdBgQY .footer-lower .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-suQPZdBgQY .list-item {
  display: flex;
}
.cid-suQPZdBgQY .list-item .mbr-iconfont {
  padding-right: 1rem;
  font-size: 24px;
  color: #188ef4;
}
.cid-suQPZdBgQY ul.list {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.cid-suQPZdBgQY ul.list li {
  display: flex;
  word-break: break-all;
}
.cid-suQPZdBgQY ul.list li::before {
  font-family: MobiriseIcons !important;
  content: '';
  padding-right: .5rem;
}
.cid-suQPZdBgQY P {
  color: #cac8bc;
}
.cid-suQPZdBgQY .column-title {
  color: #ffc900;
}
.cid-suQPZdBgQY .mbr-text {
  color: #cac8bc;
}
.cid-suQPZdBgQY .copyright > p {
  text-align: center;
}
.cid-suQPZdBgQY .logo-subtitle,
.cid-suQPZdBgQY .media-wrap {
  color: #ffffff;
}
