body {
  font-family: Jost;
}
.display-1 {
  font-family: 'Roboto Slab', serif;
  font-size: 3.5rem;
  line-height: 1.1;
}
.display-1 > .mbr-iconfont {
  font-size: 4.375rem;
}
.display-2 {
  font-family: 'Merriweather', serif;
  font-size: 2.3rem;
  line-height: 1.1;
}
.display-2 > .mbr-iconfont {
  font-size: 2.875rem;
}
.display-4 {
  font-family: 'Source Sans Pro', sans-serif;
  font-size: 1rem;
  line-height: 1.5;
}
.display-4 > .mbr-iconfont {
  font-size: 1.25rem;
}
.display-5 {
  font-family: 'Inter', sans-serif;
  font-size: 1.2rem;
  line-height: 1.5;
}
.display-5 > .mbr-iconfont {
  font-size: 1.5rem;
}
.display-7 {
  font-family: 'Lora', serif;
  font-size: 1rem;
  line-height: 1.5;
}
.display-7 > .mbr-iconfont {
  font-size: 1.25rem;
}
/* ---- 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: 2.8rem;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 2.45rem;
    font-size: calc( 1.875rem + (3.5 - 1.875) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (1.875rem + (3.5 - 1.875) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 1.84rem;
    font-size: calc( 1.455rem + (2.3 - 1.455) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.3 * (1.455rem + (2.3 - 1.455) * ((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: 0.96rem;
    font-size: calc( 1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-7 {
    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))));
  }
}
/* Buttons */
.btn {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-sm {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-md {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-lg {
  padding: 1rem 2.6rem;
  border-radius: 4px;
}
.bg-primary {
  background-color: #6592e6 !important;
}
.bg-success {
  background-color: #40b0bf !important;
}
.bg-info {
  background-color: #47b5ed !important;
}
.bg-warning {
  background-color: #ffe161 !important;
}
.bg-danger {
  background-color: #ff9966 !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #6592e6 !important;
  border-color: #6592e6 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus,
.btn-primary.active {
  color: #ffffff !important;
  background-color: #2260d2 !important;
  border-color: #2260d2 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #2260d2 !important;
  border-color: #2260d2 !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #ff6666 !important;
  border-color: #ff6666 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus,
.btn-secondary.active {
  color: #ffffff !important;
  background-color: #ff0f0f !important;
  border-color: #ff0f0f !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #ff0f0f !important;
  border-color: #ff0f0f !important;
}
.btn-info,
.btn-info:active {
  background-color: #47b5ed !important;
  border-color: #47b5ed !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus,
.btn-info.active {
  color: #ffffff !important;
  background-color: #148cca !important;
  border-color: #148cca !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #148cca !important;
  border-color: #148cca !important;
}
.btn-success,
.btn-success:active {
  background-color: #40b0bf !important;
  border-color: #40b0bf !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus,
.btn-success.active {
  color: #ffffff !important;
  background-color: #2a747e !important;
  border-color: #2a747e !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #2a747e !important;
  border-color: #2a747e !important;
}
.btn-warning,
.btn-warning:active {
  background-color: #ffe161 !important;
  border-color: #ffe161 !important;
  color: #614f00 !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus,
.btn-warning.active {
  color: #0a0800 !important;
  background-color: #ffd10a !important;
  border-color: #ffd10a !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #614f00 !important;
  background-color: #ffd10a !important;
  border-color: #ffd10a !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #ff9966 !important;
  border-color: #ff9966 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus,
.btn-danger.active {
  color: #ffffff !important;
  background-color: #ff5f0f !important;
  border-color: #ff5f0f !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #ff5f0f !important;
  border-color: #ff5f0f !important;
}
.btn-white,
.btn-white:active {
  background-color: #fafafa !important;
  border-color: #fafafa !important;
  color: #7a7a7a !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus,
.btn-white.active {
  color: #4f4f4f !important;
  background-color: #cfcfcf !important;
  border-color: #cfcfcf !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-white.disabled,
.btn-white:disabled {
  color: #7a7a7a !important;
  background-color: #cfcfcf !important;
  border-color: #cfcfcf !important;
}
.btn-black,
.btn-black:active {
  background-color: #232323 !important;
  border-color: #232323 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-black:hover,
.btn-black:focus,
.btn-black.focus,
.btn-black.active {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-black.disabled,
.btn-black:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-primary-outline,
.btn-primary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #6592e6;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #2260d2 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #6592e6 !important;
  border-color: #6592e6 !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ff6666;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #ff0f0f !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #ff6666 !important;
  border-color: #ff6666 !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #47b5ed;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #148cca !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #47b5ed !important;
  border-color: #47b5ed !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #40b0bf;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #2a747e !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #ffffff !important;
  background-color: #40b0bf !important;
  border-color: #40b0bf !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ffe161;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #ffd10a !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #614f00 !important;
  background-color: #ffe161 !important;
  border-color: #ffe161 !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ff9966;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #ff5f0f !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #ff9966 !important;
  border-color: #ff9966 !important;
}
.btn-black-outline,
.btn-black-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #232323;
}
.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.focus,
.btn-black-outline.active {
  color: #000000 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-black-outline.disabled,
.btn-black-outline:disabled {
  color: #ffffff !important;
  background-color: #232323 !important;
  border-color: #232323 !important;
}
.btn-white-outline,
.btn-white-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #fafafa;
}
.btn-white-outline:hover,
.btn-white-outline:focus,
.btn-white-outline.focus,
.btn-white-outline.active {
  color: #cfcfcf !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-white-outline.disabled,
.btn-white-outline:disabled {
  color: #7a7a7a !important;
  background-color: #fafafa !important;
  border-color: #fafafa !important;
}
.text-primary {
  color: #6592e6 !important;
}
.text-secondary {
  color: #ff6666 !important;
}
.text-success {
  color: #40b0bf !important;
}
.text-info {
  color: #47b5ed !important;
}
.text-warning {
  color: #ffe161 !important;
}
.text-danger {
  color: #ff9966 !important;
}
.text-white {
  color: #fafafa !important;
}
.text-black {
  color: #232323 !important;
}
a.text-primary:hover,
a.text-primary:focus,
a.text-primary.active {
  color: #205ac5 !important;
}
a.text-secondary:hover,
a.text-secondary:focus,
a.text-secondary.active {
  color: #ff0000 !important;
}
a.text-success:hover,
a.text-success:focus,
a.text-success.active {
  color: #266a73 !important;
}
a.text-info:hover,
a.text-info:focus,
a.text-info.active {
  color: #1283bc !important;
}
a.text-warning:hover,
a.text-warning:focus,
a.text-warning.active {
  color: #facb00 !important;
}
a.text-danger:hover,
a.text-danger:focus,
a.text-danger.active {
  color: #ff5500 !important;
}
a.text-white:hover,
a.text-white:focus,
a.text-white.active {
  color: #c7c7c7 !important;
}
a.text-black:hover,
a.text-black:focus,
a.text-black.active {
  color: #000000 !important;
}
a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption) {
  position: relative;
  background-image: transparent;
  background-size: 10000px 2px;
  background-repeat: no-repeat;
  background-position: 0px 1.2em;
  background-position: -10000px 1.2em;
}
a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  transition: background-position 2s ease-in-out;
  background-image: linear-gradient(currentColor 50%, currentColor 50%);
  background-position: 0px 1.2em;
}
.nav-tabs .nav-link.active {
  color: #6592e6;
}
.nav-tabs .nav-link:not(.active) {
  color: #232323;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #47b5ed;
}
.alert-warning {
  background-color: #ffe161;
}
.alert-danger {
  background-color: #ff9966;
}
.mbr-gallery-filter li.active .btn {
  background-color: #6592e6;
  border-color: #6592e6;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
a,
a:hover {
  color: #6592e6;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #a0d8df;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #ffffff;
}
/* Scroll to top button*/
.scrollToTop_wraper {
  display: none;
}
.form-control {
  font-family: 'Source Sans Pro', sans-serif;
  font-size: 1rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control > .mbr-iconfont {
  font-size: 1.25rem;
}
.form-control:hover,
.form-control:focus {
  box-shadow: rgba(0, 0, 0, 0.07) 0px 1px 1px 0px, rgba(0, 0, 0, 0.07) 0px 1px 3px 0px, rgba(0, 0, 0, 0.03) 0px 0px 0px 1px;
  border-color: #6592e6 !important;
}
.form-control:-webkit-input-placeholder {
  font-family: 'Source Sans Pro', sans-serif;
  font-size: 1rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control:-webkit-input-placeholder > .mbr-iconfont {
  font-size: 1.25rem;
}
blockquote {
  border-color: #6592e6;
}
/* Forms */
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #6592e6;
  color: #ffffff;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #6592e6;
}
.jq-selectbox .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:after,
.jq-number__spin.plus:after {
  transition: 0.4s;
  border-top-color: #353535;
  border-bottom-color: #353535;
}
.jq-selectbox:hover .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:hover:after,
.jq-number__spin.plus:hover:after {
  border-top-color: #6592e6;
  border-bottom-color: #6592e6;
}
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_default,
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_current,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div.xdsoft_current {
  color: #ffffff !important;
  background-color: #6592e6 !important;
  box-shadow: none !important;
}
.xdsoft_datetimepicker .xdsoft_calendar td:hover,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div:hover {
  color: #000000 !important;
  background: #ff6666 !important;
  box-shadow: none !important;
}
.lazy-bg {
  background-image: none !important;
}
.lazy-placeholder:not(section),
.lazy-none {
  display: block;
  position: relative;
  padding-bottom: 56.25%;
  width: 100%;
  height: auto;
}
iframe.lazy-placeholder,
.lazy-placeholder:after {
  content: '';
  position: absolute;
  width: 200px;
  height: 200px;
  background: transparent no-repeat center;
  background-size: contain;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 64 64' xmlns='http://www.w3.org/2000/svg' stroke='%236592e6' %3e%3cg fill='none' fill-rule='evenodd'%3e%3cg transform='translate(16 16)' stroke-width='2'%3e%3ccircle stroke-opacity='.5' cx='16' cy='16' r='16'/%3e%3cpath d='M32 16c0-9.94-8.06-16-16-16'%3e%3canimateTransform attributeName='transform' type='rotate' from='0 16 16' to='360 16 16' dur='1s' repeatCount='indefinite'/%3e%3c/path%3e%3c/g%3e%3c/g%3e%3c/svg%3e");
}
section.lazy-placeholder:after {
  opacity: 0.5;
}
body {
  overflow-x: hidden;
}
a {
  transition: color 0.6s;
}
.cid-sgzIpURUhe {
  overflow-x: hidden !important;
}
.cid-sgzIpURUhe,
.cid-sgzIpURUhe .scroll-wrapper {
  padding-top: 210px;
  padding-bottom: 45px;
}
.cid-sgzIpURUhe .mbr-section-title {
  color: #ffffff;
}
.cid-sgzIpURUhe .mbr-section-title span {
  color: #6592e6;
}
.cid-sgzIpURUhe .mbr-text {
  color: #efefef;
  letter-spacing: 5px;
  font-weight: 100;
}
.cid-sgzIpURUhe .scroll-wrapper {
  top: 0;
  width: 100%;
  height: 100%;
  background-position: 50% 50%;
  background-size: cover;
  position: absolute;
  background-repeat: repeat;
  z-index: 0;
  -webkit-animation-duration: 29s !important;
  animation-duration: 29s;
  background-image: url("../../../assets/images/mbr-3-1920x1080.jpg");
  -webkit-animation: scroll-wrapper linear infinite;
  -moz-animation: scroll-wrapper linear infinite;
  -o-animation: scroll-wrapper linear infinite;
  animation: scroll-wrapper linear infinite;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
}
.cid-sgzIpURUhe .scroll-wrapper.second {
  left: calc(100% - 1px);
}
.cid-sgzIpURUhe .mbr-overlay {
  z-index: 1;
}
.cid-sgzIpURUhe .block-content {
  z-index: 2;
}
@keyframes scroll-wrapper {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}
@-webkit-keyframes scroll-wrapper {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}
@-moz-keyframes scroll-wrapper {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}
@-o-keyframes scroll-wrapper {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}
.cid-sgyE7ECYRJ {
  padding-top: 30px;
  padding-bottom: 0px;
  background-image: url("../../../assets/images/mbr-6-1920x1080.jpg");
}
.cid-sgyE7ECYRJ .mbr-iconfont {
  color: #767676;
  font-size: 0.8rem;
}
.cid-sgyE7ECYRJ .title,
.cid-sgyE7ECYRJ .mbr-section-title {
  margin-bottom: 0.5rem!important;
}
.cid-sgyE7ECYRJ .card-wrapper {
  overflow: hidden;
  height: 100%;
  background: #f6f6f4;
  color: #232323;
  box-shadow: 0 1px 8px 0 rgba(0, 0, 0, 0.08);
  padding: 0rem;
}
.cid-sgyE7ECYRJ .ico-wrap {
  background: #efefef;
  padding: 1rem;
}
.cid-sgyE7ECYRJ .phone {
  margin-bottom: 0;
  color: #767676;
  text-align: left;
}
.cid-sgyE7ECYRJ .text-box {
  padding: 1rem;
}
.cid-sgyE7ECYRJ .ico-box {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  padding: 3px;
}
.cid-sgyE7ECYRJ .card-title {
  color: #149dcc;
  margin: 0;
  padding-bottom: 0.2rem;
  text-align: center;
}
.cid-sgyE7ECYRJ .card-img {
  overflow: hidden;
}
.cid-sgyE7ECYRJ .card-img:hover img {
  -webkit-transform: scale(1.3);
  transform: scale(1.3);
}
.cid-sgyE7ECYRJ .card-box {
  padding: 0rem;
}
.cid-sgyE7ECYRJ img {
  transition: all 0.3s;
}
.cid-sgyE7ECYRJ .mbr-section-title {
  margin: 0 auto;
  margin-bottom: 2rem;
  color: #767676;
}
.cid-sgyE7ECYRJ .status {
  color: #767676;
  text-align: left;
}
@media (min-width: 576px) {
  .cid-sgyE7ECYRJ .card-wrapper {
    display: flex;
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-sgyE7ECYRJ .card-img {
    width: 20%;
  }
  .cid-sgyE7ECYRJ .card-box {
    width: 80%;
    margin-left: 1.5rem;
  }
}
@media (max-width: 992px) {
  .cid-sgyE7ECYRJ .card-img {
    width: 50%;
  }
  .cid-sgyE7ECYRJ .card-box {
    width: 50%;
    margin-left: 0rem;
  }
  .cid-sgyE7ECYRJ .text-box {
    padding: 1rem;
  }
}
@media (max-width: 576px) {
  .cid-sgyE7ECYRJ .card-img {
    width: 100%;
  }
  .cid-sgyE7ECYRJ .card-box {
    width: 100%;
  }
}
.cid-sgyE7ECYRJ .card-box > p,
.cid-sgyE7ECYRJ .mbr-section-btn {
  color: #767676;
  text-align: center;
}
.cid-sgyFWh9HQB {
  padding-top: 0px;
  padding-bottom: 0px;
  background-image: url("../../../assets/images/mbr-6-1920x1080.jpg");
}
.cid-sgyFWh9HQB .mbr-iconfont {
  color: #767676;
  font-size: 0.7rem;
}
.cid-sgyFWh9HQB .title,
.cid-sgyFWh9HQB .mbr-section-title {
  margin-bottom: 0.5rem!important;
}
.cid-sgyFWh9HQB .card-wrapper {
  overflow: hidden;
  height: 100%;
  background: #f6f6f4;
  color: #232323;
  box-shadow: 0 1px 8px 0 rgba(0, 0, 0, 0.08);
  padding: 0rem;
}
.cid-sgyFWh9HQB .ico-wrap {
  background: #efefef;
  padding: 1rem;
}
.cid-sgyFWh9HQB .phone {
  margin-bottom: 0;
  color: #767676;
  text-align: left;
}
.cid-sgyFWh9HQB .text-box {
  padding: 1rem;
}
.cid-sgyFWh9HQB .ico-box {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  padding: 3px;
}
.cid-sgyFWh9HQB .card-title {
  color: #149dcc;
  margin: 0;
  padding-bottom: 0.2rem;
}
.cid-sgyFWh9HQB .card-img {
  overflow: hidden;
}
.cid-sgyFWh9HQB .card-img:hover img {
  -webkit-transform: scale(1.3);
  transform: scale(1.3);
}
.cid-sgyFWh9HQB .card-box {
  padding: 0rem;
}
.cid-sgyFWh9HQB img {
  transition: all 0.3s;
}
.cid-sgyFWh9HQB .mbr-section-title {
  margin: 0 auto;
  margin-bottom: 2rem;
  color: #767676;
}
.cid-sgyFWh9HQB .status {
  color: #767676;
  text-align: left;
}
@media (min-width: 576px) {
  .cid-sgyFWh9HQB .card-wrapper {
    display: flex;
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-sgyFWh9HQB .card-img {
    width: 20%;
  }
  .cid-sgyFWh9HQB .card-box {
    width: 80%;
    margin-left: 1.5rem;
  }
}
@media (max-width: 992px) {
  .cid-sgyFWh9HQB .card-img {
    width: 50%;
  }
  .cid-sgyFWh9HQB .card-box {
    width: 50%;
    margin-left: 0rem;
  }
  .cid-sgyFWh9HQB .text-box {
    padding: 1rem;
  }
}
@media (max-width: 576px) {
  .cid-sgyFWh9HQB .card-img {
    width: 100%;
  }
  .cid-sgyFWh9HQB .card-box {
    width: 100%;
  }
}
.cid-sgyFWh9HQB .card-box > p,
.cid-sgyFWh9HQB .mbr-section-btn {
  color: #767676;
}
.cid-sgB86GvK0d {
  padding-top: 0px;
  padding-bottom: 0px;
  background-image: url("../../../assets/images/mbr-6-1920x1080.jpg");
}
.cid-sgB86GvK0d .mbr-iconfont {
  color: #767676;
  font-size: 0.8rem;
}
.cid-sgB86GvK0d .title,
.cid-sgB86GvK0d .mbr-section-title {
  margin-bottom: 0.5rem!important;
}
.cid-sgB86GvK0d .card-wrapper {
  overflow: hidden;
  height: 100%;
  background: #f6f6f4;
  color: #232323;
  box-shadow: 0 1px 8px 0 rgba(0, 0, 0, 0.08);
  padding: 0rem;
}
.cid-sgB86GvK0d .ico-wrap {
  background: #efefef;
  padding: 1rem;
}
.cid-sgB86GvK0d .phone {
  margin-bottom: 0;
  color: #767676;
  text-align: left;
}
.cid-sgB86GvK0d .text-box {
  padding: 1rem;
}
.cid-sgB86GvK0d .ico-box {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  padding: 3px;
}
.cid-sgB86GvK0d .card-title {
  color: #149dcc;
  margin: 0;
  padding-bottom: 0.2rem;
}
.cid-sgB86GvK0d .card-img {
  overflow: hidden;
}
.cid-sgB86GvK0d .card-img:hover img {
  -webkit-transform: scale(1.3);
  transform: scale(1.3);
}
.cid-sgB86GvK0d .card-box {
  padding: 0rem;
}
.cid-sgB86GvK0d img {
  transition: all 0.3s;
}
.cid-sgB86GvK0d .mbr-section-title {
  margin: 0 auto;
  margin-bottom: 2rem;
  color: #767676;
}
.cid-sgB86GvK0d .status {
  color: #767676;
  text-align: left;
}
@media (min-width: 576px) {
  .cid-sgB86GvK0d .card-wrapper {
    display: flex;
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-sgB86GvK0d .card-img {
    width: 20%;
  }
  .cid-sgB86GvK0d .card-box {
    width: 80%;
    margin-left: 1.5rem;
  }
}
@media (max-width: 992px) {
  .cid-sgB86GvK0d .card-img {
    width: 50%;
  }
  .cid-sgB86GvK0d .card-box {
    width: 50%;
    margin-left: 0rem;
  }
  .cid-sgB86GvK0d .text-box {
    padding: 1rem;
  }
}
@media (max-width: 576px) {
  .cid-sgB86GvK0d .card-img {
    width: 100%;
  }
  .cid-sgB86GvK0d .card-box {
    width: 100%;
  }
}
.cid-sgB86GvK0d .card-box > p,
.cid-sgB86GvK0d .mbr-section-btn {
  color: #767676;
}
.cid-shRMVnSfPD {
  padding-top: 30px;
  padding-bottom: 15px;
  background-image: url("../../../assets/images/mbr-13-1920x1280.jpg");
}
.cid-shRMVnSfPD .listico {
  padding-right: 1rem;
  font-size: 1.3rem;
}
.cid-shRMVnSfPD .navbar-logo {
  width: 80px;
  margin-bottom: 10px;
}
.cid-shRMVnSfPD .mbr-text {
  color: #444;
}
.cid-shRMVnSfPD h5 {
  margin-bottom: 0;
}
.cid-shRMVnSfPD .navbar-brand {
  margin: 0rem;
  width: 100%;
}
.cid-shRMVnSfPD .list-item {
  display: flex;
  padding-top: 10px;
  padding-bottom: 10px;
  -webkit-align-items: center;
  align-items: center;
}
.cid-shRMVnSfPD .tips {
  height: 90px;
  width: 90px;
  border-radius: 6px;
  margin: 4px;
  object-fit: cover;
  display: inline;
}
.cid-shRMVnSfPD .socicon {
  font-size: 1.3rem;
  background: #ff4a52;
  border-radius: 100%;
  width: 38px;
  height: 38px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-shRMVnSfPD .social-list {
  display: flex;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-shRMVnSfPD .social-list .soc-item {
  margin: 0 0.3rem;
}
.cid-shRMVnSfPD .social-list a {
  margin: 0;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-shRMVnSfPD .social-list a:hover {
  opacity: 0.4;
}
.cid-shRMVnSfPD .media-container-row > div {
  padding: 0px;
}
.cid-shRMVnSfPD .text2 {
  color: #6592e6;
  text-align: left;
}
.cid-shRMVnSfPD .group-title {
  text-align: left;
  color: #e6c63b;
}
.cid-shRMVnSfPD .group-title SPAN {
  color: #ffffff;
}
.cid-shRMVnSfPD .links {
  color: #ffffff;
  line-height: 1.6;
}
@media (max-width: 991px) {
  .cid-shRMVnSfPD .col-sm-12 {
    margin-bottom: 2rem;
  }
  .cid-shRMVnSfPD .social-list,
  .cid-shRMVnSfPD .img-list {
    -webkit-justify-content: center;
    justify-content: center;
    text-align: center;
  }
  .cid-shRMVnSfPD h3 {
    margin-bottom: 10px;
  }
  .cid-shRMVnSfPD .navbar-brand {
    text-align: center;
  }
}
.cid-shRMVnSfPD .links SPAN {
  color: #9e9e9e;
}
.cid-siM30LrbO4 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #232323;
}
.cid-tHWjeFymd7 .navbar {
  padding: 0.5rem 0;
  background: #ffffff;
  transition: none;
  min-height: 50px;
}
.cid-tHWjeFymd7 .navbar-fixed-top {
  padding-top: 0;
}
.cid-tHWjeFymd7 .navbar-collapse {
  -ms-flex-preferred-size: auto;
  -webkit-flex-basis: auto;
  flex-basis: auto;
}
.cid-tHWjeFymd7 .dropdown-item {
  padding: 0;
}
.cid-tHWjeFymd7 .dropdown-menu {
  border: 0px solid lightgray;
  background: #3b5abb !important;
}
.cid-tHWjeFymd7 .menu-content-top {
  max-width: 1500px;
  display: none;
  padding: 0rem 2rem;
  margin: auto;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  overflow: hidden;
  transition: min-height 0.25s ease-in-out;
}
.cid-tHWjeFymd7 .menu-bottom {
  margin: auto;
  width: 100%;
  background: #3b5abb;
  display: flex;
  padding: 0 2rem;
  position: relative;
}
.cid-tHWjeFymd7 .navbar-dropdown.bg-color.transparent.opened {
  background: #ffffff;
}
.cid-tHWjeFymd7 a {
  font-style: normal;
}
.cid-tHWjeFymd7 .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  top: -0.2em;
  text-decoration: none;
}
.cid-tHWjeFymd7 .nav-item a {
  padding: 0rem 0 !important;
  margin: 0rem !important;
}
.cid-tHWjeFymd7 .dropdown-item:before {
  font-family: MobiriseIcons !important;
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-tHWjeFymd7 .content-text {
  margin-bottom: 0;
}
.cid-tHWjeFymd7 .navbar-nav {
  position: relative;
  min-height: 49px;
  -ms-flex-direction: row;
  -webkit-flex-direction: row;
  flex-direction: row;
}
@media (min-width: 992px) {
  .cid-tHWjeFymd7 .navbar-nav .main-menu-animated-line {
    position: absolute;
    left: 0;
    width: 0;
    height: 0;
    z-index: 100;
    border-top: 4px solid #6592e6;
    -webkit-transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
    -moz-transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
    transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
  }
  .cid-tHWjeFymd7 .navbar-nav .main-menu-animated-line.bottom {
    bottom: 0;
  }
}
.cid-tHWjeFymd7 .navbar-nav .nav-item span {
  padding-right: 0;
}
.cid-tHWjeFymd7 .navbar-nav .nav-item a {
  margin: 0 1.3rem !important;
}
.cid-tHWjeFymd7 .display-4 > .mbr-iconfont {
  font-size: 1.43em;
}
.cid-tHWjeFymd7 .display-4 > .btn > .mbr-iconfont {
  font-size: 1.43em;
}
.cid-tHWjeFymd7 .nav-dropdown .dropdown-item {
  font-weight: 400;
}
.cid-tHWjeFymd7 .navbar-buttons.mbr-section-btn {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-tHWjeFymd7 .nav-dropdown .link {
  font-weight: 400;
}
.cid-tHWjeFymd7 .menu .navbar-brand .logo-text-part {
  vertical-align: top;
}
.cid-tHWjeFymd7 .content-right-side {
  text-align: center;
}
.cid-tHWjeFymd7 .content-right-side .content-link {
  margin-left: 2rem;
}
.cid-tHWjeFymd7 .content-right-side .content-link span {
  vertical-align: middle;
  padding-right: 1rem;
}
.cid-tHWjeFymd7 .widget-icon {
  display: inline-block;
  padding-right: 1rem;
  font-size: 1.65rem;
}
.cid-tHWjeFymd7 .info-widget {
  padding-left: 2rem;
  padding-top: 0.5rem;
  padding-right: 3rem;
  border-left: 1px solid rgba(0, 0, 0, 0.12);
}
.cid-tHWjeFymd7 .menu-content-right {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-tHWjeFymd7 .menu-content-right .info-widget:last-child {
  padding-right: 0;
}
.cid-tHWjeFymd7 .menu-content-right .info-widget:first-child {
  padding-left: 0;
  border-left: none;
}
.cid-tHWjeFymd7 .widget-content {
  display: inline-block;
  vertical-align: top;
  text-align: left;
}
.cid-tHWjeFymd7 .widget-content .widget-title {
  font-weight: 600;
  margin-bottom: 7px;
}
.cid-tHWjeFymd7 .widget-content .widget-text {
  margin-bottom: 0;
}
@media (min-width: 992px) {
  .cid-tHWjeFymd7 .navbar .menu-content-top {
    display: flex;
    min-height: 83px;
    height: 100%;
  }
  .cid-tHWjeFymd7 .content-right-side {
    text-align: right;
    -webkit-flex-wrap: nowrap;
    flex-wrap: nowrap;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-tHWjeFymd7 .menu-content-top {
    border-bottom: 0px solid rgba(0, 0, 0, 0.12);
  }
  .cid-tHWjeFymd7 .navbar {
    display: block;
    padding: 0;
  }
  .cid-tHWjeFymd7 .navbar .menu-logo {
    margin-right: auto;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-tHWjeFymd7 .navbar:not(.navbar-short) .navbar-collapse {
    max-height: calc(100vh - 5.8rem - 4.5rem);
  }
  .cid-tHWjeFymd7 .navbar.navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
    -webkit-align-self: initial;
    align-self: auto;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    z-index: 101;
    min-height: 49px;
  }
  .cid-tHWjeFymd7 .dropdown-item:hover:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    width: 16px;
  }
  .cid-tHWjeFymd7 .navbar-toggler {
    display: none;
  }
  .cid-tHWjeFymd7 .navbar-collapse {
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
  }
}
.cid-tHWjeFymd7 .navbar-short .menu-content-top {
  height: 0;
  min-height: 0;
  border: none;
}
.cid-tHWjeFymd7 .btn {
  display: inline-flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-tHWjeFymd7 .btn .mbr-iconfont {
  font-size: 1.2em;
}
.cid-tHWjeFymd7 .menu-logo {
  margin-right: auto;
}
.cid-tHWjeFymd7 .menu-logo .navbar-brand {
  display: flex;
  margin-left: 1.5rem;
  padding: 0.5rem 0;
  transition: padding 0.2s;
  min-height: 3.8rem;
  -webkit-align-items: center;
  align-items: center;
}
.cid-tHWjeFymd7 .menu-logo .navbar-brand .navbar-caption-wrap {
  display: -webkit-flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 20rem;
  margin: 0.3rem 0;
}
.cid-tHWjeFymd7 .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-tHWjeFymd7 .menu-logo .navbar-brand .navbar-logo {
  font-size: 3rem;
  transition: font-size 0.25s;
}
.cid-tHWjeFymd7 .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
  width: auto;
}
.cid-tHWjeFymd7 .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-tHWjeFymd7 .navbar-toggleable-sm .navbar-collapse {
  width: auto;
}
.cid-tHWjeFymd7 .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  padding-left: 0;
}
.cid-tHWjeFymd7 .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-tHWjeFymd7 .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-tHWjeFymd7 .dropdown .dropdown-menu {
  background: #ffffff;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-tHWjeFymd7 .dropdown .dropdown-menu {
    overflow: hidden;
  }
}
.cid-tHWjeFymd7 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-tHWjeFymd7 .dropdown .dropdown-menu .dropdown-item::after {
  right: -0.5rem;
}
.cid-tHWjeFymd7 .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-tHWjeFymd7 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-tHWjeFymd7 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-tHWjeFymd7 .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0rem;
}
.cid-tHWjeFymd7 .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tHWjeFymd7 .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  -webkit-transform: translateY(100%);
  transform: translateY(100%);
  z-index: 1000;
}
.cid-tHWjeFymd7 .navbar.navbar-short {
  min-height: 50px;
  transition: all 0.2s;
}
.cid-tHWjeFymd7 .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-tHWjeFymd7 .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-tHWjeFymd7 .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
  width: auto;
}
.cid-tHWjeFymd7 .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-tHWjeFymd7 button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all 0.2s;
  margin: 1rem 0.8rem;
  -webkit-align-self: center;
  align-self: center;
}
.cid-tHWjeFymd7 button.navbar-toggler:focus {
  outline: none;
}
.cid-tHWjeFymd7 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #bbbbbb;
}
.cid-tHWjeFymd7 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tHWjeFymd7 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tHWjeFymd7 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tHWjeFymd7 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tHWjeFymd7 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tHWjeFymd7 nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tHWjeFymd7 nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tHWjeFymd7 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tHWjeFymd7 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tHWjeFymd7 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0em 1.5em 0em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tHWjeFymd7 .collapsed .btn {
  display: flex;
}
.cid-tHWjeFymd7 .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-tHWjeFymd7 .collapsed .navbar-collapse.collapsing,
.cid-tHWjeFymd7 .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-tHWjeFymd7 .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-tHWjeFymd7 .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-tHWjeFymd7 .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-tHWjeFymd7 .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-tHWjeFymd7 .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
.cid-tHWjeFymd7 .collapsed .navbar-collapse.show .navbar-nav .nav-item:last-child {
  margin-bottom: 1rem;
}
.cid-tHWjeFymd7 .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-tHWjeFymd7 .collapsed .navbar-collapse.show .navbar-buttons {
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  text-align: center;
}
.cid-tHWjeFymd7 .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-tHWjeFymd7 .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .cid-tHWjeFymd7 .collapsed .dropdown .dropdown-menu {
    overflow: hidden;
  }
}
.cid-tHWjeFymd7 .collapsed button.navbar-toggler {
  display: block;
}
.cid-tHWjeFymd7 .collapsed .navbar-brand {
  margin-left: 1rem !important;
  margin-top: 0.5rem;
}
.cid-tHWjeFymd7 .collapsed .navbar-toggleable-sm {
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-tHWjeFymd7 .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: 0.5s;
  transition-property: opacity, padding, height;
}
.cid-tHWjeFymd7 .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-tHWjeFymd7 .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-tHWjeFymd7 .collapsed .dropdown .dropdown-toggle[data-toggle='dropdown-submenu']::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 0.3em;
  vertical-align: middle;
  content: '';
  border-top: 0.3em solid;
  border-right: 0.3em solid transparent;
  border-left: 0.3em solid transparent;
}
.cid-tHWjeFymd7 .collapsed .menu-bottom {
  -webkit-flex-direction: column-reverse;
  flex-direction: column-reverse;
  -webkit-justify-content: center;
  justify-content: center;
}
@media (max-width: 991px) {
  .cid-tHWjeFymd7 .navbar-collapse {
    padding-bottom: 1rem;
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-tHWjeFymd7 .navbar-collapse.collapsing,
  .cid-tHWjeFymd7 .navbar-collapse.show {
    display: block !important;
  }
  .cid-tHWjeFymd7 .navbar-collapse.collapsing .navbar-nav,
  .cid-tHWjeFymd7 .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-tHWjeFymd7 .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-tHWjeFymd7 .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-tHWjeFymd7 .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
  .cid-tHWjeFymd7 .navbar-collapse.show .navbar-nav .nav-item:last-child {
    margin-bottom: 1rem;
  }
  .cid-tHWjeFymd7 .navbar-collapse.collapsing .navbar-buttons,
  .cid-tHWjeFymd7 .navbar-collapse.show .navbar-buttons {
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    text-align: center;
  }
  .cid-tHWjeFymd7 .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-tHWjeFymd7 .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-tHWjeFymd7 .menu-bottom {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
    -webkit-justify-content: center;
    justify-content: center;
  }
  .cid-tHWjeFymd7 img {
    height: 3.8rem !important;
  }
  .cid-tHWjeFymd7 .btn {
    display: flex;
  }
  .cid-tHWjeFymd7 button.navbar-toggler {
    display: block;
  }
  .cid-tHWjeFymd7 .navbar-brand {
    margin-left: 1rem !important;
    margin-top: 0.5rem;
  }
  .cid-tHWjeFymd7 .navbar-toggleable-sm {
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .cid-tHWjeFymd7 .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: 0.5s;
    transition-property: opacity, padding, height;
  }
  .cid-tHWjeFymd7 .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 0rem 0;
    visibility: visible;
  }
  .cid-tHWjeFymd7 .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-tHWjeFymd7 .dropdown .dropdown-toggle[data-toggle='dropdown-submenu']::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: 0.3em;
    vertical-align: middle;
    content: '';
    border-top: 0.3em solid;
    border-right: 0.3em solid transparent;
    border-left: 0.3em solid transparent;
  }
  .cid-tHWjeFymd7 .navbar-buttons.mbr-section-btn {
    width: 100%;
  }
  .cid-tHWjeFymd7 .dropdown .dropdown-menu .dropdown-item {
    padding: 0em 1.5em 0em 1.5em !important;
    transition: none;
    margin: 0 !important;
  }
}
.cid-tHWjeFymd7 .navbar-dropdown {
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap;
}
.cid-tHWjeFymd7 .nav-link:focus {
  outline: none;
}
.cid-tHWjeFymd7 .navbar-toggler {
  position: relative;
}
.cid-tHWjeFymd7 .dropdown-item.active,
.cid-tHWjeFymd7 .dropdown-item:active {
  background: #3b5abb;
  color: initial;
}
.cid-sgzOnsscsw {
  overflow-x: hidden !important;
}
.cid-sgzOnsscsw,
.cid-sgzOnsscsw .scroll-wrapper {
  padding-top: 210px;
  padding-bottom: 45px;
}
.cid-sgzOnsscsw .mbr-section-title {
  color: #ffffff;
}
.cid-sgzOnsscsw .mbr-section-title span {
  color: #6592e6;
}
.cid-sgzOnsscsw .mbr-text {
  color: #efefef;
  letter-spacing: 5px;
  font-weight: 100;
}
.cid-sgzOnsscsw .scroll-wrapper {
  top: 0;
  width: 100%;
  height: 100%;
  background-position: 50% 50%;
  background-size: cover;
  position: absolute;
  background-repeat: repeat;
  z-index: 0;
  -webkit-animation-duration: 29s !important;
  animation-duration: 29s;
  background-image: url("../../../assets/images/mbr-1-1920x1080.jpg");
  -webkit-animation: scroll-wrapper linear infinite;
  -moz-animation: scroll-wrapper linear infinite;
  -o-animation: scroll-wrapper linear infinite;
  animation: scroll-wrapper linear infinite;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
}
.cid-sgzOnsscsw .scroll-wrapper.second {
  left: calc(100% - 1px);
}
.cid-sgzOnsscsw .mbr-overlay {
  z-index: 1;
}
.cid-sgzOnsscsw .block-content {
  z-index: 2;
}
@keyframes scroll-wrapper {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}
@-webkit-keyframes scroll-wrapper {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}
@-moz-keyframes scroll-wrapper {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}
@-o-keyframes scroll-wrapper {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}
.cid-sgzOnsWzVV {
  padding-top: 30px;
  padding-bottom: 0px;
  background-image: url("../../../assets/images/mbr-5-1920x1080.jpg");
}
.cid-sgzOnsWzVV .mbr-iconfont {
  color: #767676;
  font-size: 0.8rem;
}
.cid-sgzOnsWzVV .title,
.cid-sgzOnsWzVV .mbr-section-title {
  margin-bottom: 0.5rem!important;
}
.cid-sgzOnsWzVV .card-wrapper {
  overflow: hidden;
  height: 100%;
  background: #f6f6f4;
  color: #232323;
  box-shadow: 0 1px 8px 0 rgba(0, 0, 0, 0.08);
  padding: 0rem;
}
.cid-sgzOnsWzVV .ico-wrap {
  background: #efefef;
  padding: 1rem;
}
.cid-sgzOnsWzVV .phone {
  margin-bottom: 0;
  color: #767676;
  text-align: left;
}
.cid-sgzOnsWzVV .text-box {
  padding: 1rem;
}
.cid-sgzOnsWzVV .ico-box {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  padding: 3px;
}
.cid-sgzOnsWzVV .card-title {
  color: #149dcc;
  margin: 0;
  padding-bottom: 0.2rem;
  text-align: center;
}
.cid-sgzOnsWzVV .card-img {
  overflow: hidden;
}
.cid-sgzOnsWzVV .card-img:hover img {
  -webkit-transform: scale(1.3);
  transform: scale(1.3);
}
.cid-sgzOnsWzVV .card-box {
  padding: 0rem;
}
.cid-sgzOnsWzVV img {
  transition: all 0.3s;
}
.cid-sgzOnsWzVV .mbr-section-title {
  margin: 0 auto;
  margin-bottom: 2rem;
  color: #767676;
}
.cid-sgzOnsWzVV .status {
  color: #767676;
  text-align: left;
}
@media (min-width: 576px) {
  .cid-sgzOnsWzVV .card-wrapper {
    display: flex;
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-sgzOnsWzVV .card-img {
    width: 20%;
  }
  .cid-sgzOnsWzVV .card-box {
    width: 75%;
    margin-left: 1.5rem;
  }
}
@media (max-width: 992px) {
  .cid-sgzOnsWzVV .card-img {
    width: 50%;
  }
  .cid-sgzOnsWzVV .card-box {
    width: 50%;
    margin-left: 0rem;
  }
  .cid-sgzOnsWzVV .text-box {
    padding: 1rem;
  }
}
@media (max-width: 576px) {
  .cid-sgzOnsWzVV .card-img {
    width: 100%;
  }
  .cid-sgzOnsWzVV .card-box {
    width: 100%;
  }
}
.cid-sgzOnsWzVV .card-box > p,
.cid-sgzOnsWzVV .mbr-section-btn {
  color: #767676;
  text-align: center;
}
.cid-sgzOnty3dG {
  padding-top: 0px;
  padding-bottom: 0px;
  background-image: url("../../../assets/images/mbr-6-1920x1080.jpg");
}
.cid-sgzOnty3dG .mbr-iconfont {
  color: #767676;
  font-size: 0.8rem;
}
.cid-sgzOnty3dG .title,
.cid-sgzOnty3dG .mbr-section-title {
  margin-bottom: 0.5rem!important;
}
.cid-sgzOnty3dG .card-wrapper {
  overflow: hidden;
  height: 100%;
  background: #f6f6f4;
  color: #232323;
  box-shadow: 0 1px 8px 0 rgba(0, 0, 0, 0.08);
  padding: 0rem;
}
.cid-sgzOnty3dG .ico-wrap {
  background: #efefef;
  padding: 1rem;
}
.cid-sgzOnty3dG .phone {
  margin-bottom: 0;
  color: #767676;
  text-align: left;
}
.cid-sgzOnty3dG .text-box {
  padding: 1rem;
}
.cid-sgzOnty3dG .ico-box {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  padding: 3px;
}
.cid-sgzOnty3dG .card-title {
  color: #149dcc;
  margin: 0;
  padding-bottom: 0.2rem;
}
.cid-sgzOnty3dG .card-img {
  overflow: hidden;
}
.cid-sgzOnty3dG .card-img:hover img {
  -webkit-transform: scale(1.3);
  transform: scale(1.3);
}
.cid-sgzOnty3dG .card-box {
  padding: 0rem;
}
.cid-sgzOnty3dG img {
  transition: all 0.3s;
}
.cid-sgzOnty3dG .mbr-section-title {
  margin: 0 auto;
  margin-bottom: 2rem;
  color: #767676;
}
.cid-sgzOnty3dG .status {
  color: #767676;
  text-align: left;
}
@media (min-width: 576px) {
  .cid-sgzOnty3dG .card-wrapper {
    display: flex;
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-sgzOnty3dG .card-img {
    width: 20%;
  }
  .cid-sgzOnty3dG .card-box {
    width: 75%;
    margin-left: 1.5rem;
  }
}
@media (max-width: 992px) {
  .cid-sgzOnty3dG .card-img {
    width: 50%;
  }
  .cid-sgzOnty3dG .card-box {
    width: 50%;
    margin-left: 0rem;
  }
  .cid-sgzOnty3dG .text-box {
    padding: 1rem;
  }
}
@media (max-width: 576px) {
  .cid-sgzOnty3dG .card-img {
    width: 100%;
  }
  .cid-sgzOnty3dG .card-box {
    width: 100%;
  }
}
.cid-sgzOnty3dG .card-box > p,
.cid-sgzOnty3dG .mbr-section-btn {
  color: #767676;
}
.cid-sgzOnu7nKS {
  padding-top: 0px;
  padding-bottom: 15px;
  background-image: url("../../../assets/images/mbr-6-1920x1080.jpg");
}
.cid-sgzOnu7nKS .mbr-iconfont {
  color: #767676;
  font-size: 0.8rem;
}
.cid-sgzOnu7nKS .title,
.cid-sgzOnu7nKS .mbr-section-title {
  margin-bottom: 0.5rem!important;
}
.cid-sgzOnu7nKS .card-wrapper {
  overflow: hidden;
  height: 100%;
  background: #f6f6f4;
  color: #232323;
  box-shadow: 0 1px 8px 0 rgba(0, 0, 0, 0.08);
  padding: 0rem;
}
.cid-sgzOnu7nKS .ico-wrap {
  background: #efefef;
  padding: 1rem;
}
.cid-sgzOnu7nKS .phone {
  margin-bottom: 0;
  color: #767676;
  text-align: left;
}
.cid-sgzOnu7nKS .text-box {
  padding: 1rem;
}
.cid-sgzOnu7nKS .ico-box {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  padding: 3px;
}
.cid-sgzOnu7nKS .card-title {
  color: #149dcc;
  margin: 0;
  padding-bottom: 0.2rem;
}
.cid-sgzOnu7nKS .card-img {
  overflow: hidden;
}
.cid-sgzOnu7nKS .card-img:hover img {
  -webkit-transform: scale(1.3);
  transform: scale(1.3);
}
.cid-sgzOnu7nKS .card-box {
  padding: 0rem;
}
.cid-sgzOnu7nKS img {
  transition: all 0.3s;
}
.cid-sgzOnu7nKS .mbr-section-title {
  margin: 0 auto;
  margin-bottom: 2rem;
  color: #767676;
}
.cid-sgzOnu7nKS .status {
  color: #767676;
  text-align: left;
}
@media (min-width: 576px) {
  .cid-sgzOnu7nKS .card-wrapper {
    display: flex;
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-sgzOnu7nKS .card-img {
    width: 20%;
  }
  .cid-sgzOnu7nKS .card-box {
    width: 80%;
    margin-left: 1.5rem;
  }
}
@media (max-width: 992px) {
  .cid-sgzOnu7nKS .card-img {
    width: 50%;
  }
  .cid-sgzOnu7nKS .card-box {
    width: 50%;
    margin-left: 0rem;
  }
  .cid-sgzOnu7nKS .text-box {
    padding: 1rem;
  }
}
@media (max-width: 576px) {
  .cid-sgzOnu7nKS .card-img {
    width: 100%;
  }
  .cid-sgzOnu7nKS .card-box {
    width: 100%;
  }
}
.cid-sgzOnu7nKS .card-box > p,
.cid-sgzOnu7nKS .mbr-section-btn {
  color: #767676;
}
.cid-tHVPi5jNCZ {
  padding-top: 30px;
  padding-bottom: 15px;
  background-image: url("../../../assets/images/mbr-13-1920x1280.jpg");
}
.cid-tHVPi5jNCZ .listico {
  padding-right: 1rem;
  font-size: 1.3rem;
}
.cid-tHVPi5jNCZ .navbar-logo {
  width: 80px;
  margin-bottom: 10px;
}
.cid-tHVPi5jNCZ .mbr-text {
  color: #444;
}
.cid-tHVPi5jNCZ h5 {
  margin-bottom: 0;
}
.cid-tHVPi5jNCZ .navbar-brand {
  margin: 0rem;
  width: 100%;
}
.cid-tHVPi5jNCZ .list-item {
  display: flex;
  padding-top: 10px;
  padding-bottom: 10px;
  -webkit-align-items: center;
  align-items: center;
}
.cid-tHVPi5jNCZ .tips {
  height: 90px;
  width: 90px;
  border-radius: 6px;
  margin: 4px;
  object-fit: cover;
  display: inline;
}
.cid-tHVPi5jNCZ .socicon {
  font-size: 1.3rem;
  background: #ff4a52;
  border-radius: 100%;
  width: 38px;
  height: 38px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-tHVPi5jNCZ .social-list {
  display: flex;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-tHVPi5jNCZ .social-list .soc-item {
  margin: 0 0.3rem;
}
.cid-tHVPi5jNCZ .social-list a {
  margin: 0;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-tHVPi5jNCZ .social-list a:hover {
  opacity: 0.4;
}
.cid-tHVPi5jNCZ .media-container-row > div {
  padding: 0px;
}
.cid-tHVPi5jNCZ .text2 {
  color: #6592e6;
  text-align: left;
}
.cid-tHVPi5jNCZ .group-title {
  text-align: left;
  color: #e6c63b;
}
.cid-tHVPi5jNCZ .group-title SPAN {
  color: #ffffff;
}
.cid-tHVPi5jNCZ .links {
  color: #ffffff;
  line-height: 1.6;
}
@media (max-width: 991px) {
  .cid-tHVPi5jNCZ .col-sm-12 {
    margin-bottom: 2rem;
  }
  .cid-tHVPi5jNCZ .social-list,
  .cid-tHVPi5jNCZ .img-list {
    -webkit-justify-content: center;
    justify-content: center;
    text-align: center;
  }
  .cid-tHVPi5jNCZ h3 {
    margin-bottom: 10px;
  }
  .cid-tHVPi5jNCZ .navbar-brand {
    text-align: center;
  }
}
.cid-tHVPi5jNCZ .links SPAN {
  color: #9e9e9e;
}
.cid-siM30LrbO4 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #232323;
}
.cid-tHWjeFymd7 .navbar {
  padding: 0.5rem 0;
  background: #ffffff;
  transition: none;
  min-height: 50px;
}
.cid-tHWjeFymd7 .navbar-fixed-top {
  padding-top: 0;
}
.cid-tHWjeFymd7 .navbar-collapse {
  -ms-flex-preferred-size: auto;
  -webkit-flex-basis: auto;
  flex-basis: auto;
}
.cid-tHWjeFymd7 .dropdown-item {
  padding: 0;
}
.cid-tHWjeFymd7 .dropdown-menu {
  border: 0px solid lightgray;
  background: #3b5abb !important;
}
.cid-tHWjeFymd7 .menu-content-top {
  max-width: 1500px;
  display: none;
  padding: 0rem 2rem;
  margin: auto;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  overflow: hidden;
  transition: min-height 0.25s ease-in-out;
}
.cid-tHWjeFymd7 .menu-bottom {
  margin: auto;
  width: 100%;
  background: #3b5abb;
  display: flex;
  padding: 0 2rem;
  position: relative;
}
.cid-tHWjeFymd7 .navbar-dropdown.bg-color.transparent.opened {
  background: #ffffff;
}
.cid-tHWjeFymd7 a {
  font-style: normal;
}
.cid-tHWjeFymd7 .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  top: -0.2em;
  text-decoration: none;
}
.cid-tHWjeFymd7 .nav-item a {
  padding: 0rem 0 !important;
  margin: 0rem !important;
}
.cid-tHWjeFymd7 .dropdown-item:before {
  font-family: MobiriseIcons !important;
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-tHWjeFymd7 .content-text {
  margin-bottom: 0;
}
.cid-tHWjeFymd7 .navbar-nav {
  position: relative;
  min-height: 49px;
  -ms-flex-direction: row;
  -webkit-flex-direction: row;
  flex-direction: row;
}
@media (min-width: 992px) {
  .cid-tHWjeFymd7 .navbar-nav .main-menu-animated-line {
    position: absolute;
    left: 0;
    width: 0;
    height: 0;
    z-index: 100;
    border-top: 4px solid #6592e6;
    -webkit-transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
    -moz-transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
    transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
  }
  .cid-tHWjeFymd7 .navbar-nav .main-menu-animated-line.bottom {
    bottom: 0;
  }
}
.cid-tHWjeFymd7 .navbar-nav .nav-item span {
  padding-right: 0;
}
.cid-tHWjeFymd7 .navbar-nav .nav-item a {
  margin: 0 1.3rem !important;
}
.cid-tHWjeFymd7 .display-4 > .mbr-iconfont {
  font-size: 1.43em;
}
.cid-tHWjeFymd7 .display-4 > .btn > .mbr-iconfont {
  font-size: 1.43em;
}
.cid-tHWjeFymd7 .nav-dropdown .dropdown-item {
  font-weight: 400;
}
.cid-tHWjeFymd7 .navbar-buttons.mbr-section-btn {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-tHWjeFymd7 .nav-dropdown .link {
  font-weight: 400;
}
.cid-tHWjeFymd7 .menu .navbar-brand .logo-text-part {
  vertical-align: top;
}
.cid-tHWjeFymd7 .content-right-side {
  text-align: center;
}
.cid-tHWjeFymd7 .content-right-side .content-link {
  margin-left: 2rem;
}
.cid-tHWjeFymd7 .content-right-side .content-link span {
  vertical-align: middle;
  padding-right: 1rem;
}
.cid-tHWjeFymd7 .widget-icon {
  display: inline-block;
  padding-right: 1rem;
  font-size: 1.65rem;
}
.cid-tHWjeFymd7 .info-widget {
  padding-left: 2rem;
  padding-top: 0.5rem;
  padding-right: 3rem;
  border-left: 1px solid rgba(0, 0, 0, 0.12);
}
.cid-tHWjeFymd7 .menu-content-right {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-tHWjeFymd7 .menu-content-right .info-widget:last-child {
  padding-right: 0;
}
.cid-tHWjeFymd7 .menu-content-right .info-widget:first-child {
  padding-left: 0;
  border-left: none;
}
.cid-tHWjeFymd7 .widget-content {
  display: inline-block;
  vertical-align: top;
  text-align: left;
}
.cid-tHWjeFymd7 .widget-content .widget-title {
  font-weight: 600;
  margin-bottom: 7px;
}
.cid-tHWjeFymd7 .widget-content .widget-text {
  margin-bottom: 0;
}
@media (min-width: 992px) {
  .cid-tHWjeFymd7 .navbar .menu-content-top {
    display: flex;
    min-height: 83px;
    height: 100%;
  }
  .cid-tHWjeFymd7 .content-right-side {
    text-align: right;
    -webkit-flex-wrap: nowrap;
    flex-wrap: nowrap;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-tHWjeFymd7 .menu-content-top {
    border-bottom: 0px solid rgba(0, 0, 0, 0.12);
  }
  .cid-tHWjeFymd7 .navbar {
    display: block;
    padding: 0;
  }
  .cid-tHWjeFymd7 .navbar .menu-logo {
    margin-right: auto;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-tHWjeFymd7 .navbar:not(.navbar-short) .navbar-collapse {
    max-height: calc(100vh - 5.8rem - 4.5rem);
  }
  .cid-tHWjeFymd7 .navbar.navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
    -webkit-align-self: initial;
    align-self: auto;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    z-index: 101;
    min-height: 49px;
  }
  .cid-tHWjeFymd7 .dropdown-item:hover:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    width: 16px;
  }
  .cid-tHWjeFymd7 .navbar-toggler {
    display: none;
  }
  .cid-tHWjeFymd7 .navbar-collapse {
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
  }
}
.cid-tHWjeFymd7 .navbar-short .menu-content-top {
  height: 0;
  min-height: 0;
  border: none;
}
.cid-tHWjeFymd7 .btn {
  display: inline-flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-tHWjeFymd7 .btn .mbr-iconfont {
  font-size: 1.2em;
}
.cid-tHWjeFymd7 .menu-logo {
  margin-right: auto;
}
.cid-tHWjeFymd7 .menu-logo .navbar-brand {
  display: flex;
  margin-left: 1.5rem;
  padding: 0.5rem 0;
  transition: padding 0.2s;
  min-height: 3.8rem;
  -webkit-align-items: center;
  align-items: center;
}
.cid-tHWjeFymd7 .menu-logo .navbar-brand .navbar-caption-wrap {
  display: -webkit-flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 20rem;
  margin: 0.3rem 0;
}
.cid-tHWjeFymd7 .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-tHWjeFymd7 .menu-logo .navbar-brand .navbar-logo {
  font-size: 3rem;
  transition: font-size 0.25s;
}
.cid-tHWjeFymd7 .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
  width: auto;
}
.cid-tHWjeFymd7 .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-tHWjeFymd7 .navbar-toggleable-sm .navbar-collapse {
  width: auto;
}
.cid-tHWjeFymd7 .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  padding-left: 0;
}
.cid-tHWjeFymd7 .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-tHWjeFymd7 .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-tHWjeFymd7 .dropdown .dropdown-menu {
  background: #ffffff;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-tHWjeFymd7 .dropdown .dropdown-menu {
    overflow: hidden;
  }
}
.cid-tHWjeFymd7 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-tHWjeFymd7 .dropdown .dropdown-menu .dropdown-item::after {
  right: -0.5rem;
}
.cid-tHWjeFymd7 .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-tHWjeFymd7 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-tHWjeFymd7 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-tHWjeFymd7 .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0rem;
}
.cid-tHWjeFymd7 .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tHWjeFymd7 .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  -webkit-transform: translateY(100%);
  transform: translateY(100%);
  z-index: 1000;
}
.cid-tHWjeFymd7 .navbar.navbar-short {
  min-height: 50px;
  transition: all 0.2s;
}
.cid-tHWjeFymd7 .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-tHWjeFymd7 .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-tHWjeFymd7 .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
  width: auto;
}
.cid-tHWjeFymd7 .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-tHWjeFymd7 button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all 0.2s;
  margin: 1rem 0.8rem;
  -webkit-align-self: center;
  align-self: center;
}
.cid-tHWjeFymd7 button.navbar-toggler:focus {
  outline: none;
}
.cid-tHWjeFymd7 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #bbbbbb;
}
.cid-tHWjeFymd7 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tHWjeFymd7 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tHWjeFymd7 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tHWjeFymd7 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tHWjeFymd7 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tHWjeFymd7 nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tHWjeFymd7 nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tHWjeFymd7 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tHWjeFymd7 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tHWjeFymd7 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0em 1.5em 0em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tHWjeFymd7 .collapsed .btn {
  display: flex;
}
.cid-tHWjeFymd7 .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-tHWjeFymd7 .collapsed .navbar-collapse.collapsing,
.cid-tHWjeFymd7 .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-tHWjeFymd7 .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-tHWjeFymd7 .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-tHWjeFymd7 .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-tHWjeFymd7 .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-tHWjeFymd7 .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
.cid-tHWjeFymd7 .collapsed .navbar-collapse.show .navbar-nav .nav-item:last-child {
  margin-bottom: 1rem;
}
.cid-tHWjeFymd7 .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-tHWjeFymd7 .collapsed .navbar-collapse.show .navbar-buttons {
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  text-align: center;
}
.cid-tHWjeFymd7 .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-tHWjeFymd7 .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .cid-tHWjeFymd7 .collapsed .dropdown .dropdown-menu {
    overflow: hidden;
  }
}
.cid-tHWjeFymd7 .collapsed button.navbar-toggler {
  display: block;
}
.cid-tHWjeFymd7 .collapsed .navbar-brand {
  margin-left: 1rem !important;
  margin-top: 0.5rem;
}
.cid-tHWjeFymd7 .collapsed .navbar-toggleable-sm {
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-tHWjeFymd7 .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: 0.5s;
  transition-property: opacity, padding, height;
}
.cid-tHWjeFymd7 .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-tHWjeFymd7 .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-tHWjeFymd7 .collapsed .dropdown .dropdown-toggle[data-toggle='dropdown-submenu']::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 0.3em;
  vertical-align: middle;
  content: '';
  border-top: 0.3em solid;
  border-right: 0.3em solid transparent;
  border-left: 0.3em solid transparent;
}
.cid-tHWjeFymd7 .collapsed .menu-bottom {
  -webkit-flex-direction: column-reverse;
  flex-direction: column-reverse;
  -webkit-justify-content: center;
  justify-content: center;
}
@media (max-width: 991px) {
  .cid-tHWjeFymd7 .navbar-collapse {
    padding-bottom: 1rem;
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-tHWjeFymd7 .navbar-collapse.collapsing,
  .cid-tHWjeFymd7 .navbar-collapse.show {
    display: block !important;
  }
  .cid-tHWjeFymd7 .navbar-collapse.collapsing .navbar-nav,
  .cid-tHWjeFymd7 .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-tHWjeFymd7 .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-tHWjeFymd7 .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-tHWjeFymd7 .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
  .cid-tHWjeFymd7 .navbar-collapse.show .navbar-nav .nav-item:last-child {
    margin-bottom: 1rem;
  }
  .cid-tHWjeFymd7 .navbar-collapse.collapsing .navbar-buttons,
  .cid-tHWjeFymd7 .navbar-collapse.show .navbar-buttons {
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    text-align: center;
  }
  .cid-tHWjeFymd7 .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-tHWjeFymd7 .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-tHWjeFymd7 .menu-bottom {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
    -webkit-justify-content: center;
    justify-content: center;
  }
  .cid-tHWjeFymd7 img {
    height: 3.8rem !important;
  }
  .cid-tHWjeFymd7 .btn {
    display: flex;
  }
  .cid-tHWjeFymd7 button.navbar-toggler {
    display: block;
  }
  .cid-tHWjeFymd7 .navbar-brand {
    margin-left: 1rem !important;
    margin-top: 0.5rem;
  }
  .cid-tHWjeFymd7 .navbar-toggleable-sm {
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .cid-tHWjeFymd7 .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: 0.5s;
    transition-property: opacity, padding, height;
  }
  .cid-tHWjeFymd7 .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 0rem 0;
    visibility: visible;
  }
  .cid-tHWjeFymd7 .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-tHWjeFymd7 .dropdown .dropdown-toggle[data-toggle='dropdown-submenu']::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: 0.3em;
    vertical-align: middle;
    content: '';
    border-top: 0.3em solid;
    border-right: 0.3em solid transparent;
    border-left: 0.3em solid transparent;
  }
  .cid-tHWjeFymd7 .navbar-buttons.mbr-section-btn {
    width: 100%;
  }
  .cid-tHWjeFymd7 .dropdown .dropdown-menu .dropdown-item {
    padding: 0em 1.5em 0em 1.5em !important;
    transition: none;
    margin: 0 !important;
  }
}
.cid-tHWjeFymd7 .navbar-dropdown {
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap;
}
.cid-tHWjeFymd7 .nav-link:focus {
  outline: none;
}
.cid-tHWjeFymd7 .navbar-toggler {
  position: relative;
}
.cid-tHWjeFymd7 .dropdown-item.active,
.cid-tHWjeFymd7 .dropdown-item:active {
  background: #3b5abb;
  color: initial;
}
.cid-sgA1d6Ezqf {
  overflow-x: hidden !important;
}
.cid-sgA1d6Ezqf,
.cid-sgA1d6Ezqf .scroll-wrapper {
  padding-top: 210px;
  padding-bottom: 45px;
}
.cid-sgA1d6Ezqf .mbr-section-title {
  color: #ffffff;
}
.cid-sgA1d6Ezqf .mbr-section-title span {
  color: #6592e6;
}
.cid-sgA1d6Ezqf .mbr-text {
  color: #efefef;
  letter-spacing: 5px;
  font-weight: 100;
}
.cid-sgA1d6Ezqf .scroll-wrapper {
  top: 0;
  width: 100%;
  height: 100%;
  background-position: 50% 50%;
  background-size: cover;
  position: absolute;
  background-repeat: repeat;
  z-index: 0;
  -webkit-animation-duration: 29s !important;
  animation-duration: 29s;
  background-image: url("../../../assets/images/mbr-3-1920x1080.jpg");
  -webkit-animation: scroll-wrapper linear infinite;
  -moz-animation: scroll-wrapper linear infinite;
  -o-animation: scroll-wrapper linear infinite;
  animation: scroll-wrapper linear infinite;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
}
.cid-sgA1d6Ezqf .scroll-wrapper.second {
  left: calc(100% - 1px);
}
.cid-sgA1d6Ezqf .mbr-overlay {
  z-index: 1;
}
.cid-sgA1d6Ezqf .block-content {
  z-index: 2;
}
@keyframes scroll-wrapper {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}
@-webkit-keyframes scroll-wrapper {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}
@-moz-keyframes scroll-wrapper {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}
@-o-keyframes scroll-wrapper {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}
.cid-shR8rrIBJW {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-image: url("../../../assets/images/mbr-1920x816.jpg");
}
.cid-shR8rrIBJW .content-wrapper {
  background: #efefef;
}
@media (max-width: 991px) {
  .cid-shR8rrIBJW .content-wrapper .image-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-shR8rrIBJW .content-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-shR8rrIBJW .content-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-shR8rrIBJW .content-wrapper {
    padding: 5rem 3rem;
  }
  .cid-shR8rrIBJW .content-wrapper .text-wrapper {
    padding-left: 2rem;
  }
}
.cid-shR8rrIBJW .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-shR8rrIBJW .card-title {
  color: #149dcc;
  text-align: center;
}
.cid-shR8rrIBJW .mbr-text,
.cid-shR8rrIBJW .mbr-section-btn {
  text-align: center;
}
.cid-sgA4OR4bzk {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-sgA4OR4bzk .content-slider {
  display: -webkit-flex;
  justify-content: center;
  -webkit-justify-content: center;
}
.cid-sgA4OR4bzk .modal-body .close {
  background: #1b1b1b;
}
.cid-sgA4OR4bzk .modal-body .close span {
  font-style: normal;
}
.cid-sgA4OR4bzk .carousel-inner > .active,
.cid-sgA4OR4bzk .carousel-inner > .next,
.cid-sgA4OR4bzk .carousel-inner > .prev {
  display: flex;
}
.cid-sgA4OR4bzk .carousel-control .icon-next,
.cid-sgA4OR4bzk .carousel-control .icon-prev {
  margin-top: -18px;
  font-size: 40px;
  line-height: 27px;
}
.cid-sgA4OR4bzk .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-sgA4OR4bzk .container .carousel-control {
    margin-bottom: 0;
  }
  .cid-sgA4OR4bzk .content-slider-wrap {
    width: 100%!important;
  }
}
.cid-sgA4OR4bzk .boxed-slider {
  position: relative;
  padding: 93px 0;
}
.cid-sgA4OR4bzk .boxed-slider > div {
  position: relative;
}
.cid-sgA4OR4bzk .container img + .row {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 2;
}
.cid-sgA4OR4bzk .mbr-section {
  padding: 0;
  background-attachment: scroll;
}
.cid-sgA4OR4bzk .mbr-table-cell {
  padding: 0;
}
.cid-sgA4OR4bzk .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-sgA4OR4bzk .carousel-caption {
  top: 50%;
  right: 0;
  bottom: auto;
  left: 0;
  display: -webkit-flex;
  align-items: center;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-align-items: center;
}
.cid-sgA4OR4bzk .mbr-overlay {
  z-index: 1;
  pointer-events: none;
}
.cid-sgA4OR4bzk .container-slide.container {
  width: 100%;
  min-height: 100vh;
  padding: 0;
}
.cid-sgA4OR4bzk .carousel-item {
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: cover;
  opacity: 1;
}
.cid-sgA4OR4bzk .carousel-item.active.right,
.cid-sgA4OR4bzk .carousel-item.next {
  left: 0;
  transition: opacity 0.7s ease-in-out;
  opacity: 0;
}
.cid-sgA4OR4bzk .carousel-item.active.left,
.cid-sgA4OR4bzk .carousel-item.prev {
  left: 0;
  transition: opacity 0.7s ease-in-out;
  opacity: 0;
}
.cid-sgA4OR4bzk .carousel-item.active,
.cid-sgA4OR4bzk .carousel-item.next.left,
.cid-sgA4OR4bzk .carousel-item.prev.right {
  left: 0;
  opacity: 1;
}
.cid-sgA4OR4bzk .mbr-slider .carousel-control {
  top: 50%;
  width: 50px;
  height: 50px;
  margin-top: -1.5rem;
  font-size: 35px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all .3s;
  z-index: 11;
}
.cid-sgA4OR4bzk .mbr-slider .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sgA4OR4bzk .mbr-slider .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-sgA4OR4bzk .mbr-slider .carousel-control .mbr-iconfont {
  font-size: 1.5rem;
}
@media (max-width: 767px) {
  .cid-sgA4OR4bzk .mbr-slider .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-sgA4OR4bzk .mbr-slider .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem !important;
}
.cid-sgA4OR4bzk .mbr-slider .carousel-indicators li {
  max-width: 19px;
  width: 19px;
  height: 19px;
  max-height: 19px;
  margin: 3px;
  background-color: white;
  border: none;
  border-radius: 0;
  opacity: .5;
  transition: all .3s;
}
.cid-sgA4OR4bzk .mbr-slider .carousel-indicators li.active,
.cid-sgA4OR4bzk .mbr-slider .carousel-indicators li:hover {
  opacity: .9;
}
.cid-sgA4OR4bzk .mbr-slider .carousel-indicators li::after,
.cid-sgA4OR4bzk .mbr-slider .carousel-indicators li::before {
  content: none;
}
.cid-sgA4OR4bzk .mbr-slider .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 767px) {
  .cid-sgA4OR4bzk .mbr-slider .carousel-indicators {
    display: none !important;
  }
}
.cid-sgA4OR4bzk .mbr-slider > .container img {
  width: 100%;
}
.cid-sgA4OR4bzk .mbr-slider > .container img + .row {
  position: absolute;
  top: 50%;
  right: 0;
  left: 0;
  z-index: 2;
  -moz-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.cid-sgA4OR4bzk .mbr-slider > .container .carousel-indicators {
  margin-bottom: 3px;
}
@media (max-width: 767px) {
  .cid-sgA4OR4bzk .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-sgA4OR4bzk .mbr-slider .mbr-section {
  padding: 0;
  background-attachment: scroll;
}
.cid-sgA4OR4bzk .mbr-slider .mbr-table-cell {
  padding: 0;
}
.cid-sgA4OR4bzk .carousel-item .container.container-slide {
  position: initial;
  min-height: 0;
}
.cid-sgA4OR4bzk .full-screen .slider-fullscreen-image {
  min-height: 100vh;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: cover;
}
.cid-sgA4OR4bzk .full-screen .slider-fullscreen-image.active {
  display: -o-flex;
}
.cid-sgA4OR4bzk .full-screen .container {
  width: auto;
  padding-right: 0;
  padding-left: 0;
}
.cid-sgA4OR4bzk .full-screen .carousel-item .container.container-slide {
  width: 100%;
  min-height: 100vh;
  padding: 0;
}
.cid-sgA4OR4bzk .full-screen .carousel-item .container.container-slide img {
  display: none;
}
.cid-sgA4OR4bzk .mbr-background-video-preview {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.cid-sgA4OR4bzk .mbr-overlay ~ .container-slide {
  z-index: auto;
}
.cid-sgA4OR4bzk .mbr-slider.slide .container {
  overflow: hidden;
  padding: 0;
}
.cid-sgA4OR4bzk .carousel-inner {
  height: 100%;
}
.cid-sgA4OR4bzk .slider-fullscreen-image {
  height: 100%;
  background: transparent !important;
}
.cid-sgA4OR4bzk .image_wrapper {
  height: 430px;
  width: 100%;
  position: relative;
  display: inline-block;
}
.cid-sgA4OR4bzk .image_wrapper img {
  width: 100% !important;
  height: 100%;
  object-fit: cover;
}
.cid-sgA4OR4bzk .carousel-item .container-slide {
  text-align: center;
}
.cid-sgA4OR4bzk .content-slider-wrap {
  width: 64%;
}
.cid-sgA4OR4bzk .carousel-control-prev {
  bottom: 2px!important;
  left: 0px!important;
  top: auto!important;
  margin-left: 2rem!important;
  background-color: white!important;
  opacity: 1!important;
  color: black!important;
  border-radius: 0!important;
}
.cid-sgA4OR4bzk .carousel-control-next {
  bottom: 54px!important;
  left: 0px!important;
  top: auto!important;
  margin-left: 2rem!important;
  background-color: white!important;
  opacity: 1!important;
  color: black!important;
  border-radius: 0!important;
}
.cid-sgA4OR4bzk .carousel-control {
  margin-left: 2px!important;
}
.cid-sgA6L6SoG0 {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #f6f6f4;
  overflow: hidden;
}
.cid-sgA6L6SoG0 H1 {
  color: #149dcc;
  text-align: center;
}
.cid-sgA6L6SoG0 .mbr-text,
.cid-sgA6L6SoG0 .mbr-section-btn {
  color: #232323;
  text-align: center;
}
.cid-sgA6L6SoG0 .img1 {
  box-shadow: 0 10px 55px 5px rgba(255, 153, 153, 0.35);
  border-radius: 10px;
}
.cid-sgA6L6SoG0 .relative {
  position: relative;
}
.cid-sgA6L6SoG0 .card-img {
  width: 100%;
}
@keyframes line {
  from {
    transform: translateY(4px);
  }
  50% {
    transform: translateY(-4px);
  }
  to {
    transform: translateY(4px);
  }
}
.cid-sgA6L6SoG0 .card-img2 {
  display: inline-block;
  width: 50%;
  float: left;
}
.cid-sgA6L6SoG0 .card-img2 .img2 {
  width: 100%;
}
.cid-sgA6L6SoG0 .card-img1 {
  display: inline-block;
  width: 50%;
  float: right;
}
.cid-sgA6L6SoG0 .card-img1 .img1 {
  width: 140%;
  transform: translateX(-45%);
}
.cid-sgA6L6SoG0 .img2 {
  box-shadow: 0 10px 55px 5px rgba(255, 153, 153, 0.35);
  margin-top: 4rem;
  object-fit: cover;
  position: relative;
  border-radius: 10px;
  animation: line 3s ease-in-out infinite;
}
.cid-tHVPnERsTX {
  padding-top: 30px;
  padding-bottom: 15px;
  background-image: url("../../../assets/images/mbr-13-1920x1280.jpg");
}
.cid-tHVPnERsTX .listico {
  padding-right: 1rem;
  font-size: 1.3rem;
}
.cid-tHVPnERsTX .navbar-logo {
  width: 80px;
  margin-bottom: 10px;
}
.cid-tHVPnERsTX .mbr-text {
  color: #444;
}
.cid-tHVPnERsTX h5 {
  margin-bottom: 0;
}
.cid-tHVPnERsTX .navbar-brand {
  margin: 0rem;
  width: 100%;
}
.cid-tHVPnERsTX .list-item {
  display: flex;
  padding-top: 10px;
  padding-bottom: 10px;
  -webkit-align-items: center;
  align-items: center;
}
.cid-tHVPnERsTX .tips {
  height: 90px;
  width: 90px;
  border-radius: 6px;
  margin: 4px;
  object-fit: cover;
  display: inline;
}
.cid-tHVPnERsTX .socicon {
  font-size: 1.3rem;
  background: #ff4a52;
  border-radius: 100%;
  width: 38px;
  height: 38px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-tHVPnERsTX .social-list {
  display: flex;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-tHVPnERsTX .social-list .soc-item {
  margin: 0 0.3rem;
}
.cid-tHVPnERsTX .social-list a {
  margin: 0;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-tHVPnERsTX .social-list a:hover {
  opacity: 0.4;
}
.cid-tHVPnERsTX .media-container-row > div {
  padding: 0px;
}
.cid-tHVPnERsTX .text2 {
  color: #6592e6;
  text-align: left;
}
.cid-tHVPnERsTX .group-title {
  text-align: left;
  color: #e6c63b;
}
.cid-tHVPnERsTX .group-title SPAN {
  color: #ffffff;
}
.cid-tHVPnERsTX .links {
  color: #ffffff;
  line-height: 1.6;
}
@media (max-width: 991px) {
  .cid-tHVPnERsTX .col-sm-12 {
    margin-bottom: 2rem;
  }
  .cid-tHVPnERsTX .social-list,
  .cid-tHVPnERsTX .img-list {
    -webkit-justify-content: center;
    justify-content: center;
    text-align: center;
  }
  .cid-tHVPnERsTX h3 {
    margin-bottom: 10px;
  }
  .cid-tHVPnERsTX .navbar-brand {
    text-align: center;
  }
}
.cid-tHVPnERsTX .links SPAN {
  color: #9e9e9e;
}
.cid-siM30LrbO4 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #232323;
}
.cid-tHWjeFymd7 .navbar {
  padding: 0.5rem 0;
  background: #ffffff;
  transition: none;
  min-height: 50px;
}
.cid-tHWjeFymd7 .navbar-fixed-top {
  padding-top: 0;
}
.cid-tHWjeFymd7 .navbar-collapse {
  -ms-flex-preferred-size: auto;
  -webkit-flex-basis: auto;
  flex-basis: auto;
}
.cid-tHWjeFymd7 .dropdown-item {
  padding: 0;
}
.cid-tHWjeFymd7 .dropdown-menu {
  border: 0px solid lightgray;
  background: #3b5abb !important;
}
.cid-tHWjeFymd7 .menu-content-top {
  max-width: 1500px;
  display: none;
  padding: 0rem 2rem;
  margin: auto;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  overflow: hidden;
  transition: min-height 0.25s ease-in-out;
}
.cid-tHWjeFymd7 .menu-bottom {
  margin: auto;
  width: 100%;
  background: #3b5abb;
  display: flex;
  padding: 0 2rem;
  position: relative;
}
.cid-tHWjeFymd7 .navbar-dropdown.bg-color.transparent.opened {
  background: #ffffff;
}
.cid-tHWjeFymd7 a {
  font-style: normal;
}
.cid-tHWjeFymd7 .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  top: -0.2em;
  text-decoration: none;
}
.cid-tHWjeFymd7 .nav-item a {
  padding: 0rem 0 !important;
  margin: 0rem !important;
}
.cid-tHWjeFymd7 .dropdown-item:before {
  font-family: MobiriseIcons !important;
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-tHWjeFymd7 .content-text {
  margin-bottom: 0;
}
.cid-tHWjeFymd7 .navbar-nav {
  position: relative;
  min-height: 49px;
  -ms-flex-direction: row;
  -webkit-flex-direction: row;
  flex-direction: row;
}
@media (min-width: 992px) {
  .cid-tHWjeFymd7 .navbar-nav .main-menu-animated-line {
    position: absolute;
    left: 0;
    width: 0;
    height: 0;
    z-index: 100;
    border-top: 4px solid #6592e6;
    -webkit-transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
    -moz-transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
    transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
  }
  .cid-tHWjeFymd7 .navbar-nav .main-menu-animated-line.bottom {
    bottom: 0;
  }
}
.cid-tHWjeFymd7 .navbar-nav .nav-item span {
  padding-right: 0;
}
.cid-tHWjeFymd7 .navbar-nav .nav-item a {
  margin: 0 1.3rem !important;
}
.cid-tHWjeFymd7 .display-4 > .mbr-iconfont {
  font-size: 1.43em;
}
.cid-tHWjeFymd7 .display-4 > .btn > .mbr-iconfont {
  font-size: 1.43em;
}
.cid-tHWjeFymd7 .nav-dropdown .dropdown-item {
  font-weight: 400;
}
.cid-tHWjeFymd7 .navbar-buttons.mbr-section-btn {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-tHWjeFymd7 .nav-dropdown .link {
  font-weight: 400;
}
.cid-tHWjeFymd7 .menu .navbar-brand .logo-text-part {
  vertical-align: top;
}
.cid-tHWjeFymd7 .content-right-side {
  text-align: center;
}
.cid-tHWjeFymd7 .content-right-side .content-link {
  margin-left: 2rem;
}
.cid-tHWjeFymd7 .content-right-side .content-link span {
  vertical-align: middle;
  padding-right: 1rem;
}
.cid-tHWjeFymd7 .widget-icon {
  display: inline-block;
  padding-right: 1rem;
  font-size: 1.65rem;
}
.cid-tHWjeFymd7 .info-widget {
  padding-left: 2rem;
  padding-top: 0.5rem;
  padding-right: 3rem;
  border-left: 1px solid rgba(0, 0, 0, 0.12);
}
.cid-tHWjeFymd7 .menu-content-right {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-tHWjeFymd7 .menu-content-right .info-widget:last-child {
  padding-right: 0;
}
.cid-tHWjeFymd7 .menu-content-right .info-widget:first-child {
  padding-left: 0;
  border-left: none;
}
.cid-tHWjeFymd7 .widget-content {
  display: inline-block;
  vertical-align: top;
  text-align: left;
}
.cid-tHWjeFymd7 .widget-content .widget-title {
  font-weight: 600;
  margin-bottom: 7px;
}
.cid-tHWjeFymd7 .widget-content .widget-text {
  margin-bottom: 0;
}
@media (min-width: 992px) {
  .cid-tHWjeFymd7 .navbar .menu-content-top {
    display: flex;
    min-height: 83px;
    height: 100%;
  }
  .cid-tHWjeFymd7 .content-right-side {
    text-align: right;
    -webkit-flex-wrap: nowrap;
    flex-wrap: nowrap;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-tHWjeFymd7 .menu-content-top {
    border-bottom: 0px solid rgba(0, 0, 0, 0.12);
  }
  .cid-tHWjeFymd7 .navbar {
    display: block;
    padding: 0;
  }
  .cid-tHWjeFymd7 .navbar .menu-logo {
    margin-right: auto;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-tHWjeFymd7 .navbar:not(.navbar-short) .navbar-collapse {
    max-height: calc(100vh - 5.8rem - 4.5rem);
  }
  .cid-tHWjeFymd7 .navbar.navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
    -webkit-align-self: initial;
    align-self: auto;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    z-index: 101;
    min-height: 49px;
  }
  .cid-tHWjeFymd7 .dropdown-item:hover:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    width: 16px;
  }
  .cid-tHWjeFymd7 .navbar-toggler {
    display: none;
  }
  .cid-tHWjeFymd7 .navbar-collapse {
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
  }
}
.cid-tHWjeFymd7 .navbar-short .menu-content-top {
  height: 0;
  min-height: 0;
  border: none;
}
.cid-tHWjeFymd7 .btn {
  display: inline-flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-tHWjeFymd7 .btn .mbr-iconfont {
  font-size: 1.2em;
}
.cid-tHWjeFymd7 .menu-logo {
  margin-right: auto;
}
.cid-tHWjeFymd7 .menu-logo .navbar-brand {
  display: flex;
  margin-left: 1.5rem;
  padding: 0.5rem 0;
  transition: padding 0.2s;
  min-height: 3.8rem;
  -webkit-align-items: center;
  align-items: center;
}
.cid-tHWjeFymd7 .menu-logo .navbar-brand .navbar-caption-wrap {
  display: -webkit-flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 20rem;
  margin: 0.3rem 0;
}
.cid-tHWjeFymd7 .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-tHWjeFymd7 .menu-logo .navbar-brand .navbar-logo {
  font-size: 3rem;
  transition: font-size 0.25s;
}
.cid-tHWjeFymd7 .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
  width: auto;
}
.cid-tHWjeFymd7 .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-tHWjeFymd7 .navbar-toggleable-sm .navbar-collapse {
  width: auto;
}
.cid-tHWjeFymd7 .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  padding-left: 0;
}
.cid-tHWjeFymd7 .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-tHWjeFymd7 .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-tHWjeFymd7 .dropdown .dropdown-menu {
  background: #ffffff;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-tHWjeFymd7 .dropdown .dropdown-menu {
    overflow: hidden;
  }
}
.cid-tHWjeFymd7 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-tHWjeFymd7 .dropdown .dropdown-menu .dropdown-item::after {
  right: -0.5rem;
}
.cid-tHWjeFymd7 .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-tHWjeFymd7 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-tHWjeFymd7 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-tHWjeFymd7 .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0rem;
}
.cid-tHWjeFymd7 .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tHWjeFymd7 .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  -webkit-transform: translateY(100%);
  transform: translateY(100%);
  z-index: 1000;
}
.cid-tHWjeFymd7 .navbar.navbar-short {
  min-height: 50px;
  transition: all 0.2s;
}
.cid-tHWjeFymd7 .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-tHWjeFymd7 .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-tHWjeFymd7 .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
  width: auto;
}
.cid-tHWjeFymd7 .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-tHWjeFymd7 button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all 0.2s;
  margin: 1rem 0.8rem;
  -webkit-align-self: center;
  align-self: center;
}
.cid-tHWjeFymd7 button.navbar-toggler:focus {
  outline: none;
}
.cid-tHWjeFymd7 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #bbbbbb;
}
.cid-tHWjeFymd7 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tHWjeFymd7 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tHWjeFymd7 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tHWjeFymd7 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tHWjeFymd7 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tHWjeFymd7 nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tHWjeFymd7 nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tHWjeFymd7 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tHWjeFymd7 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tHWjeFymd7 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0em 1.5em 0em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tHWjeFymd7 .collapsed .btn {
  display: flex;
}
.cid-tHWjeFymd7 .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-tHWjeFymd7 .collapsed .navbar-collapse.collapsing,
.cid-tHWjeFymd7 .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-tHWjeFymd7 .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-tHWjeFymd7 .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-tHWjeFymd7 .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-tHWjeFymd7 .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-tHWjeFymd7 .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
.cid-tHWjeFymd7 .collapsed .navbar-collapse.show .navbar-nav .nav-item:last-child {
  margin-bottom: 1rem;
}
.cid-tHWjeFymd7 .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-tHWjeFymd7 .collapsed .navbar-collapse.show .navbar-buttons {
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  text-align: center;
}
.cid-tHWjeFymd7 .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-tHWjeFymd7 .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .cid-tHWjeFymd7 .collapsed .dropdown .dropdown-menu {
    overflow: hidden;
  }
}
.cid-tHWjeFymd7 .collapsed button.navbar-toggler {
  display: block;
}
.cid-tHWjeFymd7 .collapsed .navbar-brand {
  margin-left: 1rem !important;
  margin-top: 0.5rem;
}
.cid-tHWjeFymd7 .collapsed .navbar-toggleable-sm {
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-tHWjeFymd7 .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: 0.5s;
  transition-property: opacity, padding, height;
}
.cid-tHWjeFymd7 .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-tHWjeFymd7 .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-tHWjeFymd7 .collapsed .dropdown .dropdown-toggle[data-toggle='dropdown-submenu']::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 0.3em;
  vertical-align: middle;
  content: '';
  border-top: 0.3em solid;
  border-right: 0.3em solid transparent;
  border-left: 0.3em solid transparent;
}
.cid-tHWjeFymd7 .collapsed .menu-bottom {
  -webkit-flex-direction: column-reverse;
  flex-direction: column-reverse;
  -webkit-justify-content: center;
  justify-content: center;
}
@media (max-width: 991px) {
  .cid-tHWjeFymd7 .navbar-collapse {
    padding-bottom: 1rem;
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-tHWjeFymd7 .navbar-collapse.collapsing,
  .cid-tHWjeFymd7 .navbar-collapse.show {
    display: block !important;
  }
  .cid-tHWjeFymd7 .navbar-collapse.collapsing .navbar-nav,
  .cid-tHWjeFymd7 .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-tHWjeFymd7 .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-tHWjeFymd7 .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-tHWjeFymd7 .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
  .cid-tHWjeFymd7 .navbar-collapse.show .navbar-nav .nav-item:last-child {
    margin-bottom: 1rem;
  }
  .cid-tHWjeFymd7 .navbar-collapse.collapsing .navbar-buttons,
  .cid-tHWjeFymd7 .navbar-collapse.show .navbar-buttons {
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    text-align: center;
  }
  .cid-tHWjeFymd7 .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-tHWjeFymd7 .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-tHWjeFymd7 .menu-bottom {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
    -webkit-justify-content: center;
    justify-content: center;
  }
  .cid-tHWjeFymd7 img {
    height: 3.8rem !important;
  }
  .cid-tHWjeFymd7 .btn {
    display: flex;
  }
  .cid-tHWjeFymd7 button.navbar-toggler {
    display: block;
  }
  .cid-tHWjeFymd7 .navbar-brand {
    margin-left: 1rem !important;
    margin-top: 0.5rem;
  }
  .cid-tHWjeFymd7 .navbar-toggleable-sm {
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .cid-tHWjeFymd7 .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: 0.5s;
    transition-property: opacity, padding, height;
  }
  .cid-tHWjeFymd7 .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 0rem 0;
    visibility: visible;
  }
  .cid-tHWjeFymd7 .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-tHWjeFymd7 .dropdown .dropdown-toggle[data-toggle='dropdown-submenu']::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: 0.3em;
    vertical-align: middle;
    content: '';
    border-top: 0.3em solid;
    border-right: 0.3em solid transparent;
    border-left: 0.3em solid transparent;
  }
  .cid-tHWjeFymd7 .navbar-buttons.mbr-section-btn {
    width: 100%;
  }
  .cid-tHWjeFymd7 .dropdown .dropdown-menu .dropdown-item {
    padding: 0em 1.5em 0em 1.5em !important;
    transition: none;
    margin: 0 !important;
  }
}
.cid-tHWjeFymd7 .navbar-dropdown {
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap;
}
.cid-tHWjeFymd7 .nav-link:focus {
  outline: none;
}
.cid-tHWjeFymd7 .navbar-toggler {
  position: relative;
}
.cid-tHWjeFymd7 .dropdown-item.active,
.cid-tHWjeFymd7 .dropdown-item:active {
  background: #3b5abb;
  color: initial;
}
.cid-sgzIVnTtC4 {
  overflow-x: hidden !important;
}
.cid-sgzIVnTtC4,
.cid-sgzIVnTtC4 .scroll-wrapper {
  padding-top: 210px;
  padding-bottom: 45px;
}
.cid-sgzIVnTtC4 .mbr-section-title {
  color: #ffffff;
}
.cid-sgzIVnTtC4 .mbr-section-title span {
  color: #6592e6;
}
.cid-sgzIVnTtC4 .mbr-text {
  color: #efefef;
  letter-spacing: 5px;
  font-weight: 100;
}
.cid-sgzIVnTtC4 .scroll-wrapper {
  top: 0;
  width: 100%;
  height: 100%;
  background-position: 50% 50%;
  background-size: cover;
  position: absolute;
  background-repeat: repeat;
  z-index: 0;
  -webkit-animation-duration: 29s !important;
  animation-duration: 29s;
  background-image: url("../../../assets/images/mbr-1-1920x1080.jpg");
  -webkit-animation: scroll-wrapper linear infinite;
  -moz-animation: scroll-wrapper linear infinite;
  -o-animation: scroll-wrapper linear infinite;
  animation: scroll-wrapper linear infinite;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
}
.cid-sgzIVnTtC4 .scroll-wrapper.second {
  left: calc(100% - 1px);
}
.cid-sgzIVnTtC4 .mbr-overlay {
  z-index: 1;
}
.cid-sgzIVnTtC4 .block-content {
  z-index: 2;
}
@keyframes scroll-wrapper {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}
@-webkit-keyframes scroll-wrapper {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}
@-moz-keyframes scroll-wrapper {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}
@-o-keyframes scroll-wrapper {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}
.cid-sgzK8yNjmR {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-sgzK8yNjmR .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-sgzK8yNjmR .image-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-sgzK8yNjmR .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-sgzK8yNjmR .mbr-section-title {
  text-align: center;
}
.cid-sgzK8yNjmR .mbr-text,
.cid-sgzK8yNjmR .mbr-section-btn {
  text-align: center;
}
.cid-tHVVtUfQjw {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-tHVVtUfQjw .mbr-fallback-image.disabled {
  display: none;
}
.cid-tHVVtUfQjw .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tHVVtUfQjw .mbr-section-title,
.cid-tHVVtUfQjw .mbr-section-subtitle {
  text-align: center;
}
.cid-tHVVtUfQjw .cost {
  word-break: normal;
}
.cid-tHVVtUfQjw .card-wrapper {
  margin-bottom: 2rem;
  border-radius: 4px;
  background: #fafafa;
}
.cid-tHVVtUfQjw .card-wrapper .top-line {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (min-width: 768px) {
  .cid-tHVVtUfQjw .card-wrapper {
    padding: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-tHVVtUfQjw .card-wrapper {
    padding: 1rem;
  }
}
.cid-tHVVtUfQjw .card-title {
  color: #149dcc;
}
.cid-sgzMqAKxAK {
  padding-top: 0px;
  padding-bottom: 30px;
  background-image: url("../../../assets/images/background6.jpg");
}
.cid-sgzMqAKxAK .container-fluid {
  padding: 0 3rem;
}
.cid-sgzMqAKxAK .mbr-section-subtitle {
  color: #767676;
}
.cid-sgzMqAKxAK .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-sgzMqAKxAK .table-wrapper {
  margin: 0 auto;
}
.cid-sgzMqAKxAK table {
  width: 100% !important;
  margin-top: 6px;
  margin-bottom: 0;
}
.cid-sgzMqAKxAK table thead tr {
  border: none !important;
}
.cid-sgzMqAKxAK table th {
  padding: .5rem 1rem;
  transition: all .2s;
  text-align: center;
  border-color: #5b5b5b;
  border-top: none;
  color: white;
  vertical-align: middle;
}
.cid-sgzMqAKxAK table tr td {
  border-color: #c1c1c1;
}
.cid-sgzMqAKxAK table td {
  padding: .5rem 1.6rem;
  vertical-align: middle;
}
.cid-sgzMqAKxAK tr:hover {
  background-color: #ffffff !important;
}
.cid-sgzMqAKxAK th:after,
.cid-sgzMqAKxAK th:before {
  display: none !important;
}
.cid-sgzMqAKxAK .dataTables_scrollHeadInner {
  margin-left: auto;
  margin-right: auto;
}
.cid-sgzMqAKxAK .dataTables_scrollHeadInner .table {
  width: 100% !important;
}
@media (max-width: 767px) {
  .cid-sgzMqAKxAK table th,
  .cid-sgzMqAKxAK table td {
    padding: .75rem;
  }
}
.cid-sgzMqAKxAK .body-item {
  text-align: center;
}
.cid-sgzMqAKxAK .mbr-text {
  color: #767676;
}
.cid-sgzMqAKxAK .head-item {
  color: #232323;
}
.cid-tHVPt7oAhF {
  padding-top: 30px;
  padding-bottom: 15px;
  background-image: url("../../../assets/images/mbr-13-1920x1280.jpg");
}
.cid-tHVPt7oAhF .listico {
  padding-right: 1rem;
  font-size: 1.3rem;
}
.cid-tHVPt7oAhF .navbar-logo {
  width: 80px;
  margin-bottom: 10px;
}
.cid-tHVPt7oAhF .mbr-text {
  color: #444;
}
.cid-tHVPt7oAhF h5 {
  margin-bottom: 0;
}
.cid-tHVPt7oAhF .navbar-brand {
  margin: 0rem;
  width: 100%;
}
.cid-tHVPt7oAhF .list-item {
  display: flex;
  padding-top: 10px;
  padding-bottom: 10px;
  -webkit-align-items: center;
  align-items: center;
}
.cid-tHVPt7oAhF .tips {
  height: 90px;
  width: 90px;
  border-radius: 6px;
  margin: 4px;
  object-fit: cover;
  display: inline;
}
.cid-tHVPt7oAhF .socicon {
  font-size: 1.3rem;
  background: #ff4a52;
  border-radius: 100%;
  width: 38px;
  height: 38px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-tHVPt7oAhF .social-list {
  display: flex;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-tHVPt7oAhF .social-list .soc-item {
  margin: 0 0.3rem;
}
.cid-tHVPt7oAhF .social-list a {
  margin: 0;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-tHVPt7oAhF .social-list a:hover {
  opacity: 0.4;
}
.cid-tHVPt7oAhF .media-container-row > div {
  padding: 0px;
}
.cid-tHVPt7oAhF .text2 {
  color: #6592e6;
  text-align: left;
}
.cid-tHVPt7oAhF .group-title {
  text-align: left;
  color: #e6c63b;
}
.cid-tHVPt7oAhF .group-title SPAN {
  color: #ffffff;
}
.cid-tHVPt7oAhF .links {
  color: #ffffff;
  line-height: 1.6;
}
@media (max-width: 991px) {
  .cid-tHVPt7oAhF .col-sm-12 {
    margin-bottom: 2rem;
  }
  .cid-tHVPt7oAhF .social-list,
  .cid-tHVPt7oAhF .img-list {
    -webkit-justify-content: center;
    justify-content: center;
    text-align: center;
  }
  .cid-tHVPt7oAhF h3 {
    margin-bottom: 10px;
  }
  .cid-tHVPt7oAhF .navbar-brand {
    text-align: center;
  }
}
.cid-tHVPt7oAhF .links SPAN {
  color: #9e9e9e;
}
.cid-siM30LrbO4 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #232323;
}
.cid-tHWjeFymd7 .navbar {
  padding: 0.5rem 0;
  background: #ffffff;
  transition: none;
  min-height: 50px;
}
.cid-tHWjeFymd7 .navbar-fixed-top {
  padding-top: 0;
}
.cid-tHWjeFymd7 .navbar-collapse {
  -ms-flex-preferred-size: auto;
  -webkit-flex-basis: auto;
  flex-basis: auto;
}
.cid-tHWjeFymd7 .dropdown-item {
  padding: 0;
}
.cid-tHWjeFymd7 .dropdown-menu {
  border: 0px solid lightgray;
  background: #3b5abb !important;
}
.cid-tHWjeFymd7 .menu-content-top {
  max-width: 1500px;
  display: none;
  padding: 0rem 2rem;
  margin: auto;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  overflow: hidden;
  transition: min-height 0.25s ease-in-out;
}
.cid-tHWjeFymd7 .menu-bottom {
  margin: auto;
  width: 100%;
  background: #3b5abb;
  display: flex;
  padding: 0 2rem;
  position: relative;
}
.cid-tHWjeFymd7 .navbar-dropdown.bg-color.transparent.opened {
  background: #ffffff;
}
.cid-tHWjeFymd7 a {
  font-style: normal;
}
.cid-tHWjeFymd7 .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  top: -0.2em;
  text-decoration: none;
}
.cid-tHWjeFymd7 .nav-item a {
  padding: 0rem 0 !important;
  margin: 0rem !important;
}
.cid-tHWjeFymd7 .dropdown-item:before {
  font-family: MobiriseIcons !important;
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-tHWjeFymd7 .content-text {
  margin-bottom: 0;
}
.cid-tHWjeFymd7 .navbar-nav {
  position: relative;
  min-height: 49px;
  -ms-flex-direction: row;
  -webkit-flex-direction: row;
  flex-direction: row;
}
@media (min-width: 992px) {
  .cid-tHWjeFymd7 .navbar-nav .main-menu-animated-line {
    position: absolute;
    left: 0;
    width: 0;
    height: 0;
    z-index: 100;
    border-top: 4px solid #6592e6;
    -webkit-transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
    -moz-transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
    transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
  }
  .cid-tHWjeFymd7 .navbar-nav .main-menu-animated-line.bottom {
    bottom: 0;
  }
}
.cid-tHWjeFymd7 .navbar-nav .nav-item span {
  padding-right: 0;
}
.cid-tHWjeFymd7 .navbar-nav .nav-item a {
  margin: 0 1.3rem !important;
}
.cid-tHWjeFymd7 .display-4 > .mbr-iconfont {
  font-size: 1.43em;
}
.cid-tHWjeFymd7 .display-4 > .btn > .mbr-iconfont {
  font-size: 1.43em;
}
.cid-tHWjeFymd7 .nav-dropdown .dropdown-item {
  font-weight: 400;
}
.cid-tHWjeFymd7 .navbar-buttons.mbr-section-btn {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-tHWjeFymd7 .nav-dropdown .link {
  font-weight: 400;
}
.cid-tHWjeFymd7 .menu .navbar-brand .logo-text-part {
  vertical-align: top;
}
.cid-tHWjeFymd7 .content-right-side {
  text-align: center;
}
.cid-tHWjeFymd7 .content-right-side .content-link {
  margin-left: 2rem;
}
.cid-tHWjeFymd7 .content-right-side .content-link span {
  vertical-align: middle;
  padding-right: 1rem;
}
.cid-tHWjeFymd7 .widget-icon {
  display: inline-block;
  padding-right: 1rem;
  font-size: 1.65rem;
}
.cid-tHWjeFymd7 .info-widget {
  padding-left: 2rem;
  padding-top: 0.5rem;
  padding-right: 3rem;
  border-left: 1px solid rgba(0, 0, 0, 0.12);
}
.cid-tHWjeFymd7 .menu-content-right {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-tHWjeFymd7 .menu-content-right .info-widget:last-child {
  padding-right: 0;
}
.cid-tHWjeFymd7 .menu-content-right .info-widget:first-child {
  padding-left: 0;
  border-left: none;
}
.cid-tHWjeFymd7 .widget-content {
  display: inline-block;
  vertical-align: top;
  text-align: left;
}
.cid-tHWjeFymd7 .widget-content .widget-title {
  font-weight: 600;
  margin-bottom: 7px;
}
.cid-tHWjeFymd7 .widget-content .widget-text {
  margin-bottom: 0;
}
@media (min-width: 992px) {
  .cid-tHWjeFymd7 .navbar .menu-content-top {
    display: flex;
    min-height: 83px;
    height: 100%;
  }
  .cid-tHWjeFymd7 .content-right-side {
    text-align: right;
    -webkit-flex-wrap: nowrap;
    flex-wrap: nowrap;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-tHWjeFymd7 .menu-content-top {
    border-bottom: 0px solid rgba(0, 0, 0, 0.12);
  }
  .cid-tHWjeFymd7 .navbar {
    display: block;
    padding: 0;
  }
  .cid-tHWjeFymd7 .navbar .menu-logo {
    margin-right: auto;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-tHWjeFymd7 .navbar:not(.navbar-short) .navbar-collapse {
    max-height: calc(100vh - 5.8rem - 4.5rem);
  }
  .cid-tHWjeFymd7 .navbar.navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
    -webkit-align-self: initial;
    align-self: auto;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    z-index: 101;
    min-height: 49px;
  }
  .cid-tHWjeFymd7 .dropdown-item:hover:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    width: 16px;
  }
  .cid-tHWjeFymd7 .navbar-toggler {
    display: none;
  }
  .cid-tHWjeFymd7 .navbar-collapse {
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
  }
}
.cid-tHWjeFymd7 .navbar-short .menu-content-top {
  height: 0;
  min-height: 0;
  border: none;
}
.cid-tHWjeFymd7 .btn {
  display: inline-flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-tHWjeFymd7 .btn .mbr-iconfont {
  font-size: 1.2em;
}
.cid-tHWjeFymd7 .menu-logo {
  margin-right: auto;
}
.cid-tHWjeFymd7 .menu-logo .navbar-brand {
  display: flex;
  margin-left: 1.5rem;
  padding: 0.5rem 0;
  transition: padding 0.2s;
  min-height: 3.8rem;
  -webkit-align-items: center;
  align-items: center;
}
.cid-tHWjeFymd7 .menu-logo .navbar-brand .navbar-caption-wrap {
  display: -webkit-flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 20rem;
  margin: 0.3rem 0;
}
.cid-tHWjeFymd7 .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-tHWjeFymd7 .menu-logo .navbar-brand .navbar-logo {
  font-size: 3rem;
  transition: font-size 0.25s;
}
.cid-tHWjeFymd7 .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
  width: auto;
}
.cid-tHWjeFymd7 .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-tHWjeFymd7 .navbar-toggleable-sm .navbar-collapse {
  width: auto;
}
.cid-tHWjeFymd7 .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  padding-left: 0;
}
.cid-tHWjeFymd7 .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-tHWjeFymd7 .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-tHWjeFymd7 .dropdown .dropdown-menu {
  background: #ffffff;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-tHWjeFymd7 .dropdown .dropdown-menu {
    overflow: hidden;
  }
}
.cid-tHWjeFymd7 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-tHWjeFymd7 .dropdown .dropdown-menu .dropdown-item::after {
  right: -0.5rem;
}
.cid-tHWjeFymd7 .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-tHWjeFymd7 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-tHWjeFymd7 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-tHWjeFymd7 .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0rem;
}
.cid-tHWjeFymd7 .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tHWjeFymd7 .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  -webkit-transform: translateY(100%);
  transform: translateY(100%);
  z-index: 1000;
}
.cid-tHWjeFymd7 .navbar.navbar-short {
  min-height: 50px;
  transition: all 0.2s;
}
.cid-tHWjeFymd7 .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-tHWjeFymd7 .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-tHWjeFymd7 .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
  width: auto;
}
.cid-tHWjeFymd7 .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-tHWjeFymd7 button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all 0.2s;
  margin: 1rem 0.8rem;
  -webkit-align-self: center;
  align-self: center;
}
.cid-tHWjeFymd7 button.navbar-toggler:focus {
  outline: none;
}
.cid-tHWjeFymd7 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #bbbbbb;
}
.cid-tHWjeFymd7 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tHWjeFymd7 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tHWjeFymd7 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tHWjeFymd7 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tHWjeFymd7 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tHWjeFymd7 nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tHWjeFymd7 nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tHWjeFymd7 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tHWjeFymd7 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tHWjeFymd7 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0em 1.5em 0em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tHWjeFymd7 .collapsed .btn {
  display: flex;
}
.cid-tHWjeFymd7 .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-tHWjeFymd7 .collapsed .navbar-collapse.collapsing,
.cid-tHWjeFymd7 .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-tHWjeFymd7 .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-tHWjeFymd7 .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-tHWjeFymd7 .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-tHWjeFymd7 .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-tHWjeFymd7 .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
.cid-tHWjeFymd7 .collapsed .navbar-collapse.show .navbar-nav .nav-item:last-child {
  margin-bottom: 1rem;
}
.cid-tHWjeFymd7 .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-tHWjeFymd7 .collapsed .navbar-collapse.show .navbar-buttons {
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  text-align: center;
}
.cid-tHWjeFymd7 .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-tHWjeFymd7 .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .cid-tHWjeFymd7 .collapsed .dropdown .dropdown-menu {
    overflow: hidden;
  }
}
.cid-tHWjeFymd7 .collapsed button.navbar-toggler {
  display: block;
}
.cid-tHWjeFymd7 .collapsed .navbar-brand {
  margin-left: 1rem !important;
  margin-top: 0.5rem;
}
.cid-tHWjeFymd7 .collapsed .navbar-toggleable-sm {
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-tHWjeFymd7 .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: 0.5s;
  transition-property: opacity, padding, height;
}
.cid-tHWjeFymd7 .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-tHWjeFymd7 .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-tHWjeFymd7 .collapsed .dropdown .dropdown-toggle[data-toggle='dropdown-submenu']::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 0.3em;
  vertical-align: middle;
  content: '';
  border-top: 0.3em solid;
  border-right: 0.3em solid transparent;
  border-left: 0.3em solid transparent;
}
.cid-tHWjeFymd7 .collapsed .menu-bottom {
  -webkit-flex-direction: column-reverse;
  flex-direction: column-reverse;
  -webkit-justify-content: center;
  justify-content: center;
}
@media (max-width: 991px) {
  .cid-tHWjeFymd7 .navbar-collapse {
    padding-bottom: 1rem;
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-tHWjeFymd7 .navbar-collapse.collapsing,
  .cid-tHWjeFymd7 .navbar-collapse.show {
    display: block !important;
  }
  .cid-tHWjeFymd7 .navbar-collapse.collapsing .navbar-nav,
  .cid-tHWjeFymd7 .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-tHWjeFymd7 .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-tHWjeFymd7 .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-tHWjeFymd7 .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
  .cid-tHWjeFymd7 .navbar-collapse.show .navbar-nav .nav-item:last-child {
    margin-bottom: 1rem;
  }
  .cid-tHWjeFymd7 .navbar-collapse.collapsing .navbar-buttons,
  .cid-tHWjeFymd7 .navbar-collapse.show .navbar-buttons {
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    text-align: center;
  }
  .cid-tHWjeFymd7 .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-tHWjeFymd7 .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-tHWjeFymd7 .menu-bottom {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
    -webkit-justify-content: center;
    justify-content: center;
  }
  .cid-tHWjeFymd7 img {
    height: 3.8rem !important;
  }
  .cid-tHWjeFymd7 .btn {
    display: flex;
  }
  .cid-tHWjeFymd7 button.navbar-toggler {
    display: block;
  }
  .cid-tHWjeFymd7 .navbar-brand {
    margin-left: 1rem !important;
    margin-top: 0.5rem;
  }
  .cid-tHWjeFymd7 .navbar-toggleable-sm {
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .cid-tHWjeFymd7 .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: 0.5s;
    transition-property: opacity, padding, height;
  }
  .cid-tHWjeFymd7 .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 0rem 0;
    visibility: visible;
  }
  .cid-tHWjeFymd7 .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-tHWjeFymd7 .dropdown .dropdown-toggle[data-toggle='dropdown-submenu']::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: 0.3em;
    vertical-align: middle;
    content: '';
    border-top: 0.3em solid;
    border-right: 0.3em solid transparent;
    border-left: 0.3em solid transparent;
  }
  .cid-tHWjeFymd7 .navbar-buttons.mbr-section-btn {
    width: 100%;
  }
  .cid-tHWjeFymd7 .dropdown .dropdown-menu .dropdown-item {
    padding: 0em 1.5em 0em 1.5em !important;
    transition: none;
    margin: 0 !important;
  }
}
.cid-tHWjeFymd7 .navbar-dropdown {
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap;
}
.cid-tHWjeFymd7 .nav-link:focus {
  outline: none;
}
.cid-tHWjeFymd7 .navbar-toggler {
  position: relative;
}
.cid-tHWjeFymd7 .dropdown-item.active,
.cid-tHWjeFymd7 .dropdown-item:active {
  background: #3b5abb;
  color: initial;
}
.cid-tHWjeFymd7 .navbar {
  padding: 0.5rem 0;
  background: #ffffff;
  transition: none;
  min-height: 50px;
}
.cid-tHWjeFymd7 .navbar-fixed-top {
  padding-top: 0;
}
.cid-tHWjeFymd7 .navbar-collapse {
  -ms-flex-preferred-size: auto;
  -webkit-flex-basis: auto;
  flex-basis: auto;
}
.cid-tHWjeFymd7 .dropdown-item {
  padding: 0;
}
.cid-tHWjeFymd7 .dropdown-menu {
  border: 0px solid lightgray;
  background: #3b5abb !important;
}
.cid-tHWjeFymd7 .menu-content-top {
  max-width: 1500px;
  display: none;
  padding: 0rem 2rem;
  margin: auto;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  overflow: hidden;
  transition: min-height 0.25s ease-in-out;
}
.cid-tHWjeFymd7 .menu-bottom {
  margin: auto;
  width: 100%;
  background: #3b5abb;
  display: flex;
  padding: 0 2rem;
  position: relative;
}
.cid-tHWjeFymd7 .navbar-dropdown.bg-color.transparent.opened {
  background: #ffffff;
}
.cid-tHWjeFymd7 a {
  font-style: normal;
}
.cid-tHWjeFymd7 .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  top: -0.2em;
  text-decoration: none;
}
.cid-tHWjeFymd7 .nav-item a {
  padding: 0rem 0 !important;
  margin: 0rem !important;
}
.cid-tHWjeFymd7 .dropdown-item:before {
  font-family: MobiriseIcons !important;
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-tHWjeFymd7 .content-text {
  margin-bottom: 0;
}
.cid-tHWjeFymd7 .navbar-nav {
  position: relative;
  min-height: 49px;
  -ms-flex-direction: row;
  -webkit-flex-direction: row;
  flex-direction: row;
}
@media (min-width: 992px) {
  .cid-tHWjeFymd7 .navbar-nav .main-menu-animated-line {
    position: absolute;
    left: 0;
    width: 0;
    height: 0;
    z-index: 100;
    border-top: 4px solid #6592e6;
    -webkit-transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
    -moz-transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
    transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
  }
  .cid-tHWjeFymd7 .navbar-nav .main-menu-animated-line.bottom {
    bottom: 0;
  }
}
.cid-tHWjeFymd7 .navbar-nav .nav-item span {
  padding-right: 0;
}
.cid-tHWjeFymd7 .navbar-nav .nav-item a {
  margin: 0 1.3rem !important;
}
.cid-tHWjeFymd7 .display-4 > .mbr-iconfont {
  font-size: 1.43em;
}
.cid-tHWjeFymd7 .display-4 > .btn > .mbr-iconfont {
  font-size: 1.43em;
}
.cid-tHWjeFymd7 .nav-dropdown .dropdown-item {
  font-weight: 400;
}
.cid-tHWjeFymd7 .navbar-buttons.mbr-section-btn {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-tHWjeFymd7 .nav-dropdown .link {
  font-weight: 400;
}
.cid-tHWjeFymd7 .menu .navbar-brand .logo-text-part {
  vertical-align: top;
}
.cid-tHWjeFymd7 .content-right-side {
  text-align: center;
}
.cid-tHWjeFymd7 .content-right-side .content-link {
  margin-left: 2rem;
}
.cid-tHWjeFymd7 .content-right-side .content-link span {
  vertical-align: middle;
  padding-right: 1rem;
}
.cid-tHWjeFymd7 .widget-icon {
  display: inline-block;
  padding-right: 1rem;
  font-size: 1.65rem;
}
.cid-tHWjeFymd7 .info-widget {
  padding-left: 2rem;
  padding-top: 0.5rem;
  padding-right: 3rem;
  border-left: 1px solid rgba(0, 0, 0, 0.12);
}
.cid-tHWjeFymd7 .menu-content-right {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-tHWjeFymd7 .menu-content-right .info-widget:last-child {
  padding-right: 0;
}
.cid-tHWjeFymd7 .menu-content-right .info-widget:first-child {
  padding-left: 0;
  border-left: none;
}
.cid-tHWjeFymd7 .widget-content {
  display: inline-block;
  vertical-align: top;
  text-align: left;
}
.cid-tHWjeFymd7 .widget-content .widget-title {
  font-weight: 600;
  margin-bottom: 7px;
}
.cid-tHWjeFymd7 .widget-content .widget-text {
  margin-bottom: 0;
}
@media (min-width: 992px) {
  .cid-tHWjeFymd7 .navbar .menu-content-top {
    display: flex;
    min-height: 83px;
    height: 100%;
  }
  .cid-tHWjeFymd7 .content-right-side {
    text-align: right;
    -webkit-flex-wrap: nowrap;
    flex-wrap: nowrap;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-tHWjeFymd7 .menu-content-top {
    border-bottom: 0px solid rgba(0, 0, 0, 0.12);
  }
  .cid-tHWjeFymd7 .navbar {
    display: block;
    padding: 0;
  }
  .cid-tHWjeFymd7 .navbar .menu-logo {
    margin-right: auto;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-tHWjeFymd7 .navbar:not(.navbar-short) .navbar-collapse {
    max-height: calc(100vh - 5.8rem - 4.5rem);
  }
  .cid-tHWjeFymd7 .navbar.navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
    -webkit-align-self: initial;
    align-self: auto;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    z-index: 101;
    min-height: 49px;
  }
  .cid-tHWjeFymd7 .dropdown-item:hover:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    width: 16px;
  }
  .cid-tHWjeFymd7 .navbar-toggler {
    display: none;
  }
  .cid-tHWjeFymd7 .navbar-collapse {
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
  }
}
.cid-tHWjeFymd7 .navbar-short .menu-content-top {
  height: 0;
  min-height: 0;
  border: none;
}
.cid-tHWjeFymd7 .btn {
  display: inline-flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-tHWjeFymd7 .btn .mbr-iconfont {
  font-size: 1.2em;
}
.cid-tHWjeFymd7 .menu-logo {
  margin-right: auto;
}
.cid-tHWjeFymd7 .menu-logo .navbar-brand {
  display: flex;
  margin-left: 1.5rem;
  padding: 0.5rem 0;
  transition: padding 0.2s;
  min-height: 3.8rem;
  -webkit-align-items: center;
  align-items: center;
}
.cid-tHWjeFymd7 .menu-logo .navbar-brand .navbar-caption-wrap {
  display: -webkit-flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 20rem;
  margin: 0.3rem 0;
}
.cid-tHWjeFymd7 .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-tHWjeFymd7 .menu-logo .navbar-brand .navbar-logo {
  font-size: 3rem;
  transition: font-size 0.25s;
}
.cid-tHWjeFymd7 .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
  width: auto;
}
.cid-tHWjeFymd7 .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-tHWjeFymd7 .navbar-toggleable-sm .navbar-collapse {
  width: auto;
}
.cid-tHWjeFymd7 .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  padding-left: 0;
}
.cid-tHWjeFymd7 .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-tHWjeFymd7 .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-tHWjeFymd7 .dropdown .dropdown-menu {
  background: #ffffff;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-tHWjeFymd7 .dropdown .dropdown-menu {
    overflow: hidden;
  }
}
.cid-tHWjeFymd7 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-tHWjeFymd7 .dropdown .dropdown-menu .dropdown-item::after {
  right: -0.5rem;
}
.cid-tHWjeFymd7 .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-tHWjeFymd7 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-tHWjeFymd7 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-tHWjeFymd7 .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0rem;
}
.cid-tHWjeFymd7 .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tHWjeFymd7 .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  -webkit-transform: translateY(100%);
  transform: translateY(100%);
  z-index: 1000;
}
.cid-tHWjeFymd7 .navbar.navbar-short {
  min-height: 50px;
  transition: all 0.2s;
}
.cid-tHWjeFymd7 .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-tHWjeFymd7 .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-tHWjeFymd7 .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
  width: auto;
}
.cid-tHWjeFymd7 .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-tHWjeFymd7 button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all 0.2s;
  margin: 1rem 0.8rem;
  -webkit-align-self: center;
  align-self: center;
}
.cid-tHWjeFymd7 button.navbar-toggler:focus {
  outline: none;
}
.cid-tHWjeFymd7 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #bbbbbb;
}
.cid-tHWjeFymd7 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tHWjeFymd7 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tHWjeFymd7 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tHWjeFymd7 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tHWjeFymd7 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tHWjeFymd7 nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tHWjeFymd7 nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tHWjeFymd7 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tHWjeFymd7 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tHWjeFymd7 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0em 1.5em 0em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tHWjeFymd7 .collapsed .btn {
  display: flex;
}
.cid-tHWjeFymd7 .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-tHWjeFymd7 .collapsed .navbar-collapse.collapsing,
.cid-tHWjeFymd7 .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-tHWjeFymd7 .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-tHWjeFymd7 .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-tHWjeFymd7 .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-tHWjeFymd7 .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-tHWjeFymd7 .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
.cid-tHWjeFymd7 .collapsed .navbar-collapse.show .navbar-nav .nav-item:last-child {
  margin-bottom: 1rem;
}
.cid-tHWjeFymd7 .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-tHWjeFymd7 .collapsed .navbar-collapse.show .navbar-buttons {
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  text-align: center;
}
.cid-tHWjeFymd7 .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-tHWjeFymd7 .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .cid-tHWjeFymd7 .collapsed .dropdown .dropdown-menu {
    overflow: hidden;
  }
}
.cid-tHWjeFymd7 .collapsed button.navbar-toggler {
  display: block;
}
.cid-tHWjeFymd7 .collapsed .navbar-brand {
  margin-left: 1rem !important;
  margin-top: 0.5rem;
}
.cid-tHWjeFymd7 .collapsed .navbar-toggleable-sm {
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-tHWjeFymd7 .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: 0.5s;
  transition-property: opacity, padding, height;
}
.cid-tHWjeFymd7 .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-tHWjeFymd7 .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-tHWjeFymd7 .collapsed .dropdown .dropdown-toggle[data-toggle='dropdown-submenu']::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 0.3em;
  vertical-align: middle;
  content: '';
  border-top: 0.3em solid;
  border-right: 0.3em solid transparent;
  border-left: 0.3em solid transparent;
}
.cid-tHWjeFymd7 .collapsed .menu-bottom {
  -webkit-flex-direction: column-reverse;
  flex-direction: column-reverse;
  -webkit-justify-content: center;
  justify-content: center;
}
@media (max-width: 991px) {
  .cid-tHWjeFymd7 .navbar-collapse {
    padding-bottom: 1rem;
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-tHWjeFymd7 .navbar-collapse.collapsing,
  .cid-tHWjeFymd7 .navbar-collapse.show {
    display: block !important;
  }
  .cid-tHWjeFymd7 .navbar-collapse.collapsing .navbar-nav,
  .cid-tHWjeFymd7 .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-tHWjeFymd7 .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-tHWjeFymd7 .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-tHWjeFymd7 .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
  .cid-tHWjeFymd7 .navbar-collapse.show .navbar-nav .nav-item:last-child {
    margin-bottom: 1rem;
  }
  .cid-tHWjeFymd7 .navbar-collapse.collapsing .navbar-buttons,
  .cid-tHWjeFymd7 .navbar-collapse.show .navbar-buttons {
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    text-align: center;
  }
  .cid-tHWjeFymd7 .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-tHWjeFymd7 .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-tHWjeFymd7 .menu-bottom {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
    -webkit-justify-content: center;
    justify-content: center;
  }
  .cid-tHWjeFymd7 img {
    height: 3.8rem !important;
  }
  .cid-tHWjeFymd7 .btn {
    display: flex;
  }
  .cid-tHWjeFymd7 button.navbar-toggler {
    display: block;
  }
  .cid-tHWjeFymd7 .navbar-brand {
    margin-left: 1rem !important;
    margin-top: 0.5rem;
  }
  .cid-tHWjeFymd7 .navbar-toggleable-sm {
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .cid-tHWjeFymd7 .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: 0.5s;
    transition-property: opacity, padding, height;
  }
  .cid-tHWjeFymd7 .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 0rem 0;
    visibility: visible;
  }
  .cid-tHWjeFymd7 .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-tHWjeFymd7 .dropdown .dropdown-toggle[data-toggle='dropdown-submenu']::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: 0.3em;
    vertical-align: middle;
    content: '';
    border-top: 0.3em solid;
    border-right: 0.3em solid transparent;
    border-left: 0.3em solid transparent;
  }
  .cid-tHWjeFymd7 .navbar-buttons.mbr-section-btn {
    width: 100%;
  }
  .cid-tHWjeFymd7 .dropdown .dropdown-menu .dropdown-item {
    padding: 0em 1.5em 0em 1.5em !important;
    transition: none;
    margin: 0 !important;
  }
}
.cid-tHWjeFymd7 .navbar-dropdown {
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap;
}
.cid-tHWjeFymd7 .nav-link:focus {
  outline: none;
}
.cid-tHWjeFymd7 .navbar-toggler {
  position: relative;
}
.cid-tHWjeFymd7 .dropdown-item.active,
.cid-tHWjeFymd7 .dropdown-item:active {
  background: #3b5abb;
  color: initial;
}
.cid-sgAqByi0pH {
  overflow-x: hidden !important;
}
.cid-sgAqByi0pH,
.cid-sgAqByi0pH .scroll-wrapper {
  padding-top: 225px;
  padding-bottom: 45px;
}
.cid-sgAqByi0pH .mbr-section-title {
  color: #ffffff;
}
.cid-sgAqByi0pH .mbr-section-title span {
  color: #6592e6;
}
.cid-sgAqByi0pH .mbr-text {
  color: #efefef;
  letter-spacing: 5px;
  font-weight: 100;
}
.cid-sgAqByi0pH .scroll-wrapper {
  top: 0;
  width: 100%;
  height: 100%;
  background-position: 50% 50%;
  background-size: cover;
  position: absolute;
  background-repeat: repeat;
  z-index: 0;
  -webkit-animation-duration: 29s !important;
  animation-duration: 29s;
  background-image: url("../../../assets/images/mbr-1-1920x1080.jpg");
  -webkit-animation: scroll-wrapper linear infinite;
  -moz-animation: scroll-wrapper linear infinite;
  -o-animation: scroll-wrapper linear infinite;
  animation: scroll-wrapper linear infinite;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
}
.cid-sgAqByi0pH .scroll-wrapper.second {
  left: calc(100% - 1px);
}
.cid-sgAqByi0pH .mbr-overlay {
  z-index: 1;
}
.cid-sgAqByi0pH .block-content {
  z-index: 2;
}
@keyframes scroll-wrapper {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}
@-webkit-keyframes scroll-wrapper {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}
@-moz-keyframes scroll-wrapper {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}
@-o-keyframes scroll-wrapper {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}
.cid-sgAqByP6bg {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-sgAqByP6bg .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-sgAqByP6bg .image-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-sgAqByP6bg .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-sgAqByP6bg .mbr-section-title {
  text-align: left;
  color: #149dcc;
}
.cid-sgAqByP6bg .mbr-text,
.cid-sgAqByP6bg .mbr-section-btn {
  text-align: left;
}
.cid-sgAyOw6cfe {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-sgAyOw6cfe .mbr-section-title {
  color: #0a1c44;
}
.cid-sgAyOw6cfe .mbr-section-subtitle {
  color: #353535;
}
.cid-sgAyjyM28v {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #efefef;
}
@media (max-width: 991px) {
  .cid-sgAyjyM28v .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-sgAyjyM28v .row {
  flex-direction: row-reverse;
}
.cid-sgAyjyM28v img {
  width: 100%;
}
.cid-sgAAfp7tvp {
  padding-top: 15px;
  padding-bottom: 30px;
  background-color: #f9f9f9;
}
.cid-sgAAfp7tvp .mbr-section-subtitle {
  color: #353535;
}
.cid-sgAAfp7tvp .container-table {
  margin: 0 auto;
}
.cid-sgAAfp7tvp .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-sgAAfp7tvp .dataTables_wrapper {
  display: block;
}
.cid-sgAAfp7tvp .dataTables_wrapper .search {
  margin-bottom: .5rem;
}
.cid-sgAAfp7tvp .dataTables_wrapper .table {
  overflow-x: auto;
}
.cid-sgAAfp7tvp table {
  width: 100% !important;
  margin-top: 6px;
  border: 1px solid #cccccc;
  margin-bottom: 0;
}
.cid-sgAAfp7tvp table th {
  border-top: none;
  transition: all .2s;
  border-bottom: none;
}
.cid-sgAAfp7tvp table th:hover {
  background: #cccccc;
  color: #000000;
}
.cid-sgAAfp7tvp table td {
  border-top: 1px solid #cccccc;
}
.cid-sgAAfp7tvp table.table {
  background: #ffffff;
}
.cid-sgAAfp7tvp .dataTables_filter {
  text-align: right;
  margin-bottom: .5rem;
}
.cid-sgAAfp7tvp .dataTables_filter label {
  display: inline;
  white-space: normal !important;
}
.cid-sgAAfp7tvp .dataTables_filter input {
  display: inline;
  width: auto;
  margin-left: .5rem;
  border-radius: 100px;
  padding-left: 1rem;
}
.cid-sgAAfp7tvp .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
  white-space: normal !important;
}
@media (max-width: 992px) {
  .cid-sgAAfp7tvp .dataTables_filter {
    text-align: center;
  }
}
@media (max-width: 350px) {
  .cid-sgAAfp7tvp .dataTables_filter {
    text-align: center;
  }
  .cid-sgAAfp7tvp .dataTables_filter input {
    width: 100% !important;
    margin-left: 0 !important;
  }
}
.cid-sgAAfp7tvp .head-item {
  text-align: center;
}
.cid-sgAAfp7tvp .body-item {
  text-align: center;
}
.cid-sgAAfp7tvp .mbr-section-title {
  color: #0a1c44;
}
.cid-sgADNNM2MH {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #e2e2e0;
}
.cid-sgADNNM2MH .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-sgADNNM2MH .image-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-sgADNNM2MH .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-sgADNNM2MH .mbr-section-title {
  text-align: left;
  color: #149dcc;
}
.cid-sgADNNM2MH .mbr-text,
.cid-sgADNNM2MH .mbr-section-btn {
  text-align: left;
}
.cid-sgAEoDqtb1 {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #e2e2e0;
}
.cid-sgAEoDqtb1 .mbr-section-subtitle {
  color: #353535;
}
.cid-sgAEoDqtb1 .container-table {
  margin: 0 auto;
}
.cid-sgAEoDqtb1 .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-sgAEoDqtb1 .dataTables_wrapper {
  display: block;
}
.cid-sgAEoDqtb1 .dataTables_wrapper .search {
  margin-bottom: .5rem;
}
.cid-sgAEoDqtb1 .dataTables_wrapper .table {
  overflow-x: auto;
}
.cid-sgAEoDqtb1 table {
  width: 100% !important;
  margin-top: 6px;
  border: 1px solid #cccccc;
  margin-bottom: 0;
}
.cid-sgAEoDqtb1 table th {
  border-top: none;
  transition: all .2s;
  border-bottom: none;
}
.cid-sgAEoDqtb1 table th:hover {
  background: #cccccc;
  color: #000000;
}
.cid-sgAEoDqtb1 table td {
  border-top: 1px solid #cccccc;
}
.cid-sgAEoDqtb1 table.table {
  background: #fafafa;
}
.cid-sgAEoDqtb1 .dataTables_filter {
  text-align: right;
  margin-bottom: .5rem;
}
.cid-sgAEoDqtb1 .dataTables_filter label {
  display: inline;
  white-space: normal !important;
}
.cid-sgAEoDqtb1 .dataTables_filter input {
  display: inline;
  width: auto;
  margin-left: .5rem;
  border-radius: 100px;
  padding-left: 1rem;
}
.cid-sgAEoDqtb1 .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
  white-space: normal !important;
}
@media (max-width: 992px) {
  .cid-sgAEoDqtb1 .dataTables_filter {
    text-align: center;
  }
}
@media (max-width: 350px) {
  .cid-sgAEoDqtb1 .dataTables_filter {
    text-align: center;
  }
  .cid-sgAEoDqtb1 .dataTables_filter input {
    width: 100% !important;
    margin-left: 0 !important;
  }
}
.cid-sgAEoDqtb1 .head-item {
  text-align: center;
}
.cid-sgAEoDqtb1 .body-item {
  text-align: center;
}
.cid-sgAEoDqtb1 .mbr-section-title {
  color: #0a1c44;
}
.cid-sgAF5S3zDw {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #f6f6f4;
}
.cid-sgAF5S3zDw .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-sgAF5S3zDw .image-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-sgAF5S3zDw .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-sgAF5S3zDw .mbr-section-title {
  text-align: left;
  color: #149dcc;
}
.cid-sgAF5S3zDw .mbr-text,
.cid-sgAF5S3zDw .mbr-section-btn {
  text-align: left;
}
.cid-sgAFnR2Rtr {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f6f6f4;
}
.cid-sgAFnR2Rtr .mbr-section-subtitle {
  color: #353535;
}
.cid-sgAFnR2Rtr .container-table {
  margin: 0 auto;
}
.cid-sgAFnR2Rtr .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-sgAFnR2Rtr .dataTables_wrapper {
  display: block;
}
.cid-sgAFnR2Rtr .dataTables_wrapper .search {
  margin-bottom: .5rem;
}
.cid-sgAFnR2Rtr .dataTables_wrapper .table {
  overflow-x: auto;
}
.cid-sgAFnR2Rtr table {
  width: 100% !important;
  margin-top: 6px;
  border: 1px solid #cccccc;
  margin-bottom: 0;
}
.cid-sgAFnR2Rtr table th {
  border-top: none;
  transition: all .2s;
  border-bottom: none;
}
.cid-sgAFnR2Rtr table th:hover {
  background: #cccccc;
  color: #000000;
}
.cid-sgAFnR2Rtr table td {
  border-top: 1px solid #cccccc;
}
.cid-sgAFnR2Rtr table.table {
  background: #ffffff;
}
.cid-sgAFnR2Rtr .dataTables_filter {
  text-align: right;
  margin-bottom: .5rem;
}
.cid-sgAFnR2Rtr .dataTables_filter label {
  display: inline;
  white-space: normal !important;
}
.cid-sgAFnR2Rtr .dataTables_filter input {
  display: inline;
  width: auto;
  margin-left: .5rem;
  border-radius: 100px;
  padding-left: 1rem;
}
.cid-sgAFnR2Rtr .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
  white-space: normal !important;
}
@media (max-width: 992px) {
  .cid-sgAFnR2Rtr .dataTables_filter {
    text-align: center;
  }
}
@media (max-width: 350px) {
  .cid-sgAFnR2Rtr .dataTables_filter {
    text-align: center;
  }
  .cid-sgAFnR2Rtr .dataTables_filter input {
    width: 100% !important;
    margin-left: 0 !important;
  }
}
.cid-sgAFnR2Rtr .head-item {
  text-align: left;
}
.cid-sgAFnR2Rtr .body-item {
  text-align: left;
}
.cid-sgAFnR2Rtr .mbr-section-title {
  color: #0a1c44;
}
.cid-sgABIJ7J9B {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-sgABIJ7J9B .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-sgABIJ7J9B .image-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-sgABIJ7J9B .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-sgABIJ7J9B .mbr-section-title {
  text-align: left;
  color: #149dcc;
}
.cid-sgABIJ7J9B .mbr-text,
.cid-sgABIJ7J9B .mbr-section-btn {
  text-align: left;
}
.cid-sgAGVBI6E4 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #f6f6f4;
}
.cid-sgAGVBI6E4 .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-sgAGVBI6E4 .image-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-sgAGVBI6E4 .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-sgAGVBI6E4 .mbr-section-title {
  text-align: left;
  color: #149dcc;
}
.cid-sgAGVBI6E4 .mbr-text,
.cid-sgAGVBI6E4 .mbr-section-btn {
  text-align: left;
}
.cid-tHVPyp3v9m {
  padding-top: 30px;
  padding-bottom: 15px;
  background-image: url("../../../assets/images/mbr-13-1920x1280.jpg");
}
.cid-tHVPyp3v9m .listico {
  padding-right: 1rem;
  font-size: 1.3rem;
}
.cid-tHVPyp3v9m .navbar-logo {
  width: 80px;
  margin-bottom: 10px;
}
.cid-tHVPyp3v9m .mbr-text {
  color: #444;
}
.cid-tHVPyp3v9m h5 {
  margin-bottom: 0;
}
.cid-tHVPyp3v9m .navbar-brand {
  margin: 0rem;
  width: 100%;
}
.cid-tHVPyp3v9m .list-item {
  display: flex;
  padding-top: 10px;
  padding-bottom: 10px;
  -webkit-align-items: center;
  align-items: center;
}
.cid-tHVPyp3v9m .tips {
  height: 90px;
  width: 90px;
  border-radius: 6px;
  margin: 4px;
  object-fit: cover;
  display: inline;
}
.cid-tHVPyp3v9m .socicon {
  font-size: 1.3rem;
  background: #ff4a52;
  border-radius: 100%;
  width: 38px;
  height: 38px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-tHVPyp3v9m .social-list {
  display: flex;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-tHVPyp3v9m .social-list .soc-item {
  margin: 0 0.3rem;
}
.cid-tHVPyp3v9m .social-list a {
  margin: 0;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-tHVPyp3v9m .social-list a:hover {
  opacity: 0.4;
}
.cid-tHVPyp3v9m .media-container-row > div {
  padding: 0px;
}
.cid-tHVPyp3v9m .text2 {
  color: #6592e6;
  text-align: left;
}
.cid-tHVPyp3v9m .group-title {
  text-align: left;
  color: #e6c63b;
}
.cid-tHVPyp3v9m .group-title SPAN {
  color: #ffffff;
}
.cid-tHVPyp3v9m .links {
  color: #ffffff;
  line-height: 1.6;
}
@media (max-width: 991px) {
  .cid-tHVPyp3v9m .col-sm-12 {
    margin-bottom: 2rem;
  }
  .cid-tHVPyp3v9m .social-list,
  .cid-tHVPyp3v9m .img-list {
    -webkit-justify-content: center;
    justify-content: center;
    text-align: center;
  }
  .cid-tHVPyp3v9m h3 {
    margin-bottom: 10px;
  }
  .cid-tHVPyp3v9m .navbar-brand {
    text-align: center;
  }
}
.cid-tHVPyp3v9m .links SPAN {
  color: #9e9e9e;
}
.cid-siM30LrbO4 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #232323;
}
.cid-sgAe56qn0W {
  overflow-x: hidden !important;
}
.cid-sgAe56qn0W,
.cid-sgAe56qn0W .scroll-wrapper {
  padding-top: 210px;
  padding-bottom: 30px;
}
.cid-sgAe56qn0W .mbr-section-title {
  color: #ffffff;
}
.cid-sgAe56qn0W .mbr-section-title span {
  color: #6592e6;
}
.cid-sgAe56qn0W .mbr-text {
  color: #efefef;
  letter-spacing: 5px;
  font-weight: 100;
}
.cid-sgAe56qn0W .scroll-wrapper {
  top: 0;
  width: 100%;
  height: 100%;
  background-position: 50% 50%;
  background-size: cover;
  position: absolute;
  background-repeat: repeat;
  z-index: 0;
  -webkit-animation-duration: 29s !important;
  animation-duration: 29s;
  background-image: url("../../../assets/images/mbr-3-1920x1080.jpg");
  -webkit-animation: scroll-wrapper linear infinite;
  -moz-animation: scroll-wrapper linear infinite;
  -o-animation: scroll-wrapper linear infinite;
  animation: scroll-wrapper linear infinite;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
}
.cid-sgAe56qn0W .scroll-wrapper.second {
  left: calc(100% - 1px);
}
.cid-sgAe56qn0W .mbr-overlay {
  z-index: 1;
}
.cid-sgAe56qn0W .block-content {
  z-index: 2;
}
@keyframes scroll-wrapper {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}
@-webkit-keyframes scroll-wrapper {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}
@-moz-keyframes scroll-wrapper {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}
@-o-keyframes scroll-wrapper {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}
.cid-sgAe56WL16 {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-sgAe56WL16 .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-sgAe56WL16 .image-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-sgAe56WL16 .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-sgAe56WL16 .mbr-section-title {
  text-align: left;
  color: #149dcc;
}
.cid-sgAe56WL16 .mbr-text,
.cid-sgAe56WL16 .mbr-section-btn {
  text-align: left;
}
.cid-tHVUaRcnJB {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-tHVUaRcnJB .mbr-fallback-image.disabled {
  display: none;
}
.cid-tHVUaRcnJB .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tHVUaRcnJB .mbr-section-title,
.cid-tHVUaRcnJB .mbr-section-subtitle {
  text-align: center;
}
.cid-tHVUaRcnJB .cost {
  word-break: normal;
}
.cid-tHVUaRcnJB .card-wrapper {
  margin-bottom: 2rem;
  border-radius: 4px;
  background: #fafafa;
}
.cid-tHVUaRcnJB .card-wrapper .top-line {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (min-width: 768px) {
  .cid-tHVUaRcnJB .card-wrapper {
    padding: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-tHVUaRcnJB .card-wrapper {
    padding: 1rem;
  }
}
.cid-tHVUaRcnJB .card-title {
  color: #149dcc;
}
.cid-sgAe57L6DM {
  padding-top: 45px;
  padding-bottom: 45px;
  background-image: url("../../../assets/images/background6.jpg");
}
.cid-sgAe57L6DM .container-fluid {
  padding: 0 3rem;
}
.cid-sgAe57L6DM .mbr-section-subtitle {
  color: #767676;
}
.cid-sgAe57L6DM .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-sgAe57L6DM .table-wrapper {
  margin: 0 auto;
}
.cid-sgAe57L6DM table {
  width: 100% !important;
  margin-top: 6px;
  margin-bottom: 0;
}
.cid-sgAe57L6DM table thead tr {
  border: none !important;
}
.cid-sgAe57L6DM table th {
  padding: 1.5rem 1rem;
  transition: all .2s;
  text-align: center;
  border-color: #5b5b5b;
  border-top: none;
  color: white;
  vertical-align: middle;
}
.cid-sgAe57L6DM table tr td {
  border-color: #c1c1c1;
}
.cid-sgAe57L6DM table td {
  padding: .5rem .5rem;
  vertical-align: middle;
}
.cid-sgAe57L6DM tr:hover {
  background-color: #ffffff !important;
}
.cid-sgAe57L6DM th:after,
.cid-sgAe57L6DM th:before {
  display: none !important;
}
.cid-sgAe57L6DM .dataTables_scrollHeadInner {
  margin-left: auto;
  margin-right: auto;
}
.cid-sgAe57L6DM .dataTables_scrollHeadInner .table {
  width: 100% !important;
}
@media (max-width: 767px) {
  .cid-sgAe57L6DM table th,
  .cid-sgAe57L6DM table td {
    padding: .75rem;
  }
}
.cid-sgAe57L6DM .body-item {
  text-align: left;
}
.cid-sgAe57L6DM .mbr-text {
  color: #767676;
}
.cid-sgAe57L6DM .head-item {
  color: #0a1c44;
  text-align: left;
}
.cid-sgAe57L6DM .mbr-section-subtitle,
.cid-sgAe57L6DM .body-item {
  color: #000000;
}
.cid-sgAifrHEFR {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-sgAifrHEFR .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-sgAifrHEFR .image-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-sgAifrHEFR .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-sgAifrHEFR .mbr-section-title {
  text-align: left;
  color: #149dcc;
}
.cid-sgAifrHEFR .mbr-text,
.cid-sgAifrHEFR .mbr-section-btn {
  text-align: left;
}
.cid-tHVS5H4YMm {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-tHVS5H4YMm .mbr-fallback-image.disabled {
  display: none;
}
.cid-tHVS5H4YMm .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tHVS5H4YMm .card-wrapper {
  display: flex;
}
@media (max-width: 991px) {
  .cid-tHVS5H4YMm .card-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-tHVS5H4YMm .mbr-iconfont {
  font-size: 2rem;
  color: #6592e6;
  padding-right: 1.5rem;
}
.cid-tHVS5H4YMm .card-title {
  color: #149dcc;
}
.cid-tHVQpEkHPH {
  padding-top: 30px;
  padding-bottom: 15px;
  background-image: url("../../../assets/images/mbr-13-1920x1280.jpg");
}
.cid-tHVQpEkHPH .listico {
  padding-right: 1rem;
  font-size: 1.3rem;
}
.cid-tHVQpEkHPH .navbar-logo {
  width: 80px;
  margin-bottom: 10px;
}
.cid-tHVQpEkHPH .mbr-text {
  color: #444;
}
.cid-tHVQpEkHPH h5 {
  margin-bottom: 0;
}
.cid-tHVQpEkHPH .navbar-brand {
  margin: 0rem;
  width: 100%;
}
.cid-tHVQpEkHPH .list-item {
  display: flex;
  padding-top: 10px;
  padding-bottom: 10px;
  -webkit-align-items: center;
  align-items: center;
}
.cid-tHVQpEkHPH .tips {
  height: 90px;
  width: 90px;
  border-radius: 6px;
  margin: 4px;
  object-fit: cover;
  display: inline;
}
.cid-tHVQpEkHPH .socicon {
  font-size: 1.3rem;
  background: #ff4a52;
  border-radius: 100%;
  width: 38px;
  height: 38px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-tHVQpEkHPH .social-list {
  display: flex;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-tHVQpEkHPH .social-list .soc-item {
  margin: 0 0.3rem;
}
.cid-tHVQpEkHPH .social-list a {
  margin: 0;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-tHVQpEkHPH .social-list a:hover {
  opacity: 0.4;
}
.cid-tHVQpEkHPH .media-container-row > div {
  padding: 0px;
}
.cid-tHVQpEkHPH .text2 {
  color: #6592e6;
  text-align: left;
}
.cid-tHVQpEkHPH .group-title {
  text-align: left;
  color: #e6c63b;
}
.cid-tHVQpEkHPH .group-title SPAN {
  color: #ffffff;
}
.cid-tHVQpEkHPH .links {
  color: #ffffff;
  line-height: 1.6;
}
@media (max-width: 991px) {
  .cid-tHVQpEkHPH .col-sm-12 {
    margin-bottom: 2rem;
  }
  .cid-tHVQpEkHPH .social-list,
  .cid-tHVQpEkHPH .img-list {
    -webkit-justify-content: center;
    justify-content: center;
    text-align: center;
  }
  .cid-tHVQpEkHPH h3 {
    margin-bottom: 10px;
  }
  .cid-tHVQpEkHPH .navbar-brand {
    text-align: center;
  }
}
.cid-tHVQpEkHPH .links SPAN {
  color: #9e9e9e;
}
.cid-siM30LrbO4 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #232323;
}
.cid-tHWjeFymd7 .navbar {
  padding: 0.5rem 0;
  background: #ffffff;
  transition: none;
  min-height: 50px;
}
.cid-tHWjeFymd7 .navbar-fixed-top {
  padding-top: 0;
}
.cid-tHWjeFymd7 .navbar-collapse {
  -ms-flex-preferred-size: auto;
  -webkit-flex-basis: auto;
  flex-basis: auto;
}
.cid-tHWjeFymd7 .dropdown-item {
  padding: 0;
}
.cid-tHWjeFymd7 .dropdown-menu {
  border: 0px solid lightgray;
  background: #3b5abb !important;
}
.cid-tHWjeFymd7 .menu-content-top {
  max-width: 1500px;
  display: none;
  padding: 0rem 2rem;
  margin: auto;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  overflow: hidden;
  transition: min-height 0.25s ease-in-out;
}
.cid-tHWjeFymd7 .menu-bottom {
  margin: auto;
  width: 100%;
  background: #3b5abb;
  display: flex;
  padding: 0 2rem;
  position: relative;
}
.cid-tHWjeFymd7 .navbar-dropdown.bg-color.transparent.opened {
  background: #ffffff;
}
.cid-tHWjeFymd7 a {
  font-style: normal;
}
.cid-tHWjeFymd7 .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  top: -0.2em;
  text-decoration: none;
}
.cid-tHWjeFymd7 .nav-item a {
  padding: 0rem 0 !important;
  margin: 0rem !important;
}
.cid-tHWjeFymd7 .dropdown-item:before {
  font-family: MobiriseIcons !important;
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-tHWjeFymd7 .content-text {
  margin-bottom: 0;
}
.cid-tHWjeFymd7 .navbar-nav {
  position: relative;
  min-height: 49px;
  -ms-flex-direction: row;
  -webkit-flex-direction: row;
  flex-direction: row;
}
@media (min-width: 992px) {
  .cid-tHWjeFymd7 .navbar-nav .main-menu-animated-line {
    position: absolute;
    left: 0;
    width: 0;
    height: 0;
    z-index: 100;
    border-top: 4px solid #6592e6;
    -webkit-transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
    -moz-transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
    transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
  }
  .cid-tHWjeFymd7 .navbar-nav .main-menu-animated-line.bottom {
    bottom: 0;
  }
}
.cid-tHWjeFymd7 .navbar-nav .nav-item span {
  padding-right: 0;
}
.cid-tHWjeFymd7 .navbar-nav .nav-item a {
  margin: 0 1.3rem !important;
}
.cid-tHWjeFymd7 .display-4 > .mbr-iconfont {
  font-size: 1.43em;
}
.cid-tHWjeFymd7 .display-4 > .btn > .mbr-iconfont {
  font-size: 1.43em;
}
.cid-tHWjeFymd7 .nav-dropdown .dropdown-item {
  font-weight: 400;
}
.cid-tHWjeFymd7 .navbar-buttons.mbr-section-btn {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-tHWjeFymd7 .nav-dropdown .link {
  font-weight: 400;
}
.cid-tHWjeFymd7 .menu .navbar-brand .logo-text-part {
  vertical-align: top;
}
.cid-tHWjeFymd7 .content-right-side {
  text-align: center;
}
.cid-tHWjeFymd7 .content-right-side .content-link {
  margin-left: 2rem;
}
.cid-tHWjeFymd7 .content-right-side .content-link span {
  vertical-align: middle;
  padding-right: 1rem;
}
.cid-tHWjeFymd7 .widget-icon {
  display: inline-block;
  padding-right: 1rem;
  font-size: 1.65rem;
}
.cid-tHWjeFymd7 .info-widget {
  padding-left: 2rem;
  padding-top: 0.5rem;
  padding-right: 3rem;
  border-left: 1px solid rgba(0, 0, 0, 0.12);
}
.cid-tHWjeFymd7 .menu-content-right {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-tHWjeFymd7 .menu-content-right .info-widget:last-child {
  padding-right: 0;
}
.cid-tHWjeFymd7 .menu-content-right .info-widget:first-child {
  padding-left: 0;
  border-left: none;
}
.cid-tHWjeFymd7 .widget-content {
  display: inline-block;
  vertical-align: top;
  text-align: left;
}
.cid-tHWjeFymd7 .widget-content .widget-title {
  font-weight: 600;
  margin-bottom: 7px;
}
.cid-tHWjeFymd7 .widget-content .widget-text {
  margin-bottom: 0;
}
@media (min-width: 992px) {
  .cid-tHWjeFymd7 .navbar .menu-content-top {
    display: flex;
    min-height: 83px;
    height: 100%;
  }
  .cid-tHWjeFymd7 .content-right-side {
    text-align: right;
    -webkit-flex-wrap: nowrap;
    flex-wrap: nowrap;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-tHWjeFymd7 .menu-content-top {
    border-bottom: 0px solid rgba(0, 0, 0, 0.12);
  }
  .cid-tHWjeFymd7 .navbar {
    display: block;
    padding: 0;
  }
  .cid-tHWjeFymd7 .navbar .menu-logo {
    margin-right: auto;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-tHWjeFymd7 .navbar:not(.navbar-short) .navbar-collapse {
    max-height: calc(100vh - 5.8rem - 4.5rem);
  }
  .cid-tHWjeFymd7 .navbar.navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
    -webkit-align-self: initial;
    align-self: auto;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    z-index: 101;
    min-height: 49px;
  }
  .cid-tHWjeFymd7 .dropdown-item:hover:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    width: 16px;
  }
  .cid-tHWjeFymd7 .navbar-toggler {
    display: none;
  }
  .cid-tHWjeFymd7 .navbar-collapse {
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
  }
}
.cid-tHWjeFymd7 .navbar-short .menu-content-top {
  height: 0;
  min-height: 0;
  border: none;
}
.cid-tHWjeFymd7 .btn {
  display: inline-flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-tHWjeFymd7 .btn .mbr-iconfont {
  font-size: 1.2em;
}
.cid-tHWjeFymd7 .menu-logo {
  margin-right: auto;
}
.cid-tHWjeFymd7 .menu-logo .navbar-brand {
  display: flex;
  margin-left: 1.5rem;
  padding: 0.5rem 0;
  transition: padding 0.2s;
  min-height: 3.8rem;
  -webkit-align-items: center;
  align-items: center;
}
.cid-tHWjeFymd7 .menu-logo .navbar-brand .navbar-caption-wrap {
  display: -webkit-flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 20rem;
  margin: 0.3rem 0;
}
.cid-tHWjeFymd7 .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-tHWjeFymd7 .menu-logo .navbar-brand .navbar-logo {
  font-size: 3rem;
  transition: font-size 0.25s;
}
.cid-tHWjeFymd7 .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
  width: auto;
}
.cid-tHWjeFymd7 .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-tHWjeFymd7 .navbar-toggleable-sm .navbar-collapse {
  width: auto;
}
.cid-tHWjeFymd7 .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  padding-left: 0;
}
.cid-tHWjeFymd7 .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-tHWjeFymd7 .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-tHWjeFymd7 .dropdown .dropdown-menu {
  background: #ffffff;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-tHWjeFymd7 .dropdown .dropdown-menu {
    overflow: hidden;
  }
}
.cid-tHWjeFymd7 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-tHWjeFymd7 .dropdown .dropdown-menu .dropdown-item::after {
  right: -0.5rem;
}
.cid-tHWjeFymd7 .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-tHWjeFymd7 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-tHWjeFymd7 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-tHWjeFymd7 .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0rem;
}
.cid-tHWjeFymd7 .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tHWjeFymd7 .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  -webkit-transform: translateY(100%);
  transform: translateY(100%);
  z-index: 1000;
}
.cid-tHWjeFymd7 .navbar.navbar-short {
  min-height: 50px;
  transition: all 0.2s;
}
.cid-tHWjeFymd7 .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-tHWjeFymd7 .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-tHWjeFymd7 .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
  width: auto;
}
.cid-tHWjeFymd7 .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-tHWjeFymd7 button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all 0.2s;
  margin: 1rem 0.8rem;
  -webkit-align-self: center;
  align-self: center;
}
.cid-tHWjeFymd7 button.navbar-toggler:focus {
  outline: none;
}
.cid-tHWjeFymd7 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #bbbbbb;
}
.cid-tHWjeFymd7 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tHWjeFymd7 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tHWjeFymd7 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tHWjeFymd7 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tHWjeFymd7 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tHWjeFymd7 nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tHWjeFymd7 nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tHWjeFymd7 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tHWjeFymd7 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tHWjeFymd7 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0em 1.5em 0em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tHWjeFymd7 .collapsed .btn {
  display: flex;
}
.cid-tHWjeFymd7 .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-tHWjeFymd7 .collapsed .navbar-collapse.collapsing,
.cid-tHWjeFymd7 .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-tHWjeFymd7 .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-tHWjeFymd7 .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-tHWjeFymd7 .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-tHWjeFymd7 .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-tHWjeFymd7 .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
.cid-tHWjeFymd7 .collapsed .navbar-collapse.show .navbar-nav .nav-item:last-child {
  margin-bottom: 1rem;
}
.cid-tHWjeFymd7 .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-tHWjeFymd7 .collapsed .navbar-collapse.show .navbar-buttons {
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  text-align: center;
}
.cid-tHWjeFymd7 .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-tHWjeFymd7 .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .cid-tHWjeFymd7 .collapsed .dropdown .dropdown-menu {
    overflow: hidden;
  }
}
.cid-tHWjeFymd7 .collapsed button.navbar-toggler {
  display: block;
}
.cid-tHWjeFymd7 .collapsed .navbar-brand {
  margin-left: 1rem !important;
  margin-top: 0.5rem;
}
.cid-tHWjeFymd7 .collapsed .navbar-toggleable-sm {
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-tHWjeFymd7 .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: 0.5s;
  transition-property: opacity, padding, height;
}
.cid-tHWjeFymd7 .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-tHWjeFymd7 .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-tHWjeFymd7 .collapsed .dropdown .dropdown-toggle[data-toggle='dropdown-submenu']::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 0.3em;
  vertical-align: middle;
  content: '';
  border-top: 0.3em solid;
  border-right: 0.3em solid transparent;
  border-left: 0.3em solid transparent;
}
.cid-tHWjeFymd7 .collapsed .menu-bottom {
  -webkit-flex-direction: column-reverse;
  flex-direction: column-reverse;
  -webkit-justify-content: center;
  justify-content: center;
}
@media (max-width: 991px) {
  .cid-tHWjeFymd7 .navbar-collapse {
    padding-bottom: 1rem;
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-tHWjeFymd7 .navbar-collapse.collapsing,
  .cid-tHWjeFymd7 .navbar-collapse.show {
    display: block !important;
  }
  .cid-tHWjeFymd7 .navbar-collapse.collapsing .navbar-nav,
  .cid-tHWjeFymd7 .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-tHWjeFymd7 .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-tHWjeFymd7 .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-tHWjeFymd7 .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
  .cid-tHWjeFymd7 .navbar-collapse.show .navbar-nav .nav-item:last-child {
    margin-bottom: 1rem;
  }
  .cid-tHWjeFymd7 .navbar-collapse.collapsing .navbar-buttons,
  .cid-tHWjeFymd7 .navbar-collapse.show .navbar-buttons {
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    text-align: center;
  }
  .cid-tHWjeFymd7 .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-tHWjeFymd7 .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-tHWjeFymd7 .menu-bottom {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
    -webkit-justify-content: center;
    justify-content: center;
  }
  .cid-tHWjeFymd7 img {
    height: 3.8rem !important;
  }
  .cid-tHWjeFymd7 .btn {
    display: flex;
  }
  .cid-tHWjeFymd7 button.navbar-toggler {
    display: block;
  }
  .cid-tHWjeFymd7 .navbar-brand {
    margin-left: 1rem !important;
    margin-top: 0.5rem;
  }
  .cid-tHWjeFymd7 .navbar-toggleable-sm {
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .cid-tHWjeFymd7 .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: 0.5s;
    transition-property: opacity, padding, height;
  }
  .cid-tHWjeFymd7 .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 0rem 0;
    visibility: visible;
  }
  .cid-tHWjeFymd7 .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-tHWjeFymd7 .dropdown .dropdown-toggle[data-toggle='dropdown-submenu']::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: 0.3em;
    vertical-align: middle;
    content: '';
    border-top: 0.3em solid;
    border-right: 0.3em solid transparent;
    border-left: 0.3em solid transparent;
  }
  .cid-tHWjeFymd7 .navbar-buttons.mbr-section-btn {
    width: 100%;
  }
  .cid-tHWjeFymd7 .dropdown .dropdown-menu .dropdown-item {
    padding: 0em 1.5em 0em 1.5em !important;
    transition: none;
    margin: 0 !important;
  }
}
.cid-tHWjeFymd7 .navbar-dropdown {
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap;
}
.cid-tHWjeFymd7 .nav-link:focus {
  outline: none;
}
.cid-tHWjeFymd7 .navbar-toggler {
  position: relative;
}
.cid-tHWjeFymd7 .dropdown-item.active,
.cid-tHWjeFymd7 .dropdown-item:active {
  background: #3b5abb;
  color: initial;
}
.cid-sgAoN6oTHa {
  overflow-x: hidden !important;
}
.cid-sgAoN6oTHa,
.cid-sgAoN6oTHa .scroll-wrapper {
  padding-top: 210px;
  padding-bottom: 45px;
}
.cid-sgAoN6oTHa .mbr-section-title {
  color: #ffffff;
}
.cid-sgAoN6oTHa .mbr-section-title span {
  color: #6592e6;
}
.cid-sgAoN6oTHa .mbr-text {
  color: #efefef;
  letter-spacing: 5px;
  font-weight: 100;
}
.cid-sgAoN6oTHa .scroll-wrapper {
  top: 0;
  width: 100%;
  height: 100%;
  background-position: 50% 50%;
  background-size: cover;
  position: absolute;
  background-repeat: repeat;
  z-index: 0;
  -webkit-animation-duration: 29s !important;
  animation-duration: 29s;
  background-image: url("../../../assets/images/mbr-3-1920x1080.jpg");
  -webkit-animation: scroll-wrapper linear infinite;
  -moz-animation: scroll-wrapper linear infinite;
  -o-animation: scroll-wrapper linear infinite;
  animation: scroll-wrapper linear infinite;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
}
.cid-sgAoN6oTHa .scroll-wrapper.second {
  left: calc(100% - 1px);
}
.cid-sgAoN6oTHa .mbr-overlay {
  z-index: 1;
}
.cid-sgAoN6oTHa .block-content {
  z-index: 2;
}
@keyframes scroll-wrapper {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}
@-webkit-keyframes scroll-wrapper {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}
@-moz-keyframes scroll-wrapper {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}
@-o-keyframes scroll-wrapper {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}
.cid-sgzCmUz37e {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-image: url("../../../assets/images/mbr-1920x1272.jpg");
}
.cid-sgzCmUz37e .content-wrapper {
  background: #efefef;
}
@media (max-width: 991px) {
  .cid-sgzCmUz37e .content-wrapper .row {
    flex-direction: column-reverse;
  }
  .cid-sgzCmUz37e .content-wrapper .image-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-sgzCmUz37e .content-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-sgzCmUz37e .content-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-sgzCmUz37e .content-wrapper {
    padding: 2rem 2rem;
  }
  .cid-sgzCmUz37e .content-wrapper .text-wrapper {
    padding-right: 2rem;
  }
}
.cid-sgzCmUz37e .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-sgzCmUz37e .card-title {
  color: #149dcc;
}
.cid-tHVZLH1Ruy {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background: #fdfcfa;
}
.cid-tHVZLH1Ruy .mbr-fallback-image.disabled {
  display: none;
}
.cid-tHVZLH1Ruy .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tHVZLH1Ruy .container-fluid {
  padding: 0;
}
@media (max-width: 992px) {
  .cid-tHVZLH1Ruy .container-fluid {
    padding: 0;
  }
}
@media (max-width: 992px) {
  .cid-tHVZLH1Ruy .container {
    padding: 0;
  }
}
.cid-tHVZLH1Ruy .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 490px;
  max-width: 490px;
}
@media (max-width: 768px) {
  .cid-tHVZLH1Ruy .embla__slide {
    min-width: 100%;
    max-width: 100%;
    margin-left: 1rem !important;
    margin-right: 1rem !important;
  }
}
.cid-tHVZLH1Ruy .embla__slide a {
  display: block;
  width: 100%;
}
.cid-tHVZLH1Ruy .embla__slide a .card-wrap {
  width: 100%;
}
.cid-tHVZLH1Ruy .embla__slide a .card-wrap .item-wrapper .image-wrap {
  position: relative;
  height: 320px;
}
@media (max-width: 768px) {
  .cid-tHVZLH1Ruy .embla__slide a .card-wrap .item-wrapper .image-wrap {
    height: 450px;
  }
}
.cid-tHVZLH1Ruy .embla__slide a .card-wrap .item-wrapper .image-wrap img {
  position: absolute;
  top: 0;
  left: 0;
  object-fit: cover;
  height: 100%;
  width: 100%;
}
.cid-tHVZLH1Ruy .embla__slide a .card-wrap .item-wrapper .image-wrap .content-wrap {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
}
.cid-tHVZLH1Ruy .embla__slide a .card-wrap .item-wrapper .image-wrap .content-wrap .mbr-box {
  width: 115px;
  height: 115px;
  background-color: #235d81;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0;
}
@media (max-width: 768px) {
  .cid-tHVZLH1Ruy .embla__slide a .card-wrap .item-wrapper .image-wrap .content-wrap .mbr-box {
    height: 50px;
    width: 50px;
  }
}
.cid-tHVZLH1Ruy .embla__slide a .card-wrap .item-wrapper .image-wrap .content-wrap .mbr-section-title {
  padding: 22px 16px;
  margin-bottom: 0;
}
.cid-tHVZLH1Ruy .embla__button--next,
.cid-tHVZLH1Ruy .embla__button--prev {
  display: flex;
}
.cid-tHVZLH1Ruy .embla__button {
  top: 50%;
  width: 70px;
  height: 70px;
  margin-top: -1.5rem;
  font-size: 24px;
  background-color: #ffeec7;
  color: #d17756;
  border: none;
  border-radius: 0;
  transition: all 0.3s;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-tHVZLH1Ruy .embla__button:disabled {
  cursor: default;
  display: none;
}
.cid-tHVZLH1Ruy .embla__button:hover {
  background-color: #ffeec7;
  color: #d17756;
}
.cid-tHVZLH1Ruy .embla__button.embla__button--prev {
  left: 0;
  margin-left: 0;
}
.cid-tHVZLH1Ruy .embla__button.embla__button--next {
  right: 0;
  margin-right: 0;
}
@media (max-width: 767px) {
  .cid-tHVZLH1Ruy .embla__button {
    top: 50%;
    width: 48px;
    height: 48px;
  }
}
.cid-tHVZLH1Ruy .embla {
  position: relative;
  width: 100%;
}
.cid-tHVZLH1Ruy .embla__viewport {
  overflow: hidden;
  width: 100%;
}
.cid-tHVZLH1Ruy .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-tHVZLH1Ruy .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-tHVZLH1Ruy .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-tHVZLH1Ruy .mbr-section-title {
  color: #ffffff;
}
.cid-tHVZLH1Ruy .mbr-box {
  color: #ffffff;
}
.cid-tHVZ7OgrZj {
  padding-top: 30px;
  padding-bottom: 15px;
  background-image: url("../../../assets/images/mbr-13-1920x1280.jpg");
}
.cid-tHVZ7OgrZj .listico {
  padding-right: 1rem;
  font-size: 1.3rem;
}
.cid-tHVZ7OgrZj .navbar-logo {
  width: 80px;
  margin-bottom: 10px;
}
.cid-tHVZ7OgrZj .mbr-text {
  color: #444;
}
.cid-tHVZ7OgrZj h5 {
  margin-bottom: 0;
}
.cid-tHVZ7OgrZj .navbar-brand {
  margin: 0rem;
  width: 100%;
}
.cid-tHVZ7OgrZj .list-item {
  display: flex;
  padding-top: 10px;
  padding-bottom: 10px;
  -webkit-align-items: center;
  align-items: center;
}
.cid-tHVZ7OgrZj .tips {
  height: 90px;
  width: 90px;
  border-radius: 6px;
  margin: 4px;
  object-fit: cover;
  display: inline;
}
.cid-tHVZ7OgrZj .socicon {
  font-size: 1.3rem;
  background: #ff4a52;
  border-radius: 100%;
  width: 38px;
  height: 38px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-tHVZ7OgrZj .social-list {
  display: flex;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-tHVZ7OgrZj .social-list .soc-item {
  margin: 0 0.3rem;
}
.cid-tHVZ7OgrZj .social-list a {
  margin: 0;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-tHVZ7OgrZj .social-list a:hover {
  opacity: 0.4;
}
.cid-tHVZ7OgrZj .media-container-row > div {
  padding: 0px;
}
.cid-tHVZ7OgrZj .text2 {
  color: #6592e6;
  text-align: left;
}
.cid-tHVZ7OgrZj .group-title {
  text-align: left;
  color: #e6c63b;
}
.cid-tHVZ7OgrZj .group-title SPAN {
  color: #ffffff;
}
.cid-tHVZ7OgrZj .links {
  color: #ffffff;
  line-height: 1.6;
}
@media (max-width: 991px) {
  .cid-tHVZ7OgrZj .col-sm-12 {
    margin-bottom: 2rem;
  }
  .cid-tHVZ7OgrZj .social-list,
  .cid-tHVZ7OgrZj .img-list {
    -webkit-justify-content: center;
    justify-content: center;
    text-align: center;
  }
  .cid-tHVZ7OgrZj h3 {
    margin-bottom: 10px;
  }
  .cid-tHVZ7OgrZj .navbar-brand {
    text-align: center;
  }
}
.cid-tHVZ7OgrZj .links SPAN {
  color: #9e9e9e;
}
.cid-siM30LrbO4 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #232323;
}
.cid-tHWjeFymd7 .navbar {
  padding: 0.5rem 0;
  background: #ffffff;
  transition: none;
  min-height: 50px;
}
.cid-tHWjeFymd7 .navbar-fixed-top {
  padding-top: 0;
}
.cid-tHWjeFymd7 .navbar-collapse {
  -ms-flex-preferred-size: auto;
  -webkit-flex-basis: auto;
  flex-basis: auto;
}
.cid-tHWjeFymd7 .dropdown-item {
  padding: 0;
}
.cid-tHWjeFymd7 .dropdown-menu {
  border: 0px solid lightgray;
  background: #3b5abb !important;
}
.cid-tHWjeFymd7 .menu-content-top {
  max-width: 1500px;
  display: none;
  padding: 0rem 2rem;
  margin: auto;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  overflow: hidden;
  transition: min-height 0.25s ease-in-out;
}
.cid-tHWjeFymd7 .menu-bottom {
  margin: auto;
  width: 100%;
  background: #3b5abb;
  display: flex;
  padding: 0 2rem;
  position: relative;
}
.cid-tHWjeFymd7 .navbar-dropdown.bg-color.transparent.opened {
  background: #ffffff;
}
.cid-tHWjeFymd7 a {
  font-style: normal;
}
.cid-tHWjeFymd7 .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  top: -0.2em;
  text-decoration: none;
}
.cid-tHWjeFymd7 .nav-item a {
  padding: 0rem 0 !important;
  margin: 0rem !important;
}
.cid-tHWjeFymd7 .dropdown-item:before {
  font-family: MobiriseIcons !important;
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-tHWjeFymd7 .content-text {
  margin-bottom: 0;
}
.cid-tHWjeFymd7 .navbar-nav {
  position: relative;
  min-height: 49px;
  -ms-flex-direction: row;
  -webkit-flex-direction: row;
  flex-direction: row;
}
@media (min-width: 992px) {
  .cid-tHWjeFymd7 .navbar-nav .main-menu-animated-line {
    position: absolute;
    left: 0;
    width: 0;
    height: 0;
    z-index: 100;
    border-top: 4px solid #6592e6;
    -webkit-transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
    -moz-transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
    transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
  }
  .cid-tHWjeFymd7 .navbar-nav .main-menu-animated-line.bottom {
    bottom: 0;
  }
}
.cid-tHWjeFymd7 .navbar-nav .nav-item span {
  padding-right: 0;
}
.cid-tHWjeFymd7 .navbar-nav .nav-item a {
  margin: 0 1.3rem !important;
}
.cid-tHWjeFymd7 .display-4 > .mbr-iconfont {
  font-size: 1.43em;
}
.cid-tHWjeFymd7 .display-4 > .btn > .mbr-iconfont {
  font-size: 1.43em;
}
.cid-tHWjeFymd7 .nav-dropdown .dropdown-item {
  font-weight: 400;
}
.cid-tHWjeFymd7 .navbar-buttons.mbr-section-btn {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-tHWjeFymd7 .nav-dropdown .link {
  font-weight: 400;
}
.cid-tHWjeFymd7 .menu .navbar-brand .logo-text-part {
  vertical-align: top;
}
.cid-tHWjeFymd7 .content-right-side {
  text-align: center;
}
.cid-tHWjeFymd7 .content-right-side .content-link {
  margin-left: 2rem;
}
.cid-tHWjeFymd7 .content-right-side .content-link span {
  vertical-align: middle;
  padding-right: 1rem;
}
.cid-tHWjeFymd7 .widget-icon {
  display: inline-block;
  padding-right: 1rem;
  font-size: 1.65rem;
}
.cid-tHWjeFymd7 .info-widget {
  padding-left: 2rem;
  padding-top: 0.5rem;
  padding-right: 3rem;
  border-left: 1px solid rgba(0, 0, 0, 0.12);
}
.cid-tHWjeFymd7 .menu-content-right {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-tHWjeFymd7 .menu-content-right .info-widget:last-child {
  padding-right: 0;
}
.cid-tHWjeFymd7 .menu-content-right .info-widget:first-child {
  padding-left: 0;
  border-left: none;
}
.cid-tHWjeFymd7 .widget-content {
  display: inline-block;
  vertical-align: top;
  text-align: left;
}
.cid-tHWjeFymd7 .widget-content .widget-title {
  font-weight: 600;
  margin-bottom: 7px;
}
.cid-tHWjeFymd7 .widget-content .widget-text {
  margin-bottom: 0;
}
@media (min-width: 992px) {
  .cid-tHWjeFymd7 .navbar .menu-content-top {
    display: flex;
    min-height: 83px;
    height: 100%;
  }
  .cid-tHWjeFymd7 .content-right-side {
    text-align: right;
    -webkit-flex-wrap: nowrap;
    flex-wrap: nowrap;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-tHWjeFymd7 .menu-content-top {
    border-bottom: 0px solid rgba(0, 0, 0, 0.12);
  }
  .cid-tHWjeFymd7 .navbar {
    display: block;
    padding: 0;
  }
  .cid-tHWjeFymd7 .navbar .menu-logo {
    margin-right: auto;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-tHWjeFymd7 .navbar:not(.navbar-short) .navbar-collapse {
    max-height: calc(100vh - 5.8rem - 4.5rem);
  }
  .cid-tHWjeFymd7 .navbar.navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
    -webkit-align-self: initial;
    align-self: auto;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    z-index: 101;
    min-height: 49px;
  }
  .cid-tHWjeFymd7 .dropdown-item:hover:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    width: 16px;
  }
  .cid-tHWjeFymd7 .navbar-toggler {
    display: none;
  }
  .cid-tHWjeFymd7 .navbar-collapse {
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
  }
}
.cid-tHWjeFymd7 .navbar-short .menu-content-top {
  height: 0;
  min-height: 0;
  border: none;
}
.cid-tHWjeFymd7 .btn {
  display: inline-flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-tHWjeFymd7 .btn .mbr-iconfont {
  font-size: 1.2em;
}
.cid-tHWjeFymd7 .menu-logo {
  margin-right: auto;
}
.cid-tHWjeFymd7 .menu-logo .navbar-brand {
  display: flex;
  margin-left: 1.5rem;
  padding: 0.5rem 0;
  transition: padding 0.2s;
  min-height: 3.8rem;
  -webkit-align-items: center;
  align-items: center;
}
.cid-tHWjeFymd7 .menu-logo .navbar-brand .navbar-caption-wrap {
  display: -webkit-flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 20rem;
  margin: 0.3rem 0;
}
.cid-tHWjeFymd7 .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-tHWjeFymd7 .menu-logo .navbar-brand .navbar-logo {
  font-size: 3rem;
  transition: font-size 0.25s;
}
.cid-tHWjeFymd7 .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
  width: auto;
}
.cid-tHWjeFymd7 .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-tHWjeFymd7 .navbar-toggleable-sm .navbar-collapse {
  width: auto;
}
.cid-tHWjeFymd7 .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  padding-left: 0;
}
.cid-tHWjeFymd7 .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-tHWjeFymd7 .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-tHWjeFymd7 .dropdown .dropdown-menu {
  background: #ffffff;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-tHWjeFymd7 .dropdown .dropdown-menu {
    overflow: hidden;
  }
}
.cid-tHWjeFymd7 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-tHWjeFymd7 .dropdown .dropdown-menu .dropdown-item::after {
  right: -0.5rem;
}
.cid-tHWjeFymd7 .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-tHWjeFymd7 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-tHWjeFymd7 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-tHWjeFymd7 .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0rem;
}
.cid-tHWjeFymd7 .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tHWjeFymd7 .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  -webkit-transform: translateY(100%);
  transform: translateY(100%);
  z-index: 1000;
}
.cid-tHWjeFymd7 .navbar.navbar-short {
  min-height: 50px;
  transition: all 0.2s;
}
.cid-tHWjeFymd7 .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-tHWjeFymd7 .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-tHWjeFymd7 .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
  width: auto;
}
.cid-tHWjeFymd7 .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-tHWjeFymd7 button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all 0.2s;
  margin: 1rem 0.8rem;
  -webkit-align-self: center;
  align-self: center;
}
.cid-tHWjeFymd7 button.navbar-toggler:focus {
  outline: none;
}
.cid-tHWjeFymd7 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #bbbbbb;
}
.cid-tHWjeFymd7 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tHWjeFymd7 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tHWjeFymd7 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tHWjeFymd7 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tHWjeFymd7 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tHWjeFymd7 nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tHWjeFymd7 nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tHWjeFymd7 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tHWjeFymd7 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tHWjeFymd7 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0em 1.5em 0em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tHWjeFymd7 .collapsed .btn {
  display: flex;
}
.cid-tHWjeFymd7 .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-tHWjeFymd7 .collapsed .navbar-collapse.collapsing,
.cid-tHWjeFymd7 .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-tHWjeFymd7 .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-tHWjeFymd7 .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-tHWjeFymd7 .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-tHWjeFymd7 .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-tHWjeFymd7 .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
.cid-tHWjeFymd7 .collapsed .navbar-collapse.show .navbar-nav .nav-item:last-child {
  margin-bottom: 1rem;
}
.cid-tHWjeFymd7 .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-tHWjeFymd7 .collapsed .navbar-collapse.show .navbar-buttons {
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  text-align: center;
}
.cid-tHWjeFymd7 .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-tHWjeFymd7 .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .cid-tHWjeFymd7 .collapsed .dropdown .dropdown-menu {
    overflow: hidden;
  }
}
.cid-tHWjeFymd7 .collapsed button.navbar-toggler {
  display: block;
}
.cid-tHWjeFymd7 .collapsed .navbar-brand {
  margin-left: 1rem !important;
  margin-top: 0.5rem;
}
.cid-tHWjeFymd7 .collapsed .navbar-toggleable-sm {
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-tHWjeFymd7 .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: 0.5s;
  transition-property: opacity, padding, height;
}
.cid-tHWjeFymd7 .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-tHWjeFymd7 .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-tHWjeFymd7 .collapsed .dropdown .dropdown-toggle[data-toggle='dropdown-submenu']::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 0.3em;
  vertical-align: middle;
  content: '';
  border-top: 0.3em solid;
  border-right: 0.3em solid transparent;
  border-left: 0.3em solid transparent;
}
.cid-tHWjeFymd7 .collapsed .menu-bottom {
  -webkit-flex-direction: column-reverse;
  flex-direction: column-reverse;
  -webkit-justify-content: center;
  justify-content: center;
}
@media (max-width: 991px) {
  .cid-tHWjeFymd7 .navbar-collapse {
    padding-bottom: 1rem;
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-tHWjeFymd7 .navbar-collapse.collapsing,
  .cid-tHWjeFymd7 .navbar-collapse.show {
    display: block !important;
  }
  .cid-tHWjeFymd7 .navbar-collapse.collapsing .navbar-nav,
  .cid-tHWjeFymd7 .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-tHWjeFymd7 .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-tHWjeFymd7 .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-tHWjeFymd7 .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
  .cid-tHWjeFymd7 .navbar-collapse.show .navbar-nav .nav-item:last-child {
    margin-bottom: 1rem;
  }
  .cid-tHWjeFymd7 .navbar-collapse.collapsing .navbar-buttons,
  .cid-tHWjeFymd7 .navbar-collapse.show .navbar-buttons {
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    text-align: center;
  }
  .cid-tHWjeFymd7 .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-tHWjeFymd7 .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-tHWjeFymd7 .menu-bottom {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
    -webkit-justify-content: center;
    justify-content: center;
  }
  .cid-tHWjeFymd7 img {
    height: 3.8rem !important;
  }
  .cid-tHWjeFymd7 .btn {
    display: flex;
  }
  .cid-tHWjeFymd7 button.navbar-toggler {
    display: block;
  }
  .cid-tHWjeFymd7 .navbar-brand {
    margin-left: 1rem !important;
    margin-top: 0.5rem;
  }
  .cid-tHWjeFymd7 .navbar-toggleable-sm {
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .cid-tHWjeFymd7 .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: 0.5s;
    transition-property: opacity, padding, height;
  }
  .cid-tHWjeFymd7 .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 0rem 0;
    visibility: visible;
  }
  .cid-tHWjeFymd7 .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-tHWjeFymd7 .dropdown .dropdown-toggle[data-toggle='dropdown-submenu']::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: 0.3em;
    vertical-align: middle;
    content: '';
    border-top: 0.3em solid;
    border-right: 0.3em solid transparent;
    border-left: 0.3em solid transparent;
  }
  .cid-tHWjeFymd7 .navbar-buttons.mbr-section-btn {
    width: 100%;
  }
  .cid-tHWjeFymd7 .dropdown .dropdown-menu .dropdown-item {
    padding: 0em 1.5em 0em 1.5em !important;
    transition: none;
    margin: 0 !important;
  }
}
.cid-tHWjeFymd7 .navbar-dropdown {
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap;
}
.cid-tHWjeFymd7 .nav-link:focus {
  outline: none;
}
.cid-tHWjeFymd7 .navbar-toggler {
  position: relative;
}
.cid-tHWjeFymd7 .dropdown-item.active,
.cid-tHWjeFymd7 .dropdown-item:active {
  background: #3b5abb;
  color: initial;
}
.cid-sgzTlm9I0B {
  overflow-x: hidden !important;
}
.cid-sgzTlm9I0B,
.cid-sgzTlm9I0B .scroll-wrapper {
  padding-top: 210px;
  padding-bottom: 45px;
}
.cid-sgzTlm9I0B .mbr-section-title {
  color: #ffffff;
}
.cid-sgzTlm9I0B .mbr-section-title span {
  color: #6592e6;
}
.cid-sgzTlm9I0B .mbr-text {
  color: #efefef;
  letter-spacing: 5px;
  font-weight: 100;
}
.cid-sgzTlm9I0B .scroll-wrapper {
  top: 0;
  width: 100%;
  height: 100%;
  background-position: 50% 50%;
  background-size: cover;
  position: absolute;
  background-repeat: repeat;
  z-index: 0;
  -webkit-animation-duration: 29s !important;
  animation-duration: 29s;
  background-image: url("../../../assets/images/mbr-1-1920x1080.jpg");
  -webkit-animation: scroll-wrapper linear infinite;
  -moz-animation: scroll-wrapper linear infinite;
  -o-animation: scroll-wrapper linear infinite;
  animation: scroll-wrapper linear infinite;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
}
.cid-sgzTlm9I0B .scroll-wrapper.second {
  left: calc(100% - 1px);
}
.cid-sgzTlm9I0B .mbr-overlay {
  z-index: 1;
}
.cid-sgzTlm9I0B .block-content {
  z-index: 2;
}
@keyframes scroll-wrapper {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}
@-webkit-keyframes scroll-wrapper {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}
@-moz-keyframes scroll-wrapper {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}
@-o-keyframes scroll-wrapper {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}
.cid-sgzWXidhSd {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-sgzWXidhSd .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-sgzWXidhSd .row {
  flex-direction: row-reverse;
}
.cid-sgzWXidhSd img {
  width: 100%;
}
.cid-sgzWovddjh {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-sgzWovddjh .mbr-text,
.cid-sgzWovddjh .ornament {
  color: #232323;
}
.cid-tHVXq6evJ6 {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-image: url("../../../assets/images/mbr-9-1920x1280.jpg");
}
.cid-tHVXq6evJ6 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tHVXq6evJ6 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tHVXq6evJ6 .mbr-section-head {
  margin-bottom: 32px;
}
.cid-tHVXq6evJ6 .mbr-section-title {
  color: #24262b;
}
.cid-tHVXq6evJ6 .mbr-section-subtitle {
  margin-top: 16px;
  color: #24262b;
}
.cid-tHVXq6evJ6 .items-row {
  row-gap: 0;
  margin: 0 !important;
}
.cid-tHVXq6evJ6 .item {
  padding: 0 !important;
}
.cid-tHVXq6evJ6 .item-wrapper {
  position: relative;
  overflow: hidden;
}
.cid-tHVXq6evJ6 .item-wrapper img {
  width: 100%;
  height: calc(50px * 6);
  object-fit: cover;
  transition: all 0.3s;
}
.cid-tHVXq6evJ6 .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  z-index: 3;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  border-radius: 50%;
  opacity: 0;
  color: #24262b;
  transform: translateX(-50%) translateY(-50%);
  background-color: #FFFFFF;
  transition: 0.3s;
}
.cid-tHVXq6evJ6 .item-wrapper .img-overlay {
  position: absolute;
  pointer-events: none;
  transition: all 0.3s;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #33363b;
  opacity: 0;
  z-index: 2;
}
.cid-tHVXq6evJ6 .item-wrapper:hover img {
  transform: scale(1.05);
}
.cid-tHVXq6evJ6 .item-wrapper:hover .icon-wrapper {
  opacity: 1;
}
.cid-tHVXq6evJ6 .item-wrapper:hover .img-overlay {
  opacity: 0.3;
}
.cid-tHVXq6evJ6 .carousel-control,
.cid-tHVXq6evJ6 .close {
  background: #1b1b1b;
}
.cid-tHVXq6evJ6 .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-tHVXq6evJ6 .carousel-control-prev span {
  margin-right: 5px;
}
.cid-tHVXq6evJ6 .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-tHVXq6evJ6 .carousel-control-next span {
  margin-left: 5px;
}
.cid-tHVXq6evJ6 .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  font-family: 'Moririse2';
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-tHVXq6evJ6 .close::before {
  content: '\e91a';
}
.cid-tHVXq6evJ6 .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-tHVXq6evJ6 .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-tHVXq6evJ6 .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tHVXq6evJ6 .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-tHVXq6evJ6 .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-tHVXq6evJ6 .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-tHVXq6evJ6 .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-tHVXq6evJ6 .carousel-indicators li.active,
.cid-tHVXq6evJ6 .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-tHVXq6evJ6 .carousel-indicators li::after,
.cid-tHVXq6evJ6 .carousel-indicators li::before {
  content: none;
}
.cid-tHVXq6evJ6 .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-tHVXq6evJ6 .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-tHVXq6evJ6 .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-tHVXq6evJ6 .carousel-indicators {
    display: none;
  }
}
.cid-tHVXq6evJ6 .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-tHVXq6evJ6 .carousel-inner > .active {
  display: block;
}
.cid-tHVXq6evJ6 .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tHVXq6evJ6 .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tHVXq6evJ6 .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-tHVXq6evJ6 .carousel-control,
  .cid-tHVXq6evJ6 .carousel-indicators,
  .cid-tHVXq6evJ6 .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-tHVXq6evJ6 .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-tHVXq6evJ6 .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-tHVXq6evJ6 .carousel-indicators .active,
.cid-tHVXq6evJ6 .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-tHVXq6evJ6 .carousel-indicators .active {
  background: #fff;
}
.cid-tHVXq6evJ6 .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-tHVXq6evJ6 .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-tHVXq6evJ6 .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-tHVXq6evJ6 .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-tHVXq6evJ6 .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-tHVXq6evJ6 .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-tHVXq6evJ6 .carousel {
  width: 100%;
}
.cid-tHVXq6evJ6 .modal-backdrop.in {
  opacity: 0.8;
}
.cid-tHVXq6evJ6 .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-tHVXq6evJ6 .modal.fade .modal-dialog,
.cid-tHVXq6evJ6 .modal.in .modal-dialog {
  transform: none;
}
.cid-tHVXq6evJ6 .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-tHVXq6evJ6 H6 {
  text-align: center;
}
.cid-tHVYxKl3QH {
  padding-top: 30px;
  padding-bottom: 15px;
  background-image: url("../../../assets/images/mbr-13-1920x1280.jpg");
}
.cid-tHVYxKl3QH .listico {
  padding-right: 1rem;
  font-size: 1.3rem;
}
.cid-tHVYxKl3QH .navbar-logo {
  width: 80px;
  margin-bottom: 10px;
}
.cid-tHVYxKl3QH .mbr-text {
  color: #444;
}
.cid-tHVYxKl3QH h5 {
  margin-bottom: 0;
}
.cid-tHVYxKl3QH .navbar-brand {
  margin: 0rem;
  width: 100%;
}
.cid-tHVYxKl3QH .list-item {
  display: flex;
  padding-top: 10px;
  padding-bottom: 10px;
  -webkit-align-items: center;
  align-items: center;
}
.cid-tHVYxKl3QH .tips {
  height: 90px;
  width: 90px;
  border-radius: 6px;
  margin: 4px;
  object-fit: cover;
  display: inline;
}
.cid-tHVYxKl3QH .socicon {
  font-size: 1.3rem;
  background: #ff4a52;
  border-radius: 100%;
  width: 38px;
  height: 38px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-tHVYxKl3QH .social-list {
  display: flex;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-tHVYxKl3QH .social-list .soc-item {
  margin: 0 0.3rem;
}
.cid-tHVYxKl3QH .social-list a {
  margin: 0;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-tHVYxKl3QH .social-list a:hover {
  opacity: 0.4;
}
.cid-tHVYxKl3QH .media-container-row > div {
  padding: 0px;
}
.cid-tHVYxKl3QH .text2 {
  color: #6592e6;
  text-align: left;
}
.cid-tHVYxKl3QH .group-title {
  text-align: left;
  color: #e6c63b;
}
.cid-tHVYxKl3QH .group-title SPAN {
  color: #ffffff;
}
.cid-tHVYxKl3QH .links {
  color: #ffffff;
  line-height: 1.6;
}
@media (max-width: 991px) {
  .cid-tHVYxKl3QH .col-sm-12 {
    margin-bottom: 2rem;
  }
  .cid-tHVYxKl3QH .social-list,
  .cid-tHVYxKl3QH .img-list {
    -webkit-justify-content: center;
    justify-content: center;
    text-align: center;
  }
  .cid-tHVYxKl3QH h3 {
    margin-bottom: 10px;
  }
  .cid-tHVYxKl3QH .navbar-brand {
    text-align: center;
  }
}
.cid-tHVYxKl3QH .links SPAN {
  color: #9e9e9e;
}
.cid-siM30LrbO4 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #232323;
}
.cid-tHWjeFymd7 .navbar {
  padding: 0.5rem 0;
  background: #ffffff;
  transition: none;
  min-height: 50px;
}
.cid-tHWjeFymd7 .navbar-fixed-top {
  padding-top: 0;
}
.cid-tHWjeFymd7 .navbar-collapse {
  -ms-flex-preferred-size: auto;
  -webkit-flex-basis: auto;
  flex-basis: auto;
}
.cid-tHWjeFymd7 .dropdown-item {
  padding: 0;
}
.cid-tHWjeFymd7 .dropdown-menu {
  border: 0px solid lightgray;
  background: #3b5abb !important;
}
.cid-tHWjeFymd7 .menu-content-top {
  max-width: 1500px;
  display: none;
  padding: 0rem 2rem;
  margin: auto;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  overflow: hidden;
  transition: min-height 0.25s ease-in-out;
}
.cid-tHWjeFymd7 .menu-bottom {
  margin: auto;
  width: 100%;
  background: #3b5abb;
  display: flex;
  padding: 0 2rem;
  position: relative;
}
.cid-tHWjeFymd7 .navbar-dropdown.bg-color.transparent.opened {
  background: #ffffff;
}
.cid-tHWjeFymd7 a {
  font-style: normal;
}
.cid-tHWjeFymd7 .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  top: -0.2em;
  text-decoration: none;
}
.cid-tHWjeFymd7 .nav-item a {
  padding: 0rem 0 !important;
  margin: 0rem !important;
}
.cid-tHWjeFymd7 .dropdown-item:before {
  font-family: MobiriseIcons !important;
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-tHWjeFymd7 .content-text {
  margin-bottom: 0;
}
.cid-tHWjeFymd7 .navbar-nav {
  position: relative;
  min-height: 49px;
  -ms-flex-direction: row;
  -webkit-flex-direction: row;
  flex-direction: row;
}
@media (min-width: 992px) {
  .cid-tHWjeFymd7 .navbar-nav .main-menu-animated-line {
    position: absolute;
    left: 0;
    width: 0;
    height: 0;
    z-index: 100;
    border-top: 4px solid #6592e6;
    -webkit-transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
    -moz-transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
    transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
  }
  .cid-tHWjeFymd7 .navbar-nav .main-menu-animated-line.bottom {
    bottom: 0;
  }
}
.cid-tHWjeFymd7 .navbar-nav .nav-item span {
  padding-right: 0;
}
.cid-tHWjeFymd7 .navbar-nav .nav-item a {
  margin: 0 1.3rem !important;
}
.cid-tHWjeFymd7 .display-4 > .mbr-iconfont {
  font-size: 1.43em;
}
.cid-tHWjeFymd7 .display-4 > .btn > .mbr-iconfont {
  font-size: 1.43em;
}
.cid-tHWjeFymd7 .nav-dropdown .dropdown-item {
  font-weight: 400;
}
.cid-tHWjeFymd7 .navbar-buttons.mbr-section-btn {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-tHWjeFymd7 .nav-dropdown .link {
  font-weight: 400;
}
.cid-tHWjeFymd7 .menu .navbar-brand .logo-text-part {
  vertical-align: top;
}
.cid-tHWjeFymd7 .content-right-side {
  text-align: center;
}
.cid-tHWjeFymd7 .content-right-side .content-link {
  margin-left: 2rem;
}
.cid-tHWjeFymd7 .content-right-side .content-link span {
  vertical-align: middle;
  padding-right: 1rem;
}
.cid-tHWjeFymd7 .widget-icon {
  display: inline-block;
  padding-right: 1rem;
  font-size: 1.65rem;
}
.cid-tHWjeFymd7 .info-widget {
  padding-left: 2rem;
  padding-top: 0.5rem;
  padding-right: 3rem;
  border-left: 1px solid rgba(0, 0, 0, 0.12);
}
.cid-tHWjeFymd7 .menu-content-right {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-tHWjeFymd7 .menu-content-right .info-widget:last-child {
  padding-right: 0;
}
.cid-tHWjeFymd7 .menu-content-right .info-widget:first-child {
  padding-left: 0;
  border-left: none;
}
.cid-tHWjeFymd7 .widget-content {
  display: inline-block;
  vertical-align: top;
  text-align: left;
}
.cid-tHWjeFymd7 .widget-content .widget-title {
  font-weight: 600;
  margin-bottom: 7px;
}
.cid-tHWjeFymd7 .widget-content .widget-text {
  margin-bottom: 0;
}
@media (min-width: 992px) {
  .cid-tHWjeFymd7 .navbar .menu-content-top {
    display: flex;
    min-height: 83px;
    height: 100%;
  }
  .cid-tHWjeFymd7 .content-right-side {
    text-align: right;
    -webkit-flex-wrap: nowrap;
    flex-wrap: nowrap;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-tHWjeFymd7 .menu-content-top {
    border-bottom: 0px solid rgba(0, 0, 0, 0.12);
  }
  .cid-tHWjeFymd7 .navbar {
    display: block;
    padding: 0;
  }
  .cid-tHWjeFymd7 .navbar .menu-logo {
    margin-right: auto;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-tHWjeFymd7 .navbar:not(.navbar-short) .navbar-collapse {
    max-height: calc(100vh - 5.8rem - 4.5rem);
  }
  .cid-tHWjeFymd7 .navbar.navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
    -webkit-align-self: initial;
    align-self: auto;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    z-index: 101;
    min-height: 49px;
  }
  .cid-tHWjeFymd7 .dropdown-item:hover:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    width: 16px;
  }
  .cid-tHWjeFymd7 .navbar-toggler {
    display: none;
  }
  .cid-tHWjeFymd7 .navbar-collapse {
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
  }
}
.cid-tHWjeFymd7 .navbar-short .menu-content-top {
  height: 0;
  min-height: 0;
  border: none;
}
.cid-tHWjeFymd7 .btn {
  display: inline-flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-tHWjeFymd7 .btn .mbr-iconfont {
  font-size: 1.2em;
}
.cid-tHWjeFymd7 .menu-logo {
  margin-right: auto;
}
.cid-tHWjeFymd7 .menu-logo .navbar-brand {
  display: flex;
  margin-left: 1.5rem;
  padding: 0.5rem 0;
  transition: padding 0.2s;
  min-height: 3.8rem;
  -webkit-align-items: center;
  align-items: center;
}
.cid-tHWjeFymd7 .menu-logo .navbar-brand .navbar-caption-wrap {
  display: -webkit-flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 20rem;
  margin: 0.3rem 0;
}
.cid-tHWjeFymd7 .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-tHWjeFymd7 .menu-logo .navbar-brand .navbar-logo {
  font-size: 3rem;
  transition: font-size 0.25s;
}
.cid-tHWjeFymd7 .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
  width: auto;
}
.cid-tHWjeFymd7 .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-tHWjeFymd7 .navbar-toggleable-sm .navbar-collapse {
  width: auto;
}
.cid-tHWjeFymd7 .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  padding-left: 0;
}
.cid-tHWjeFymd7 .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-tHWjeFymd7 .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-tHWjeFymd7 .dropdown .dropdown-menu {
  background: #ffffff;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-tHWjeFymd7 .dropdown .dropdown-menu {
    overflow: hidden;
  }
}
.cid-tHWjeFymd7 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-tHWjeFymd7 .dropdown .dropdown-menu .dropdown-item::after {
  right: -0.5rem;
}
.cid-tHWjeFymd7 .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-tHWjeFymd7 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-tHWjeFymd7 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-tHWjeFymd7 .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0rem;
}
.cid-tHWjeFymd7 .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tHWjeFymd7 .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  -webkit-transform: translateY(100%);
  transform: translateY(100%);
  z-index: 1000;
}
.cid-tHWjeFymd7 .navbar.navbar-short {
  min-height: 50px;
  transition: all 0.2s;
}
.cid-tHWjeFymd7 .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-tHWjeFymd7 .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-tHWjeFymd7 .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
  width: auto;
}
.cid-tHWjeFymd7 .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-tHWjeFymd7 button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all 0.2s;
  margin: 1rem 0.8rem;
  -webkit-align-self: center;
  align-self: center;
}
.cid-tHWjeFymd7 button.navbar-toggler:focus {
  outline: none;
}
.cid-tHWjeFymd7 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #bbbbbb;
}
.cid-tHWjeFymd7 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tHWjeFymd7 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tHWjeFymd7 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tHWjeFymd7 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tHWjeFymd7 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tHWjeFymd7 nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tHWjeFymd7 nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tHWjeFymd7 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tHWjeFymd7 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tHWjeFymd7 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0em 1.5em 0em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tHWjeFymd7 .collapsed .btn {
  display: flex;
}
.cid-tHWjeFymd7 .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-tHWjeFymd7 .collapsed .navbar-collapse.collapsing,
.cid-tHWjeFymd7 .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-tHWjeFymd7 .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-tHWjeFymd7 .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-tHWjeFymd7 .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-tHWjeFymd7 .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-tHWjeFymd7 .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
.cid-tHWjeFymd7 .collapsed .navbar-collapse.show .navbar-nav .nav-item:last-child {
  margin-bottom: 1rem;
}
.cid-tHWjeFymd7 .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-tHWjeFymd7 .collapsed .navbar-collapse.show .navbar-buttons {
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  text-align: center;
}
.cid-tHWjeFymd7 .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-tHWjeFymd7 .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .cid-tHWjeFymd7 .collapsed .dropdown .dropdown-menu {
    overflow: hidden;
  }
}
.cid-tHWjeFymd7 .collapsed button.navbar-toggler {
  display: block;
}
.cid-tHWjeFymd7 .collapsed .navbar-brand {
  margin-left: 1rem !important;
  margin-top: 0.5rem;
}
.cid-tHWjeFymd7 .collapsed .navbar-toggleable-sm {
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-tHWjeFymd7 .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: 0.5s;
  transition-property: opacity, padding, height;
}
.cid-tHWjeFymd7 .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-tHWjeFymd7 .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-tHWjeFymd7 .collapsed .dropdown .dropdown-toggle[data-toggle='dropdown-submenu']::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 0.3em;
  vertical-align: middle;
  content: '';
  border-top: 0.3em solid;
  border-right: 0.3em solid transparent;
  border-left: 0.3em solid transparent;
}
.cid-tHWjeFymd7 .collapsed .menu-bottom {
  -webkit-flex-direction: column-reverse;
  flex-direction: column-reverse;
  -webkit-justify-content: center;
  justify-content: center;
}
@media (max-width: 991px) {
  .cid-tHWjeFymd7 .navbar-collapse {
    padding-bottom: 1rem;
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-tHWjeFymd7 .navbar-collapse.collapsing,
  .cid-tHWjeFymd7 .navbar-collapse.show {
    display: block !important;
  }
  .cid-tHWjeFymd7 .navbar-collapse.collapsing .navbar-nav,
  .cid-tHWjeFymd7 .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-tHWjeFymd7 .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-tHWjeFymd7 .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-tHWjeFymd7 .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
  .cid-tHWjeFymd7 .navbar-collapse.show .navbar-nav .nav-item:last-child {
    margin-bottom: 1rem;
  }
  .cid-tHWjeFymd7 .navbar-collapse.collapsing .navbar-buttons,
  .cid-tHWjeFymd7 .navbar-collapse.show .navbar-buttons {
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    text-align: center;
  }
  .cid-tHWjeFymd7 .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-tHWjeFymd7 .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-tHWjeFymd7 .menu-bottom {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
    -webkit-justify-content: center;
    justify-content: center;
  }
  .cid-tHWjeFymd7 img {
    height: 3.8rem !important;
  }
  .cid-tHWjeFymd7 .btn {
    display: flex;
  }
  .cid-tHWjeFymd7 button.navbar-toggler {
    display: block;
  }
  .cid-tHWjeFymd7 .navbar-brand {
    margin-left: 1rem !important;
    margin-top: 0.5rem;
  }
  .cid-tHWjeFymd7 .navbar-toggleable-sm {
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .cid-tHWjeFymd7 .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: 0.5s;
    transition-property: opacity, padding, height;
  }
  .cid-tHWjeFymd7 .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 0rem 0;
    visibility: visible;
  }
  .cid-tHWjeFymd7 .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-tHWjeFymd7 .dropdown .dropdown-toggle[data-toggle='dropdown-submenu']::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: 0.3em;
    vertical-align: middle;
    content: '';
    border-top: 0.3em solid;
    border-right: 0.3em solid transparent;
    border-left: 0.3em solid transparent;
  }
  .cid-tHWjeFymd7 .navbar-buttons.mbr-section-btn {
    width: 100%;
  }
  .cid-tHWjeFymd7 .dropdown .dropdown-menu .dropdown-item {
    padding: 0em 1.5em 0em 1.5em !important;
    transition: none;
    margin: 0 !important;
  }
}
.cid-tHWjeFymd7 .navbar-dropdown {
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap;
}
.cid-tHWjeFymd7 .nav-link:focus {
  outline: none;
}
.cid-tHWjeFymd7 .navbar-toggler {
  position: relative;
}
.cid-tHWjeFymd7 .dropdown-item.active,
.cid-tHWjeFymd7 .dropdown-item:active {
  background: #3b5abb;
  color: initial;
}
.cid-shRvrCsmW8 {
  overflow-x: hidden !important;
}
.cid-shRvrCsmW8,
.cid-shRvrCsmW8 .scroll-wrapper {
  padding-top: 210px;
  padding-bottom: 45px;
}
.cid-shRvrCsmW8 .mbr-section-title {
  color: #ffffff;
}
.cid-shRvrCsmW8 .mbr-section-title span {
  color: #6592e6;
}
.cid-shRvrCsmW8 .mbr-text {
  color: #efefef;
  letter-spacing: 5px;
  font-weight: 100;
}
.cid-shRvrCsmW8 .scroll-wrapper {
  top: 0;
  width: 100%;
  height: 100%;
  background-position: 50% 50%;
  background-size: cover;
  position: absolute;
  background-repeat: repeat;
  z-index: 0;
  -webkit-animation-duration: 29s !important;
  animation-duration: 29s;
  background-image: url("../../../assets/images/mbr-1-1920x1080.jpg");
  -webkit-animation: scroll-wrapper linear infinite;
  -moz-animation: scroll-wrapper linear infinite;
  -o-animation: scroll-wrapper linear infinite;
  animation: scroll-wrapper linear infinite;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
}
.cid-shRvrCsmW8 .scroll-wrapper.second {
  left: calc(100% - 1px);
}
.cid-shRvrCsmW8 .mbr-overlay {
  z-index: 1;
}
.cid-shRvrCsmW8 .block-content {
  z-index: 2;
}
@keyframes scroll-wrapper {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}
@-webkit-keyframes scroll-wrapper {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}
@-moz-keyframes scroll-wrapper {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}
@-o-keyframes scroll-wrapper {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}
.cid-sgAXzTF6CS {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
  overflow: hidden;
  box-sizing: border-box;
}
.cid-sgAXzTF6CS .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-sgAXzTF6CS .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sgAXzTF6CS .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-sgAXzTF6CS .mbr-gallery-filter {
  padding-top: 0px;
  padding-bottom: 0px;
}
.cid-sgAXzTF6CS .container {
  padding: 0;
}
.cid-sgAXzTF6CS .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-sgAXzTF6CS .icon-focus {
  display: none;
}
.cid-sgAXzTF6CS .btn[class*=-outline] {
  border: none!important;
  padding: 1rem 1rem;
  position: relative;
  background: transparent!important;
  color: #808080 !important;
  font-weight: 400;
  box-shadow: none !important;
}
.cid-sgAXzTF6CS .btn[class*=-outline]:hover,
.cid-sgAXzTF6CS .btn[class*=-outline]:active {
  background: transparent!important;
}
.cid-sgAXzTF6CS li:hover .btn-primary-outline,
.cid-sgAXzTF6CS li:active .btn-primary-outline,
.cid-sgAXzTF6CS li.active .btn-primary-outline {
  color: #6592e6 !important;
}
.cid-sgAXzTF6CS li:hover .btn-secondary-outline,
.cid-sgAXzTF6CS li:active .btn-secondary-outline,
.cid-sgAXzTF6CS li.active .btn-secondary-outline {
  color: #ff6666 !important;
}
.cid-sgAXzTF6CS li:hover .btn-info-outline,
.cid-sgAXzTF6CS li:active .btn-info-outline,
.cid-sgAXzTF6CS li.active .btn-info-outline {
  color: #47b5ed !important;
}
.cid-sgAXzTF6CS li:hover .btn-warning-outline,
.cid-sgAXzTF6CS li:active .btn-warning-outline,
.cid-sgAXzTF6CS li.active .btn-warning-outline {
  color: #ffe161 !important;
}
.cid-sgAXzTF6CS li:hover .btn-white-outline,
.cid-sgAXzTF6CS li:active .btn-white-outline,
.cid-sgAXzTF6CS li.active .btn-white-outline {
  color: #ffffff !important;
}
.cid-sgAXzTF6CS li:hover .btn-black-outline,
.cid-sgAXzTF6CS li:active .btn-black-outline,
.cid-sgAXzTF6CS li.active .btn-black-outline {
  color: #000000 !important;
}
.cid-sgAXzTF6CS li:hover .btn-success-outline,
.cid-sgAXzTF6CS li:active .btn-success-outline,
.cid-sgAXzTF6CS li.active .btn-success-outline {
  color: #40b0bf !important;
}
.cid-sgAXzTF6CS li:hover .btn-danger-outline,
.cid-sgAXzTF6CS li:active .btn-danger-outline,
.cid-sgAXzTF6CS li.active .btn-danger-outline {
  color: #ff9966 !important;
}
.cid-sgAXzTF6CS li {
  position: relative;
}
.cid-sgAXzTF6CS .mbr-gallery-filter ul li:not(:last-child):after {
  content: '';
  position: absolute;
  height: 24px;
  width: 1px;
  right: 6px;
  top: 50%;
  background: #d3d3d3 !important;
  transform: rotate(35deg) translateY(-59%);
}
.cid-sgAXzTF6CS .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #000000;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-sgAXzTF6CS .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-sgAXzTF6CS .mbr-gallery-item > div:hover:before {
  opacity: 0.3 !important;
}
.cid-sgAXzTF6CS .btn {
  font-family: Jost !important;
}
.cid-sgAXzTF6CS .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: flex;
  width: 100%;
  bottom: 0;
  height: 100%;
  padding: 2rem;
  color: #fff;
  z-index: 2;
  justify-content: center;
  align-items: flex-end;
  transition: all 0.3s;
  opacity: 0;
}
.cid-sgAXzTF6CS .mbr-gallery-title:hover {
  opacity: 1;
}
.cid-sgAXzTF6CS .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #000000 !important;
  opacity: 0.3;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
@media (max-width: 767px) {
  .cid-sgAXzTF6CS .btn[class*="-outline"] {
    padding: 0rem 1rem;
    margin: 0!important;
  }
}
.cid-sgAXzTF6CS .mbr-gallery-item > div > span {
  text-align: center;
}
.cid-tHW2dTSz46 {
  padding-top: 30px;
  padding-bottom: 15px;
  background-image: url("../../../assets/images/mbr-13-1920x1280.jpg");
}
.cid-tHW2dTSz46 .listico {
  padding-right: 1rem;
  font-size: 1.3rem;
}
.cid-tHW2dTSz46 .navbar-logo {
  width: 80px;
  margin-bottom: 10px;
}
.cid-tHW2dTSz46 .mbr-text {
  color: #444;
}
.cid-tHW2dTSz46 h5 {
  margin-bottom: 0;
}
.cid-tHW2dTSz46 .navbar-brand {
  margin: 0rem;
  width: 100%;
}
.cid-tHW2dTSz46 .list-item {
  display: flex;
  padding-top: 10px;
  padding-bottom: 10px;
  -webkit-align-items: center;
  align-items: center;
}
.cid-tHW2dTSz46 .tips {
  height: 90px;
  width: 90px;
  border-radius: 6px;
  margin: 4px;
  object-fit: cover;
  display: inline;
}
.cid-tHW2dTSz46 .socicon {
  font-size: 1.3rem;
  background: #ff4a52;
  border-radius: 100%;
  width: 38px;
  height: 38px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-tHW2dTSz46 .social-list {
  display: flex;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-tHW2dTSz46 .social-list .soc-item {
  margin: 0 0.3rem;
}
.cid-tHW2dTSz46 .social-list a {
  margin: 0;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-tHW2dTSz46 .social-list a:hover {
  opacity: 0.4;
}
.cid-tHW2dTSz46 .media-container-row > div {
  padding: 0px;
}
.cid-tHW2dTSz46 .text2 {
  color: #6592e6;
  text-align: left;
}
.cid-tHW2dTSz46 .group-title {
  text-align: left;
  color: #e6c63b;
}
.cid-tHW2dTSz46 .group-title SPAN {
  color: #ffffff;
}
.cid-tHW2dTSz46 .links {
  color: #ffffff;
  line-height: 1.6;
}
@media (max-width: 991px) {
  .cid-tHW2dTSz46 .col-sm-12 {
    margin-bottom: 2rem;
  }
  .cid-tHW2dTSz46 .social-list,
  .cid-tHW2dTSz46 .img-list {
    -webkit-justify-content: center;
    justify-content: center;
    text-align: center;
  }
  .cid-tHW2dTSz46 h3 {
    margin-bottom: 10px;
  }
  .cid-tHW2dTSz46 .navbar-brand {
    text-align: center;
  }
}
.cid-tHW2dTSz46 .links SPAN {
  color: #9e9e9e;
}
.cid-siM30LrbO4 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #232323;
}
.cid-tHWjeFymd7 .navbar {
  padding: 0.5rem 0;
  background: #ffffff;
  transition: none;
  min-height: 50px;
}
.cid-tHWjeFymd7 .navbar-fixed-top {
  padding-top: 0;
}
.cid-tHWjeFymd7 .navbar-collapse {
  -ms-flex-preferred-size: auto;
  -webkit-flex-basis: auto;
  flex-basis: auto;
}
.cid-tHWjeFymd7 .dropdown-item {
  padding: 0;
}
.cid-tHWjeFymd7 .dropdown-menu {
  border: 0px solid lightgray;
  background: #3b5abb !important;
}
.cid-tHWjeFymd7 .menu-content-top {
  max-width: 1500px;
  display: none;
  padding: 0rem 2rem;
  margin: auto;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  overflow: hidden;
  transition: min-height 0.25s ease-in-out;
}
.cid-tHWjeFymd7 .menu-bottom {
  margin: auto;
  width: 100%;
  background: #3b5abb;
  display: flex;
  padding: 0 2rem;
  position: relative;
}
.cid-tHWjeFymd7 .navbar-dropdown.bg-color.transparent.opened {
  background: #ffffff;
}
.cid-tHWjeFymd7 a {
  font-style: normal;
}
.cid-tHWjeFymd7 .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  top: -0.2em;
  text-decoration: none;
}
.cid-tHWjeFymd7 .nav-item a {
  padding: 0rem 0 !important;
  margin: 0rem !important;
}
.cid-tHWjeFymd7 .dropdown-item:before {
  font-family: MobiriseIcons !important;
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-tHWjeFymd7 .content-text {
  margin-bottom: 0;
}
.cid-tHWjeFymd7 .navbar-nav {
  position: relative;
  min-height: 49px;
  -ms-flex-direction: row;
  -webkit-flex-direction: row;
  flex-direction: row;
}
@media (min-width: 992px) {
  .cid-tHWjeFymd7 .navbar-nav .main-menu-animated-line {
    position: absolute;
    left: 0;
    width: 0;
    height: 0;
    z-index: 100;
    border-top: 4px solid #6592e6;
    -webkit-transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
    -moz-transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
    transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
  }
  .cid-tHWjeFymd7 .navbar-nav .main-menu-animated-line.bottom {
    bottom: 0;
  }
}
.cid-tHWjeFymd7 .navbar-nav .nav-item span {
  padding-right: 0;
}
.cid-tHWjeFymd7 .navbar-nav .nav-item a {
  margin: 0 1.3rem !important;
}
.cid-tHWjeFymd7 .display-4 > .mbr-iconfont {
  font-size: 1.43em;
}
.cid-tHWjeFymd7 .display-4 > .btn > .mbr-iconfont {
  font-size: 1.43em;
}
.cid-tHWjeFymd7 .nav-dropdown .dropdown-item {
  font-weight: 400;
}
.cid-tHWjeFymd7 .navbar-buttons.mbr-section-btn {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-tHWjeFymd7 .nav-dropdown .link {
  font-weight: 400;
}
.cid-tHWjeFymd7 .menu .navbar-brand .logo-text-part {
  vertical-align: top;
}
.cid-tHWjeFymd7 .content-right-side {
  text-align: center;
}
.cid-tHWjeFymd7 .content-right-side .content-link {
  margin-left: 2rem;
}
.cid-tHWjeFymd7 .content-right-side .content-link span {
  vertical-align: middle;
  padding-right: 1rem;
}
.cid-tHWjeFymd7 .widget-icon {
  display: inline-block;
  padding-right: 1rem;
  font-size: 1.65rem;
}
.cid-tHWjeFymd7 .info-widget {
  padding-left: 2rem;
  padding-top: 0.5rem;
  padding-right: 3rem;
  border-left: 1px solid rgba(0, 0, 0, 0.12);
}
.cid-tHWjeFymd7 .menu-content-right {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-tHWjeFymd7 .menu-content-right .info-widget:last-child {
  padding-right: 0;
}
.cid-tHWjeFymd7 .menu-content-right .info-widget:first-child {
  padding-left: 0;
  border-left: none;
}
.cid-tHWjeFymd7 .widget-content {
  display: inline-block;
  vertical-align: top;
  text-align: left;
}
.cid-tHWjeFymd7 .widget-content .widget-title {
  font-weight: 600;
  margin-bottom: 7px;
}
.cid-tHWjeFymd7 .widget-content .widget-text {
  margin-bottom: 0;
}
@media (min-width: 992px) {
  .cid-tHWjeFymd7 .navbar .menu-content-top {
    display: flex;
    min-height: 83px;
    height: 100%;
  }
  .cid-tHWjeFymd7 .content-right-side {
    text-align: right;
    -webkit-flex-wrap: nowrap;
    flex-wrap: nowrap;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-tHWjeFymd7 .menu-content-top {
    border-bottom: 0px solid rgba(0, 0, 0, 0.12);
  }
  .cid-tHWjeFymd7 .navbar {
    display: block;
    padding: 0;
  }
  .cid-tHWjeFymd7 .navbar .menu-logo {
    margin-right: auto;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-tHWjeFymd7 .navbar:not(.navbar-short) .navbar-collapse {
    max-height: calc(100vh - 5.8rem - 4.5rem);
  }
  .cid-tHWjeFymd7 .navbar.navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
    -webkit-align-self: initial;
    align-self: auto;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    z-index: 101;
    min-height: 49px;
  }
  .cid-tHWjeFymd7 .dropdown-item:hover:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    width: 16px;
  }
  .cid-tHWjeFymd7 .navbar-toggler {
    display: none;
  }
  .cid-tHWjeFymd7 .navbar-collapse {
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
  }
}
.cid-tHWjeFymd7 .navbar-short .menu-content-top {
  height: 0;
  min-height: 0;
  border: none;
}
.cid-tHWjeFymd7 .btn {
  display: inline-flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-tHWjeFymd7 .btn .mbr-iconfont {
  font-size: 1.2em;
}
.cid-tHWjeFymd7 .menu-logo {
  margin-right: auto;
}
.cid-tHWjeFymd7 .menu-logo .navbar-brand {
  display: flex;
  margin-left: 1.5rem;
  padding: 0.5rem 0;
  transition: padding 0.2s;
  min-height: 3.8rem;
  -webkit-align-items: center;
  align-items: center;
}
.cid-tHWjeFymd7 .menu-logo .navbar-brand .navbar-caption-wrap {
  display: -webkit-flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 20rem;
  margin: 0.3rem 0;
}
.cid-tHWjeFymd7 .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-tHWjeFymd7 .menu-logo .navbar-brand .navbar-logo {
  font-size: 3rem;
  transition: font-size 0.25s;
}
.cid-tHWjeFymd7 .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
  width: auto;
}
.cid-tHWjeFymd7 .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-tHWjeFymd7 .navbar-toggleable-sm .navbar-collapse {
  width: auto;
}
.cid-tHWjeFymd7 .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  padding-left: 0;
}
.cid-tHWjeFymd7 .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-tHWjeFymd7 .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-tHWjeFymd7 .dropdown .dropdown-menu {
  background: #ffffff;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-tHWjeFymd7 .dropdown .dropdown-menu {
    overflow: hidden;
  }
}
.cid-tHWjeFymd7 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-tHWjeFymd7 .dropdown .dropdown-menu .dropdown-item::after {
  right: -0.5rem;
}
.cid-tHWjeFymd7 .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-tHWjeFymd7 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-tHWjeFymd7 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-tHWjeFymd7 .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0rem;
}
.cid-tHWjeFymd7 .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tHWjeFymd7 .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  -webkit-transform: translateY(100%);
  transform: translateY(100%);
  z-index: 1000;
}
.cid-tHWjeFymd7 .navbar.navbar-short {
  min-height: 50px;
  transition: all 0.2s;
}
.cid-tHWjeFymd7 .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-tHWjeFymd7 .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-tHWjeFymd7 .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
  width: auto;
}
.cid-tHWjeFymd7 .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-tHWjeFymd7 button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all 0.2s;
  margin: 1rem 0.8rem;
  -webkit-align-self: center;
  align-self: center;
}
.cid-tHWjeFymd7 button.navbar-toggler:focus {
  outline: none;
}
.cid-tHWjeFymd7 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #bbbbbb;
}
.cid-tHWjeFymd7 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tHWjeFymd7 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tHWjeFymd7 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tHWjeFymd7 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tHWjeFymd7 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tHWjeFymd7 nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tHWjeFymd7 nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tHWjeFymd7 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tHWjeFymd7 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tHWjeFymd7 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0em 1.5em 0em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tHWjeFymd7 .collapsed .btn {
  display: flex;
}
.cid-tHWjeFymd7 .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-tHWjeFymd7 .collapsed .navbar-collapse.collapsing,
.cid-tHWjeFymd7 .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-tHWjeFymd7 .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-tHWjeFymd7 .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-tHWjeFymd7 .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-tHWjeFymd7 .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-tHWjeFymd7 .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
.cid-tHWjeFymd7 .collapsed .navbar-collapse.show .navbar-nav .nav-item:last-child {
  margin-bottom: 1rem;
}
.cid-tHWjeFymd7 .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-tHWjeFymd7 .collapsed .navbar-collapse.show .navbar-buttons {
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  text-align: center;
}
.cid-tHWjeFymd7 .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-tHWjeFymd7 .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .cid-tHWjeFymd7 .collapsed .dropdown .dropdown-menu {
    overflow: hidden;
  }
}
.cid-tHWjeFymd7 .collapsed button.navbar-toggler {
  display: block;
}
.cid-tHWjeFymd7 .collapsed .navbar-brand {
  margin-left: 1rem !important;
  margin-top: 0.5rem;
}
.cid-tHWjeFymd7 .collapsed .navbar-toggleable-sm {
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-tHWjeFymd7 .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: 0.5s;
  transition-property: opacity, padding, height;
}
.cid-tHWjeFymd7 .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-tHWjeFymd7 .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-tHWjeFymd7 .collapsed .dropdown .dropdown-toggle[data-toggle='dropdown-submenu']::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 0.3em;
  vertical-align: middle;
  content: '';
  border-top: 0.3em solid;
  border-right: 0.3em solid transparent;
  border-left: 0.3em solid transparent;
}
.cid-tHWjeFymd7 .collapsed .menu-bottom {
  -webkit-flex-direction: column-reverse;
  flex-direction: column-reverse;
  -webkit-justify-content: center;
  justify-content: center;
}
@media (max-width: 991px) {
  .cid-tHWjeFymd7 .navbar-collapse {
    padding-bottom: 1rem;
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-tHWjeFymd7 .navbar-collapse.collapsing,
  .cid-tHWjeFymd7 .navbar-collapse.show {
    display: block !important;
  }
  .cid-tHWjeFymd7 .navbar-collapse.collapsing .navbar-nav,
  .cid-tHWjeFymd7 .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-tHWjeFymd7 .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-tHWjeFymd7 .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-tHWjeFymd7 .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
  .cid-tHWjeFymd7 .navbar-collapse.show .navbar-nav .nav-item:last-child {
    margin-bottom: 1rem;
  }
  .cid-tHWjeFymd7 .navbar-collapse.collapsing .navbar-buttons,
  .cid-tHWjeFymd7 .navbar-collapse.show .navbar-buttons {
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    text-align: center;
  }
  .cid-tHWjeFymd7 .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-tHWjeFymd7 .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-tHWjeFymd7 .menu-bottom {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
    -webkit-justify-content: center;
    justify-content: center;
  }
  .cid-tHWjeFymd7 img {
    height: 3.8rem !important;
  }
  .cid-tHWjeFymd7 .btn {
    display: flex;
  }
  .cid-tHWjeFymd7 button.navbar-toggler {
    display: block;
  }
  .cid-tHWjeFymd7 .navbar-brand {
    margin-left: 1rem !important;
    margin-top: 0.5rem;
  }
  .cid-tHWjeFymd7 .navbar-toggleable-sm {
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .cid-tHWjeFymd7 .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: 0.5s;
    transition-property: opacity, padding, height;
  }
  .cid-tHWjeFymd7 .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 0rem 0;
    visibility: visible;
  }
  .cid-tHWjeFymd7 .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-tHWjeFymd7 .dropdown .dropdown-toggle[data-toggle='dropdown-submenu']::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: 0.3em;
    vertical-align: middle;
    content: '';
    border-top: 0.3em solid;
    border-right: 0.3em solid transparent;
    border-left: 0.3em solid transparent;
  }
  .cid-tHWjeFymd7 .navbar-buttons.mbr-section-btn {
    width: 100%;
  }
  .cid-tHWjeFymd7 .dropdown .dropdown-menu .dropdown-item {
    padding: 0em 1.5em 0em 1.5em !important;
    transition: none;
    margin: 0 !important;
  }
}
.cid-tHWjeFymd7 .navbar-dropdown {
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap;
}
.cid-tHWjeFymd7 .nav-link:focus {
  outline: none;
}
.cid-tHWjeFymd7 .navbar-toggler {
  position: relative;
}
.cid-tHWjeFymd7 .dropdown-item.active,
.cid-tHWjeFymd7 .dropdown-item:active {
  background: #3b5abb;
  color: initial;
}
.cid-sgA8VDB5r9 {
  overflow-x: hidden !important;
}
.cid-sgA8VDB5r9,
.cid-sgA8VDB5r9 .scroll-wrapper {
  padding-top: 210px;
  padding-bottom: 45px;
}
.cid-sgA8VDB5r9 .mbr-section-title {
  color: #ffffff;
}
.cid-sgA8VDB5r9 .mbr-section-title span {
  color: #6592e6;
}
.cid-sgA8VDB5r9 .mbr-text {
  color: #efefef;
  letter-spacing: 5px;
  font-weight: 100;
}
.cid-sgA8VDB5r9 .scroll-wrapper {
  top: 0;
  width: 100%;
  height: 100%;
  background-position: 50% 50%;
  background-size: cover;
  position: absolute;
  background-repeat: repeat;
  z-index: 0;
  -webkit-animation-duration: 29s !important;
  animation-duration: 29s;
  background-image: url("../../../assets/images/mbr-3-1920x1080.jpg");
  -webkit-animation: scroll-wrapper linear infinite;
  -moz-animation: scroll-wrapper linear infinite;
  -o-animation: scroll-wrapper linear infinite;
  animation: scroll-wrapper linear infinite;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
}
.cid-sgA8VDB5r9 .scroll-wrapper.second {
  left: calc(100% - 1px);
}
.cid-sgA8VDB5r9 .mbr-overlay {
  z-index: 1;
}
.cid-sgA8VDB5r9 .block-content {
  z-index: 2;
}
@keyframes scroll-wrapper {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}
@-webkit-keyframes scroll-wrapper {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}
@-moz-keyframes scroll-wrapper {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}
@-o-keyframes scroll-wrapper {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}
.cid-sgA9HvSKZv {
  padding-top: 45px;
  padding-bottom: 45px;
  overflow: hidden;
  box-sizing: border-box;
  background-image: url("../../../assets/images/mbr-4-1920x1080.jpg");
}
.cid-sgA9HvSKZv .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-sgA9HvSKZv .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sgA9HvSKZv .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-sgA9HvSKZv .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-sgA9HvSKZv .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #ffffff;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
  background: linear-gradient(180deg, #ffffff, #353535);
}
.cid-sgA9HvSKZv .icon-focus {
  display: none;
}
.cid-sgA9HvSKZv .mbr-gallery-title {
  transition: all 0.5s ease;
  position: absolute;
  text-align: left;
  display: none;
  width: 100%;
  top: 0;
  right: 0;
  padding: 1rem;
  color: #000000;
  font-weight: bold;
  background: transparent;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
}
.cid-sgA9HvSKZv ul {
  font-size: 0;
}
.cid-sgA9HvSKZv .mbr-gallery-filter ul li .btn {
  border: none;
  background-color: transparent;
  color: #232323 !important;
  padding: 0.5rem 1rem 0.6rem;
  border-radius: 0;
  margin: 0!important;
  transition: padding, border 0s, transform .2s;
}
.cid-sgA9HvSKZv .mbr-gallery-filter ul li.active .btn {
  padding: 0.5rem 1rem 0.5rem;
  border-radius: 0 !important;
  position: relative;
}
.cid-sgA9HvSKZv .mbr-gallery-filter ul li.active .btn:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, #6592e6, #ff6666);
}
.cid-sgA9HvSKZv .mbr-gallery-filter ul li {
  padding: 0;
}
.cid-sgA9HvSKZv .mbr-gallery-item > div:hover .mbr-gallery-title {
  padding-bottom: 1.5rem;
  display: block;
}
.cid-sgA9HvSKZv .mbr-gallery-item > div:hover:before {
  opacity: 0.2 !important;
}
.cid-sgA9HvSKZv .btn {
  background: none;
  border-radius: 0 !important;
}
.cid-sgA9HvSKZv .btn:hover {
  background: transparent !important;
}
.cid-sgA9HvSKZv .btn:hover:before {
  background: transparent !important;
}
.cid-sgA9HvSKZv .btn:before {
  background-color: transparent !important;
}
.cid-sgA9HvSKZv .btn:focus {
  box-shadow: none;
}
.cid-sgA9HvSKZv .mbr-section-title {
  position: relative;
  z-index: 1;
}
.cid-tHW2lvKNGa {
  padding-top: 30px;
  padding-bottom: 15px;
  background-image: url("../../../assets/images/mbr-13-1920x1280.jpg");
}
.cid-tHW2lvKNGa .listico {
  padding-right: 1rem;
  font-size: 1.3rem;
}
.cid-tHW2lvKNGa .navbar-logo {
  width: 80px;
  margin-bottom: 10px;
}
.cid-tHW2lvKNGa .mbr-text {
  color: #444;
}
.cid-tHW2lvKNGa h5 {
  margin-bottom: 0;
}
.cid-tHW2lvKNGa .navbar-brand {
  margin: 0rem;
  width: 100%;
}
.cid-tHW2lvKNGa .list-item {
  display: flex;
  padding-top: 10px;
  padding-bottom: 10px;
  -webkit-align-items: center;
  align-items: center;
}
.cid-tHW2lvKNGa .tips {
  height: 90px;
  width: 90px;
  border-radius: 6px;
  margin: 4px;
  object-fit: cover;
  display: inline;
}
.cid-tHW2lvKNGa .socicon {
  font-size: 1.3rem;
  background: #ff4a52;
  border-radius: 100%;
  width: 38px;
  height: 38px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-tHW2lvKNGa .social-list {
  display: flex;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-tHW2lvKNGa .social-list .soc-item {
  margin: 0 0.3rem;
}
.cid-tHW2lvKNGa .social-list a {
  margin: 0;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-tHW2lvKNGa .social-list a:hover {
  opacity: 0.4;
}
.cid-tHW2lvKNGa .media-container-row > div {
  padding: 0px;
}
.cid-tHW2lvKNGa .text2 {
  color: #6592e6;
  text-align: left;
}
.cid-tHW2lvKNGa .group-title {
  text-align: left;
  color: #e6c63b;
}
.cid-tHW2lvKNGa .group-title SPAN {
  color: #ffffff;
}
.cid-tHW2lvKNGa .links {
  color: #ffffff;
  line-height: 1.6;
}
@media (max-width: 991px) {
  .cid-tHW2lvKNGa .col-sm-12 {
    margin-bottom: 2rem;
  }
  .cid-tHW2lvKNGa .social-list,
  .cid-tHW2lvKNGa .img-list {
    -webkit-justify-content: center;
    justify-content: center;
    text-align: center;
  }
  .cid-tHW2lvKNGa h3 {
    margin-bottom: 10px;
  }
  .cid-tHW2lvKNGa .navbar-brand {
    text-align: center;
  }
}
.cid-tHW2lvKNGa .links SPAN {
  color: #9e9e9e;
}
.cid-siM30LrbO4 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #232323;
}
.cid-tHWjeFymd7 .navbar {
  padding: 0.5rem 0;
  background: #ffffff;
  transition: none;
  min-height: 50px;
}
.cid-tHWjeFymd7 .navbar-fixed-top {
  padding-top: 0;
}
.cid-tHWjeFymd7 .navbar-collapse {
  -ms-flex-preferred-size: auto;
  -webkit-flex-basis: auto;
  flex-basis: auto;
}
.cid-tHWjeFymd7 .dropdown-item {
  padding: 0;
}
.cid-tHWjeFymd7 .dropdown-menu {
  border: 0px solid lightgray;
  background: #3b5abb !important;
}
.cid-tHWjeFymd7 .menu-content-top {
  max-width: 1500px;
  display: none;
  padding: 0rem 2rem;
  margin: auto;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  overflow: hidden;
  transition: min-height 0.25s ease-in-out;
}
.cid-tHWjeFymd7 .menu-bottom {
  margin: auto;
  width: 100%;
  background: #3b5abb;
  display: flex;
  padding: 0 2rem;
  position: relative;
}
.cid-tHWjeFymd7 .navbar-dropdown.bg-color.transparent.opened {
  background: #ffffff;
}
.cid-tHWjeFymd7 a {
  font-style: normal;
}
.cid-tHWjeFymd7 .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  top: -0.2em;
  text-decoration: none;
}
.cid-tHWjeFymd7 .nav-item a {
  padding: 0rem 0 !important;
  margin: 0rem !important;
}
.cid-tHWjeFymd7 .dropdown-item:before {
  font-family: MobiriseIcons !important;
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-tHWjeFymd7 .content-text {
  margin-bottom: 0;
}
.cid-tHWjeFymd7 .navbar-nav {
  position: relative;
  min-height: 49px;
  -ms-flex-direction: row;
  -webkit-flex-direction: row;
  flex-direction: row;
}
@media (min-width: 992px) {
  .cid-tHWjeFymd7 .navbar-nav .main-menu-animated-line {
    position: absolute;
    left: 0;
    width: 0;
    height: 0;
    z-index: 100;
    border-top: 4px solid #6592e6;
    -webkit-transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
    -moz-transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
    transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
  }
  .cid-tHWjeFymd7 .navbar-nav .main-menu-animated-line.bottom {
    bottom: 0;
  }
}
.cid-tHWjeFymd7 .navbar-nav .nav-item span {
  padding-right: 0;
}
.cid-tHWjeFymd7 .navbar-nav .nav-item a {
  margin: 0 1.3rem !important;
}
.cid-tHWjeFymd7 .display-4 > .mbr-iconfont {
  font-size: 1.43em;
}
.cid-tHWjeFymd7 .display-4 > .btn > .mbr-iconfont {
  font-size: 1.43em;
}
.cid-tHWjeFymd7 .nav-dropdown .dropdown-item {
  font-weight: 400;
}
.cid-tHWjeFymd7 .navbar-buttons.mbr-section-btn {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-tHWjeFymd7 .nav-dropdown .link {
  font-weight: 400;
}
.cid-tHWjeFymd7 .menu .navbar-brand .logo-text-part {
  vertical-align: top;
}
.cid-tHWjeFymd7 .content-right-side {
  text-align: center;
}
.cid-tHWjeFymd7 .content-right-side .content-link {
  margin-left: 2rem;
}
.cid-tHWjeFymd7 .content-right-side .content-link span {
  vertical-align: middle;
  padding-right: 1rem;
}
.cid-tHWjeFymd7 .widget-icon {
  display: inline-block;
  padding-right: 1rem;
  font-size: 1.65rem;
}
.cid-tHWjeFymd7 .info-widget {
  padding-left: 2rem;
  padding-top: 0.5rem;
  padding-right: 3rem;
  border-left: 1px solid rgba(0, 0, 0, 0.12);
}
.cid-tHWjeFymd7 .menu-content-right {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-tHWjeFymd7 .menu-content-right .info-widget:last-child {
  padding-right: 0;
}
.cid-tHWjeFymd7 .menu-content-right .info-widget:first-child {
  padding-left: 0;
  border-left: none;
}
.cid-tHWjeFymd7 .widget-content {
  display: inline-block;
  vertical-align: top;
  text-align: left;
}
.cid-tHWjeFymd7 .widget-content .widget-title {
  font-weight: 600;
  margin-bottom: 7px;
}
.cid-tHWjeFymd7 .widget-content .widget-text {
  margin-bottom: 0;
}
@media (min-width: 992px) {
  .cid-tHWjeFymd7 .navbar .menu-content-top {
    display: flex;
    min-height: 83px;
    height: 100%;
  }
  .cid-tHWjeFymd7 .content-right-side {
    text-align: right;
    -webkit-flex-wrap: nowrap;
    flex-wrap: nowrap;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-tHWjeFymd7 .menu-content-top {
    border-bottom: 0px solid rgba(0, 0, 0, 0.12);
  }
  .cid-tHWjeFymd7 .navbar {
    display: block;
    padding: 0;
  }
  .cid-tHWjeFymd7 .navbar .menu-logo {
    margin-right: auto;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-tHWjeFymd7 .navbar:not(.navbar-short) .navbar-collapse {
    max-height: calc(100vh - 5.8rem - 4.5rem);
  }
  .cid-tHWjeFymd7 .navbar.navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
    -webkit-align-self: initial;
    align-self: auto;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    z-index: 101;
    min-height: 49px;
  }
  .cid-tHWjeFymd7 .dropdown-item:hover:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    width: 16px;
  }
  .cid-tHWjeFymd7 .navbar-toggler {
    display: none;
  }
  .cid-tHWjeFymd7 .navbar-collapse {
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
  }
}
.cid-tHWjeFymd7 .navbar-short .menu-content-top {
  height: 0;
  min-height: 0;
  border: none;
}
.cid-tHWjeFymd7 .btn {
  display: inline-flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-tHWjeFymd7 .btn .mbr-iconfont {
  font-size: 1.2em;
}
.cid-tHWjeFymd7 .menu-logo {
  margin-right: auto;
}
.cid-tHWjeFymd7 .menu-logo .navbar-brand {
  display: flex;
  margin-left: 1.5rem;
  padding: 0.5rem 0;
  transition: padding 0.2s;
  min-height: 3.8rem;
  -webkit-align-items: center;
  align-items: center;
}
.cid-tHWjeFymd7 .menu-logo .navbar-brand .navbar-caption-wrap {
  display: -webkit-flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 20rem;
  margin: 0.3rem 0;
}
.cid-tHWjeFymd7 .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-tHWjeFymd7 .menu-logo .navbar-brand .navbar-logo {
  font-size: 3rem;
  transition: font-size 0.25s;
}
.cid-tHWjeFymd7 .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
  width: auto;
}
.cid-tHWjeFymd7 .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-tHWjeFymd7 .navbar-toggleable-sm .navbar-collapse {
  width: auto;
}
.cid-tHWjeFymd7 .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  padding-left: 0;
}
.cid-tHWjeFymd7 .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-tHWjeFymd7 .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-tHWjeFymd7 .dropdown .dropdown-menu {
  background: #ffffff;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-tHWjeFymd7 .dropdown .dropdown-menu {
    overflow: hidden;
  }
}
.cid-tHWjeFymd7 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-tHWjeFymd7 .dropdown .dropdown-menu .dropdown-item::after {
  right: -0.5rem;
}
.cid-tHWjeFymd7 .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-tHWjeFymd7 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-tHWjeFymd7 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-tHWjeFymd7 .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0rem;
}
.cid-tHWjeFymd7 .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tHWjeFymd7 .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  -webkit-transform: translateY(100%);
  transform: translateY(100%);
  z-index: 1000;
}
.cid-tHWjeFymd7 .navbar.navbar-short {
  min-height: 50px;
  transition: all 0.2s;
}
.cid-tHWjeFymd7 .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-tHWjeFymd7 .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-tHWjeFymd7 .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
  width: auto;
}
.cid-tHWjeFymd7 .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-tHWjeFymd7 button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all 0.2s;
  margin: 1rem 0.8rem;
  -webkit-align-self: center;
  align-self: center;
}
.cid-tHWjeFymd7 button.navbar-toggler:focus {
  outline: none;
}
.cid-tHWjeFymd7 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #bbbbbb;
}
.cid-tHWjeFymd7 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tHWjeFymd7 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tHWjeFymd7 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tHWjeFymd7 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tHWjeFymd7 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tHWjeFymd7 nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tHWjeFymd7 nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tHWjeFymd7 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tHWjeFymd7 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tHWjeFymd7 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0em 1.5em 0em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tHWjeFymd7 .collapsed .btn {
  display: flex;
}
.cid-tHWjeFymd7 .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-tHWjeFymd7 .collapsed .navbar-collapse.collapsing,
.cid-tHWjeFymd7 .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-tHWjeFymd7 .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-tHWjeFymd7 .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-tHWjeFymd7 .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-tHWjeFymd7 .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-tHWjeFymd7 .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
.cid-tHWjeFymd7 .collapsed .navbar-collapse.show .navbar-nav .nav-item:last-child {
  margin-bottom: 1rem;
}
.cid-tHWjeFymd7 .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-tHWjeFymd7 .collapsed .navbar-collapse.show .navbar-buttons {
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  text-align: center;
}
.cid-tHWjeFymd7 .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-tHWjeFymd7 .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .cid-tHWjeFymd7 .collapsed .dropdown .dropdown-menu {
    overflow: hidden;
  }
}
.cid-tHWjeFymd7 .collapsed button.navbar-toggler {
  display: block;
}
.cid-tHWjeFymd7 .collapsed .navbar-brand {
  margin-left: 1rem !important;
  margin-top: 0.5rem;
}
.cid-tHWjeFymd7 .collapsed .navbar-toggleable-sm {
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-tHWjeFymd7 .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: 0.5s;
  transition-property: opacity, padding, height;
}
.cid-tHWjeFymd7 .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-tHWjeFymd7 .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-tHWjeFymd7 .collapsed .dropdown .dropdown-toggle[data-toggle='dropdown-submenu']::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 0.3em;
  vertical-align: middle;
  content: '';
  border-top: 0.3em solid;
  border-right: 0.3em solid transparent;
  border-left: 0.3em solid transparent;
}
.cid-tHWjeFymd7 .collapsed .menu-bottom {
  -webkit-flex-direction: column-reverse;
  flex-direction: column-reverse;
  -webkit-justify-content: center;
  justify-content: center;
}
@media (max-width: 991px) {
  .cid-tHWjeFymd7 .navbar-collapse {
    padding-bottom: 1rem;
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-tHWjeFymd7 .navbar-collapse.collapsing,
  .cid-tHWjeFymd7 .navbar-collapse.show {
    display: block !important;
  }
  .cid-tHWjeFymd7 .navbar-collapse.collapsing .navbar-nav,
  .cid-tHWjeFymd7 .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-tHWjeFymd7 .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-tHWjeFymd7 .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-tHWjeFymd7 .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
  .cid-tHWjeFymd7 .navbar-collapse.show .navbar-nav .nav-item:last-child {
    margin-bottom: 1rem;
  }
  .cid-tHWjeFymd7 .navbar-collapse.collapsing .navbar-buttons,
  .cid-tHWjeFymd7 .navbar-collapse.show .navbar-buttons {
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    text-align: center;
  }
  .cid-tHWjeFymd7 .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-tHWjeFymd7 .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-tHWjeFymd7 .menu-bottom {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
    -webkit-justify-content: center;
    justify-content: center;
  }
  .cid-tHWjeFymd7 img {
    height: 3.8rem !important;
  }
  .cid-tHWjeFymd7 .btn {
    display: flex;
  }
  .cid-tHWjeFymd7 button.navbar-toggler {
    display: block;
  }
  .cid-tHWjeFymd7 .navbar-brand {
    margin-left: 1rem !important;
    margin-top: 0.5rem;
  }
  .cid-tHWjeFymd7 .navbar-toggleable-sm {
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .cid-tHWjeFymd7 .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: 0.5s;
    transition-property: opacity, padding, height;
  }
  .cid-tHWjeFymd7 .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 0rem 0;
    visibility: visible;
  }
  .cid-tHWjeFymd7 .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-tHWjeFymd7 .dropdown .dropdown-toggle[data-toggle='dropdown-submenu']::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: 0.3em;
    vertical-align: middle;
    content: '';
    border-top: 0.3em solid;
    border-right: 0.3em solid transparent;
    border-left: 0.3em solid transparent;
  }
  .cid-tHWjeFymd7 .navbar-buttons.mbr-section-btn {
    width: 100%;
  }
  .cid-tHWjeFymd7 .dropdown .dropdown-menu .dropdown-item {
    padding: 0em 1.5em 0em 1.5em !important;
    transition: none;
    margin: 0 !important;
  }
}
.cid-tHWjeFymd7 .navbar-dropdown {
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap;
}
.cid-tHWjeFymd7 .nav-link:focus {
  outline: none;
}
.cid-tHWjeFymd7 .navbar-toggler {
  position: relative;
}
.cid-tHWjeFymd7 .dropdown-item.active,
.cid-tHWjeFymd7 .dropdown-item:active {
  background: #3b5abb;
  color: initial;
}
.cid-swqnkwhFrN {
  overflow-x: hidden !important;
}
.cid-swqnkwhFrN,
.cid-swqnkwhFrN .scroll-wrapper {
  padding-top: 225px;
  padding-bottom: 105px;
}
.cid-swqnkwhFrN .mbr-section-title {
  color: #ffffff;
}
.cid-swqnkwhFrN .mbr-section-title span {
  color: #6592e6;
}
.cid-swqnkwhFrN .mbr-text {
  color: #efefef;
  letter-spacing: 5px;
  font-weight: 100;
}
.cid-swqnkwhFrN .scroll-wrapper {
  top: 0;
  width: 100%;
  height: 100%;
  background-position: 50% 50%;
  background-size: cover;
  position: absolute;
  background-repeat: repeat;
  z-index: 0;
  -webkit-animation-duration: 47s !important;
  animation-duration: 47s;
  background-image: url("../../../assets/images/technologist-protective-uniform-wearing-hairnet-mask-goggles-gloves-closing-industrial-tank-reservoir-web-2000x1335.jpeg");
  -webkit-animation: scroll-wrapper linear infinite;
  -moz-animation: scroll-wrapper linear infinite;
  -o-animation: scroll-wrapper linear infinite;
  animation: scroll-wrapper linear infinite;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
}
.cid-swqnkwhFrN .scroll-wrapper.second {
  left: calc(100% - 1px);
}
.cid-swqnkwhFrN .mbr-overlay {
  z-index: 1;
}
.cid-swqnkwhFrN .block-content {
  z-index: 2;
}
@keyframes scroll-wrapper {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}
@-webkit-keyframes scroll-wrapper {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}
@-moz-keyframes scroll-wrapper {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}
@-o-keyframes scroll-wrapper {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}
.cid-swrnByQiQ9 {
  padding-top: 60px;
  padding-bottom: 0px;
  background-color: #fafafa;
}
.cid-swrnByQiQ9 h4 {
  font-weight: 600;
  color: #e2e2e2;
}
.cid-swrnByQiQ9 .mbr-section-subtitle {
  color: #767676;
}
.cid-swrnByQiQ9 .article {
  padding-right: 2rem;
  padding-left: 2rem;
}
@media (min-width: 768px) {
  .cid-swrnByQiQ9 .article-right-border {
    border-right: 2px dotted #e2e2e2;
  }
}
.cid-swrnByQiQ9 .mbr-text-left {
  text-align: left;
  color: #5e5d5d;
}
.cid-swrnByQiQ9 .article-title-left {
  text-align: left;
  color: #000000;
}
.cid-swrnByQiQ9 .mbr-text-right {
  color: #5e5d5d;
}
.cid-swrnByQiQ9 .article-title-right {
  color: #000000;
}
.cid-swrnByQiQ9 H2 {
  color: #294877;
}
.cid-swrqdbZOJn {
  padding-top: 2rem;
  padding-bottom: 3rem;
  background-color: #fafafa;
}
.cid-swrqdbZOJn .item {
  padding-bottom: 2rem;
}
.cid-swrqdbZOJn .item-wrapper {
  height: 300px;
  position: relative;
}
.cid-swrqdbZOJn .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-swrqdbZOJn .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
  border-radius: 50%;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  background-color: #1b1b1b;
  transition: 0.2s;
}
.cid-swrqdbZOJn .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-swrqdbZOJn .carousel-control,
.cid-swrqdbZOJn .close {
  background: #1b1b1b;
}
.cid-swrqdbZOJn .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-swrqdbZOJn .carousel-control-prev span {
  margin-right: 5px;
}
.cid-swrqdbZOJn .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-swrqdbZOJn .carousel-control-next span {
  margin-left: 5px;
}
.cid-swrqdbZOJn .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  font-family: 'Moririse2';
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-swrqdbZOJn .close::before {
  content: '\e91a';
}
.cid-swrqdbZOJn .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-swrqdbZOJn .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-swrqdbZOJn .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-swrqdbZOJn .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-swrqdbZOJn .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-swrqdbZOJn .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-swrqdbZOJn .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-swrqdbZOJn .carousel-indicators li.active,
.cid-swrqdbZOJn .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-swrqdbZOJn .carousel-indicators li::after,
.cid-swrqdbZOJn .carousel-indicators li::before {
  content: none;
}
.cid-swrqdbZOJn .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-swrqdbZOJn .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-swrqdbZOJn .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-swrqdbZOJn .carousel-indicators {
    display: none;
  }
}
.cid-swrqdbZOJn .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-swrqdbZOJn .carousel-inner > .active {
  display: block;
}
.cid-swrqdbZOJn .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-swrqdbZOJn .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-swrqdbZOJn .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-swrqdbZOJn .carousel-control,
  .cid-swrqdbZOJn .carousel-indicators,
  .cid-swrqdbZOJn .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-swrqdbZOJn .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-swrqdbZOJn .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-swrqdbZOJn .carousel-indicators .active,
.cid-swrqdbZOJn .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-swrqdbZOJn .carousel-indicators .active {
  background: #fff;
}
.cid-swrqdbZOJn .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-swrqdbZOJn .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-swrqdbZOJn .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-swrqdbZOJn .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-swrqdbZOJn .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-swrqdbZOJn .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-swrqdbZOJn .carousel {
  width: 100%;
}
.cid-swrqdbZOJn .modal-backdrop.in {
  opacity: 0.8;
}
.cid-swrqdbZOJn .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-swrqdbZOJn .modal.fade .modal-dialog,
.cid-swrqdbZOJn .modal.in .modal-dialog {
  transform: none;
}
.cid-swrqdbZOJn .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-swrqdbZOJn H6 {
  text-align: center;
}
.cid-tHW2twvnRp {
  padding-top: 30px;
  padding-bottom: 15px;
  background-image: url("../../../assets/images/mbr-13-1920x1280.jpg");
}
.cid-tHW2twvnRp .listico {
  padding-right: 1rem;
  font-size: 1.3rem;
}
.cid-tHW2twvnRp .navbar-logo {
  width: 80px;
  margin-bottom: 10px;
}
.cid-tHW2twvnRp .mbr-text {
  color: #444;
}
.cid-tHW2twvnRp h5 {
  margin-bottom: 0;
}
.cid-tHW2twvnRp .navbar-brand {
  margin: 0rem;
  width: 100%;
}
.cid-tHW2twvnRp .list-item {
  display: flex;
  padding-top: 10px;
  padding-bottom: 10px;
  -webkit-align-items: center;
  align-items: center;
}
.cid-tHW2twvnRp .tips {
  height: 90px;
  width: 90px;
  border-radius: 6px;
  margin: 4px;
  object-fit: cover;
  display: inline;
}
.cid-tHW2twvnRp .socicon {
  font-size: 1.3rem;
  background: #ff4a52;
  border-radius: 100%;
  width: 38px;
  height: 38px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-tHW2twvnRp .social-list {
  display: flex;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-tHW2twvnRp .social-list .soc-item {
  margin: 0 0.3rem;
}
.cid-tHW2twvnRp .social-list a {
  margin: 0;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-tHW2twvnRp .social-list a:hover {
  opacity: 0.4;
}
.cid-tHW2twvnRp .media-container-row > div {
  padding: 0px;
}
.cid-tHW2twvnRp .text2 {
  color: #6592e6;
  text-align: left;
}
.cid-tHW2twvnRp .group-title {
  text-align: left;
  color: #e6c63b;
}
.cid-tHW2twvnRp .group-title SPAN {
  color: #ffffff;
}
.cid-tHW2twvnRp .links {
  color: #ffffff;
  line-height: 1.6;
}
@media (max-width: 991px) {
  .cid-tHW2twvnRp .col-sm-12 {
    margin-bottom: 2rem;
  }
  .cid-tHW2twvnRp .social-list,
  .cid-tHW2twvnRp .img-list {
    -webkit-justify-content: center;
    justify-content: center;
    text-align: center;
  }
  .cid-tHW2twvnRp h3 {
    margin-bottom: 10px;
  }
  .cid-tHW2twvnRp .navbar-brand {
    text-align: center;
  }
}
.cid-tHW2twvnRp .links SPAN {
  color: #9e9e9e;
}
.cid-swqnkyoKzK {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #232323;
}
.cid-tHWjeFymd7 .navbar {
  padding: 0.5rem 0;
  background: #ffffff;
  transition: none;
  min-height: 50px;
}
.cid-tHWjeFymd7 .navbar-fixed-top {
  padding-top: 0;
}
.cid-tHWjeFymd7 .navbar-collapse {
  -ms-flex-preferred-size: auto;
  -webkit-flex-basis: auto;
  flex-basis: auto;
}
.cid-tHWjeFymd7 .dropdown-item {
  padding: 0;
}
.cid-tHWjeFymd7 .dropdown-menu {
  border: 0px solid lightgray;
  background: #3b5abb !important;
}
.cid-tHWjeFymd7 .menu-content-top {
  max-width: 1500px;
  display: none;
  padding: 0rem 2rem;
  margin: auto;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  overflow: hidden;
  transition: min-height 0.25s ease-in-out;
}
.cid-tHWjeFymd7 .menu-bottom {
  margin: auto;
  width: 100%;
  background: #3b5abb;
  display: flex;
  padding: 0 2rem;
  position: relative;
}
.cid-tHWjeFymd7 .navbar-dropdown.bg-color.transparent.opened {
  background: #ffffff;
}
.cid-tHWjeFymd7 a {
  font-style: normal;
}
.cid-tHWjeFymd7 .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  top: -0.2em;
  text-decoration: none;
}
.cid-tHWjeFymd7 .nav-item a {
  padding: 0rem 0 !important;
  margin: 0rem !important;
}
.cid-tHWjeFymd7 .dropdown-item:before {
  font-family: MobiriseIcons !important;
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-tHWjeFymd7 .content-text {
  margin-bottom: 0;
}
.cid-tHWjeFymd7 .navbar-nav {
  position: relative;
  min-height: 49px;
  -ms-flex-direction: row;
  -webkit-flex-direction: row;
  flex-direction: row;
}
@media (min-width: 992px) {
  .cid-tHWjeFymd7 .navbar-nav .main-menu-animated-line {
    position: absolute;
    left: 0;
    width: 0;
    height: 0;
    z-index: 100;
    border-top: 4px solid #6592e6;
    -webkit-transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
    -moz-transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
    transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
  }
  .cid-tHWjeFymd7 .navbar-nav .main-menu-animated-line.bottom {
    bottom: 0;
  }
}
.cid-tHWjeFymd7 .navbar-nav .nav-item span {
  padding-right: 0;
}
.cid-tHWjeFymd7 .navbar-nav .nav-item a {
  margin: 0 1.3rem !important;
}
.cid-tHWjeFymd7 .display-4 > .mbr-iconfont {
  font-size: 1.43em;
}
.cid-tHWjeFymd7 .display-4 > .btn > .mbr-iconfont {
  font-size: 1.43em;
}
.cid-tHWjeFymd7 .nav-dropdown .dropdown-item {
  font-weight: 400;
}
.cid-tHWjeFymd7 .navbar-buttons.mbr-section-btn {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-tHWjeFymd7 .nav-dropdown .link {
  font-weight: 400;
}
.cid-tHWjeFymd7 .menu .navbar-brand .logo-text-part {
  vertical-align: top;
}
.cid-tHWjeFymd7 .content-right-side {
  text-align: center;
}
.cid-tHWjeFymd7 .content-right-side .content-link {
  margin-left: 2rem;
}
.cid-tHWjeFymd7 .content-right-side .content-link span {
  vertical-align: middle;
  padding-right: 1rem;
}
.cid-tHWjeFymd7 .widget-icon {
  display: inline-block;
  padding-right: 1rem;
  font-size: 1.65rem;
}
.cid-tHWjeFymd7 .info-widget {
  padding-left: 2rem;
  padding-top: 0.5rem;
  padding-right: 3rem;
  border-left: 1px solid rgba(0, 0, 0, 0.12);
}
.cid-tHWjeFymd7 .menu-content-right {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-tHWjeFymd7 .menu-content-right .info-widget:last-child {
  padding-right: 0;
}
.cid-tHWjeFymd7 .menu-content-right .info-widget:first-child {
  padding-left: 0;
  border-left: none;
}
.cid-tHWjeFymd7 .widget-content {
  display: inline-block;
  vertical-align: top;
  text-align: left;
}
.cid-tHWjeFymd7 .widget-content .widget-title {
  font-weight: 600;
  margin-bottom: 7px;
}
.cid-tHWjeFymd7 .widget-content .widget-text {
  margin-bottom: 0;
}
@media (min-width: 992px) {
  .cid-tHWjeFymd7 .navbar .menu-content-top {
    display: flex;
    min-height: 83px;
    height: 100%;
  }
  .cid-tHWjeFymd7 .content-right-side {
    text-align: right;
    -webkit-flex-wrap: nowrap;
    flex-wrap: nowrap;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-tHWjeFymd7 .menu-content-top {
    border-bottom: 0px solid rgba(0, 0, 0, 0.12);
  }
  .cid-tHWjeFymd7 .navbar {
    display: block;
    padding: 0;
  }
  .cid-tHWjeFymd7 .navbar .menu-logo {
    margin-right: auto;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-tHWjeFymd7 .navbar:not(.navbar-short) .navbar-collapse {
    max-height: calc(100vh - 5.8rem - 4.5rem);
  }
  .cid-tHWjeFymd7 .navbar.navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
    -webkit-align-self: initial;
    align-self: auto;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    z-index: 101;
    min-height: 49px;
  }
  .cid-tHWjeFymd7 .dropdown-item:hover:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    width: 16px;
  }
  .cid-tHWjeFymd7 .navbar-toggler {
    display: none;
  }
  .cid-tHWjeFymd7 .navbar-collapse {
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
  }
}
.cid-tHWjeFymd7 .navbar-short .menu-content-top {
  height: 0;
  min-height: 0;
  border: none;
}
.cid-tHWjeFymd7 .btn {
  display: inline-flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-tHWjeFymd7 .btn .mbr-iconfont {
  font-size: 1.2em;
}
.cid-tHWjeFymd7 .menu-logo {
  margin-right: auto;
}
.cid-tHWjeFymd7 .menu-logo .navbar-brand {
  display: flex;
  margin-left: 1.5rem;
  padding: 0.5rem 0;
  transition: padding 0.2s;
  min-height: 3.8rem;
  -webkit-align-items: center;
  align-items: center;
}
.cid-tHWjeFymd7 .menu-logo .navbar-brand .navbar-caption-wrap {
  display: -webkit-flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 20rem;
  margin: 0.3rem 0;
}
.cid-tHWjeFymd7 .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-tHWjeFymd7 .menu-logo .navbar-brand .navbar-logo {
  font-size: 3rem;
  transition: font-size 0.25s;
}
.cid-tHWjeFymd7 .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
  width: auto;
}
.cid-tHWjeFymd7 .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-tHWjeFymd7 .navbar-toggleable-sm .navbar-collapse {
  width: auto;
}
.cid-tHWjeFymd7 .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  padding-left: 0;
}
.cid-tHWjeFymd7 .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-tHWjeFymd7 .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-tHWjeFymd7 .dropdown .dropdown-menu {
  background: #ffffff;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-tHWjeFymd7 .dropdown .dropdown-menu {
    overflow: hidden;
  }
}
.cid-tHWjeFymd7 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-tHWjeFymd7 .dropdown .dropdown-menu .dropdown-item::after {
  right: -0.5rem;
}
.cid-tHWjeFymd7 .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-tHWjeFymd7 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-tHWjeFymd7 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-tHWjeFymd7 .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0rem;
}
.cid-tHWjeFymd7 .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tHWjeFymd7 .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  -webkit-transform: translateY(100%);
  transform: translateY(100%);
  z-index: 1000;
}
.cid-tHWjeFymd7 .navbar.navbar-short {
  min-height: 50px;
  transition: all 0.2s;
}
.cid-tHWjeFymd7 .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-tHWjeFymd7 .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-tHWjeFymd7 .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
  width: auto;
}
.cid-tHWjeFymd7 .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-tHWjeFymd7 button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all 0.2s;
  margin: 1rem 0.8rem;
  -webkit-align-self: center;
  align-self: center;
}
.cid-tHWjeFymd7 button.navbar-toggler:focus {
  outline: none;
}
.cid-tHWjeFymd7 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #bbbbbb;
}
.cid-tHWjeFymd7 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tHWjeFymd7 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tHWjeFymd7 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tHWjeFymd7 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tHWjeFymd7 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tHWjeFymd7 nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tHWjeFymd7 nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tHWjeFymd7 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tHWjeFymd7 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tHWjeFymd7 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0em 1.5em 0em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tHWjeFymd7 .collapsed .btn {
  display: flex;
}
.cid-tHWjeFymd7 .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-tHWjeFymd7 .collapsed .navbar-collapse.collapsing,
.cid-tHWjeFymd7 .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-tHWjeFymd7 .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-tHWjeFymd7 .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-tHWjeFymd7 .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-tHWjeFymd7 .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-tHWjeFymd7 .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
.cid-tHWjeFymd7 .collapsed .navbar-collapse.show .navbar-nav .nav-item:last-child {
  margin-bottom: 1rem;
}
.cid-tHWjeFymd7 .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-tHWjeFymd7 .collapsed .navbar-collapse.show .navbar-buttons {
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  text-align: center;
}
.cid-tHWjeFymd7 .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-tHWjeFymd7 .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .cid-tHWjeFymd7 .collapsed .dropdown .dropdown-menu {
    overflow: hidden;
  }
}
.cid-tHWjeFymd7 .collapsed button.navbar-toggler {
  display: block;
}
.cid-tHWjeFymd7 .collapsed .navbar-brand {
  margin-left: 1rem !important;
  margin-top: 0.5rem;
}
.cid-tHWjeFymd7 .collapsed .navbar-toggleable-sm {
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-tHWjeFymd7 .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: 0.5s;
  transition-property: opacity, padding, height;
}
.cid-tHWjeFymd7 .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-tHWjeFymd7 .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-tHWjeFymd7 .collapsed .dropdown .dropdown-toggle[data-toggle='dropdown-submenu']::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 0.3em;
  vertical-align: middle;
  content: '';
  border-top: 0.3em solid;
  border-right: 0.3em solid transparent;
  border-left: 0.3em solid transparent;
}
.cid-tHWjeFymd7 .collapsed .menu-bottom {
  -webkit-flex-direction: column-reverse;
  flex-direction: column-reverse;
  -webkit-justify-content: center;
  justify-content: center;
}
@media (max-width: 991px) {
  .cid-tHWjeFymd7 .navbar-collapse {
    padding-bottom: 1rem;
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-tHWjeFymd7 .navbar-collapse.collapsing,
  .cid-tHWjeFymd7 .navbar-collapse.show {
    display: block !important;
  }
  .cid-tHWjeFymd7 .navbar-collapse.collapsing .navbar-nav,
  .cid-tHWjeFymd7 .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-tHWjeFymd7 .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-tHWjeFymd7 .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-tHWjeFymd7 .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
  .cid-tHWjeFymd7 .navbar-collapse.show .navbar-nav .nav-item:last-child {
    margin-bottom: 1rem;
  }
  .cid-tHWjeFymd7 .navbar-collapse.collapsing .navbar-buttons,
  .cid-tHWjeFymd7 .navbar-collapse.show .navbar-buttons {
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    text-align: center;
  }
  .cid-tHWjeFymd7 .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-tHWjeFymd7 .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-tHWjeFymd7 .menu-bottom {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
    -webkit-justify-content: center;
    justify-content: center;
  }
  .cid-tHWjeFymd7 img {
    height: 3.8rem !important;
  }
  .cid-tHWjeFymd7 .btn {
    display: flex;
  }
  .cid-tHWjeFymd7 button.navbar-toggler {
    display: block;
  }
  .cid-tHWjeFymd7 .navbar-brand {
    margin-left: 1rem !important;
    margin-top: 0.5rem;
  }
  .cid-tHWjeFymd7 .navbar-toggleable-sm {
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .cid-tHWjeFymd7 .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: 0.5s;
    transition-property: opacity, padding, height;
  }
  .cid-tHWjeFymd7 .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 0rem 0;
    visibility: visible;
  }
  .cid-tHWjeFymd7 .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-tHWjeFymd7 .dropdown .dropdown-toggle[data-toggle='dropdown-submenu']::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: 0.3em;
    vertical-align: middle;
    content: '';
    border-top: 0.3em solid;
    border-right: 0.3em solid transparent;
    border-left: 0.3em solid transparent;
  }
  .cid-tHWjeFymd7 .navbar-buttons.mbr-section-btn {
    width: 100%;
  }
  .cid-tHWjeFymd7 .dropdown .dropdown-menu .dropdown-item {
    padding: 0em 1.5em 0em 1.5em !important;
    transition: none;
    margin: 0 !important;
  }
}
.cid-tHWjeFymd7 .navbar-dropdown {
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap;
}
.cid-tHWjeFymd7 .nav-link:focus {
  outline: none;
}
.cid-tHWjeFymd7 .navbar-toggler {
  position: relative;
}
.cid-tHWjeFymd7 .dropdown-item.active,
.cid-tHWjeFymd7 .dropdown-item:active {
  background: #3b5abb;
  color: initial;
}
.cid-swqnqhJqCR {
  overflow-x: hidden !important;
}
.cid-swqnqhJqCR,
.cid-swqnqhJqCR .scroll-wrapper {
  padding-top: 210px;
  padding-bottom: 45px;
}
.cid-swqnqhJqCR .mbr-section-title {
  color: #ffffff;
}
.cid-swqnqhJqCR .mbr-section-title span {
  color: #6592e6;
}
.cid-swqnqhJqCR .mbr-text {
  color: #efefef;
  letter-spacing: 5px;
  font-weight: 100;
}
.cid-swqnqhJqCR .scroll-wrapper {
  top: 0;
  width: 100%;
  height: 100%;
  background-position: 50% 50%;
  background-size: cover;
  position: absolute;
  background-repeat: repeat;
  z-index: 0;
  -webkit-animation-duration: 29s !important;
  animation-duration: 29s;
  background-image: url("../../../assets/images/mbr-3-1920x1080.jpg");
  -webkit-animation: scroll-wrapper linear infinite;
  -moz-animation: scroll-wrapper linear infinite;
  -o-animation: scroll-wrapper linear infinite;
  animation: scroll-wrapper linear infinite;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
}
.cid-swqnqhJqCR .scroll-wrapper.second {
  left: calc(100% - 1px);
}
.cid-swqnqhJqCR .mbr-overlay {
  z-index: 1;
}
.cid-swqnqhJqCR .block-content {
  z-index: 2;
}
@keyframes scroll-wrapper {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}
@-webkit-keyframes scroll-wrapper {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}
@-moz-keyframes scroll-wrapper {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}
@-o-keyframes scroll-wrapper {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}
.cid-swrzUfMqAl {
  padding-top: 3rem;
  padding-bottom: 1rem;
  background-color: #fafafa;
}
@media (max-width: 767px) {
  .cid-swrzUfMqAl .card-box {
    padding: 1rem;
  }
}
@media (min-width: 768px) {
  .cid-swrzUfMqAl .card-box {
    padding-right: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-swrzUfMqAl .card-box {
    padding-left: 2rem;
    padding-right: 4rem;
  }
}
.cid-swrzUfMqAl .card-wrapper {
  border-radius: 4px;
  background-color: #ffffff;
}
.cid-swrzUfMqAl .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-swrzUfMqAl .card:not(:nth-last-child(1)) {
  margin-bottom: 2rem;
}
.cid-swrzUfMqAl .price {
  color: #4479d9;
}
.cid-swrzUfMqAl .mbr-text {
  color: #5e5d5d;
}
.cid-swrLYUGRN7 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #fafafa;
}
@media (max-width: 767px) {
  .cid-swrLYUGRN7 .card-box {
    padding: 1rem;
  }
}
@media (min-width: 768px) {
  .cid-swrLYUGRN7 .card-box {
    padding-right: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-swrLYUGRN7 .card-box {
    padding-left: 2rem;
    padding-right: 4rem;
  }
}
.cid-swrLYUGRN7 .card-wrapper {
  border-radius: 4px;
  background-color: #ffffff;
}
.cid-swrLYUGRN7 .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-swrLYUGRN7 .card:not(:nth-last-child(1)) {
  margin-bottom: 2rem;
}
.cid-swrLYUGRN7 .price {
  color: #4479d9;
}
.cid-swrLYUGRN7 .mbr-text {
  color: #5e5d5d;
}
.cid-swrNuDyClf {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #fafafa;
}
@media (max-width: 767px) {
  .cid-swrNuDyClf .card-box {
    padding: 1rem;
  }
}
@media (min-width: 768px) {
  .cid-swrNuDyClf .card-box {
    padding-right: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-swrNuDyClf .card-box {
    padding-left: 2rem;
    padding-right: 4rem;
  }
}
.cid-swrNuDyClf .card-wrapper {
  border-radius: 4px;
  background-color: #ffffff;
}
.cid-swrNuDyClf .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-swrNuDyClf .card:not(:nth-last-child(1)) {
  margin-bottom: 2rem;
}
.cid-swrNuDyClf .price {
  color: #4479d9;
}
.cid-swrNuDyClf .mbr-text {
  color: #5e5d5d;
}
.cid-swschEGAJX {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #fafafa;
}
@media (max-width: 767px) {
  .cid-swschEGAJX .card-box {
    padding: 1rem;
  }
}
@media (min-width: 768px) {
  .cid-swschEGAJX .card-box {
    padding-right: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-swschEGAJX .card-box {
    padding-left: 2rem;
    padding-right: 4rem;
  }
}
.cid-swschEGAJX .card-wrapper {
  border-radius: 4px;
  background-color: #ffffff;
}
.cid-swschEGAJX .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-swschEGAJX .card:not(:nth-last-child(1)) {
  margin-bottom: 2rem;
}
.cid-swschEGAJX .price {
  color: #4479d9;
}
.cid-swschEGAJX .mbr-text {
  color: #5e5d5d;
}
.cid-swsgbLWrik {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #fafafa;
}
@media (max-width: 767px) {
  .cid-swsgbLWrik .card-box {
    padding: 1rem;
  }
}
@media (min-width: 768px) {
  .cid-swsgbLWrik .card-box {
    padding-right: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-swsgbLWrik .card-box {
    padding-left: 2rem;
    padding-right: 4rem;
  }
}
.cid-swsgbLWrik .card-wrapper {
  border-radius: 4px;
  background-color: #ffffff;
}
.cid-swsgbLWrik .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-swsgbLWrik .card:not(:nth-last-child(1)) {
  margin-bottom: 2rem;
}
.cid-swsgbLWrik .price {
  color: #4479d9;
}
.cid-swsgbLWrik .mbr-text {
  color: #5e5d5d;
}
.cid-sxGYVh79j6 {
  padding-top: 1rem;
  padding-bottom: 2rem;
  background-color: #fafafa;
}
@media (max-width: 767px) {
  .cid-sxGYVh79j6 .card-box {
    padding: 1rem;
  }
}
@media (min-width: 768px) {
  .cid-sxGYVh79j6 .card-box {
    padding-right: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-sxGYVh79j6 .card-box {
    padding-left: 2rem;
    padding-right: 4rem;
  }
}
.cid-sxGYVh79j6 .card-wrapper {
  border-radius: 4px;
  background-color: #ffffff;
}
.cid-sxGYVh79j6 .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-sxGYVh79j6 .card:not(:nth-last-child(1)) {
  margin-bottom: 2rem;
}
.cid-sxGYVh79j6 .price {
  color: #4479d9;
}
.cid-sxGYVh79j6 .mbr-text {
  color: #5e5d5d;
}
.cid-tHW4kd1aqZ {
  padding-top: 30px;
  padding-bottom: 15px;
  background-image: url("../../../assets/images/mbr-13-1920x1280.jpg");
}
.cid-tHW4kd1aqZ .listico {
  padding-right: 1rem;
  font-size: 1.3rem;
}
.cid-tHW4kd1aqZ .navbar-logo {
  width: 80px;
  margin-bottom: 10px;
}
.cid-tHW4kd1aqZ .mbr-text {
  color: #444;
}
.cid-tHW4kd1aqZ h5 {
  margin-bottom: 0;
}
.cid-tHW4kd1aqZ .navbar-brand {
  margin: 0rem;
  width: 100%;
}
.cid-tHW4kd1aqZ .list-item {
  display: flex;
  padding-top: 10px;
  padding-bottom: 10px;
  -webkit-align-items: center;
  align-items: center;
}
.cid-tHW4kd1aqZ .tips {
  height: 90px;
  width: 90px;
  border-radius: 6px;
  margin: 4px;
  object-fit: cover;
  display: inline;
}
.cid-tHW4kd1aqZ .socicon {
  font-size: 1.3rem;
  background: #ff4a52;
  border-radius: 100%;
  width: 38px;
  height: 38px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-tHW4kd1aqZ .social-list {
  display: flex;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-tHW4kd1aqZ .social-list .soc-item {
  margin: 0 0.3rem;
}
.cid-tHW4kd1aqZ .social-list a {
  margin: 0;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-tHW4kd1aqZ .social-list a:hover {
  opacity: 0.4;
}
.cid-tHW4kd1aqZ .media-container-row > div {
  padding: 0px;
}
.cid-tHW4kd1aqZ .text2 {
  color: #6592e6;
  text-align: left;
}
.cid-tHW4kd1aqZ .group-title {
  text-align: left;
  color: #e6c63b;
}
.cid-tHW4kd1aqZ .group-title SPAN {
  color: #ffffff;
}
.cid-tHW4kd1aqZ .links {
  color: #ffffff;
  line-height: 1.6;
}
@media (max-width: 991px) {
  .cid-tHW4kd1aqZ .col-sm-12 {
    margin-bottom: 2rem;
  }
  .cid-tHW4kd1aqZ .social-list,
  .cid-tHW4kd1aqZ .img-list {
    -webkit-justify-content: center;
    justify-content: center;
    text-align: center;
  }
  .cid-tHW4kd1aqZ h3 {
    margin-bottom: 10px;
  }
  .cid-tHW4kd1aqZ .navbar-brand {
    text-align: center;
  }
}
.cid-tHW4kd1aqZ .links SPAN {
  color: #9e9e9e;
}
.cid-swqnqjSajp {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #232323;
}
.cid-tHWjeFymd7 .navbar {
  padding: 0.5rem 0;
  background: #ffffff;
  transition: none;
  min-height: 50px;
}
.cid-tHWjeFymd7 .navbar-fixed-top {
  padding-top: 0;
}
.cid-tHWjeFymd7 .navbar-collapse {
  -ms-flex-preferred-size: auto;
  -webkit-flex-basis: auto;
  flex-basis: auto;
}
.cid-tHWjeFymd7 .dropdown-item {
  padding: 0;
}
.cid-tHWjeFymd7 .dropdown-menu {
  border: 0px solid lightgray;
  background: #3b5abb !important;
}
.cid-tHWjeFymd7 .menu-content-top {
  max-width: 1500px;
  display: none;
  padding: 0rem 2rem;
  margin: auto;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  overflow: hidden;
  transition: min-height 0.25s ease-in-out;
}
.cid-tHWjeFymd7 .menu-bottom {
  margin: auto;
  width: 100%;
  background: #3b5abb;
  display: flex;
  padding: 0 2rem;
  position: relative;
}
.cid-tHWjeFymd7 .navbar-dropdown.bg-color.transparent.opened {
  background: #ffffff;
}
.cid-tHWjeFymd7 a {
  font-style: normal;
}
.cid-tHWjeFymd7 .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  top: -0.2em;
  text-decoration: none;
}
.cid-tHWjeFymd7 .nav-item a {
  padding: 0rem 0 !important;
  margin: 0rem !important;
}
.cid-tHWjeFymd7 .dropdown-item:before {
  font-family: MobiriseIcons !important;
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-tHWjeFymd7 .content-text {
  margin-bottom: 0;
}
.cid-tHWjeFymd7 .navbar-nav {
  position: relative;
  min-height: 49px;
  -ms-flex-direction: row;
  -webkit-flex-direction: row;
  flex-direction: row;
}
@media (min-width: 992px) {
  .cid-tHWjeFymd7 .navbar-nav .main-menu-animated-line {
    position: absolute;
    left: 0;
    width: 0;
    height: 0;
    z-index: 100;
    border-top: 4px solid #6592e6;
    -webkit-transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
    -moz-transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
    transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
  }
  .cid-tHWjeFymd7 .navbar-nav .main-menu-animated-line.bottom {
    bottom: 0;
  }
}
.cid-tHWjeFymd7 .navbar-nav .nav-item span {
  padding-right: 0;
}
.cid-tHWjeFymd7 .navbar-nav .nav-item a {
  margin: 0 1.3rem !important;
}
.cid-tHWjeFymd7 .display-4 > .mbr-iconfont {
  font-size: 1.43em;
}
.cid-tHWjeFymd7 .display-4 > .btn > .mbr-iconfont {
  font-size: 1.43em;
}
.cid-tHWjeFymd7 .nav-dropdown .dropdown-item {
  font-weight: 400;
}
.cid-tHWjeFymd7 .navbar-buttons.mbr-section-btn {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-tHWjeFymd7 .nav-dropdown .link {
  font-weight: 400;
}
.cid-tHWjeFymd7 .menu .navbar-brand .logo-text-part {
  vertical-align: top;
}
.cid-tHWjeFymd7 .content-right-side {
  text-align: center;
}
.cid-tHWjeFymd7 .content-right-side .content-link {
  margin-left: 2rem;
}
.cid-tHWjeFymd7 .content-right-side .content-link span {
  vertical-align: middle;
  padding-right: 1rem;
}
.cid-tHWjeFymd7 .widget-icon {
  display: inline-block;
  padding-right: 1rem;
  font-size: 1.65rem;
}
.cid-tHWjeFymd7 .info-widget {
  padding-left: 2rem;
  padding-top: 0.5rem;
  padding-right: 3rem;
  border-left: 1px solid rgba(0, 0, 0, 0.12);
}
.cid-tHWjeFymd7 .menu-content-right {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-tHWjeFymd7 .menu-content-right .info-widget:last-child {
  padding-right: 0;
}
.cid-tHWjeFymd7 .menu-content-right .info-widget:first-child {
  padding-left: 0;
  border-left: none;
}
.cid-tHWjeFymd7 .widget-content {
  display: inline-block;
  vertical-align: top;
  text-align: left;
}
.cid-tHWjeFymd7 .widget-content .widget-title {
  font-weight: 600;
  margin-bottom: 7px;
}
.cid-tHWjeFymd7 .widget-content .widget-text {
  margin-bottom: 0;
}
@media (min-width: 992px) {
  .cid-tHWjeFymd7 .navbar .menu-content-top {
    display: flex;
    min-height: 83px;
    height: 100%;
  }
  .cid-tHWjeFymd7 .content-right-side {
    text-align: right;
    -webkit-flex-wrap: nowrap;
    flex-wrap: nowrap;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-tHWjeFymd7 .menu-content-top {
    border-bottom: 0px solid rgba(0, 0, 0, 0.12);
  }
  .cid-tHWjeFymd7 .navbar {
    display: block;
    padding: 0;
  }
  .cid-tHWjeFymd7 .navbar .menu-logo {
    margin-right: auto;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-tHWjeFymd7 .navbar:not(.navbar-short) .navbar-collapse {
    max-height: calc(100vh - 5.8rem - 4.5rem);
  }
  .cid-tHWjeFymd7 .navbar.navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
    -webkit-align-self: initial;
    align-self: auto;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    z-index: 101;
    min-height: 49px;
  }
  .cid-tHWjeFymd7 .dropdown-item:hover:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    width: 16px;
  }
  .cid-tHWjeFymd7 .navbar-toggler {
    display: none;
  }
  .cid-tHWjeFymd7 .navbar-collapse {
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
  }
}
.cid-tHWjeFymd7 .navbar-short .menu-content-top {
  height: 0;
  min-height: 0;
  border: none;
}
.cid-tHWjeFymd7 .btn {
  display: inline-flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-tHWjeFymd7 .btn .mbr-iconfont {
  font-size: 1.2em;
}
.cid-tHWjeFymd7 .menu-logo {
  margin-right: auto;
}
.cid-tHWjeFymd7 .menu-logo .navbar-brand {
  display: flex;
  margin-left: 1.5rem;
  padding: 0.5rem 0;
  transition: padding 0.2s;
  min-height: 3.8rem;
  -webkit-align-items: center;
  align-items: center;
}
.cid-tHWjeFymd7 .menu-logo .navbar-brand .navbar-caption-wrap {
  display: -webkit-flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 20rem;
  margin: 0.3rem 0;
}
.cid-tHWjeFymd7 .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-tHWjeFymd7 .menu-logo .navbar-brand .navbar-logo {
  font-size: 3rem;
  transition: font-size 0.25s;
}
.cid-tHWjeFymd7 .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
  width: auto;
}
.cid-tHWjeFymd7 .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-tHWjeFymd7 .navbar-toggleable-sm .navbar-collapse {
  width: auto;
}
.cid-tHWjeFymd7 .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  padding-left: 0;
}
.cid-tHWjeFymd7 .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-tHWjeFymd7 .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-tHWjeFymd7 .dropdown .dropdown-menu {
  background: #ffffff;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-tHWjeFymd7 .dropdown .dropdown-menu {
    overflow: hidden;
  }
}
.cid-tHWjeFymd7 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-tHWjeFymd7 .dropdown .dropdown-menu .dropdown-item::after {
  right: -0.5rem;
}
.cid-tHWjeFymd7 .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-tHWjeFymd7 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-tHWjeFymd7 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-tHWjeFymd7 .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0rem;
}
.cid-tHWjeFymd7 .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tHWjeFymd7 .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  -webkit-transform: translateY(100%);
  transform: translateY(100%);
  z-index: 1000;
}
.cid-tHWjeFymd7 .navbar.navbar-short {
  min-height: 50px;
  transition: all 0.2s;
}
.cid-tHWjeFymd7 .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-tHWjeFymd7 .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-tHWjeFymd7 .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
  width: auto;
}
.cid-tHWjeFymd7 .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-tHWjeFymd7 button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all 0.2s;
  margin: 1rem 0.8rem;
  -webkit-align-self: center;
  align-self: center;
}
.cid-tHWjeFymd7 button.navbar-toggler:focus {
  outline: none;
}
.cid-tHWjeFymd7 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #bbbbbb;
}
.cid-tHWjeFymd7 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tHWjeFymd7 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tHWjeFymd7 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tHWjeFymd7 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tHWjeFymd7 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tHWjeFymd7 nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tHWjeFymd7 nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tHWjeFymd7 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tHWjeFymd7 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tHWjeFymd7 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0em 1.5em 0em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tHWjeFymd7 .collapsed .btn {
  display: flex;
}
.cid-tHWjeFymd7 .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-tHWjeFymd7 .collapsed .navbar-collapse.collapsing,
.cid-tHWjeFymd7 .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-tHWjeFymd7 .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-tHWjeFymd7 .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-tHWjeFymd7 .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-tHWjeFymd7 .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-tHWjeFymd7 .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
.cid-tHWjeFymd7 .collapsed .navbar-collapse.show .navbar-nav .nav-item:last-child {
  margin-bottom: 1rem;
}
.cid-tHWjeFymd7 .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-tHWjeFymd7 .collapsed .navbar-collapse.show .navbar-buttons {
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  text-align: center;
}
.cid-tHWjeFymd7 .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-tHWjeFymd7 .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .cid-tHWjeFymd7 .collapsed .dropdown .dropdown-menu {
    overflow: hidden;
  }
}
.cid-tHWjeFymd7 .collapsed button.navbar-toggler {
  display: block;
}
.cid-tHWjeFymd7 .collapsed .navbar-brand {
  margin-left: 1rem !important;
  margin-top: 0.5rem;
}
.cid-tHWjeFymd7 .collapsed .navbar-toggleable-sm {
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-tHWjeFymd7 .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: 0.5s;
  transition-property: opacity, padding, height;
}
.cid-tHWjeFymd7 .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-tHWjeFymd7 .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-tHWjeFymd7 .collapsed .dropdown .dropdown-toggle[data-toggle='dropdown-submenu']::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 0.3em;
  vertical-align: middle;
  content: '';
  border-top: 0.3em solid;
  border-right: 0.3em solid transparent;
  border-left: 0.3em solid transparent;
}
.cid-tHWjeFymd7 .collapsed .menu-bottom {
  -webkit-flex-direction: column-reverse;
  flex-direction: column-reverse;
  -webkit-justify-content: center;
  justify-content: center;
}
@media (max-width: 991px) {
  .cid-tHWjeFymd7 .navbar-collapse {
    padding-bottom: 1rem;
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-tHWjeFymd7 .navbar-collapse.collapsing,
  .cid-tHWjeFymd7 .navbar-collapse.show {
    display: block !important;
  }
  .cid-tHWjeFymd7 .navbar-collapse.collapsing .navbar-nav,
  .cid-tHWjeFymd7 .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-tHWjeFymd7 .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-tHWjeFymd7 .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-tHWjeFymd7 .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
  .cid-tHWjeFymd7 .navbar-collapse.show .navbar-nav .nav-item:last-child {
    margin-bottom: 1rem;
  }
  .cid-tHWjeFymd7 .navbar-collapse.collapsing .navbar-buttons,
  .cid-tHWjeFymd7 .navbar-collapse.show .navbar-buttons {
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    text-align: center;
  }
  .cid-tHWjeFymd7 .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-tHWjeFymd7 .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-tHWjeFymd7 .menu-bottom {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
    -webkit-justify-content: center;
    justify-content: center;
  }
  .cid-tHWjeFymd7 img {
    height: 3.8rem !important;
  }
  .cid-tHWjeFymd7 .btn {
    display: flex;
  }
  .cid-tHWjeFymd7 button.navbar-toggler {
    display: block;
  }
  .cid-tHWjeFymd7 .navbar-brand {
    margin-left: 1rem !important;
    margin-top: 0.5rem;
  }
  .cid-tHWjeFymd7 .navbar-toggleable-sm {
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .cid-tHWjeFymd7 .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: 0.5s;
    transition-property: opacity, padding, height;
  }
  .cid-tHWjeFymd7 .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 0rem 0;
    visibility: visible;
  }
  .cid-tHWjeFymd7 .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-tHWjeFymd7 .dropdown .dropdown-toggle[data-toggle='dropdown-submenu']::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: 0.3em;
    vertical-align: middle;
    content: '';
    border-top: 0.3em solid;
    border-right: 0.3em solid transparent;
    border-left: 0.3em solid transparent;
  }
  .cid-tHWjeFymd7 .navbar-buttons.mbr-section-btn {
    width: 100%;
  }
  .cid-tHWjeFymd7 .dropdown .dropdown-menu .dropdown-item {
    padding: 0em 1.5em 0em 1.5em !important;
    transition: none;
    margin: 0 !important;
  }
}
.cid-tHWjeFymd7 .navbar-dropdown {
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap;
}
.cid-tHWjeFymd7 .nav-link:focus {
  outline: none;
}
.cid-tHWjeFymd7 .navbar-toggler {
  position: relative;
}
.cid-tHWjeFymd7 .dropdown-item.active,
.cid-tHWjeFymd7 .dropdown-item:active {
  background: #3b5abb;
  color: initial;
}
.cid-shQAvKnwQT {
  padding-top: 7rem;
  padding-bottom: 3rem;
  background-image: url("../../../assets/images/mbr-1920x1275.jpeg");
}
.cid-shQAvKnwQT .mbr-section-title DIV {
  text-align: right;
}
.cid-shQAvKnwQT .mbr-section-title {
  text-align: right;
  color: #ffffff;
}
.cid-shQAvKnwQT .mbr-text,
.cid-shQAvKnwQT .mbr-section-btn {
  text-align: right;
  color: #22a5e5;
}
.cid-sgxHKNx0Vp {
  padding-top: 30px;
  padding-bottom: 30px;
  background-image: url("../../../assets/images/mbr-1920x1276.jpg");
}
.cid-sgxHKNx0Vp .underline .line {
  width: 2rem;
  height: 1px;
  background: #ffffff;
  display: inline-block;
}
.cid-sgxHKNx0Vp .image-element {
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
}
.cid-sgxHKNx0Vp .image-element img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.cid-sgxHKNx0Vp .text-element {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-justify-content: center;
  justify-content: center;
  padding: 2rem;
}
.cid-sgxHKNx0Vp .mbr-text {
  color: #cccccc;
  line-height: 27px;
}
.cid-sgxHKNx0Vp .brown {
  color: #6592e6;
}
.cid-sgxHKNx0Vp .paragraphs-wrapper {
  display: flex;
  -webkit-flex-direction: row;
  flex-direction: row;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
}
.cid-sgxHKNx0Vp .paragraphs-wrapper .first-paragraph,
.cid-sgxHKNx0Vp .paragraphs-wrapper .second-paragraph {
  margin: 0;
}
@media (max-width: 991px) {
  .cid-sgxHKNx0Vp .text-element {
    padding-bottom: 0;
  }
  .cid-sgxHKNx0Vp .paragraphs-wrapper {
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .cid-sgxHKNx0Vp .paragraphs-wrapper .first-paragraph,
  .cid-sgxHKNx0Vp .paragraphs-wrapper .second-paragraph {
    width: 100%;
    padding: 0;
  }
}
@media (min-width: 768px) {
  .cid-sgxHKNx0Vp .first-paragraph,
  .cid-sgxHKNx0Vp .second-paragraph {
    width: 50%;
  }
  .cid-sgxHKNx0Vp .first-paragraph {
    padding-right: .5rem;
  }
  .cid-sgxHKNx0Vp .second-paragraph {
    padding-left: .5rem;
  }
  .cid-sgxHKNx0Vp .text-element {
    padding: 6rem;
    padding: 1rem;
  }
}
@media (max-width: 767px) {
  .cid-sgxHKNx0Vp .mbr-section-title,
  .cid-sgxHKNx0Vp .mbr-section-btn {
    text-align: left;
  }
}
.cid-sgxHKNx0Vp .mbr-text,
.cid-sgxHKNx0Vp .mbr-section-btn {
  color: #ffffff;
}
.cid-sgxJoVnwiu {
  padding-top: 30px;
  padding-bottom: 30px;
  background-image: url("../../../assets/images/mbr-16-1920x1280.jpg");
}
.cid-sgxJoVnwiu .row {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-sgxJoVnwiu .underline .line {
  width: 2rem;
  height: 1px;
  background: #ffffff;
  display: inline-block;
}
.cid-sgxJoVnwiu .image-element {
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
}
.cid-sgxJoVnwiu .image-element img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.cid-sgxJoVnwiu .text-element {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-justify-content: center;
  justify-content: center;
  padding: 2rem;
}
.cid-sgxJoVnwiu .mbr-text {
  color: #cccccc;
  line-height: 27px;
}
.cid-sgxJoVnwiu .brown {
  color: #6592e6;
}
.cid-sgxJoVnwiu .paragraphs-wrapper {
  display: flex;
  -webkit-flex-direction: row;
  flex-direction: row;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
}
.cid-sgxJoVnwiu .paragraphs-wrapper .first-paragraph,
.cid-sgxJoVnwiu .paragraphs-wrapper .second-paragraph {
  margin: 0;
}
@media (max-width: 991px) {
  .cid-sgxJoVnwiu .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-sgxJoVnwiu .text-element {
    padding-top: 0;
  }
  .cid-sgxJoVnwiu .paragraphs-wrapper {
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .cid-sgxJoVnwiu .paragraphs-wrapper .first-paragraph,
  .cid-sgxJoVnwiu .paragraphs-wrapper .second-paragraph {
    width: 100%;
    padding: 0;
  }
}
@media (min-width: 768px) {
  .cid-sgxJoVnwiu .first-paragraph,
  .cid-sgxJoVnwiu .second-paragraph {
    width: 50%;
  }
  .cid-sgxJoVnwiu .first-paragraph {
    padding-right: .5rem;
  }
  .cid-sgxJoVnwiu .second-paragraph {
    padding-left: .5rem;
  }
  .cid-sgxJoVnwiu .text-element {
    padding: 6rem;
    padding: 1rem;
  }
}
@media (max-width: 767px) {
  .cid-sgxJoVnwiu .mbr-section-title,
  .cid-sgxJoVnwiu .mbr-section-btn {
    text-align: left;
  }
}
.cid-sgxJoVnwiu .mbr-text,
.cid-sgxJoVnwiu .mbr-section-btn {
  color: #ffffff;
  text-align: right;
}
.cid-tHVNhs6ty0 {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-tHVNhs6ty0 img,
.cid-tHVNhs6ty0 .item-img {
  width: 100%;
}
.cid-tHVNhs6ty0 .item:focus,
.cid-tHVNhs6ty0 span:focus {
  outline: none;
}
.cid-tHVNhs6ty0 .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-tHVNhs6ty0 .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-tHVNhs6ty0 .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tHVNhs6ty0 .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-tHVNhs6ty0 .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tHVNhs6ty0 .mbr-section-title {
  color: #232323;
}
.cid-tHVNhs6ty0 .mbr-text,
.cid-tHVNhs6ty0 .mbr-section-btn {
  text-align: center;
}
.cid-tHVNhs6ty0 .item-title {
  text-align: center;
}
.cid-tHVNhs6ty0 .item-subtitle {
  text-align: left;
}
.cid-tHVON2tehl {
  padding-top: 30px;
  padding-bottom: 15px;
  background-image: url("../../../assets/images/mbr-13-1920x1280.jpg");
}
.cid-tHVON2tehl .listico {
  padding-right: 1rem;
  font-size: 1.3rem;
}
.cid-tHVON2tehl .navbar-logo {
  width: 80px;
  margin-bottom: 10px;
}
.cid-tHVON2tehl .mbr-text {
  color: #444;
}
.cid-tHVON2tehl h5 {
  margin-bottom: 0;
}
.cid-tHVON2tehl .navbar-brand {
  margin: 0rem;
  width: 100%;
}
.cid-tHVON2tehl .list-item {
  display: flex;
  padding-top: 10px;
  padding-bottom: 10px;
  -webkit-align-items: center;
  align-items: center;
}
.cid-tHVON2tehl .tips {
  height: 90px;
  width: 90px;
  border-radius: 6px;
  margin: 4px;
  object-fit: cover;
  display: inline;
}
.cid-tHVON2tehl .socicon {
  font-size: 1.3rem;
  background: #ff4a52;
  border-radius: 100%;
  width: 38px;
  height: 38px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-tHVON2tehl .social-list {
  display: flex;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-tHVON2tehl .social-list .soc-item {
  margin: 0 0.3rem;
}
.cid-tHVON2tehl .social-list a {
  margin: 0;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-tHVON2tehl .social-list a:hover {
  opacity: 0.4;
}
.cid-tHVON2tehl .media-container-row > div {
  padding: 0px;
}
.cid-tHVON2tehl .text2 {
  color: #6592e6;
  text-align: left;
}
.cid-tHVON2tehl .group-title {
  text-align: center;
  color: #e6c63b;
}
.cid-tHVON2tehl .group-title SPAN {
  color: #ffffff;
}
.cid-tHVON2tehl .links {
  color: #ffffff;
  line-height: 1.6;
}
@media (max-width: 991px) {
  .cid-tHVON2tehl .col-sm-12 {
    margin-bottom: 2rem;
  }
  .cid-tHVON2tehl .social-list,
  .cid-tHVON2tehl .img-list {
    -webkit-justify-content: center;
    justify-content: center;
    text-align: center;
  }
  .cid-tHVON2tehl h3 {
    margin-bottom: 10px;
  }
  .cid-tHVON2tehl .navbar-brand {
    text-align: center;
  }
}
.cid-tHVON2tehl .links SPAN {
  color: #9e9e9e;
}
.cid-siM30LrbO4 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #232323;
}
.cid-tHWjeFymd7 .navbar {
  padding: 0.5rem 0;
  background: #ffffff;
  transition: none;
  min-height: 50px;
}
.cid-tHWjeFymd7 .navbar-fixed-top {
  padding-top: 0;
}
.cid-tHWjeFymd7 .navbar-collapse {
  -ms-flex-preferred-size: auto;
  -webkit-flex-basis: auto;
  flex-basis: auto;
}
.cid-tHWjeFymd7 .dropdown-item {
  padding: 0;
}
.cid-tHWjeFymd7 .dropdown-menu {
  border: 0px solid lightgray;
  background: #3b5abb !important;
}
.cid-tHWjeFymd7 .menu-content-top {
  max-width: 1500px;
  display: none;
  padding: 0rem 2rem;
  margin: auto;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  overflow: hidden;
  transition: min-height 0.25s ease-in-out;
}
.cid-tHWjeFymd7 .menu-bottom {
  margin: auto;
  width: 100%;
  background: #3b5abb;
  display: flex;
  padding: 0 2rem;
  position: relative;
}
.cid-tHWjeFymd7 .navbar-dropdown.bg-color.transparent.opened {
  background: #ffffff;
}
.cid-tHWjeFymd7 a {
  font-style: normal;
}
.cid-tHWjeFymd7 .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  top: -0.2em;
  text-decoration: none;
}
.cid-tHWjeFymd7 .nav-item a {
  padding: 0rem 0 !important;
  margin: 0rem !important;
}
.cid-tHWjeFymd7 .dropdown-item:before {
  font-family: MobiriseIcons !important;
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-tHWjeFymd7 .content-text {
  margin-bottom: 0;
}
.cid-tHWjeFymd7 .navbar-nav {
  position: relative;
  min-height: 49px;
  -ms-flex-direction: row;
  -webkit-flex-direction: row;
  flex-direction: row;
}
@media (min-width: 992px) {
  .cid-tHWjeFymd7 .navbar-nav .main-menu-animated-line {
    position: absolute;
    left: 0;
    width: 0;
    height: 0;
    z-index: 100;
    border-top: 4px solid #6592e6;
    -webkit-transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
    -moz-transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
    transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
  }
  .cid-tHWjeFymd7 .navbar-nav .main-menu-animated-line.bottom {
    bottom: 0;
  }
}
.cid-tHWjeFymd7 .navbar-nav .nav-item span {
  padding-right: 0;
}
.cid-tHWjeFymd7 .navbar-nav .nav-item a {
  margin: 0 1.3rem !important;
}
.cid-tHWjeFymd7 .display-4 > .mbr-iconfont {
  font-size: 1.43em;
}
.cid-tHWjeFymd7 .display-4 > .btn > .mbr-iconfont {
  font-size: 1.43em;
}
.cid-tHWjeFymd7 .nav-dropdown .dropdown-item {
  font-weight: 400;
}
.cid-tHWjeFymd7 .navbar-buttons.mbr-section-btn {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-tHWjeFymd7 .nav-dropdown .link {
  font-weight: 400;
}
.cid-tHWjeFymd7 .menu .navbar-brand .logo-text-part {
  vertical-align: top;
}
.cid-tHWjeFymd7 .content-right-side {
  text-align: center;
}
.cid-tHWjeFymd7 .content-right-side .content-link {
  margin-left: 2rem;
}
.cid-tHWjeFymd7 .content-right-side .content-link span {
  vertical-align: middle;
  padding-right: 1rem;
}
.cid-tHWjeFymd7 .widget-icon {
  display: inline-block;
  padding-right: 1rem;
  font-size: 1.65rem;
}
.cid-tHWjeFymd7 .info-widget {
  padding-left: 2rem;
  padding-top: 0.5rem;
  padding-right: 3rem;
  border-left: 1px solid rgba(0, 0, 0, 0.12);
}
.cid-tHWjeFymd7 .menu-content-right {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-tHWjeFymd7 .menu-content-right .info-widget:last-child {
  padding-right: 0;
}
.cid-tHWjeFymd7 .menu-content-right .info-widget:first-child {
  padding-left: 0;
  border-left: none;
}
.cid-tHWjeFymd7 .widget-content {
  display: inline-block;
  vertical-align: top;
  text-align: left;
}
.cid-tHWjeFymd7 .widget-content .widget-title {
  font-weight: 600;
  margin-bottom: 7px;
}
.cid-tHWjeFymd7 .widget-content .widget-text {
  margin-bottom: 0;
}
@media (min-width: 992px) {
  .cid-tHWjeFymd7 .navbar .menu-content-top {
    display: flex;
    min-height: 83px;
    height: 100%;
  }
  .cid-tHWjeFymd7 .content-right-side {
    text-align: right;
    -webkit-flex-wrap: nowrap;
    flex-wrap: nowrap;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-tHWjeFymd7 .menu-content-top {
    border-bottom: 0px solid rgba(0, 0, 0, 0.12);
  }
  .cid-tHWjeFymd7 .navbar {
    display: block;
    padding: 0;
  }
  .cid-tHWjeFymd7 .navbar .menu-logo {
    margin-right: auto;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-tHWjeFymd7 .navbar:not(.navbar-short) .navbar-collapse {
    max-height: calc(100vh - 5.8rem - 4.5rem);
  }
  .cid-tHWjeFymd7 .navbar.navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
    -webkit-align-self: initial;
    align-self: auto;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    z-index: 101;
    min-height: 49px;
  }
  .cid-tHWjeFymd7 .dropdown-item:hover:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    width: 16px;
  }
  .cid-tHWjeFymd7 .navbar-toggler {
    display: none;
  }
  .cid-tHWjeFymd7 .navbar-collapse {
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
  }
}
.cid-tHWjeFymd7 .navbar-short .menu-content-top {
  height: 0;
  min-height: 0;
  border: none;
}
.cid-tHWjeFymd7 .btn {
  display: inline-flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-tHWjeFymd7 .btn .mbr-iconfont {
  font-size: 1.2em;
}
.cid-tHWjeFymd7 .menu-logo {
  margin-right: auto;
}
.cid-tHWjeFymd7 .menu-logo .navbar-brand {
  display: flex;
  margin-left: 1.5rem;
  padding: 0.5rem 0;
  transition: padding 0.2s;
  min-height: 3.8rem;
  -webkit-align-items: center;
  align-items: center;
}
.cid-tHWjeFymd7 .menu-logo .navbar-brand .navbar-caption-wrap {
  display: -webkit-flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 20rem;
  margin: 0.3rem 0;
}
.cid-tHWjeFymd7 .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-tHWjeFymd7 .menu-logo .navbar-brand .navbar-logo {
  font-size: 3rem;
  transition: font-size 0.25s;
}
.cid-tHWjeFymd7 .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
  width: auto;
}
.cid-tHWjeFymd7 .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-tHWjeFymd7 .navbar-toggleable-sm .navbar-collapse {
  width: auto;
}
.cid-tHWjeFymd7 .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  padding-left: 0;
}
.cid-tHWjeFymd7 .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-tHWjeFymd7 .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-tHWjeFymd7 .dropdown .dropdown-menu {
  background: #ffffff;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-tHWjeFymd7 .dropdown .dropdown-menu {
    overflow: hidden;
  }
}
.cid-tHWjeFymd7 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-tHWjeFymd7 .dropdown .dropdown-menu .dropdown-item::after {
  right: -0.5rem;
}
.cid-tHWjeFymd7 .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-tHWjeFymd7 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-tHWjeFymd7 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-tHWjeFymd7 .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0rem;
}
.cid-tHWjeFymd7 .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tHWjeFymd7 .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  -webkit-transform: translateY(100%);
  transform: translateY(100%);
  z-index: 1000;
}
.cid-tHWjeFymd7 .navbar.navbar-short {
  min-height: 50px;
  transition: all 0.2s;
}
.cid-tHWjeFymd7 .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-tHWjeFymd7 .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-tHWjeFymd7 .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
  width: auto;
}
.cid-tHWjeFymd7 .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-tHWjeFymd7 button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all 0.2s;
  margin: 1rem 0.8rem;
  -webkit-align-self: center;
  align-self: center;
}
.cid-tHWjeFymd7 button.navbar-toggler:focus {
  outline: none;
}
.cid-tHWjeFymd7 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #bbbbbb;
}
.cid-tHWjeFymd7 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tHWjeFymd7 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tHWjeFymd7 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tHWjeFymd7 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tHWjeFymd7 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tHWjeFymd7 nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tHWjeFymd7 nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tHWjeFymd7 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tHWjeFymd7 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tHWjeFymd7 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0em 1.5em 0em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tHWjeFymd7 .collapsed .btn {
  display: flex;
}
.cid-tHWjeFymd7 .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-tHWjeFymd7 .collapsed .navbar-collapse.collapsing,
.cid-tHWjeFymd7 .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-tHWjeFymd7 .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-tHWjeFymd7 .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-tHWjeFymd7 .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-tHWjeFymd7 .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-tHWjeFymd7 .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
.cid-tHWjeFymd7 .collapsed .navbar-collapse.show .navbar-nav .nav-item:last-child {
  margin-bottom: 1rem;
}
.cid-tHWjeFymd7 .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-tHWjeFymd7 .collapsed .navbar-collapse.show .navbar-buttons {
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  text-align: center;
}
.cid-tHWjeFymd7 .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-tHWjeFymd7 .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .cid-tHWjeFymd7 .collapsed .dropdown .dropdown-menu {
    overflow: hidden;
  }
}
.cid-tHWjeFymd7 .collapsed button.navbar-toggler {
  display: block;
}
.cid-tHWjeFymd7 .collapsed .navbar-brand {
  margin-left: 1rem !important;
  margin-top: 0.5rem;
}
.cid-tHWjeFymd7 .collapsed .navbar-toggleable-sm {
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-tHWjeFymd7 .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: 0.5s;
  transition-property: opacity, padding, height;
}
.cid-tHWjeFymd7 .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-tHWjeFymd7 .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-tHWjeFymd7 .collapsed .dropdown .dropdown-toggle[data-toggle='dropdown-submenu']::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 0.3em;
  vertical-align: middle;
  content: '';
  border-top: 0.3em solid;
  border-right: 0.3em solid transparent;
  border-left: 0.3em solid transparent;
}
.cid-tHWjeFymd7 .collapsed .menu-bottom {
  -webkit-flex-direction: column-reverse;
  flex-direction: column-reverse;
  -webkit-justify-content: center;
  justify-content: center;
}
@media (max-width: 991px) {
  .cid-tHWjeFymd7 .navbar-collapse {
    padding-bottom: 1rem;
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-tHWjeFymd7 .navbar-collapse.collapsing,
  .cid-tHWjeFymd7 .navbar-collapse.show {
    display: block !important;
  }
  .cid-tHWjeFymd7 .navbar-collapse.collapsing .navbar-nav,
  .cid-tHWjeFymd7 .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-tHWjeFymd7 .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-tHWjeFymd7 .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-tHWjeFymd7 .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
  .cid-tHWjeFymd7 .navbar-collapse.show .navbar-nav .nav-item:last-child {
    margin-bottom: 1rem;
  }
  .cid-tHWjeFymd7 .navbar-collapse.collapsing .navbar-buttons,
  .cid-tHWjeFymd7 .navbar-collapse.show .navbar-buttons {
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    text-align: center;
  }
  .cid-tHWjeFymd7 .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-tHWjeFymd7 .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-tHWjeFymd7 .menu-bottom {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
    -webkit-justify-content: center;
    justify-content: center;
  }
  .cid-tHWjeFymd7 img {
    height: 3.8rem !important;
  }
  .cid-tHWjeFymd7 .btn {
    display: flex;
  }
  .cid-tHWjeFymd7 button.navbar-toggler {
    display: block;
  }
  .cid-tHWjeFymd7 .navbar-brand {
    margin-left: 1rem !important;
    margin-top: 0.5rem;
  }
  .cid-tHWjeFymd7 .navbar-toggleable-sm {
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .cid-tHWjeFymd7 .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: 0.5s;
    transition-property: opacity, padding, height;
  }
  .cid-tHWjeFymd7 .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 0rem 0;
    visibility: visible;
  }
  .cid-tHWjeFymd7 .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-tHWjeFymd7 .dropdown .dropdown-toggle[data-toggle='dropdown-submenu']::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: 0.3em;
    vertical-align: middle;
    content: '';
    border-top: 0.3em solid;
    border-right: 0.3em solid transparent;
    border-left: 0.3em solid transparent;
  }
  .cid-tHWjeFymd7 .navbar-buttons.mbr-section-btn {
    width: 100%;
  }
  .cid-tHWjeFymd7 .dropdown .dropdown-menu .dropdown-item {
    padding: 0em 1.5em 0em 1.5em !important;
    transition: none;
    margin: 0 !important;
  }
}
.cid-tHWjeFymd7 .navbar-dropdown {
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap;
}
.cid-tHWjeFymd7 .nav-link:focus {
  outline: none;
}
.cid-tHWjeFymd7 .navbar-toggler {
  position: relative;
}
.cid-tHWjeFymd7 .dropdown-item.active,
.cid-tHWjeFymd7 .dropdown-item:active {
  background: #3b5abb;
  color: initial;
}
.cid-sgxnz5Y1PW {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #e2e2e0;
}
@media (min-width: 992px) {
  .cid-sgxnz5Y1PW .carousel {
    min-height: 700px;
  }
  .cid-sgxnz5Y1PW .carousel img {
    max-height: 700px;
    object-fit: contain;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-sgxnz5Y1PW .carousel {
    min-height: 455px;
  }
  .cid-sgxnz5Y1PW .carousel img {
    max-height: 455px;
    object-fit: contain;
  }
}
@media (max-width: 767px) {
  .cid-sgxnz5Y1PW .carousel {
    min-height: 385px;
  }
  .cid-sgxnz5Y1PW .carousel img {
    max-height: 385px;
    object-fit: contain;
  }
  .cid-sgxnz5Y1PW .container .carousel-control {
    margin-bottom: 0;
  }
  .cid-sgxnz5Y1PW .content-slider-wrap {
    width: 100% !important;
  }
}
.cid-sgxnz5Y1PW .carousel,
.cid-sgxnz5Y1PW .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-sgxnz5Y1PW .item-wrapper {
  width: 100%;
}
.cid-sgxnz5Y1PW .carousel-caption {
  bottom: 40px;
}
.cid-sgxnz5Y1PW .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
.cid-sgxnz5Y1PW .mobi-mbri-arrow-next {
  margin-left: 5px;
}
.cid-sgxnz5Y1PW .mobi-mbri-arrow-prev {
  margin-right: 5px;
}
.cid-sgxnz5Y1PW .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-sgxnz5Y1PW .carousel-control {
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-sgxnz5Y1PW .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sgxnz5Y1PW .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-sgxnz5Y1PW .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-sgxnz5Y1PW .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 5rem !important;
}
.cid-sgxnz5Y1PW .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-sgxnz5Y1PW .carousel-indicators li.active,
.cid-sgxnz5Y1PW .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-sgxnz5Y1PW .carousel-indicators li::after,
.cid-sgxnz5Y1PW .carousel-indicators li::before {
  content: none;
}
.cid-sgxnz5Y1PW .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-sgxnz5Y1PW .carousel-indicators {
    display: none !important;
  }
}
.cid-sgxnz5Y1PW P {
  color: #000000;
}
.cid-shRCIhuTjs {
  padding-top: 40px;
  padding-bottom: 30px;
  background-image: url("../../../assets/images/mbr-5-1920x1280.jpg");
}
.cid-shRCIhuTjs .mbr-overlay {
  background: linear-gradient(90deg, #232323, #232323);
}
.cid-shRCIhuTjs .mbr-section-btn {
  margin-left: -0.8rem;
}
.cid-shRCIhuTjs .text-content {
  padding-right: 1.5rem;
  padding-right: 0;
  padding-left: 1.5rem;
}
.cid-shRCIhuTjs .main-row {
  -webkit-flex-direction: row-reverse;
  -ms-flex-direction: row-reverse;
}
.cid-shRCIhuTjs .mbr-text,
.cid-shRCIhuTjs .mbr-section-btn {
  color: #e6c63b;
}
.cid-shRCIhuTjs .mbr-figure img {
  -webkit-box-shadow: 0px 0px 30px rgba(147, 153, 161, 0.3);
  box-shadow: 0px 0px 30px rgba(147, 153, 161, 0.3);
  border-radius: .25rem;
}
.cid-shRCIhuTjs .counter-container {
  padding: 1rem 0;
  position: relative;
}
.cid-shRCIhuTjs .counter-container ul {
  margin-bottom: 0;
  padding-left: 1.5rem;
}
.cid-shRCIhuTjs .counter-container ul li {
  margin-bottom: 1rem;
  list-style: none;
}
.cid-shRCIhuTjs .counter-container ul li:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  position: absolute;
  left: 0px;
  padding-top: 2px;
  display: inline-block;
  text-align: center;
  margin: 4px 0px;
  line-height: 10px;
  transition: all .2s;
  width: 16px;
  height: 16px;
  font-size: 16px !important;
  font-weight: 500;
  background: none;
  color: #188ef4;
}
@media (max-width: 991px) {
  .cid-shRCIhuTjs .main-row {
    margin: 0;
  }
  .cid-shRCIhuTjs .mbr-section-title,
  .cid-shRCIhuTjs .mbr-text,
  .cid-shRCIhuTjs .list,
  .cid-shRCIhuTjs .mbr-section-btn {
    text-align: center !important;
  }
  .cid-shRCIhuTjs .text-content {
    padding: 0;
  }
}
.cid-shRCIhuTjs .mbr-section-title {
  color: #bed3f9;
}
.cid-shRCIhuTjs .list {
  color: #ffffff;
}
.cid-sgxsBo1bhQ {
  padding-top: 60px;
  padding-bottom: 40px;
  background-color: #bbbbbb;
}
.cid-shQgWLCgp3 {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #0a1c44;
}
.cid-shQgWLCgp3 h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-shQgWLCgp3 p {
  color: #767676;
  text-align: left;
}
.cid-shQgWLCgp3 .card-wrapper {
  height: 100%;
}
.cid-shQgWLCgp3 .container-fluid {
  max-width: 1600px;
}
.cid-shQgWLCgp3 .card-img {
  height: 330px;
  overflow: hidden;
  position: relative;
}
.cid-shQgWLCgp3 img {
  object-fit: cover;
  height: 80%;
  transition: all 0.3s;
}
.cid-shQgWLCgp3 .mbr-iconfont {
  position: absolute;
  font-size: 1.8rem;
  color: #149dcc;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.3s;
  opacity: 0;
  z-index: 2;
}
.cid-shQgWLCgp3 .title {
  text-align: center;
}
@media (max-width: 767px) {
  .cid-shQgWLCgp3 .mbr-iconfont {
    opacity: 1;
  }
  .cid-shQgWLCgp3 img {
    filter: blur(3px);
  }
}
.cid-sgxxhyg7nk {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sgxxhyg7nk .img-wrapper {
  text-align: center;
}
.cid-sgxxhyg7nk img {
  margin: auto;
  width: 150px;
  padding-bottom: 1rem;
}
.cid-sgxxhyg7nk .row {
  align-items: flex-start;
}
.cid-sgxxhyg7nk .card-wrapper {
  border-radius: 4px;
  background: #ffffff;
}
@media (max-width: 992px) {
  .cid-sgxxhyg7nk .card-wrapper {
    margin-bottom: 1rem;
  }
}
@media (min-width: 768px) {
  .cid-sgxxhyg7nk .card-wrapper {
    padding: 1rem;
  }
}
@media (max-width: 767px) {
  .cid-sgxxhyg7nk .card-wrapper {
    padding: 1rem;
  }
}
.cid-tHVOGDafbe {
  padding-top: 30px;
  padding-bottom: 15px;
  background-image: url("../../../assets/images/mbr-13-1920x1280.jpg");
}
.cid-tHVOGDafbe .listico {
  padding-right: 1rem;
  font-size: 1.3rem;
}
.cid-tHVOGDafbe .navbar-logo {
  width: 80px;
  margin-bottom: 10px;
}
.cid-tHVOGDafbe .mbr-text {
  color: #444;
}
.cid-tHVOGDafbe h5 {
  margin-bottom: 0;
}
.cid-tHVOGDafbe .navbar-brand {
  margin: 0rem;
  width: 100%;
}
.cid-tHVOGDafbe .list-item {
  display: flex;
  padding-top: 10px;
  padding-bottom: 10px;
  -webkit-align-items: center;
  align-items: center;
}
.cid-tHVOGDafbe .tips {
  height: 90px;
  width: 90px;
  border-radius: 6px;
  margin: 4px;
  object-fit: cover;
  display: inline;
}
.cid-tHVOGDafbe .socicon {
  font-size: 1.3rem;
  background: #ff4a52;
  border-radius: 100%;
  width: 38px;
  height: 38px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-tHVOGDafbe .social-list {
  display: flex;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-tHVOGDafbe .social-list .soc-item {
  margin: 0 0.3rem;
}
.cid-tHVOGDafbe .social-list a {
  margin: 0;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-tHVOGDafbe .social-list a:hover {
  opacity: 0.4;
}
.cid-tHVOGDafbe .media-container-row > div {
  padding: 0px;
}
.cid-tHVOGDafbe .text2 {
  color: #6592e6;
  text-align: left;
}
.cid-tHVOGDafbe .group-title {
  text-align: left;
  color: #e6c63b;
}
.cid-tHVOGDafbe .group-title SPAN {
  color: #ffffff;
}
.cid-tHVOGDafbe .links {
  color: #ffffff;
  line-height: 1.6;
}
@media (max-width: 991px) {
  .cid-tHVOGDafbe .col-sm-12 {
    margin-bottom: 2rem;
  }
  .cid-tHVOGDafbe .social-list,
  .cid-tHVOGDafbe .img-list {
    -webkit-justify-content: center;
    justify-content: center;
    text-align: center;
  }
  .cid-tHVOGDafbe h3 {
    margin-bottom: 10px;
  }
  .cid-tHVOGDafbe .navbar-brand {
    text-align: center;
  }
}
.cid-tHVOGDafbe .links SPAN {
  color: #9e9e9e;
}
.cid-siM30LrbO4 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #232323;
}
.cid-tHWjeFymd7 .navbar {
  padding: 0.5rem 0;
  background: #ffffff;
  transition: none;
  min-height: 50px;
}
.cid-tHWjeFymd7 .navbar-fixed-top {
  padding-top: 0;
}
.cid-tHWjeFymd7 .navbar-collapse {
  -ms-flex-preferred-size: auto;
  -webkit-flex-basis: auto;
  flex-basis: auto;
}
.cid-tHWjeFymd7 .dropdown-item {
  padding: 0;
}
.cid-tHWjeFymd7 .dropdown-menu {
  border: 0px solid lightgray;
  background: #3b5abb !important;
}
.cid-tHWjeFymd7 .menu-content-top {
  max-width: 1500px;
  display: none;
  padding: 0rem 2rem;
  margin: auto;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  overflow: hidden;
  transition: min-height 0.25s ease-in-out;
}
.cid-tHWjeFymd7 .menu-bottom {
  margin: auto;
  width: 100%;
  background: #3b5abb;
  display: flex;
  padding: 0 2rem;
  position: relative;
}
.cid-tHWjeFymd7 .navbar-dropdown.bg-color.transparent.opened {
  background: #ffffff;
}
.cid-tHWjeFymd7 a {
  font-style: normal;
}
.cid-tHWjeFymd7 .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  top: -0.2em;
  text-decoration: none;
}
.cid-tHWjeFymd7 .nav-item a {
  padding: 0rem 0 !important;
  margin: 0rem !important;
}
.cid-tHWjeFymd7 .dropdown-item:before {
  font-family: MobiriseIcons !important;
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-tHWjeFymd7 .content-text {
  margin-bottom: 0;
}
.cid-tHWjeFymd7 .navbar-nav {
  position: relative;
  min-height: 49px;
  -ms-flex-direction: row;
  -webkit-flex-direction: row;
  flex-direction: row;
}
@media (min-width: 992px) {
  .cid-tHWjeFymd7 .navbar-nav .main-menu-animated-line {
    position: absolute;
    left: 0;
    width: 0;
    height: 0;
    z-index: 100;
    border-top: 4px solid #6592e6;
    -webkit-transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
    -moz-transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
    transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
  }
  .cid-tHWjeFymd7 .navbar-nav .main-menu-animated-line.bottom {
    bottom: 0;
  }
}
.cid-tHWjeFymd7 .navbar-nav .nav-item span {
  padding-right: 0;
}
.cid-tHWjeFymd7 .navbar-nav .nav-item a {
  margin: 0 1.3rem !important;
}
.cid-tHWjeFymd7 .display-4 > .mbr-iconfont {
  font-size: 1.43em;
}
.cid-tHWjeFymd7 .display-4 > .btn > .mbr-iconfont {
  font-size: 1.43em;
}
.cid-tHWjeFymd7 .nav-dropdown .dropdown-item {
  font-weight: 400;
}
.cid-tHWjeFymd7 .navbar-buttons.mbr-section-btn {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-tHWjeFymd7 .nav-dropdown .link {
  font-weight: 400;
}
.cid-tHWjeFymd7 .menu .navbar-brand .logo-text-part {
  vertical-align: top;
}
.cid-tHWjeFymd7 .content-right-side {
  text-align: center;
}
.cid-tHWjeFymd7 .content-right-side .content-link {
  margin-left: 2rem;
}
.cid-tHWjeFymd7 .content-right-side .content-link span {
  vertical-align: middle;
  padding-right: 1rem;
}
.cid-tHWjeFymd7 .widget-icon {
  display: inline-block;
  padding-right: 1rem;
  font-size: 1.65rem;
}
.cid-tHWjeFymd7 .info-widget {
  padding-left: 2rem;
  padding-top: 0.5rem;
  padding-right: 3rem;
  border-left: 1px solid rgba(0, 0, 0, 0.12);
}
.cid-tHWjeFymd7 .menu-content-right {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-tHWjeFymd7 .menu-content-right .info-widget:last-child {
  padding-right: 0;
}
.cid-tHWjeFymd7 .menu-content-right .info-widget:first-child {
  padding-left: 0;
  border-left: none;
}
.cid-tHWjeFymd7 .widget-content {
  display: inline-block;
  vertical-align: top;
  text-align: left;
}
.cid-tHWjeFymd7 .widget-content .widget-title {
  font-weight: 600;
  margin-bottom: 7px;
}
.cid-tHWjeFymd7 .widget-content .widget-text {
  margin-bottom: 0;
}
@media (min-width: 992px) {
  .cid-tHWjeFymd7 .navbar .menu-content-top {
    display: flex;
    min-height: 83px;
    height: 100%;
  }
  .cid-tHWjeFymd7 .content-right-side {
    text-align: right;
    -webkit-flex-wrap: nowrap;
    flex-wrap: nowrap;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-tHWjeFymd7 .menu-content-top {
    border-bottom: 0px solid rgba(0, 0, 0, 0.12);
  }
  .cid-tHWjeFymd7 .navbar {
    display: block;
    padding: 0;
  }
  .cid-tHWjeFymd7 .navbar .menu-logo {
    margin-right: auto;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-tHWjeFymd7 .navbar:not(.navbar-short) .navbar-collapse {
    max-height: calc(100vh - 5.8rem - 4.5rem);
  }
  .cid-tHWjeFymd7 .navbar.navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
    -webkit-align-self: initial;
    align-self: auto;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    z-index: 101;
    min-height: 49px;
  }
  .cid-tHWjeFymd7 .dropdown-item:hover:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    width: 16px;
  }
  .cid-tHWjeFymd7 .navbar-toggler {
    display: none;
  }
  .cid-tHWjeFymd7 .navbar-collapse {
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
  }
}
.cid-tHWjeFymd7 .navbar-short .menu-content-top {
  height: 0;
  min-height: 0;
  border: none;
}
.cid-tHWjeFymd7 .btn {
  display: inline-flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-tHWjeFymd7 .btn .mbr-iconfont {
  font-size: 1.2em;
}
.cid-tHWjeFymd7 .menu-logo {
  margin-right: auto;
}
.cid-tHWjeFymd7 .menu-logo .navbar-brand {
  display: flex;
  margin-left: 1.5rem;
  padding: 0.5rem 0;
  transition: padding 0.2s;
  min-height: 3.8rem;
  -webkit-align-items: center;
  align-items: center;
}
.cid-tHWjeFymd7 .menu-logo .navbar-brand .navbar-caption-wrap {
  display: -webkit-flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 20rem;
  margin: 0.3rem 0;
}
.cid-tHWjeFymd7 .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-tHWjeFymd7 .menu-logo .navbar-brand .navbar-logo {
  font-size: 3rem;
  transition: font-size 0.25s;
}
.cid-tHWjeFymd7 .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
  width: auto;
}
.cid-tHWjeFymd7 .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-tHWjeFymd7 .navbar-toggleable-sm .navbar-collapse {
  width: auto;
}
.cid-tHWjeFymd7 .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  padding-left: 0;
}
.cid-tHWjeFymd7 .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-tHWjeFymd7 .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-tHWjeFymd7 .dropdown .dropdown-menu {
  background: #ffffff;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-tHWjeFymd7 .dropdown .dropdown-menu {
    overflow: hidden;
  }
}
.cid-tHWjeFymd7 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-tHWjeFymd7 .dropdown .dropdown-menu .dropdown-item::after {
  right: -0.5rem;
}
.cid-tHWjeFymd7 .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-tHWjeFymd7 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-tHWjeFymd7 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-tHWjeFymd7 .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0rem;
}
.cid-tHWjeFymd7 .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tHWjeFymd7 .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  -webkit-transform: translateY(100%);
  transform: translateY(100%);
  z-index: 1000;
}
.cid-tHWjeFymd7 .navbar.navbar-short {
  min-height: 50px;
  transition: all 0.2s;
}
.cid-tHWjeFymd7 .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-tHWjeFymd7 .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-tHWjeFymd7 .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
  width: auto;
}
.cid-tHWjeFymd7 .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-tHWjeFymd7 button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all 0.2s;
  margin: 1rem 0.8rem;
  -webkit-align-self: center;
  align-self: center;
}
.cid-tHWjeFymd7 button.navbar-toggler:focus {
  outline: none;
}
.cid-tHWjeFymd7 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #bbbbbb;
}
.cid-tHWjeFymd7 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tHWjeFymd7 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tHWjeFymd7 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tHWjeFymd7 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tHWjeFymd7 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tHWjeFymd7 nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tHWjeFymd7 nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tHWjeFymd7 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tHWjeFymd7 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tHWjeFymd7 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0em 1.5em 0em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tHWjeFymd7 .collapsed .btn {
  display: flex;
}
.cid-tHWjeFymd7 .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-tHWjeFymd7 .collapsed .navbar-collapse.collapsing,
.cid-tHWjeFymd7 .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-tHWjeFymd7 .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-tHWjeFymd7 .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-tHWjeFymd7 .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-tHWjeFymd7 .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-tHWjeFymd7 .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
.cid-tHWjeFymd7 .collapsed .navbar-collapse.show .navbar-nav .nav-item:last-child {
  margin-bottom: 1rem;
}
.cid-tHWjeFymd7 .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-tHWjeFymd7 .collapsed .navbar-collapse.show .navbar-buttons {
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  text-align: center;
}
.cid-tHWjeFymd7 .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-tHWjeFymd7 .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .cid-tHWjeFymd7 .collapsed .dropdown .dropdown-menu {
    overflow: hidden;
  }
}
.cid-tHWjeFymd7 .collapsed button.navbar-toggler {
  display: block;
}
.cid-tHWjeFymd7 .collapsed .navbar-brand {
  margin-left: 1rem !important;
  margin-top: 0.5rem;
}
.cid-tHWjeFymd7 .collapsed .navbar-toggleable-sm {
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-tHWjeFymd7 .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: 0.5s;
  transition-property: opacity, padding, height;
}
.cid-tHWjeFymd7 .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-tHWjeFymd7 .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-tHWjeFymd7 .collapsed .dropdown .dropdown-toggle[data-toggle='dropdown-submenu']::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 0.3em;
  vertical-align: middle;
  content: '';
  border-top: 0.3em solid;
  border-right: 0.3em solid transparent;
  border-left: 0.3em solid transparent;
}
.cid-tHWjeFymd7 .collapsed .menu-bottom {
  -webkit-flex-direction: column-reverse;
  flex-direction: column-reverse;
  -webkit-justify-content: center;
  justify-content: center;
}
@media (max-width: 991px) {
  .cid-tHWjeFymd7 .navbar-collapse {
    padding-bottom: 1rem;
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-tHWjeFymd7 .navbar-collapse.collapsing,
  .cid-tHWjeFymd7 .navbar-collapse.show {
    display: block !important;
  }
  .cid-tHWjeFymd7 .navbar-collapse.collapsing .navbar-nav,
  .cid-tHWjeFymd7 .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-tHWjeFymd7 .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-tHWjeFymd7 .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-tHWjeFymd7 .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
  .cid-tHWjeFymd7 .navbar-collapse.show .navbar-nav .nav-item:last-child {
    margin-bottom: 1rem;
  }
  .cid-tHWjeFymd7 .navbar-collapse.collapsing .navbar-buttons,
  .cid-tHWjeFymd7 .navbar-collapse.show .navbar-buttons {
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    text-align: center;
  }
  .cid-tHWjeFymd7 .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-tHWjeFymd7 .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-tHWjeFymd7 .menu-bottom {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
    -webkit-justify-content: center;
    justify-content: center;
  }
  .cid-tHWjeFymd7 img {
    height: 3.8rem !important;
  }
  .cid-tHWjeFymd7 .btn {
    display: flex;
  }
  .cid-tHWjeFymd7 button.navbar-toggler {
    display: block;
  }
  .cid-tHWjeFymd7 .navbar-brand {
    margin-left: 1rem !important;
    margin-top: 0.5rem;
  }
  .cid-tHWjeFymd7 .navbar-toggleable-sm {
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .cid-tHWjeFymd7 .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: 0.5s;
    transition-property: opacity, padding, height;
  }
  .cid-tHWjeFymd7 .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 0rem 0;
    visibility: visible;
  }
  .cid-tHWjeFymd7 .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-tHWjeFymd7 .dropdown .dropdown-toggle[data-toggle='dropdown-submenu']::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: 0.3em;
    vertical-align: middle;
    content: '';
    border-top: 0.3em solid;
    border-right: 0.3em solid transparent;
    border-left: 0.3em solid transparent;
  }
  .cid-tHWjeFymd7 .navbar-buttons.mbr-section-btn {
    width: 100%;
  }
  .cid-tHWjeFymd7 .dropdown .dropdown-menu .dropdown-item {
    padding: 0em 1.5em 0em 1.5em !important;
    transition: none;
    margin: 0 !important;
  }
}
.cid-tHWjeFymd7 .navbar-dropdown {
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap;
}
.cid-tHWjeFymd7 .nav-link:focus {
  outline: none;
}
.cid-tHWjeFymd7 .navbar-toggler {
  position: relative;
}
.cid-tHWjeFymd7 .dropdown-item.active,
.cid-tHWjeFymd7 .dropdown-item:active {
  background: #3b5abb;
  color: initial;
}
.cid-sxGJ0dLryL {
  overflow-x: hidden !important;
}
.cid-sxGJ0dLryL,
.cid-sxGJ0dLryL .scroll-wrapper {
  padding-top: 225px;
  padding-bottom: 105px;
}
.cid-sxGJ0dLryL .mbr-section-title {
  color: #ffffff;
}
.cid-sxGJ0dLryL .mbr-section-title span {
  color: #6592e6;
}
.cid-sxGJ0dLryL .mbr-text {
  color: #efefef;
  letter-spacing: 5px;
  font-weight: 100;
}
.cid-sxGJ0dLryL .scroll-wrapper {
  top: 0;
  width: 100%;
  height: 100%;
  background-position: 50% 50%;
  background-size: cover;
  position: absolute;
  background-repeat: repeat;
  z-index: 0;
  -webkit-animation-duration: 47s !important;
  animation-duration: 47s;
  background-image: url("../../../assets/images/technologist-protective-uniform-wearing-hairnet-mask-goggles-gloves-closing-industrial-tank-reservoir-web-2000x1335.jpeg");
  -webkit-animation: scroll-wrapper linear infinite;
  -moz-animation: scroll-wrapper linear infinite;
  -o-animation: scroll-wrapper linear infinite;
  animation: scroll-wrapper linear infinite;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
}
.cid-sxGJ0dLryL .scroll-wrapper.second {
  left: calc(100% - 1px);
}
.cid-sxGJ0dLryL .mbr-overlay {
  z-index: 1;
}
.cid-sxGJ0dLryL .block-content {
  z-index: 2;
}
@keyframes scroll-wrapper {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}
@-webkit-keyframes scroll-wrapper {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}
@-moz-keyframes scroll-wrapper {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}
@-o-keyframes scroll-wrapper {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}
.cid-sxGKYdw3Jm {
  background: #ffffff;
}
.cid-sxGKYdw3Jm .image-block {
  margin: auto;
  width: 100% !important;
}
.cid-sxGKYdw3Jm .image-block img {
  width: 100%;
}
@media (max-width: 767px) {
  .cid-sxGKYdw3Jm .container-fluid {
    padding: 0 0rem;
  }
  .cid-sxGKYdw3Jm .image-block {
    width: 100% !important;
  }
}
.cid-sxGKYdw3Jm .container-fluid {
  padding: 0 0rem;
}
.cid-sxWQZfxzAG {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #fafafa;
}
.cid-sxWRcdCtt1 {
  background: #ffffff;
}
.cid-sxWRcdCtt1 .image-block {
  margin: auto;
  width: 100% !important;
}
.cid-sxWRcdCtt1 .image-block img {
  width: 100%;
}
@media (max-width: 767px) {
  .cid-sxWRcdCtt1 .container-fluid {
    padding: 0 0rem;
  }
  .cid-sxWRcdCtt1 .image-block {
    width: 100% !important;
  }
}
.cid-sxWRcdCtt1 .container-fluid {
  padding: 0 0rem;
}
.cid-sxWScnziNT {
  background: #ffffff;
}
.cid-sxWScnziNT .image-block {
  margin: auto;
  width: 100% !important;
}
.cid-sxWScnziNT .image-block img {
  width: 100%;
}
@media (max-width: 767px) {
  .cid-sxWScnziNT .container-fluid {
    padding: 0 0rem;
  }
  .cid-sxWScnziNT .image-block {
    width: 100% !important;
  }
}
.cid-sxWScnziNT .container-fluid {
  padding: 0 0rem;
}
.cid-sxWSlK0DS6 {
  background: #ffffff;
}
.cid-sxWSlK0DS6 .image-block {
  margin: auto;
  width: 100% !important;
}
.cid-sxWSlK0DS6 .image-block img {
  width: 100%;
}
@media (max-width: 767px) {
  .cid-sxWSlK0DS6 .container-fluid {
    padding: 0 0rem;
  }
  .cid-sxWSlK0DS6 .image-block {
    width: 100% !important;
  }
}
.cid-sxWSlK0DS6 .container-fluid {
  padding: 0 0rem;
}
.cid-sxWSt0k2IN {
  background: #ffffff;
}
.cid-sxWSt0k2IN .image-block {
  margin: auto;
  width: 100% !important;
}
.cid-sxWSt0k2IN .image-block img {
  width: 100%;
}
@media (max-width: 767px) {
  .cid-sxWSt0k2IN .container-fluid {
    padding: 0 0rem;
  }
  .cid-sxWSt0k2IN .image-block {
    width: 100% !important;
  }
}
.cid-sxWSt0k2IN .container-fluid {
  padding: 0 0rem;
}
.cid-sxWSyMmWvN {
  background: #ffffff;
}
.cid-sxWSyMmWvN .image-block {
  margin: auto;
  width: 100% !important;
}
.cid-sxWSyMmWvN .image-block img {
  width: 100%;
}
@media (max-width: 767px) {
  .cid-sxWSyMmWvN .container-fluid {
    padding: 0 0rem;
  }
  .cid-sxWSyMmWvN .image-block {
    width: 100% !important;
  }
}
.cid-sxWSyMmWvN .container-fluid {
  padding: 0 0rem;
}
.cid-sxWSExzIQQ {
  background: #ffffff;
}
.cid-sxWSExzIQQ .image-block {
  margin: auto;
  width: 100% !important;
}
.cid-sxWSExzIQQ .image-block img {
  width: 100%;
}
@media (max-width: 767px) {
  .cid-sxWSExzIQQ .container-fluid {
    padding: 0 0rem;
  }
  .cid-sxWSExzIQQ .image-block {
    width: 100% !important;
  }
}
.cid-sxWSExzIQQ .container-fluid {
  padding: 0 0rem;
}
.cid-sxWSLkdbX1 {
  background: #ffffff;
}
.cid-sxWSLkdbX1 .image-block {
  margin: auto;
  width: 100% !important;
}
.cid-sxWSLkdbX1 .image-block img {
  width: 100%;
}
@media (max-width: 767px) {
  .cid-sxWSLkdbX1 .container-fluid {
    padding: 0 0rem;
  }
  .cid-sxWSLkdbX1 .image-block {
    width: 100% !important;
  }
}
.cid-sxWSLkdbX1 .container-fluid {
  padding: 0 0rem;
}
.cid-sxWSREc0bP {
  background: #ffffff;
}
.cid-sxWSREc0bP .image-block {
  margin: auto;
  width: 100% !important;
}
.cid-sxWSREc0bP .image-block img {
  width: 100%;
}
@media (max-width: 767px) {
  .cid-sxWSREc0bP .container-fluid {
    padding: 0 0rem;
  }
  .cid-sxWSREc0bP .image-block {
    width: 100% !important;
  }
}
.cid-sxWSREc0bP .container-fluid {
  padding: 0 0rem;
}
.cid-tHW3VKRR8A {
  padding-top: 30px;
  padding-bottom: 15px;
  background-image: url("../../../assets/images/mbr-13-1920x1280.jpg");
}
.cid-tHW3VKRR8A .listico {
  padding-right: 1rem;
  font-size: 1.3rem;
}
.cid-tHW3VKRR8A .navbar-logo {
  width: 80px;
  margin-bottom: 10px;
}
.cid-tHW3VKRR8A .mbr-text {
  color: #444;
}
.cid-tHW3VKRR8A h5 {
  margin-bottom: 0;
}
.cid-tHW3VKRR8A .navbar-brand {
  margin: 0rem;
  width: 100%;
}
.cid-tHW3VKRR8A .list-item {
  display: flex;
  padding-top: 10px;
  padding-bottom: 10px;
  -webkit-align-items: center;
  align-items: center;
}
.cid-tHW3VKRR8A .tips {
  height: 90px;
  width: 90px;
  border-radius: 6px;
  margin: 4px;
  object-fit: cover;
  display: inline;
}
.cid-tHW3VKRR8A .socicon {
  font-size: 1.3rem;
  background: #ff4a52;
  border-radius: 100%;
  width: 38px;
  height: 38px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-tHW3VKRR8A .social-list {
  display: flex;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-tHW3VKRR8A .social-list .soc-item {
  margin: 0 0.3rem;
}
.cid-tHW3VKRR8A .social-list a {
  margin: 0;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-tHW3VKRR8A .social-list a:hover {
  opacity: 0.4;
}
.cid-tHW3VKRR8A .media-container-row > div {
  padding: 0px;
}
.cid-tHW3VKRR8A .text2 {
  color: #6592e6;
  text-align: left;
}
.cid-tHW3VKRR8A .group-title {
  text-align: left;
  color: #e6c63b;
}
.cid-tHW3VKRR8A .group-title SPAN {
  color: #ffffff;
}
.cid-tHW3VKRR8A .links {
  color: #ffffff;
  line-height: 1.6;
}
@media (max-width: 991px) {
  .cid-tHW3VKRR8A .col-sm-12 {
    margin-bottom: 2rem;
  }
  .cid-tHW3VKRR8A .social-list,
  .cid-tHW3VKRR8A .img-list {
    -webkit-justify-content: center;
    justify-content: center;
    text-align: center;
  }
  .cid-tHW3VKRR8A h3 {
    margin-bottom: 10px;
  }
  .cid-tHW3VKRR8A .navbar-brand {
    text-align: center;
  }
}
.cid-tHW3VKRR8A .links SPAN {
  color: #9e9e9e;
}
.cid-sxGJ0fSqYE {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #232323;
}
.cid-tHWjeFymd7 .navbar {
  padding: 0.5rem 0;
  background: #ffffff;
  transition: none;
  min-height: 50px;
}
.cid-tHWjeFymd7 .navbar-fixed-top {
  padding-top: 0;
}
.cid-tHWjeFymd7 .navbar-collapse {
  -ms-flex-preferred-size: auto;
  -webkit-flex-basis: auto;
  flex-basis: auto;
}
.cid-tHWjeFymd7 .dropdown-item {
  padding: 0;
}
.cid-tHWjeFymd7 .dropdown-menu {
  border: 0px solid lightgray;
  background: #3b5abb !important;
}
.cid-tHWjeFymd7 .menu-content-top {
  max-width: 1500px;
  display: none;
  padding: 0rem 2rem;
  margin: auto;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  overflow: hidden;
  transition: min-height 0.25s ease-in-out;
}
.cid-tHWjeFymd7 .menu-bottom {
  margin: auto;
  width: 100%;
  background: #3b5abb;
  display: flex;
  padding: 0 2rem;
  position: relative;
}
.cid-tHWjeFymd7 .navbar-dropdown.bg-color.transparent.opened {
  background: #ffffff;
}
.cid-tHWjeFymd7 a {
  font-style: normal;
}
.cid-tHWjeFymd7 .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  top: -0.2em;
  text-decoration: none;
}
.cid-tHWjeFymd7 .nav-item a {
  padding: 0rem 0 !important;
  margin: 0rem !important;
}
.cid-tHWjeFymd7 .dropdown-item:before {
  font-family: MobiriseIcons !important;
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-tHWjeFymd7 .content-text {
  margin-bottom: 0;
}
.cid-tHWjeFymd7 .navbar-nav {
  position: relative;
  min-height: 49px;
  -ms-flex-direction: row;
  -webkit-flex-direction: row;
  flex-direction: row;
}
@media (min-width: 992px) {
  .cid-tHWjeFymd7 .navbar-nav .main-menu-animated-line {
    position: absolute;
    left: 0;
    width: 0;
    height: 0;
    z-index: 100;
    border-top: 4px solid #6592e6;
    -webkit-transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
    -moz-transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
    transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
  }
  .cid-tHWjeFymd7 .navbar-nav .main-menu-animated-line.bottom {
    bottom: 0;
  }
}
.cid-tHWjeFymd7 .navbar-nav .nav-item span {
  padding-right: 0;
}
.cid-tHWjeFymd7 .navbar-nav .nav-item a {
  margin: 0 1.3rem !important;
}
.cid-tHWjeFymd7 .display-4 > .mbr-iconfont {
  font-size: 1.43em;
}
.cid-tHWjeFymd7 .display-4 > .btn > .mbr-iconfont {
  font-size: 1.43em;
}
.cid-tHWjeFymd7 .nav-dropdown .dropdown-item {
  font-weight: 400;
}
.cid-tHWjeFymd7 .navbar-buttons.mbr-section-btn {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-tHWjeFymd7 .nav-dropdown .link {
  font-weight: 400;
}
.cid-tHWjeFymd7 .menu .navbar-brand .logo-text-part {
  vertical-align: top;
}
.cid-tHWjeFymd7 .content-right-side {
  text-align: center;
}
.cid-tHWjeFymd7 .content-right-side .content-link {
  margin-left: 2rem;
}
.cid-tHWjeFymd7 .content-right-side .content-link span {
  vertical-align: middle;
  padding-right: 1rem;
}
.cid-tHWjeFymd7 .widget-icon {
  display: inline-block;
  padding-right: 1rem;
  font-size: 1.65rem;
}
.cid-tHWjeFymd7 .info-widget {
  padding-left: 2rem;
  padding-top: 0.5rem;
  padding-right: 3rem;
  border-left: 1px solid rgba(0, 0, 0, 0.12);
}
.cid-tHWjeFymd7 .menu-content-right {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-tHWjeFymd7 .menu-content-right .info-widget:last-child {
  padding-right: 0;
}
.cid-tHWjeFymd7 .menu-content-right .info-widget:first-child {
  padding-left: 0;
  border-left: none;
}
.cid-tHWjeFymd7 .widget-content {
  display: inline-block;
  vertical-align: top;
  text-align: left;
}
.cid-tHWjeFymd7 .widget-content .widget-title {
  font-weight: 600;
  margin-bottom: 7px;
}
.cid-tHWjeFymd7 .widget-content .widget-text {
  margin-bottom: 0;
}
@media (min-width: 992px) {
  .cid-tHWjeFymd7 .navbar .menu-content-top {
    display: flex;
    min-height: 83px;
    height: 100%;
  }
  .cid-tHWjeFymd7 .content-right-side {
    text-align: right;
    -webkit-flex-wrap: nowrap;
    flex-wrap: nowrap;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-tHWjeFymd7 .menu-content-top {
    border-bottom: 0px solid rgba(0, 0, 0, 0.12);
  }
  .cid-tHWjeFymd7 .navbar {
    display: block;
    padding: 0;
  }
  .cid-tHWjeFymd7 .navbar .menu-logo {
    margin-right: auto;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-tHWjeFymd7 .navbar:not(.navbar-short) .navbar-collapse {
    max-height: calc(100vh - 5.8rem - 4.5rem);
  }
  .cid-tHWjeFymd7 .navbar.navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
    -webkit-align-self: initial;
    align-self: auto;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    z-index: 101;
    min-height: 49px;
  }
  .cid-tHWjeFymd7 .dropdown-item:hover:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    width: 16px;
  }
  .cid-tHWjeFymd7 .navbar-toggler {
    display: none;
  }
  .cid-tHWjeFymd7 .navbar-collapse {
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
  }
}
.cid-tHWjeFymd7 .navbar-short .menu-content-top {
  height: 0;
  min-height: 0;
  border: none;
}
.cid-tHWjeFymd7 .btn {
  display: inline-flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-tHWjeFymd7 .btn .mbr-iconfont {
  font-size: 1.2em;
}
.cid-tHWjeFymd7 .menu-logo {
  margin-right: auto;
}
.cid-tHWjeFymd7 .menu-logo .navbar-brand {
  display: flex;
  margin-left: 1.5rem;
  padding: 0.5rem 0;
  transition: padding 0.2s;
  min-height: 3.8rem;
  -webkit-align-items: center;
  align-items: center;
}
.cid-tHWjeFymd7 .menu-logo .navbar-brand .navbar-caption-wrap {
  display: -webkit-flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 20rem;
  margin: 0.3rem 0;
}
.cid-tHWjeFymd7 .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-tHWjeFymd7 .menu-logo .navbar-brand .navbar-logo {
  font-size: 3rem;
  transition: font-size 0.25s;
}
.cid-tHWjeFymd7 .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
  width: auto;
}
.cid-tHWjeFymd7 .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-tHWjeFymd7 .navbar-toggleable-sm .navbar-collapse {
  width: auto;
}
.cid-tHWjeFymd7 .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  padding-left: 0;
}
.cid-tHWjeFymd7 .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-tHWjeFymd7 .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-tHWjeFymd7 .dropdown .dropdown-menu {
  background: #ffffff;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-tHWjeFymd7 .dropdown .dropdown-menu {
    overflow: hidden;
  }
}
.cid-tHWjeFymd7 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-tHWjeFymd7 .dropdown .dropdown-menu .dropdown-item::after {
  right: -0.5rem;
}
.cid-tHWjeFymd7 .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-tHWjeFymd7 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-tHWjeFymd7 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-tHWjeFymd7 .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0rem;
}
.cid-tHWjeFymd7 .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tHWjeFymd7 .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  -webkit-transform: translateY(100%);
  transform: translateY(100%);
  z-index: 1000;
}
.cid-tHWjeFymd7 .navbar.navbar-short {
  min-height: 50px;
  transition: all 0.2s;
}
.cid-tHWjeFymd7 .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-tHWjeFymd7 .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-tHWjeFymd7 .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
  width: auto;
}
.cid-tHWjeFymd7 .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-tHWjeFymd7 button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all 0.2s;
  margin: 1rem 0.8rem;
  -webkit-align-self: center;
  align-self: center;
}
.cid-tHWjeFymd7 button.navbar-toggler:focus {
  outline: none;
}
.cid-tHWjeFymd7 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #bbbbbb;
}
.cid-tHWjeFymd7 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tHWjeFymd7 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tHWjeFymd7 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tHWjeFymd7 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tHWjeFymd7 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tHWjeFymd7 nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tHWjeFymd7 nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tHWjeFymd7 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tHWjeFymd7 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tHWjeFymd7 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0em 1.5em 0em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tHWjeFymd7 .collapsed .btn {
  display: flex;
}
.cid-tHWjeFymd7 .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-tHWjeFymd7 .collapsed .navbar-collapse.collapsing,
.cid-tHWjeFymd7 .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-tHWjeFymd7 .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-tHWjeFymd7 .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-tHWjeFymd7 .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-tHWjeFymd7 .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-tHWjeFymd7 .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
.cid-tHWjeFymd7 .collapsed .navbar-collapse.show .navbar-nav .nav-item:last-child {
  margin-bottom: 1rem;
}
.cid-tHWjeFymd7 .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-tHWjeFymd7 .collapsed .navbar-collapse.show .navbar-buttons {
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  text-align: center;
}
.cid-tHWjeFymd7 .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-tHWjeFymd7 .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .cid-tHWjeFymd7 .collapsed .dropdown .dropdown-menu {
    overflow: hidden;
  }
}
.cid-tHWjeFymd7 .collapsed button.navbar-toggler {
  display: block;
}
.cid-tHWjeFymd7 .collapsed .navbar-brand {
  margin-left: 1rem !important;
  margin-top: 0.5rem;
}
.cid-tHWjeFymd7 .collapsed .navbar-toggleable-sm {
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-tHWjeFymd7 .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: 0.5s;
  transition-property: opacity, padding, height;
}
.cid-tHWjeFymd7 .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-tHWjeFymd7 .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-tHWjeFymd7 .collapsed .dropdown .dropdown-toggle[data-toggle='dropdown-submenu']::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 0.3em;
  vertical-align: middle;
  content: '';
  border-top: 0.3em solid;
  border-right: 0.3em solid transparent;
  border-left: 0.3em solid transparent;
}
.cid-tHWjeFymd7 .collapsed .menu-bottom {
  -webkit-flex-direction: column-reverse;
  flex-direction: column-reverse;
  -webkit-justify-content: center;
  justify-content: center;
}
@media (max-width: 991px) {
  .cid-tHWjeFymd7 .navbar-collapse {
    padding-bottom: 1rem;
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-tHWjeFymd7 .navbar-collapse.collapsing,
  .cid-tHWjeFymd7 .navbar-collapse.show {
    display: block !important;
  }
  .cid-tHWjeFymd7 .navbar-collapse.collapsing .navbar-nav,
  .cid-tHWjeFymd7 .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-tHWjeFymd7 .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-tHWjeFymd7 .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-tHWjeFymd7 .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
  .cid-tHWjeFymd7 .navbar-collapse.show .navbar-nav .nav-item:last-child {
    margin-bottom: 1rem;
  }
  .cid-tHWjeFymd7 .navbar-collapse.collapsing .navbar-buttons,
  .cid-tHWjeFymd7 .navbar-collapse.show .navbar-buttons {
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    text-align: center;
  }
  .cid-tHWjeFymd7 .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-tHWjeFymd7 .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-tHWjeFymd7 .menu-bottom {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
    -webkit-justify-content: center;
    justify-content: center;
  }
  .cid-tHWjeFymd7 img {
    height: 3.8rem !important;
  }
  .cid-tHWjeFymd7 .btn {
    display: flex;
  }
  .cid-tHWjeFymd7 button.navbar-toggler {
    display: block;
  }
  .cid-tHWjeFymd7 .navbar-brand {
    margin-left: 1rem !important;
    margin-top: 0.5rem;
  }
  .cid-tHWjeFymd7 .navbar-toggleable-sm {
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .cid-tHWjeFymd7 .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: 0.5s;
    transition-property: opacity, padding, height;
  }
  .cid-tHWjeFymd7 .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 0rem 0;
    visibility: visible;
  }
  .cid-tHWjeFymd7 .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-tHWjeFymd7 .dropdown .dropdown-toggle[data-toggle='dropdown-submenu']::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: 0.3em;
    vertical-align: middle;
    content: '';
    border-top: 0.3em solid;
    border-right: 0.3em solid transparent;
    border-left: 0.3em solid transparent;
  }
  .cid-tHWjeFymd7 .navbar-buttons.mbr-section-btn {
    width: 100%;
  }
  .cid-tHWjeFymd7 .dropdown .dropdown-menu .dropdown-item {
    padding: 0em 1.5em 0em 1.5em !important;
    transition: none;
    margin: 0 !important;
  }
}
.cid-tHWjeFymd7 .navbar-dropdown {
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap;
}
.cid-tHWjeFymd7 .nav-link:focus {
  outline: none;
}
.cid-tHWjeFymd7 .navbar-toggler {
  position: relative;
}
.cid-tHWjeFymd7 .dropdown-item.active,
.cid-tHWjeFymd7 .dropdown-item:active {
  background: #3b5abb;
  color: initial;
}
.cid-sxGJmqkTxl {
  overflow-x: hidden !important;
}
.cid-sxGJmqkTxl,
.cid-sxGJmqkTxl .scroll-wrapper {
  padding-top: 225px;
  padding-bottom: 105px;
}
.cid-sxGJmqkTxl .mbr-section-title {
  color: #ffffff;
}
.cid-sxGJmqkTxl .mbr-section-title span {
  color: #6592e6;
}
.cid-sxGJmqkTxl .mbr-text {
  color: #efefef;
  letter-spacing: 5px;
  font-weight: 100;
}
.cid-sxGJmqkTxl .scroll-wrapper {
  top: 0;
  width: 100%;
  height: 100%;
  background-position: 50% 50%;
  background-size: cover;
  position: absolute;
  background-repeat: repeat;
  z-index: 0;
  -webkit-animation-duration: 47s !important;
  animation-duration: 47s;
  background-image: url("../../../assets/images/technologist-protective-uniform-wearing-hairnet-mask-goggles-gloves-closing-industrial-tank-reservoir-web-2000x1335.jpeg");
  -webkit-animation: scroll-wrapper linear infinite;
  -moz-animation: scroll-wrapper linear infinite;
  -o-animation: scroll-wrapper linear infinite;
  animation: scroll-wrapper linear infinite;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
}
.cid-sxGJmqkTxl .scroll-wrapper.second {
  left: calc(100% - 1px);
}
.cid-sxGJmqkTxl .mbr-overlay {
  z-index: 1;
}
.cid-sxGJmqkTxl .block-content {
  z-index: 2;
}
@keyframes scroll-wrapper {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}
@-webkit-keyframes scroll-wrapper {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}
@-moz-keyframes scroll-wrapper {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}
@-o-keyframes scroll-wrapper {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}
.cid-sxGW7X0wgt {
  padding-top: 0rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-sxGW7X0wgt .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-sxGW7X0wgt .row {
  flex-direction: row-reverse;
}
.cid-sxGW7X0wgt img {
  width: 100%;
  border-radius: 1rem;
}
.cid-sxGWRU0MEV {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-sxGWRU0MEV .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-sxGWRU0MEV .row {
  flex-direction: row-reverse;
}
.cid-sxGWRU0MEV img {
  width: 100%;
  border-radius: 1rem;
}
.cid-sxGWV7dLCF {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-sxGWV7dLCF .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-sxGWV7dLCF .row {
  flex-direction: row-reverse;
}
.cid-sxGWV7dLCF img {
  width: 100%;
  border-radius: 1rem;
}
.cid-sxWX3nxMY1 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-sxWX3nxMY1 .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-sxWX3nxMY1 .row {
  flex-direction: row-reverse;
}
.cid-sxWX3nxMY1 img {
  width: 100%;
  border-radius: 1rem;
}
.cid-sxWX4hbQjo {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-sxWX4hbQjo .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-sxWX4hbQjo .row {
  flex-direction: row-reverse;
}
.cid-sxWX4hbQjo img {
  width: 100%;
  border-radius: 1rem;
}
.cid-sxWX6OeEr5 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-sxWX6OeEr5 .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-sxWX6OeEr5 .row {
  flex-direction: row-reverse;
}
.cid-sxWX6OeEr5 img {
  width: 100%;
  border-radius: 1rem;
}
.cid-sxWX7pjUCQ {
  padding-top: 0rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-sxWX7pjUCQ .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-sxWX7pjUCQ .row {
  flex-direction: row-reverse;
}
.cid-sxWX7pjUCQ img {
  width: 100%;
  border-radius: 1rem;
}
.cid-sxWX7XKZGw {
  padding-top: 0rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-sxWX7XKZGw .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-sxWX7XKZGw .row {
  flex-direction: row-reverse;
}
.cid-sxWX7XKZGw img {
  width: 100%;
  border-radius: 1rem;
}
.cid-tHW45oHI23 {
  padding-top: 30px;
  padding-bottom: 15px;
  background-image: url("../../../assets/images/mbr-13-1920x1280.jpg");
}
.cid-tHW45oHI23 .listico {
  padding-right: 1rem;
  font-size: 1.3rem;
}
.cid-tHW45oHI23 .navbar-logo {
  width: 80px;
  margin-bottom: 10px;
}
.cid-tHW45oHI23 .mbr-text {
  color: #444;
}
.cid-tHW45oHI23 h5 {
  margin-bottom: 0;
}
.cid-tHW45oHI23 .navbar-brand {
  margin: 0rem;
  width: 100%;
}
.cid-tHW45oHI23 .list-item {
  display: flex;
  padding-top: 10px;
  padding-bottom: 10px;
  -webkit-align-items: center;
  align-items: center;
}
.cid-tHW45oHI23 .tips {
  height: 90px;
  width: 90px;
  border-radius: 6px;
  margin: 4px;
  object-fit: cover;
  display: inline;
}
.cid-tHW45oHI23 .socicon {
  font-size: 1.3rem;
  background: #ff4a52;
  border-radius: 100%;
  width: 38px;
  height: 38px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-tHW45oHI23 .social-list {
  display: flex;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-tHW45oHI23 .social-list .soc-item {
  margin: 0 0.3rem;
}
.cid-tHW45oHI23 .social-list a {
  margin: 0;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-tHW45oHI23 .social-list a:hover {
  opacity: 0.4;
}
.cid-tHW45oHI23 .media-container-row > div {
  padding: 0px;
}
.cid-tHW45oHI23 .text2 {
  color: #6592e6;
  text-align: left;
}
.cid-tHW45oHI23 .group-title {
  text-align: left;
  color: #e6c63b;
}
.cid-tHW45oHI23 .group-title SPAN {
  color: #ffffff;
}
.cid-tHW45oHI23 .links {
  color: #ffffff;
  line-height: 1.6;
}
@media (max-width: 991px) {
  .cid-tHW45oHI23 .col-sm-12 {
    margin-bottom: 2rem;
  }
  .cid-tHW45oHI23 .social-list,
  .cid-tHW45oHI23 .img-list {
    -webkit-justify-content: center;
    justify-content: center;
    text-align: center;
  }
  .cid-tHW45oHI23 h3 {
    margin-bottom: 10px;
  }
  .cid-tHW45oHI23 .navbar-brand {
    text-align: center;
  }
}
.cid-tHW45oHI23 .links SPAN {
  color: #9e9e9e;
}
.cid-sxGJmt0j0X {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #232323;
}
.cid-tHWjeFymd7 .navbar {
  padding: 0.5rem 0;
  background: #ffffff;
  transition: none;
  min-height: 50px;
}
.cid-tHWjeFymd7 .navbar-fixed-top {
  padding-top: 0;
}
.cid-tHWjeFymd7 .navbar-collapse {
  -ms-flex-preferred-size: auto;
  -webkit-flex-basis: auto;
  flex-basis: auto;
}
.cid-tHWjeFymd7 .dropdown-item {
  padding: 0;
}
.cid-tHWjeFymd7 .dropdown-menu {
  border: 0px solid lightgray;
  background: #3b5abb !important;
}
.cid-tHWjeFymd7 .menu-content-top {
  max-width: 1500px;
  display: none;
  padding: 0rem 2rem;
  margin: auto;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  overflow: hidden;
  transition: min-height 0.25s ease-in-out;
}
.cid-tHWjeFymd7 .menu-bottom {
  margin: auto;
  width: 100%;
  background: #3b5abb;
  display: flex;
  padding: 0 2rem;
  position: relative;
}
.cid-tHWjeFymd7 .navbar-dropdown.bg-color.transparent.opened {
  background: #ffffff;
}
.cid-tHWjeFymd7 a {
  font-style: normal;
}
.cid-tHWjeFymd7 .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  top: -0.2em;
  text-decoration: none;
}
.cid-tHWjeFymd7 .nav-item a {
  padding: 0rem 0 !important;
  margin: 0rem !important;
}
.cid-tHWjeFymd7 .dropdown-item:before {
  font-family: MobiriseIcons !important;
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-tHWjeFymd7 .content-text {
  margin-bottom: 0;
}
.cid-tHWjeFymd7 .navbar-nav {
  position: relative;
  min-height: 49px;
  -ms-flex-direction: row;
  -webkit-flex-direction: row;
  flex-direction: row;
}
@media (min-width: 992px) {
  .cid-tHWjeFymd7 .navbar-nav .main-menu-animated-line {
    position: absolute;
    left: 0;
    width: 0;
    height: 0;
    z-index: 100;
    border-top: 4px solid #6592e6;
    -webkit-transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
    -moz-transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
    transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
  }
  .cid-tHWjeFymd7 .navbar-nav .main-menu-animated-line.bottom {
    bottom: 0;
  }
}
.cid-tHWjeFymd7 .navbar-nav .nav-item span {
  padding-right: 0;
}
.cid-tHWjeFymd7 .navbar-nav .nav-item a {
  margin: 0 1.3rem !important;
}
.cid-tHWjeFymd7 .display-4 > .mbr-iconfont {
  font-size: 1.43em;
}
.cid-tHWjeFymd7 .display-4 > .btn > .mbr-iconfont {
  font-size: 1.43em;
}
.cid-tHWjeFymd7 .nav-dropdown .dropdown-item {
  font-weight: 400;
}
.cid-tHWjeFymd7 .navbar-buttons.mbr-section-btn {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-tHWjeFymd7 .nav-dropdown .link {
  font-weight: 400;
}
.cid-tHWjeFymd7 .menu .navbar-brand .logo-text-part {
  vertical-align: top;
}
.cid-tHWjeFymd7 .content-right-side {
  text-align: center;
}
.cid-tHWjeFymd7 .content-right-side .content-link {
  margin-left: 2rem;
}
.cid-tHWjeFymd7 .content-right-side .content-link span {
  vertical-align: middle;
  padding-right: 1rem;
}
.cid-tHWjeFymd7 .widget-icon {
  display: inline-block;
  padding-right: 1rem;
  font-size: 1.65rem;
}
.cid-tHWjeFymd7 .info-widget {
  padding-left: 2rem;
  padding-top: 0.5rem;
  padding-right: 3rem;
  border-left: 1px solid rgba(0, 0, 0, 0.12);
}
.cid-tHWjeFymd7 .menu-content-right {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-tHWjeFymd7 .menu-content-right .info-widget:last-child {
  padding-right: 0;
}
.cid-tHWjeFymd7 .menu-content-right .info-widget:first-child {
  padding-left: 0;
  border-left: none;
}
.cid-tHWjeFymd7 .widget-content {
  display: inline-block;
  vertical-align: top;
  text-align: left;
}
.cid-tHWjeFymd7 .widget-content .widget-title {
  font-weight: 600;
  margin-bottom: 7px;
}
.cid-tHWjeFymd7 .widget-content .widget-text {
  margin-bottom: 0;
}
@media (min-width: 992px) {
  .cid-tHWjeFymd7 .navbar .menu-content-top {
    display: flex;
    min-height: 83px;
    height: 100%;
  }
  .cid-tHWjeFymd7 .content-right-side {
    text-align: right;
    -webkit-flex-wrap: nowrap;
    flex-wrap: nowrap;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-tHWjeFymd7 .menu-content-top {
    border-bottom: 0px solid rgba(0, 0, 0, 0.12);
  }
  .cid-tHWjeFymd7 .navbar {
    display: block;
    padding: 0;
  }
  .cid-tHWjeFymd7 .navbar .menu-logo {
    margin-right: auto;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-tHWjeFymd7 .navbar:not(.navbar-short) .navbar-collapse {
    max-height: calc(100vh - 5.8rem - 4.5rem);
  }
  .cid-tHWjeFymd7 .navbar.navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
    -webkit-align-self: initial;
    align-self: auto;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    z-index: 101;
    min-height: 49px;
  }
  .cid-tHWjeFymd7 .dropdown-item:hover:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    width: 16px;
  }
  .cid-tHWjeFymd7 .navbar-toggler {
    display: none;
  }
  .cid-tHWjeFymd7 .navbar-collapse {
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
  }
}
.cid-tHWjeFymd7 .navbar-short .menu-content-top {
  height: 0;
  min-height: 0;
  border: none;
}
.cid-tHWjeFymd7 .btn {
  display: inline-flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-tHWjeFymd7 .btn .mbr-iconfont {
  font-size: 1.2em;
}
.cid-tHWjeFymd7 .menu-logo {
  margin-right: auto;
}
.cid-tHWjeFymd7 .menu-logo .navbar-brand {
  display: flex;
  margin-left: 1.5rem;
  padding: 0.5rem 0;
  transition: padding 0.2s;
  min-height: 3.8rem;
  -webkit-align-items: center;
  align-items: center;
}
.cid-tHWjeFymd7 .menu-logo .navbar-brand .navbar-caption-wrap {
  display: -webkit-flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 20rem;
  margin: 0.3rem 0;
}
.cid-tHWjeFymd7 .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-tHWjeFymd7 .menu-logo .navbar-brand .navbar-logo {
  font-size: 3rem;
  transition: font-size 0.25s;
}
.cid-tHWjeFymd7 .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
  width: auto;
}
.cid-tHWjeFymd7 .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-tHWjeFymd7 .navbar-toggleable-sm .navbar-collapse {
  width: auto;
}
.cid-tHWjeFymd7 .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  padding-left: 0;
}
.cid-tHWjeFymd7 .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-tHWjeFymd7 .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-tHWjeFymd7 .dropdown .dropdown-menu {
  background: #ffffff;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-tHWjeFymd7 .dropdown .dropdown-menu {
    overflow: hidden;
  }
}
.cid-tHWjeFymd7 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-tHWjeFymd7 .dropdown .dropdown-menu .dropdown-item::after {
  right: -0.5rem;
}
.cid-tHWjeFymd7 .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-tHWjeFymd7 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-tHWjeFymd7 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-tHWjeFymd7 .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0rem;
}
.cid-tHWjeFymd7 .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tHWjeFymd7 .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  -webkit-transform: translateY(100%);
  transform: translateY(100%);
  z-index: 1000;
}
.cid-tHWjeFymd7 .navbar.navbar-short {
  min-height: 50px;
  transition: all 0.2s;
}
.cid-tHWjeFymd7 .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-tHWjeFymd7 .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-tHWjeFymd7 .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
  width: auto;
}
.cid-tHWjeFymd7 .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-tHWjeFymd7 button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all 0.2s;
  margin: 1rem 0.8rem;
  -webkit-align-self: center;
  align-self: center;
}
.cid-tHWjeFymd7 button.navbar-toggler:focus {
  outline: none;
}
.cid-tHWjeFymd7 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #bbbbbb;
}
.cid-tHWjeFymd7 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tHWjeFymd7 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tHWjeFymd7 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tHWjeFymd7 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tHWjeFymd7 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tHWjeFymd7 nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tHWjeFymd7 nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tHWjeFymd7 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tHWjeFymd7 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tHWjeFymd7 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0em 1.5em 0em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tHWjeFymd7 .collapsed .btn {
  display: flex;
}
.cid-tHWjeFymd7 .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-tHWjeFymd7 .collapsed .navbar-collapse.collapsing,
.cid-tHWjeFymd7 .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-tHWjeFymd7 .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-tHWjeFymd7 .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-tHWjeFymd7 .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-tHWjeFymd7 .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-tHWjeFymd7 .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
.cid-tHWjeFymd7 .collapsed .navbar-collapse.show .navbar-nav .nav-item:last-child {
  margin-bottom: 1rem;
}
.cid-tHWjeFymd7 .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-tHWjeFymd7 .collapsed .navbar-collapse.show .navbar-buttons {
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  text-align: center;
}
.cid-tHWjeFymd7 .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-tHWjeFymd7 .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .cid-tHWjeFymd7 .collapsed .dropdown .dropdown-menu {
    overflow: hidden;
  }
}
.cid-tHWjeFymd7 .collapsed button.navbar-toggler {
  display: block;
}
.cid-tHWjeFymd7 .collapsed .navbar-brand {
  margin-left: 1rem !important;
  margin-top: 0.5rem;
}
.cid-tHWjeFymd7 .collapsed .navbar-toggleable-sm {
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-tHWjeFymd7 .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: 0.5s;
  transition-property: opacity, padding, height;
}
.cid-tHWjeFymd7 .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-tHWjeFymd7 .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-tHWjeFymd7 .collapsed .dropdown .dropdown-toggle[data-toggle='dropdown-submenu']::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 0.3em;
  vertical-align: middle;
  content: '';
  border-top: 0.3em solid;
  border-right: 0.3em solid transparent;
  border-left: 0.3em solid transparent;
}
.cid-tHWjeFymd7 .collapsed .menu-bottom {
  -webkit-flex-direction: column-reverse;
  flex-direction: column-reverse;
  -webkit-justify-content: center;
  justify-content: center;
}
@media (max-width: 991px) {
  .cid-tHWjeFymd7 .navbar-collapse {
    padding-bottom: 1rem;
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-tHWjeFymd7 .navbar-collapse.collapsing,
  .cid-tHWjeFymd7 .navbar-collapse.show {
    display: block !important;
  }
  .cid-tHWjeFymd7 .navbar-collapse.collapsing .navbar-nav,
  .cid-tHWjeFymd7 .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-tHWjeFymd7 .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-tHWjeFymd7 .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-tHWjeFymd7 .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
  .cid-tHWjeFymd7 .navbar-collapse.show .navbar-nav .nav-item:last-child {
    margin-bottom: 1rem;
  }
  .cid-tHWjeFymd7 .navbar-collapse.collapsing .navbar-buttons,
  .cid-tHWjeFymd7 .navbar-collapse.show .navbar-buttons {
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    text-align: center;
  }
  .cid-tHWjeFymd7 .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-tHWjeFymd7 .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-tHWjeFymd7 .menu-bottom {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
    -webkit-justify-content: center;
    justify-content: center;
  }
  .cid-tHWjeFymd7 img {
    height: 3.8rem !important;
  }
  .cid-tHWjeFymd7 .btn {
    display: flex;
  }
  .cid-tHWjeFymd7 button.navbar-toggler {
    display: block;
  }
  .cid-tHWjeFymd7 .navbar-brand {
    margin-left: 1rem !important;
    margin-top: 0.5rem;
  }
  .cid-tHWjeFymd7 .navbar-toggleable-sm {
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .cid-tHWjeFymd7 .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: 0.5s;
    transition-property: opacity, padding, height;
  }
  .cid-tHWjeFymd7 .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 0rem 0;
    visibility: visible;
  }
  .cid-tHWjeFymd7 .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-tHWjeFymd7 .dropdown .dropdown-toggle[data-toggle='dropdown-submenu']::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: 0.3em;
    vertical-align: middle;
    content: '';
    border-top: 0.3em solid;
    border-right: 0.3em solid transparent;
    border-left: 0.3em solid transparent;
  }
  .cid-tHWjeFymd7 .navbar-buttons.mbr-section-btn {
    width: 100%;
  }
  .cid-tHWjeFymd7 .dropdown .dropdown-menu .dropdown-item {
    padding: 0em 1.5em 0em 1.5em !important;
    transition: none;
    margin: 0 !important;
  }
}
.cid-tHWjeFymd7 .navbar-dropdown {
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap;
}
.cid-tHWjeFymd7 .nav-link:focus {
  outline: none;
}
.cid-tHWjeFymd7 .navbar-toggler {
  position: relative;
}
.cid-tHWjeFymd7 .dropdown-item.active,
.cid-tHWjeFymd7 .dropdown-item:active {
  background: #3b5abb;
  color: initial;
}
.cid-swqkir8Bua {
  padding-top: 15rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/mbr-1920x1281.jpg");
}
.cid-swqkir8Bua .link-wrapper {
  width: 100%;
}
.cid-swqkir8Bua .link {
  display: inline-block;
  position: relative;
  padding-right: 2rem;
  overflow: hidden;
  cursor: pointer;
}
.cid-swqkir8Bua .link:before {
  content: "\e96b";
  font-family: 'Moririse2' !important;
  position: absolute;
  top: 0;
  right: 0;
  transition: all 0.3s;
  transform: rotate(-45deg) translateX(0px);
}
.cid-swqkir8Bua .link:after {
  content: "\e96b";
  font-family: 'Moririse2' !important;
  position: absolute;
  top: 0;
  right: 0rem;
  transition: all 0.3s;
  transform: rotate(-45deg) translateX(-33px);
}
.cid-swqkir8Bua .link:hover:before {
  transform: rotate(-45deg) translateX(33px);
}
.cid-swqkir8Bua .link:hover:after {
  transform: rotate(-45deg) translateX(0px);
}
.cid-swqkir8Bua .mbr-section-title DIV {
  text-align: center;
}
.cid-swqkir8Bua .mbr-text,
.cid-swqkir8Bua .mbr-section-btn {
  text-align: center;
}
.cid-swqkir8Bua .link,
.cid-swqkir8Bua .link-wrapper {
  text-align: center;
  color: #ffffff;
}
.cid-swqkir8Bua .mbr-section-title {
  color: #ffffff;
}
#custom-html-a2 {
  /* Type valid CSS here */
}
#custom-html-a2 div {
  padding: 50px;
  color: #777;
  text-align: center;
  background-image: url("../../../assets/images/mbr.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-color: grey;
}
.cid-tjz3Ag4bRs {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #efefef;
}
.cid-tjz3Ag4bRs .video-wrapper iframe {
  width: 100%;
}
.cid-tjz3Ag4bRs .mbr-section-title,
.cid-tjz3Ag4bRs .mbr-description {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-tjz3Ag4bRs .text-wrapper {
    padding: 2rem;
  }
}
.cid-swqiDbY95P {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("");
}
.cid-swqiDbY95P .timeline-element {
  position: relative;
}
.cid-swqiDbY95P .timelines-container {
  display: flex;
  flex-wrap: wrap;
}
.cid-swqiDbY95P .image-wrapper img {
  width: 60%;
  object-fit: cover;
}
.cid-swqiDbY95P .mbr-section-title,
.cid-swqiDbY95P .mbr-section-subtitle,
.cid-swqiDbY95P .timeline-date {
  text-align: center;
}
.cid-swqiDbY95P .iconBackground {
  position: absolute;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 2px solid #6592e6;
  margin-left: -9px;
}
@media (max-width: 767px) {
  .cid-swqiDbY95P .iconBackground {
    left: 15px;
    top: 30px;
  }
}
@media (min-width: 768px) {
  .cid-swqiDbY95P .iconBackground {
    top: 70px;
    left: 50%;
  }
}
.cid-swqiDbY95P .row:after {
  content: "";
  position: absolute;
  background-color: #6592e6;
  width: .5px;
}
@media (max-width: 767px) {
  .cid-swqiDbY95P .row:after {
    height: calc(80% + 30px);
    top: 50px;
    left: 15px;
  }
}
@media (min-width: 768px) {
  .cid-swqiDbY95P .row:after {
    height: calc(80% - 20px);
    top: 90px;
    left: 50%;
  }
}
@media (max-width: 767px) {
  .cid-swqiDbY95P .timeline-date-wrapper,
  .cid-swqiDbY95P .timeline-text-wrapper,
  .cid-swqiDbY95P .image-wrapper {
    padding: 0rem;
    padding-left: 1rem;
  }
  .cid-swqiDbY95P .mbr-timeline-date {
    text-align: center !important;
  }
  .cid-swqiDbY95P .mbr-timeline-title {
    text-align: center;
    margin-top: 0rem;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-swqiDbY95P .timeline-date-wrapper,
  .cid-swqiDbY95P .timeline-text-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-swqiDbY95P .timeline-date-wrapper,
  .cid-swqiDbY95P .timeline-text-wrapper,
  .cid-swqiDbY95P .image-wrapper {
    padding: 1rem;
  }
}
.cid-swqj5d7tai {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("");
}
.cid-swqj5d7tai .timeline-element {
  position: relative;
}
.cid-swqj5d7tai .timelines-container {
  display: flex;
  flex-wrap: wrap;
}
.cid-swqj5d7tai .image-wrapper img {
  width: 60%;
  object-fit: cover;
}
.cid-swqj5d7tai .mbr-section-title,
.cid-swqj5d7tai .mbr-section-subtitle,
.cid-swqj5d7tai .timeline-date {
  text-align: center;
}
.cid-swqj5d7tai .iconBackground {
  position: absolute;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 2px solid #6592e6;
  margin-left: -9px;
}
@media (max-width: 767px) {
  .cid-swqj5d7tai .iconBackground {
    left: 15px;
    top: 30px;
  }
}
@media (min-width: 768px) {
  .cid-swqj5d7tai .iconBackground {
    top: 70px;
    left: 50%;
  }
}
.cid-swqj5d7tai .row:after {
  content: "";
  position: absolute;
  background-color: #6592e6;
  width: .5px;
}
@media (max-width: 767px) {
  .cid-swqj5d7tai .row:after {
    height: calc(80% + 30px);
    top: 50px;
    left: 15px;
  }
}
@media (min-width: 768px) {
  .cid-swqj5d7tai .row:after {
    height: calc(80% - 20px);
    top: 90px;
    left: 50%;
  }
}
@media (max-width: 767px) {
  .cid-swqj5d7tai .timeline-date-wrapper,
  .cid-swqj5d7tai .timeline-text-wrapper,
  .cid-swqj5d7tai .image-wrapper {
    padding: 0rem;
    padding-left: 1rem;
  }
  .cid-swqj5d7tai .mbr-timeline-date {
    text-align: center !important;
  }
  .cid-swqj5d7tai .mbr-timeline-title {
    text-align: center;
    margin-top: 0rem;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-swqj5d7tai .timeline-date-wrapper,
  .cid-swqj5d7tai .timeline-text-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-swqj5d7tai .timeline-date-wrapper,
  .cid-swqj5d7tai .timeline-text-wrapper,
  .cid-swqj5d7tai .image-wrapper {
    padding: 1rem;
  }
}
.cid-sgy9QXFMGL {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/background7.jpg");
}
.cid-sgy9QXFMGL .timeline-element {
  position: relative;
}
.cid-sgy9QXFMGL .timelines-container {
  display: flex;
  flex-wrap: wrap;
}
.cid-sgy9QXFMGL .image-wrapper img {
  width: 60%;
  object-fit: cover;
}
.cid-sgy9QXFMGL .mbr-section-title,
.cid-sgy9QXFMGL .mbr-section-subtitle,
.cid-sgy9QXFMGL .timeline-date {
  text-align: center;
}
.cid-sgy9QXFMGL .iconBackground {
  position: absolute;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 2px solid #6592e6;
  margin-left: -9px;
}
@media (max-width: 767px) {
  .cid-sgy9QXFMGL .iconBackground {
    left: 15px;
    top: 30px;
  }
}
@media (min-width: 768px) {
  .cid-sgy9QXFMGL .iconBackground {
    top: 70px;
    left: 50%;
  }
}
.cid-sgy9QXFMGL .row:after {
  content: "";
  position: absolute;
  background-color: #6592e6;
  width: .5px;
}
@media (max-width: 767px) {
  .cid-sgy9QXFMGL .row:after {
    height: calc(80% + 30px);
    top: 50px;
    left: 15px;
  }
}
@media (min-width: 768px) {
  .cid-sgy9QXFMGL .row:after {
    height: calc(80% - 20px);
    top: 90px;
    left: 50%;
  }
}
@media (max-width: 767px) {
  .cid-sgy9QXFMGL .timeline-date-wrapper,
  .cid-sgy9QXFMGL .timeline-text-wrapper,
  .cid-sgy9QXFMGL .image-wrapper {
    padding: 0rem;
    padding-left: 1rem;
  }
  .cid-sgy9QXFMGL .mbr-timeline-date {
    text-align: center !important;
  }
  .cid-sgy9QXFMGL .mbr-timeline-title {
    text-align: center;
    margin-top: 0rem;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-sgy9QXFMGL .timeline-date-wrapper,
  .cid-sgy9QXFMGL .timeline-text-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-sgy9QXFMGL .timeline-date-wrapper,
  .cid-sgy9QXFMGL .timeline-text-wrapper,
  .cid-sgy9QXFMGL .image-wrapper {
    padding: 1rem;
  }
}
.cid-tHW56ZMB3M {
  padding-top: 30px;
  padding-bottom: 15px;
  background-image: url("../../../assets/images/mbr-13-1920x1280.jpg");
}
.cid-tHW56ZMB3M .listico {
  padding-right: 1rem;
  font-size: 1.3rem;
}
.cid-tHW56ZMB3M .navbar-logo {
  width: 80px;
  margin-bottom: 10px;
}
.cid-tHW56ZMB3M .mbr-text {
  color: #444;
}
.cid-tHW56ZMB3M h5 {
  margin-bottom: 0;
}
.cid-tHW56ZMB3M .navbar-brand {
  margin: 0rem;
  width: 100%;
}
.cid-tHW56ZMB3M .list-item {
  display: flex;
  padding-top: 10px;
  padding-bottom: 10px;
  -webkit-align-items: center;
  align-items: center;
}
.cid-tHW56ZMB3M .tips {
  height: 90px;
  width: 90px;
  border-radius: 6px;
  margin: 4px;
  object-fit: cover;
  display: inline;
}
.cid-tHW56ZMB3M .socicon {
  font-size: 1.3rem;
  background: #ff4a52;
  border-radius: 100%;
  width: 38px;
  height: 38px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-tHW56ZMB3M .social-list {
  display: flex;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-tHW56ZMB3M .social-list .soc-item {
  margin: 0 0.3rem;
}
.cid-tHW56ZMB3M .social-list a {
  margin: 0;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-tHW56ZMB3M .social-list a:hover {
  opacity: 0.4;
}
.cid-tHW56ZMB3M .media-container-row > div {
  padding: 0px;
}
.cid-tHW56ZMB3M .text2 {
  color: #6592e6;
  text-align: left;
}
.cid-tHW56ZMB3M .group-title {
  text-align: left;
  color: #e6c63b;
}
.cid-tHW56ZMB3M .group-title SPAN {
  color: #ffffff;
}
.cid-tHW56ZMB3M .links {
  color: #ffffff;
  line-height: 1.6;
}
@media (max-width: 991px) {
  .cid-tHW56ZMB3M .col-sm-12 {
    margin-bottom: 2rem;
  }
  .cid-tHW56ZMB3M .social-list,
  .cid-tHW56ZMB3M .img-list {
    -webkit-justify-content: center;
    justify-content: center;
    text-align: center;
  }
  .cid-tHW56ZMB3M h3 {
    margin-bottom: 10px;
  }
  .cid-tHW56ZMB3M .navbar-brand {
    text-align: center;
  }
}
.cid-tHW56ZMB3M .links SPAN {
  color: #9e9e9e;
}
.cid-siM30LrbO4 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #232323;
}
.cid-tHWjeFymd7 .navbar {
  padding: 0.5rem 0;
  background: #ffffff;
  transition: none;
  min-height: 50px;
}
.cid-tHWjeFymd7 .navbar-fixed-top {
  padding-top: 0;
}
.cid-tHWjeFymd7 .navbar-collapse {
  -ms-flex-preferred-size: auto;
  -webkit-flex-basis: auto;
  flex-basis: auto;
}
.cid-tHWjeFymd7 .dropdown-item {
  padding: 0;
}
.cid-tHWjeFymd7 .dropdown-menu {
  border: 0px solid lightgray;
  background: #3b5abb !important;
}
.cid-tHWjeFymd7 .menu-content-top {
  max-width: 1500px;
  display: none;
  padding: 0rem 2rem;
  margin: auto;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  overflow: hidden;
  transition: min-height 0.25s ease-in-out;
}
.cid-tHWjeFymd7 .menu-bottom {
  margin: auto;
  width: 100%;
  background: #3b5abb;
  display: flex;
  padding: 0 2rem;
  position: relative;
}
.cid-tHWjeFymd7 .navbar-dropdown.bg-color.transparent.opened {
  background: #ffffff;
}
.cid-tHWjeFymd7 a {
  font-style: normal;
}
.cid-tHWjeFymd7 .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  top: -0.2em;
  text-decoration: none;
}
.cid-tHWjeFymd7 .nav-item a {
  padding: 0rem 0 !important;
  margin: 0rem !important;
}
.cid-tHWjeFymd7 .dropdown-item:before {
  font-family: MobiriseIcons !important;
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-tHWjeFymd7 .content-text {
  margin-bottom: 0;
}
.cid-tHWjeFymd7 .navbar-nav {
  position: relative;
  min-height: 49px;
  -ms-flex-direction: row;
  -webkit-flex-direction: row;
  flex-direction: row;
}
@media (min-width: 992px) {
  .cid-tHWjeFymd7 .navbar-nav .main-menu-animated-line {
    position: absolute;
    left: 0;
    width: 0;
    height: 0;
    z-index: 100;
    border-top: 4px solid #6592e6;
    -webkit-transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
    -moz-transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
    transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
  }
  .cid-tHWjeFymd7 .navbar-nav .main-menu-animated-line.bottom {
    bottom: 0;
  }
}
.cid-tHWjeFymd7 .navbar-nav .nav-item span {
  padding-right: 0;
}
.cid-tHWjeFymd7 .navbar-nav .nav-item a {
  margin: 0 1.3rem !important;
}
.cid-tHWjeFymd7 .display-4 > .mbr-iconfont {
  font-size: 1.43em;
}
.cid-tHWjeFymd7 .display-4 > .btn > .mbr-iconfont {
  font-size: 1.43em;
}
.cid-tHWjeFymd7 .nav-dropdown .dropdown-item {
  font-weight: 400;
}
.cid-tHWjeFymd7 .navbar-buttons.mbr-section-btn {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-tHWjeFymd7 .nav-dropdown .link {
  font-weight: 400;
}
.cid-tHWjeFymd7 .menu .navbar-brand .logo-text-part {
  vertical-align: top;
}
.cid-tHWjeFymd7 .content-right-side {
  text-align: center;
}
.cid-tHWjeFymd7 .content-right-side .content-link {
  margin-left: 2rem;
}
.cid-tHWjeFymd7 .content-right-side .content-link span {
  vertical-align: middle;
  padding-right: 1rem;
}
.cid-tHWjeFymd7 .widget-icon {
  display: inline-block;
  padding-right: 1rem;
  font-size: 1.65rem;
}
.cid-tHWjeFymd7 .info-widget {
  padding-left: 2rem;
  padding-top: 0.5rem;
  padding-right: 3rem;
  border-left: 1px solid rgba(0, 0, 0, 0.12);
}
.cid-tHWjeFymd7 .menu-content-right {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-tHWjeFymd7 .menu-content-right .info-widget:last-child {
  padding-right: 0;
}
.cid-tHWjeFymd7 .menu-content-right .info-widget:first-child {
  padding-left: 0;
  border-left: none;
}
.cid-tHWjeFymd7 .widget-content {
  display: inline-block;
  vertical-align: top;
  text-align: left;
}
.cid-tHWjeFymd7 .widget-content .widget-title {
  font-weight: 600;
  margin-bottom: 7px;
}
.cid-tHWjeFymd7 .widget-content .widget-text {
  margin-bottom: 0;
}
@media (min-width: 992px) {
  .cid-tHWjeFymd7 .navbar .menu-content-top {
    display: flex;
    min-height: 83px;
    height: 100%;
  }
  .cid-tHWjeFymd7 .content-right-side {
    text-align: right;
    -webkit-flex-wrap: nowrap;
    flex-wrap: nowrap;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-tHWjeFymd7 .menu-content-top {
    border-bottom: 0px solid rgba(0, 0, 0, 0.12);
  }
  .cid-tHWjeFymd7 .navbar {
    display: block;
    padding: 0;
  }
  .cid-tHWjeFymd7 .navbar .menu-logo {
    margin-right: auto;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-tHWjeFymd7 .navbar:not(.navbar-short) .navbar-collapse {
    max-height: calc(100vh - 5.8rem - 4.5rem);
  }
  .cid-tHWjeFymd7 .navbar.navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
    -webkit-align-self: initial;
    align-self: auto;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    z-index: 101;
    min-height: 49px;
  }
  .cid-tHWjeFymd7 .dropdown-item:hover:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    width: 16px;
  }
  .cid-tHWjeFymd7 .navbar-toggler {
    display: none;
  }
  .cid-tHWjeFymd7 .navbar-collapse {
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
  }
}
.cid-tHWjeFymd7 .navbar-short .menu-content-top {
  height: 0;
  min-height: 0;
  border: none;
}
.cid-tHWjeFymd7 .btn {
  display: inline-flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-tHWjeFymd7 .btn .mbr-iconfont {
  font-size: 1.2em;
}
.cid-tHWjeFymd7 .menu-logo {
  margin-right: auto;
}
.cid-tHWjeFymd7 .menu-logo .navbar-brand {
  display: flex;
  margin-left: 1.5rem;
  padding: 0.5rem 0;
  transition: padding 0.2s;
  min-height: 3.8rem;
  -webkit-align-items: center;
  align-items: center;
}
.cid-tHWjeFymd7 .menu-logo .navbar-brand .navbar-caption-wrap {
  display: -webkit-flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 20rem;
  margin: 0.3rem 0;
}
.cid-tHWjeFymd7 .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-tHWjeFymd7 .menu-logo .navbar-brand .navbar-logo {
  font-size: 3rem;
  transition: font-size 0.25s;
}
.cid-tHWjeFymd7 .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
  width: auto;
}
.cid-tHWjeFymd7 .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-tHWjeFymd7 .navbar-toggleable-sm .navbar-collapse {
  width: auto;
}
.cid-tHWjeFymd7 .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  padding-left: 0;
}
.cid-tHWjeFymd7 .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-tHWjeFymd7 .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-tHWjeFymd7 .dropdown .dropdown-menu {
  background: #ffffff;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-tHWjeFymd7 .dropdown .dropdown-menu {
    overflow: hidden;
  }
}
.cid-tHWjeFymd7 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-tHWjeFymd7 .dropdown .dropdown-menu .dropdown-item::after {
  right: -0.5rem;
}
.cid-tHWjeFymd7 .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-tHWjeFymd7 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-tHWjeFymd7 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-tHWjeFymd7 .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0rem;
}
.cid-tHWjeFymd7 .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tHWjeFymd7 .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  -webkit-transform: translateY(100%);
  transform: translateY(100%);
  z-index: 1000;
}
.cid-tHWjeFymd7 .navbar.navbar-short {
  min-height: 50px;
  transition: all 0.2s;
}
.cid-tHWjeFymd7 .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-tHWjeFymd7 .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-tHWjeFymd7 .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
  width: auto;
}
.cid-tHWjeFymd7 .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-tHWjeFymd7 button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all 0.2s;
  margin: 1rem 0.8rem;
  -webkit-align-self: center;
  align-self: center;
}
.cid-tHWjeFymd7 button.navbar-toggler:focus {
  outline: none;
}
.cid-tHWjeFymd7 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #bbbbbb;
}
.cid-tHWjeFymd7 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tHWjeFymd7 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tHWjeFymd7 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tHWjeFymd7 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tHWjeFymd7 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tHWjeFymd7 nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tHWjeFymd7 nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tHWjeFymd7 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tHWjeFymd7 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tHWjeFymd7 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0em 1.5em 0em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tHWjeFymd7 .collapsed .btn {
  display: flex;
}
.cid-tHWjeFymd7 .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-tHWjeFymd7 .collapsed .navbar-collapse.collapsing,
.cid-tHWjeFymd7 .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-tHWjeFymd7 .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-tHWjeFymd7 .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-tHWjeFymd7 .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-tHWjeFymd7 .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-tHWjeFymd7 .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
.cid-tHWjeFymd7 .collapsed .navbar-collapse.show .navbar-nav .nav-item:last-child {
  margin-bottom: 1rem;
}
.cid-tHWjeFymd7 .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-tHWjeFymd7 .collapsed .navbar-collapse.show .navbar-buttons {
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  text-align: center;
}
.cid-tHWjeFymd7 .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-tHWjeFymd7 .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .cid-tHWjeFymd7 .collapsed .dropdown .dropdown-menu {
    overflow: hidden;
  }
}
.cid-tHWjeFymd7 .collapsed button.navbar-toggler {
  display: block;
}
.cid-tHWjeFymd7 .collapsed .navbar-brand {
  margin-left: 1rem !important;
  margin-top: 0.5rem;
}
.cid-tHWjeFymd7 .collapsed .navbar-toggleable-sm {
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-tHWjeFymd7 .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: 0.5s;
  transition-property: opacity, padding, height;
}
.cid-tHWjeFymd7 .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-tHWjeFymd7 .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-tHWjeFymd7 .collapsed .dropdown .dropdown-toggle[data-toggle='dropdown-submenu']::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 0.3em;
  vertical-align: middle;
  content: '';
  border-top: 0.3em solid;
  border-right: 0.3em solid transparent;
  border-left: 0.3em solid transparent;
}
.cid-tHWjeFymd7 .collapsed .menu-bottom {
  -webkit-flex-direction: column-reverse;
  flex-direction: column-reverse;
  -webkit-justify-content: center;
  justify-content: center;
}
@media (max-width: 991px) {
  .cid-tHWjeFymd7 .navbar-collapse {
    padding-bottom: 1rem;
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-tHWjeFymd7 .navbar-collapse.collapsing,
  .cid-tHWjeFymd7 .navbar-collapse.show {
    display: block !important;
  }
  .cid-tHWjeFymd7 .navbar-collapse.collapsing .navbar-nav,
  .cid-tHWjeFymd7 .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-tHWjeFymd7 .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-tHWjeFymd7 .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-tHWjeFymd7 .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
  .cid-tHWjeFymd7 .navbar-collapse.show .navbar-nav .nav-item:last-child {
    margin-bottom: 1rem;
  }
  .cid-tHWjeFymd7 .navbar-collapse.collapsing .navbar-buttons,
  .cid-tHWjeFymd7 .navbar-collapse.show .navbar-buttons {
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    text-align: center;
  }
  .cid-tHWjeFymd7 .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-tHWjeFymd7 .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-tHWjeFymd7 .menu-bottom {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
    -webkit-justify-content: center;
    justify-content: center;
  }
  .cid-tHWjeFymd7 img {
    height: 3.8rem !important;
  }
  .cid-tHWjeFymd7 .btn {
    display: flex;
  }
  .cid-tHWjeFymd7 button.navbar-toggler {
    display: block;
  }
  .cid-tHWjeFymd7 .navbar-brand {
    margin-left: 1rem !important;
    margin-top: 0.5rem;
  }
  .cid-tHWjeFymd7 .navbar-toggleable-sm {
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .cid-tHWjeFymd7 .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: 0.5s;
    transition-property: opacity, padding, height;
  }
  .cid-tHWjeFymd7 .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 0rem 0;
    visibility: visible;
  }
  .cid-tHWjeFymd7 .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-tHWjeFymd7 .dropdown .dropdown-toggle[data-toggle='dropdown-submenu']::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: 0.3em;
    vertical-align: middle;
    content: '';
    border-top: 0.3em solid;
    border-right: 0.3em solid transparent;
    border-left: 0.3em solid transparent;
  }
  .cid-tHWjeFymd7 .navbar-buttons.mbr-section-btn {
    width: 100%;
  }
  .cid-tHWjeFymd7 .dropdown .dropdown-menu .dropdown-item {
    padding: 0em 1.5em 0em 1.5em !important;
    transition: none;
    margin: 0 !important;
  }
}
.cid-tHWjeFymd7 .navbar-dropdown {
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap;
}
.cid-tHWjeFymd7 .nav-link:focus {
  outline: none;
}
.cid-tHWjeFymd7 .navbar-toggler {
  position: relative;
}
.cid-tHWjeFymd7 .dropdown-item.active,
.cid-tHWjeFymd7 .dropdown-item:active {
  background: #3b5abb;
  color: initial;
}
.cid-sik6pcaI8I {
  padding-top: 250px;
  padding-bottom: 75px;
  background-image: url("../../../assets/images/mbr-1920x1109.jpg");
}
.cid-sik6pcaI8I .underline .line {
  width: 2rem;
  height: 1px;
  background: #878787;
  display: inline-block;
}
.cid-sik6pcaI8I .form-group {
  margin-bottom: 1rem;
}
.cid-sik6pcaI8I .form-control {
  border: none;
  border-radius: 0;
  padding: .5rem 1rem;
  background: #efefef;
  color: #000000;
  width: 100%;
}
.cid-sik6pcaI8I textarea.form-control {
  min-height: 96px;
}
.cid-sik6pcaI8I .input-group-btn {
  width: 100%;
}
.cid-sik6pcaI8I .input-group-btn .btn {
  margin-left: 0 !important;
  margin-right: 0 !important;
}
.cid-sik6pcaI8I .form-control-label {
  color: #ffffff;
  font-size: 1rem;
  font-weight: 100 !important;
}
.cid-sik6pcaI8I .google-map {
  width: 100%;
  height: 22rem;
}
.cid-sik6pcaI8I .google-map iframe {
  width: inherit;
  height: 90%;
}
.cid-sik6pcaI8I .info-row ol {
  list-style: none;
  padding-left: 0;
  margin: 0;
}
.cid-sik6pcaI8I .info-row ol li {
  display: flex;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  border-bottom: 1px solid #ffffff;
  padding: 10px;
}
.cid-sik6pcaI8I .info-value {
  color: #efefef;
}
@media (max-width: 991px), (max-width: 767px) {
  .cid-sik6pcaI8I .form-wrapper {
    padding-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-sik6pcaI8I .form-subtitle {
    text-align: center;
  }
}
.cid-sgyoh4PaO6 {
  padding-top: 30px;
  padding-bottom: 45px;
  background-color: #f6f6f4;
}
.cid-sgyoh4PaO6 .mbr-text {
  line-height: 1.5;
  color: #294877;
}
.cid-sgyoh4PaO6 .container2 {
  display: block;
  position: relative;
  padding-left: 35px;
  margin-bottom: 12px;
  cursor: pointer;
  font-size: 22px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.cid-sgyoh4PaO6 .container2 input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}
.cid-sgyoh4PaO6 .checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 25px;
  width: 25px;
  background-color: #eee;
}
.cid-sgyoh4PaO6 .container2:hover input ~ .checkmark {
  background-color: #ccc;
}
.cid-sgyoh4PaO6 .container2 input:checked ~ .checkmark {
  background-color: #2196F3;
}
.cid-sgyoh4PaO6 .checkmark:after {
  content: "";
  position: absolute;
  display: none;
}
.cid-sgyoh4PaO6 .container2 input:checked ~ .checkmark:after {
  display: block;
}
.cid-sgyoh4PaO6 .container2 .checkmark:after {
  left: 10px;
  top: 7px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
.cid-sgyoh4PaO6 .mbr-section-title {
  text-align: left;
  color: #656565;
}
.cid-tHW5lyb7dJ {
  padding-top: 30px;
  padding-bottom: 15px;
  background-image: url("../../../assets/images/mbr-13-1920x1280.jpg");
}
.cid-tHW5lyb7dJ .listico {
  padding-right: 1rem;
  font-size: 1.3rem;
}
.cid-tHW5lyb7dJ .navbar-logo {
  width: 80px;
  margin-bottom: 10px;
}
.cid-tHW5lyb7dJ .mbr-text {
  color: #444;
}
.cid-tHW5lyb7dJ h5 {
  margin-bottom: 0;
}
.cid-tHW5lyb7dJ .navbar-brand {
  margin: 0rem;
  width: 100%;
}
.cid-tHW5lyb7dJ .list-item {
  display: flex;
  padding-top: 10px;
  padding-bottom: 10px;
  -webkit-align-items: center;
  align-items: center;
}
.cid-tHW5lyb7dJ .tips {
  height: 90px;
  width: 90px;
  border-radius: 6px;
  margin: 4px;
  object-fit: cover;
  display: inline;
}
.cid-tHW5lyb7dJ .socicon {
  font-size: 1.3rem;
  background: #ff4a52;
  border-radius: 100%;
  width: 38px;
  height: 38px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-tHW5lyb7dJ .social-list {
  display: flex;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-tHW5lyb7dJ .social-list .soc-item {
  margin: 0 0.3rem;
}
.cid-tHW5lyb7dJ .social-list a {
  margin: 0;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-tHW5lyb7dJ .social-list a:hover {
  opacity: 0.4;
}
.cid-tHW5lyb7dJ .media-container-row > div {
  padding: 0px;
}
.cid-tHW5lyb7dJ .text2 {
  color: #6592e6;
  text-align: left;
}
.cid-tHW5lyb7dJ .group-title {
  text-align: left;
  color: #e6c63b;
}
.cid-tHW5lyb7dJ .group-title SPAN {
  color: #ffffff;
}
.cid-tHW5lyb7dJ .links {
  color: #ffffff;
  line-height: 1.6;
}
@media (max-width: 991px) {
  .cid-tHW5lyb7dJ .col-sm-12 {
    margin-bottom: 2rem;
  }
  .cid-tHW5lyb7dJ .social-list,
  .cid-tHW5lyb7dJ .img-list {
    -webkit-justify-content: center;
    justify-content: center;
    text-align: center;
  }
  .cid-tHW5lyb7dJ h3 {
    margin-bottom: 10px;
  }
  .cid-tHW5lyb7dJ .navbar-brand {
    text-align: center;
  }
}
.cid-tHW5lyb7dJ .links SPAN {
  color: #9e9e9e;
}
.cid-siM30LrbO4 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #232323;
}
.cid-tHWjeFymd7 .navbar {
  padding: 0.5rem 0;
  background: #ffffff;
  transition: none;
  min-height: 50px;
}
.cid-tHWjeFymd7 .navbar-fixed-top {
  padding-top: 0;
}
.cid-tHWjeFymd7 .navbar-collapse {
  -ms-flex-preferred-size: auto;
  -webkit-flex-basis: auto;
  flex-basis: auto;
}
.cid-tHWjeFymd7 .dropdown-item {
  padding: 0;
}
.cid-tHWjeFymd7 .dropdown-menu {
  border: 0px solid lightgray;
  background: #3b5abb !important;
}
.cid-tHWjeFymd7 .menu-content-top {
  max-width: 1500px;
  display: none;
  padding: 0rem 2rem;
  margin: auto;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  overflow: hidden;
  transition: min-height 0.25s ease-in-out;
}
.cid-tHWjeFymd7 .menu-bottom {
  margin: auto;
  width: 100%;
  background: #3b5abb;
  display: flex;
  padding: 0 2rem;
  position: relative;
}
.cid-tHWjeFymd7 .navbar-dropdown.bg-color.transparent.opened {
  background: #ffffff;
}
.cid-tHWjeFymd7 a {
  font-style: normal;
}
.cid-tHWjeFymd7 .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  top: -0.2em;
  text-decoration: none;
}
.cid-tHWjeFymd7 .nav-item a {
  padding: 0rem 0 !important;
  margin: 0rem !important;
}
.cid-tHWjeFymd7 .dropdown-item:before {
  font-family: MobiriseIcons !important;
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-tHWjeFymd7 .content-text {
  margin-bottom: 0;
}
.cid-tHWjeFymd7 .navbar-nav {
  position: relative;
  min-height: 49px;
  -ms-flex-direction: row;
  -webkit-flex-direction: row;
  flex-direction: row;
}
@media (min-width: 992px) {
  .cid-tHWjeFymd7 .navbar-nav .main-menu-animated-line {
    position: absolute;
    left: 0;
    width: 0;
    height: 0;
    z-index: 100;
    border-top: 4px solid #6592e6;
    -webkit-transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
    -moz-transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
    transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
  }
  .cid-tHWjeFymd7 .navbar-nav .main-menu-animated-line.bottom {
    bottom: 0;
  }
}
.cid-tHWjeFymd7 .navbar-nav .nav-item span {
  padding-right: 0;
}
.cid-tHWjeFymd7 .navbar-nav .nav-item a {
  margin: 0 1.3rem !important;
}
.cid-tHWjeFymd7 .display-4 > .mbr-iconfont {
  font-size: 1.43em;
}
.cid-tHWjeFymd7 .display-4 > .btn > .mbr-iconfont {
  font-size: 1.43em;
}
.cid-tHWjeFymd7 .nav-dropdown .dropdown-item {
  font-weight: 400;
}
.cid-tHWjeFymd7 .navbar-buttons.mbr-section-btn {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-tHWjeFymd7 .nav-dropdown .link {
  font-weight: 400;
}
.cid-tHWjeFymd7 .menu .navbar-brand .logo-text-part {
  vertical-align: top;
}
.cid-tHWjeFymd7 .content-right-side {
  text-align: center;
}
.cid-tHWjeFymd7 .content-right-side .content-link {
  margin-left: 2rem;
}
.cid-tHWjeFymd7 .content-right-side .content-link span {
  vertical-align: middle;
  padding-right: 1rem;
}
.cid-tHWjeFymd7 .widget-icon {
  display: inline-block;
  padding-right: 1rem;
  font-size: 1.65rem;
}
.cid-tHWjeFymd7 .info-widget {
  padding-left: 2rem;
  padding-top: 0.5rem;
  padding-right: 3rem;
  border-left: 1px solid rgba(0, 0, 0, 0.12);
}
.cid-tHWjeFymd7 .menu-content-right {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-tHWjeFymd7 .menu-content-right .info-widget:last-child {
  padding-right: 0;
}
.cid-tHWjeFymd7 .menu-content-right .info-widget:first-child {
  padding-left: 0;
  border-left: none;
}
.cid-tHWjeFymd7 .widget-content {
  display: inline-block;
  vertical-align: top;
  text-align: left;
}
.cid-tHWjeFymd7 .widget-content .widget-title {
  font-weight: 600;
  margin-bottom: 7px;
}
.cid-tHWjeFymd7 .widget-content .widget-text {
  margin-bottom: 0;
}
@media (min-width: 992px) {
  .cid-tHWjeFymd7 .navbar .menu-content-top {
    display: flex;
    min-height: 83px;
    height: 100%;
  }
  .cid-tHWjeFymd7 .content-right-side {
    text-align: right;
    -webkit-flex-wrap: nowrap;
    flex-wrap: nowrap;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-tHWjeFymd7 .menu-content-top {
    border-bottom: 0px solid rgba(0, 0, 0, 0.12);
  }
  .cid-tHWjeFymd7 .navbar {
    display: block;
    padding: 0;
  }
  .cid-tHWjeFymd7 .navbar .menu-logo {
    margin-right: auto;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-tHWjeFymd7 .navbar:not(.navbar-short) .navbar-collapse {
    max-height: calc(100vh - 5.8rem - 4.5rem);
  }
  .cid-tHWjeFymd7 .navbar.navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
    -webkit-align-self: initial;
    align-self: auto;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    z-index: 101;
    min-height: 49px;
  }
  .cid-tHWjeFymd7 .dropdown-item:hover:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    width: 16px;
  }
  .cid-tHWjeFymd7 .navbar-toggler {
    display: none;
  }
  .cid-tHWjeFymd7 .navbar-collapse {
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
  }
}
.cid-tHWjeFymd7 .navbar-short .menu-content-top {
  height: 0;
  min-height: 0;
  border: none;
}
.cid-tHWjeFymd7 .btn {
  display: inline-flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-tHWjeFymd7 .btn .mbr-iconfont {
  font-size: 1.2em;
}
.cid-tHWjeFymd7 .menu-logo {
  margin-right: auto;
}
.cid-tHWjeFymd7 .menu-logo .navbar-brand {
  display: flex;
  margin-left: 1.5rem;
  padding: 0.5rem 0;
  transition: padding 0.2s;
  min-height: 3.8rem;
  -webkit-align-items: center;
  align-items: center;
}
.cid-tHWjeFymd7 .menu-logo .navbar-brand .navbar-caption-wrap {
  display: -webkit-flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 20rem;
  margin: 0.3rem 0;
}
.cid-tHWjeFymd7 .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-tHWjeFymd7 .menu-logo .navbar-brand .navbar-logo {
  font-size: 3rem;
  transition: font-size 0.25s;
}
.cid-tHWjeFymd7 .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
  width: auto;
}
.cid-tHWjeFymd7 .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-tHWjeFymd7 .navbar-toggleable-sm .navbar-collapse {
  width: auto;
}
.cid-tHWjeFymd7 .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  padding-left: 0;
}
.cid-tHWjeFymd7 .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-tHWjeFymd7 .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-tHWjeFymd7 .dropdown .dropdown-menu {
  background: #ffffff;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-tHWjeFymd7 .dropdown .dropdown-menu {
    overflow: hidden;
  }
}
.cid-tHWjeFymd7 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-tHWjeFymd7 .dropdown .dropdown-menu .dropdown-item::after {
  right: -0.5rem;
}
.cid-tHWjeFymd7 .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-tHWjeFymd7 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-tHWjeFymd7 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-tHWjeFymd7 .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0rem;
}
.cid-tHWjeFymd7 .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tHWjeFymd7 .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  -webkit-transform: translateY(100%);
  transform: translateY(100%);
  z-index: 1000;
}
.cid-tHWjeFymd7 .navbar.navbar-short {
  min-height: 50px;
  transition: all 0.2s;
}
.cid-tHWjeFymd7 .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-tHWjeFymd7 .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-tHWjeFymd7 .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
  width: auto;
}
.cid-tHWjeFymd7 .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-tHWjeFymd7 button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all 0.2s;
  margin: 1rem 0.8rem;
  -webkit-align-self: center;
  align-self: center;
}
.cid-tHWjeFymd7 button.navbar-toggler:focus {
  outline: none;
}
.cid-tHWjeFymd7 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #bbbbbb;
}
.cid-tHWjeFymd7 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tHWjeFymd7 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tHWjeFymd7 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tHWjeFymd7 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tHWjeFymd7 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tHWjeFymd7 nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tHWjeFymd7 nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tHWjeFymd7 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tHWjeFymd7 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tHWjeFymd7 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0em 1.5em 0em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tHWjeFymd7 .collapsed .btn {
  display: flex;
}
.cid-tHWjeFymd7 .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-tHWjeFymd7 .collapsed .navbar-collapse.collapsing,
.cid-tHWjeFymd7 .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-tHWjeFymd7 .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-tHWjeFymd7 .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-tHWjeFymd7 .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-tHWjeFymd7 .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-tHWjeFymd7 .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
.cid-tHWjeFymd7 .collapsed .navbar-collapse.show .navbar-nav .nav-item:last-child {
  margin-bottom: 1rem;
}
.cid-tHWjeFymd7 .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-tHWjeFymd7 .collapsed .navbar-collapse.show .navbar-buttons {
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  text-align: center;
}
.cid-tHWjeFymd7 .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-tHWjeFymd7 .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .cid-tHWjeFymd7 .collapsed .dropdown .dropdown-menu {
    overflow: hidden;
  }
}
.cid-tHWjeFymd7 .collapsed button.navbar-toggler {
  display: block;
}
.cid-tHWjeFymd7 .collapsed .navbar-brand {
  margin-left: 1rem !important;
  margin-top: 0.5rem;
}
.cid-tHWjeFymd7 .collapsed .navbar-toggleable-sm {
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-tHWjeFymd7 .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: 0.5s;
  transition-property: opacity, padding, height;
}
.cid-tHWjeFymd7 .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-tHWjeFymd7 .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-tHWjeFymd7 .collapsed .dropdown .dropdown-toggle[data-toggle='dropdown-submenu']::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 0.3em;
  vertical-align: middle;
  content: '';
  border-top: 0.3em solid;
  border-right: 0.3em solid transparent;
  border-left: 0.3em solid transparent;
}
.cid-tHWjeFymd7 .collapsed .menu-bottom {
  -webkit-flex-direction: column-reverse;
  flex-direction: column-reverse;
  -webkit-justify-content: center;
  justify-content: center;
}
@media (max-width: 991px) {
  .cid-tHWjeFymd7 .navbar-collapse {
    padding-bottom: 1rem;
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-tHWjeFymd7 .navbar-collapse.collapsing,
  .cid-tHWjeFymd7 .navbar-collapse.show {
    display: block !important;
  }
  .cid-tHWjeFymd7 .navbar-collapse.collapsing .navbar-nav,
  .cid-tHWjeFymd7 .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-tHWjeFymd7 .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-tHWjeFymd7 .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-tHWjeFymd7 .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
  .cid-tHWjeFymd7 .navbar-collapse.show .navbar-nav .nav-item:last-child {
    margin-bottom: 1rem;
  }
  .cid-tHWjeFymd7 .navbar-collapse.collapsing .navbar-buttons,
  .cid-tHWjeFymd7 .navbar-collapse.show .navbar-buttons {
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    text-align: center;
  }
  .cid-tHWjeFymd7 .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-tHWjeFymd7 .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-tHWjeFymd7 .menu-bottom {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
    -webkit-justify-content: center;
    justify-content: center;
  }
  .cid-tHWjeFymd7 img {
    height: 3.8rem !important;
  }
  .cid-tHWjeFymd7 .btn {
    display: flex;
  }
  .cid-tHWjeFymd7 button.navbar-toggler {
    display: block;
  }
  .cid-tHWjeFymd7 .navbar-brand {
    margin-left: 1rem !important;
    margin-top: 0.5rem;
  }
  .cid-tHWjeFymd7 .navbar-toggleable-sm {
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .cid-tHWjeFymd7 .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: 0.5s;
    transition-property: opacity, padding, height;
  }
  .cid-tHWjeFymd7 .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 0rem 0;
    visibility: visible;
  }
  .cid-tHWjeFymd7 .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-tHWjeFymd7 .dropdown .dropdown-toggle[data-toggle='dropdown-submenu']::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: 0.3em;
    vertical-align: middle;
    content: '';
    border-top: 0.3em solid;
    border-right: 0.3em solid transparent;
    border-left: 0.3em solid transparent;
  }
  .cid-tHWjeFymd7 .navbar-buttons.mbr-section-btn {
    width: 100%;
  }
  .cid-tHWjeFymd7 .dropdown .dropdown-menu .dropdown-item {
    padding: 0em 1.5em 0em 1.5em !important;
    transition: none;
    margin: 0 !important;
  }
}
.cid-tHWjeFymd7 .navbar-dropdown {
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap;
}
.cid-tHWjeFymd7 .nav-link:focus {
  outline: none;
}
.cid-tHWjeFymd7 .navbar-toggler {
  position: relative;
}
.cid-tHWjeFymd7 .dropdown-item.active,
.cid-tHWjeFymd7 .dropdown-item:active {
  background: #3b5abb;
  color: initial;
}
