.btn {
  border-width: 2px;
}
img,
.card-wrap,
.card-wrapper,
.video-wrapper,
.mbr-figure iframe,
.google-map iframe,
.slide-content,
.plan,
.card,
.item-wrapper {
  border-radius: 2rem !important;
}
.video-wrapper {
  overflow: hidden;
}
body {
  font-family: Inter Tight;
}
.display-1 {
  font-family: 'Inter Tight', sans-serif;
  font-size: 5rem;
  line-height: 1;
}
.display-1 > .mbr-iconfont {
  font-size: 6.25rem;
}
.display-2 {
  font-family: 'Inter Tight', sans-serif;
  font-size: 4rem;
  line-height: 1;
}
.display-2 > .mbr-iconfont {
  font-size: 5rem;
}
.display-4 {
  font-family: 'Inter Tight', sans-serif;
  font-size: 1rem;
  line-height: 1.5;
}
.display-4 > .mbr-iconfont {
  font-size: 1.25rem;
}
.display-5 {
  font-family: 'Inter Tight', sans-serif;
  font-size: 2rem;
  line-height: 1.5;
}
.display-5 > .mbr-iconfont {
  font-size: 2.5rem;
}
.display-7 {
  font-family: 'Inter Tight', sans-serif;
  font-size: 1.4rem;
  line-height: 1.3;
}
.display-7 > .mbr-iconfont {
  font-size: 1.75rem;
}
/* ---- 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: 4rem;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 3.5rem;
    font-size: calc( 2.4rem + (5 - 2.4) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (2.4rem + (5 - 2.4) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 3.2rem;
    font-size: calc( 2.05rem + (4 - 2.05) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.3 * (2.05rem + (4 - 2.05) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 0.8rem;
    font-size: calc( 1rem + (1 - 1) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1rem + (1 - 1) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 1.6rem;
    font-size: calc( 1.35rem + (2 - 1.35) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.35rem + (2 - 1.35) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-7 {
    font-size: 1.12rem;
    font-size: calc( 1.14rem + (1.4 - 1.14) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.14rem + (1.4 - 1.14) * ((100vw - 20rem) / (48 - 20))));
  }
}
@media (min-width: 992px) and (max-width: 1400px) {
  .display-1 {
    font-size: 3.5rem;
    font-size: calc( 2.4rem + (5 - 2.4) * ((100vw - 62rem) / (87 - 62)));
    line-height: calc( 1.1 * (2.4rem + (5 - 2.4) * ((100vw - 62rem) / (87 - 62))));
  }
  .display-2 {
    font-size: 3.2rem;
    font-size: calc( 2.05rem + (4 - 2.05) * ((100vw - 62rem) / (87 - 62)));
    line-height: calc( 1.3 * (2.05rem + (4 - 2.05) * ((100vw - 62rem) / (87 - 62))));
  }
  .display-4 {
    font-size: 0.8rem;
    font-size: calc( 1rem + (1 - 1) * ((100vw - 62rem) / (87 - 62)));
    line-height: calc( 1.4 * (1rem + (1 - 1) * ((100vw - 62rem) / (87 - 62))));
  }
  .display-5 {
    font-size: 1.6rem;
    font-size: calc( 1.35rem + (2 - 1.35) * ((100vw - 62rem) / (87 - 62)));
    line-height: calc( 1.4 * (1.35rem + (2 - 1.35) * ((100vw - 62rem) / (87 - 62))));
  }
  .display-7 {
    font-size: 1.12rem;
    font-size: calc( 1.14rem + (1.4 - 1.14) * ((100vw - 62rem) / (87 - 62)));
    line-height: calc( 1.4 * (1.14rem + (1.4 - 1.14) * ((100vw - 62rem) / (87 - 62))));
  }
}
/* Buttons */
.btn {
  padding: 1.25rem 2rem;
  border-radius: 4px;
}
@media (max-width: 767px) {
  .btn {
    padding: 0.75rem 1.5rem;
  }
}
.btn-sm {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-md {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-lg {
  padding: 1.25rem 2rem;
  border-radius: 4px;
}
.bg-primary {
  background-color: #0c2c68 !important;
}
.bg-success {
  background-color: #3a341c !important;
}
.bg-info {
  background-color: #320707 !important;
}
.bg-warning {
  background-color: #a0e2e1 !important;
}
.bg-danger {
  background-color: #ffa600 !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #0c2c68 !important;
  border-color: #0c2c68 !important;
  color: #ffffff !important;
  box-shadow: none;
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus,
.btn-primary.active {
  color: inherit;
  background-color: #113f96 !important;
  border-color: #113f96 !important;
  box-shadow: none;
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #113f96 !important;
  border-color: #113f96 !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #9c98cf !important;
  border-color: #9c98cf !important;
  color: #ffffff !important;
  box-shadow: none;
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus,
.btn-secondary.active {
  color: inherit;
  background-color: #bdbbdf !important;
  border-color: #bdbbdf !important;
  box-shadow: none;
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #bdbbdf !important;
  border-color: #bdbbdf !important;
}
.btn-info,
.btn-info:active {
  background-color: #320707 !important;
  border-color: #320707 !important;
  color: #ffffff !important;
  box-shadow: none;
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus,
.btn-info.active {
  color: inherit;
  background-color: #5f0d0d !important;
  border-color: #5f0d0d !important;
  box-shadow: none;
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #5f0d0d !important;
  border-color: #5f0d0d !important;
}
.btn-success,
.btn-success:active {
  background-color: #3a341c !important;
  border-color: #3a341c !important;
  color: #ffffff !important;
  box-shadow: none;
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus,
.btn-success.active {
  color: inherit;
  background-color: #5c532d !important;
  border-color: #5c532d !important;
  box-shadow: none;
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #5c532d !important;
  border-color: #5c532d !important;
}
.btn-warning,
.btn-warning:active {
  background-color: #a0e2e1 !important;
  border-color: #a0e2e1 !important;
  color: #1f6463 !important;
  box-shadow: none;
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus,
.btn-warning.active {
  color: inherit;
  background-color: #c7eeed !important;
  border-color: #c7eeed !important;
  box-shadow: none;
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #1f6463 !important;
  background-color: #c7eeed !important;
  border-color: #c7eeed !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #ffa600 !important;
  border-color: #ffa600 !important;
  color: #ffffff !important;
  box-shadow: none;
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus,
.btn-danger.active {
  color: inherit;
  background-color: #ffb833 !important;
  border-color: #ffb833 !important;
  box-shadow: none;
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #ffb833 !important;
  border-color: #ffb833 !important;
}
.btn-white,
.btn-white:active {
  background-color: #eff0ec !important;
  border-color: #eff0ec !important;
  color: #757b62 !important;
  box-shadow: none;
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus,
.btn-white.active {
  color: inherit;
  background-color: #ffffff !important;
  border-color: #ffffff !important;
  box-shadow: none;
}
.btn-white.disabled,
.btn-white:disabled {
  color: #757b62 !important;
  background-color: #ffffff !important;
  border-color: #ffffff !important;
}
.btn-black,
.btn-black:active {
  background-color: #232323 !important;
  border-color: #232323 !important;
  color: #ffffff !important;
  box-shadow: none;
}
.btn-black:hover,
.btn-black:focus,
.btn-black.focus,
.btn-black.active {
  color: inherit;
  background-color: #3d3d3d !important;
  border-color: #3d3d3d !important;
  box-shadow: none;
}
.btn-black.disabled,
.btn-black:disabled {
  color: #ffffff !important;
  background-color: #3d3d3d !important;
  border-color: #3d3d3d !important;
}
.btn-primary-outline,
.btn-primary-outline:active {
  background-color: transparent !important;
  border-color: #0c2c68;
  color: #0c2c68;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #030b1a !important;
  background-color: transparent !important;
  border-color: #030b1a !important;
  box-shadow: none !important;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #0c2c68 !important;
  border-color: #0c2c68 !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background-color: transparent !important;
  border-color: #9c98cf;
  color: #9c98cf;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #635db3 !important;
  background-color: transparent !important;
  border-color: #635db3 !important;
  box-shadow: none !important;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #9c98cf !important;
  border-color: #9c98cf !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background-color: transparent !important;
  border-color: #320707;
  color: #320707;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #000000 !important;
  background-color: transparent !important;
  border-color: #000000 !important;
  box-shadow: none !important;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #320707 !important;
  border-color: #320707 !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background-color: transparent !important;
  border-color: #3a341c;
  color: #3a341c;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #000000 !important;
  background-color: transparent !important;
  border-color: #000000 !important;
  box-shadow: none !important;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #ffffff !important;
  background-color: #3a341c !important;
  border-color: #3a341c !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background-color: transparent !important;
  border-color: #a0e2e1;
  color: #a0e2e1;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #5ececc !important;
  background-color: transparent !important;
  border-color: #5ececc !important;
  box-shadow: none !important;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #1f6463 !important;
  background-color: #a0e2e1 !important;
  border-color: #a0e2e1 !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background-color: transparent !important;
  border-color: #ffa600;
  color: #ffa600;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #a86e00 !important;
  background-color: transparent !important;
  border-color: #a86e00 !important;
  box-shadow: none !important;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #ffa600 !important;
  border-color: #ffa600 !important;
}
.btn-black-outline,
.btn-black-outline:active {
  background-color: transparent !important;
  border-color: #232323;
  color: #232323;
}
.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.focus,
.btn-black-outline.active {
  color: #000000 !important;
  background-color: transparent !important;
  border-color: #000000 !important;
  box-shadow: none !important;
}
.btn-black-outline.disabled,
.btn-black-outline:disabled {
  color: #ffffff !important;
  background-color: #232323 !important;
  border-color: #232323 !important;
}
.btn-white-outline,
.btn-white-outline:active {
  background-color: transparent !important;
  border-color: #fafafa;
  color: #fafafa;
}
.btn-white-outline:hover,
.btn-white-outline:focus,
.btn-white-outline.focus,
.btn-white-outline.active {
  color: #cfcfcf !important;
  background-color: transparent !important;
  border-color: #cfcfcf !important;
  box-shadow: none !important;
}
.btn-white-outline.disabled,
.btn-white-outline:disabled {
  color: #7a7a7a !important;
  background-color: #fafafa !important;
  border-color: #fafafa !important;
}
.text-primary {
  color: #0c2c68 !important;
}
.text-secondary {
  color: #9c98cf !important;
}
.text-success {
  color: #3a341c !important;
}
.text-info {
  color: #320707 !important;
}
.text-warning {
  color: #a0e2e1 !important;
}
.text-danger {
  color: #ffa600 !important;
}
.text-white {
  color: #fafafa !important;
}
.text-black {
  color: #232323 !important;
}
a.text-primary:hover,
a.text-primary:focus,
a.text-primary.active {
  color: #01050d !important;
}
a.text-secondary:hover,
a.text-secondary:focus,
a.text-secondary.active {
  color: #5952af !important;
}
a.text-success:hover,
a.text-success:focus,
a.text-success.active {
  color: #000000 !important;
}
a.text-info:hover,
a.text-info:focus,
a.text-info.active {
  color: #000000 !important;
}
a.text-warning:hover,
a.text-warning:focus,
a.text-warning.active {
  color: #52cac8 !important;
}
a.text-danger:hover,
a.text-danger:focus,
a.text-danger.active {
  color: #996400 !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: #0c2c68;
}
.nav-tabs .nav-link:not(.active) {
  color: #232323;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #320707;
}
.alert-warning {
  background-color: #a0e2e1;
}
.alert-danger {
  background-color: #ffa600;
}
.mbr-section-btn .btn:not(.btn-form) {
  border-radius: 100px;
}
.mbr-gallery-filter li a {
  border-radius: 100px !important;
}
.mbr-gallery-filter li.active .btn {
  background-color: #0c2c68;
  border-color: #0c2c68;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
.nav-tabs .nav-link {
  border-radius: 100px !important;
}
a,
a:hover {
  color: #0c2c68;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #195cda;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #c0b27c;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #f3abab;
}
.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: #ffedcc;
}
/* Scroll to top button*/
.scrollToTop_wraper {
  display: none;
}
.form-control {
  font-family: 'Inter Tight', sans-serif;
  font-size: 1.4rem;
  line-height: 1.3;
  font-weight: 400;
  border-radius: 40px !important;
}
.form-control > .mbr-iconfont {
  font-size: 1.75rem;
}
.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: #0c2c68 !important;
}
.form-control:-webkit-input-placeholder {
  font-family: 'Inter Tight', sans-serif;
  font-size: 1.4rem;
  line-height: 1.3;
  font-weight: 400;
}
.form-control:-webkit-input-placeholder > .mbr-iconfont {
  font-size: 1.75rem;
}
blockquote {
  border-color: #0c2c68;
}
/* Forms */
.mbr-form .input-group-btn .btn {
  border-radius: 100px !important;
}
.mbr-form .input-group-btn .btn:hover {
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.mbr-form .input-group-btn button[type="submit"] {
  border-radius: 100px !important;
  padding: 1rem 3rem;
}
.mbr-form .input-group-btn button[type="submit"]:hover {
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #0c2c68;
  color: #ffffff;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #0c2c68;
}
.jq-selectbox .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:after,
.jq-number__spin.plus:after {
  transition: 0.4s;
  border-top-color: #232323;
  border-bottom-color: #232323;
}
.jq-selectbox:hover .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:hover:after,
.jq-number__spin.plus:hover:after {
  border-top-color: #0c2c68;
  border-bottom-color: #0c2c68;
}
.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: #0c2c68 !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: #9c98cf !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='%230c2c68' %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;
}
@media (max-width: 1400px) {
  .container {
    max-width: 100%;
  }
}
@media (max-width: 1400px) and (min-width: 768px) {
  .container {
    padding-left: 32px;
    padding-right: 32px;
  }
}
@media (max-width: 1400px) and (min-width: 768px) {
  .container-fluid {
    padding-left: 32px;
    padding-right: 32px;
  }
}
@media (max-width: 767px) {
  .container-fluid {
    padding-left: 16px;
    padding-right: 16px;
  }
}
.cid-uIQpwoPGhG .navbar {
  background: #ffffff;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  min-height: 77px;
}
@media (min-width: 1200px) {
  .cid-uIQpwoPGhG .navbar .dropdown .dropdown-menu .dropdown-item {
    padding: 0.835em 2.5385em 0.835em 3.5385em !important;
    margin: 0 !important;
  }
  .cid-uIQpwoPGhG .navbar .dropdown .dropdown-menu .dropdown-item:hover {
    padding: 0.835em 2.5385em 0.835em 3.8385em !important;
  }
}
.cid-uIQpwoPGhG .menu-logo {
  display: flex;
  position: relative;
  -webkit-box-align: center;
  align-items: center;
  margin-right: auto;
}
.cid-uIQpwoPGhG .menu-logo .navbar-brand {
  display: flex;
  padding: 0.5rem 0;
  -webkit-transition: padding 0.2s;
  transition: padding 0.2s;
  min-height: 3.8rem;
  -webkit-box-align: center;
  align-items: center;
}
.cid-uIQpwoPGhG .menu-logo .navbar-brand .navbar-caption-wrap {
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: 0.3rem 0;
}
.cid-uIQpwoPGhG .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-uIQpwoPGhG .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  -webkit-transition: font-size 0.25s;
  transition: font-size 0.25s;
}
.cid-uIQpwoPGhG .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
  width: auto;
}
.cid-uIQpwoPGhG .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  -webkit-transition: font-size 0.25s;
  transition: font-size 0.25s;
}
.cid-uIQpwoPGhG .navbar-dropdown.bg-color.transparent.opened {
  background: #ffffff;
}
.cid-uIQpwoPGhG .navbar.opened {
  text-align: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
  margin-left: auto;
  max-width: 20rem;
  height: auto;
  -webkit-box-pack: start;
  justify-content: flex-start;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  background: #232323 !important;
}
.cid-uIQpwoPGhG .navbar.opened .collapse .dropdown-item {
  color: #ffffff;
}
.cid-uIQpwoPGhG .navbar.opened a.brand-link {
  color: #ffffff;
}
.cid-uIQpwoPGhG .navbar-fixed-top.opened {
  position: relative;
}
.cid-uIQpwoPGhG a {
  font-style: normal;
}
.cid-uIQpwoPGhG .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: middle;
  position: relative;
  text-decoration: none;
}
.cid-uIQpwoPGhG .nav-item a {
  padding: 0.4rem 0 !important;
}
.cid-uIQpwoPGhG .nav-item .nav-link {
  color: #ffffff;
}
.cid-uIQpwoPGhG .nav-item .nav-link.display-4 {
  font-size: 15px;
}
.cid-uIQpwoPGhG .widget-icon {
  display: inline-block;
  padding: 0.9rem;
  font-size: 1.25rem;
  margin-right: 10px;
  color: #4f87fb;
  border-radius: 50%;
  border: 1px solid #eee;
  font-weight: bold;
}
.cid-uIQpwoPGhG .info-widget {
  padding-left: 2rem;
  padding-top: 0.5rem;
  padding-right: 3rem;
}
.cid-uIQpwoPGhG .menu-content-right {
  display: flex;
  padding: 28px 0;
  -webkit-box-align: center;
  align-items: center;
}
.cid-uIQpwoPGhG .menu-content-right .info-widget:last-child {
  padding-right: 0;
}
.cid-uIQpwoPGhG .menu-content-right .info-widget:first-child {
  padding-left: 0;
}
@media (max-width: 1200px) {
  .cid-uIQpwoPGhG .menu-content-right {
    display: none;
  }
}
.cid-uIQpwoPGhG .widget-content {
  display: inline-block;
  vertical-align: middle;
  text-align: left;
  padding-bottom: 0.7rem;
}
.cid-uIQpwoPGhG .widget-content .widget-title {
  margin-bottom: 7px;
}
.cid-uIQpwoPGhG .widget-content .widget-text {
  margin-bottom: 0;
}
.cid-uIQpwoPGhG .widget-content .widget-text.display-4 {
  font-size: 13px;
}
.cid-uIQpwoPGhG .right-box .navbar-buttons .content-link {
  color: #ffffff;
  border-left: 1px solid #3a341c;
}
.cid-uIQpwoPGhG .right-box .navbar-buttons .content-link:first-child {
  border-left: none !important;
}
.cid-uIQpwoPGhG .right-box .navbar-buttons .btn {
  margin: 0;
  padding: 1.89rem 1.5rem !important;
  border-radius: 0 5px 5px 0 !important;
}
.cid-uIQpwoPGhG .right-box .navbar-buttons .btn.display-4 {
  font-size: 13px;
}
@media (max-width: 1200px) {
  .cid-uIQpwoPGhG .right-box {
    display: none;
  }
}
.cid-uIQpwoPGhG .dropdown-item:before {
  color: #000000;
  font-family: Material-Design-Icons !important;
  content: '\e716';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1.125rem;
  top: 1.1rem;
  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;
  transition: all 0.25s ease-in-out;
}
.cid-uIQpwoPGhG .dropdown-item:hover:before {
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  width: 16px;
}
.cid-uIQpwoPGhG .content-text {
  margin-bottom: 0;
}
.cid-uIQpwoPGhG .navbar-nav {
  padding-left: 15px;
  position: relative;
  min-height: 60px;
  color: #ffffff;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  flex-direction: row;
}
@media (min-width: 1200px) {
  .cid-uIQpwoPGhG .navbar-nav .main-menu-animated-line {
    position: absolute;
    left: 0;
    width: 0;
    height: 0;
    z-index: 100;
    border-top: 4px solid #0c2c68;
    -webkit-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-uIQpwoPGhG .navbar-nav .main-menu-animated-line.bottom {
    bottom: 0;
  }
  .cid-uIQpwoPGhG .navbar-nav .nav-item a {
    margin: 0 1.3rem !important;
  }
}
@media (max-width: 1200px) {
  .cid-uIQpwoPGhG .navbar-nav .nav-item a {
    margin: 0 !important;
  }
}
.cid-uIQpwoPGhG .navbar-nav .nav-item span {
  padding-right: 0.1rem;
}
.cid-uIQpwoPGhG .display-4 > .mbr-iconfont {
  font-size: 1.8em;
}
.cid-uIQpwoPGhG .display-4 > .btn > .mbr-iconfont {
  font-size: 1.43em;
}
.cid-uIQpwoPGhG .nav-dropdown .dropdown-item {
  font-weight: 400;
}
.cid-uIQpwoPGhG .navbar-buttons.mbr-section-btn {
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: center;
  justify-content: center;
}
.cid-uIQpwoPGhG .navbar-buttons.mbr-section-btn > .mbr-iconfont {
  font-size: 17px !important;
  margin-right: 13px;
}
.cid-uIQpwoPGhG .navbar-buttons.mbr-section-btn .content-link {
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-uIQpwoPGhG .nav-dropdown .link {
  font-weight: 600;
}
.cid-uIQpwoPGhG .menu .navbar-brand .logo-text-part {
  vertical-align: top;
}
.cid-uIQpwoPGhG .content-left-side {
  text-align: center;
  padding-top: 3px;
  border-left: 1px solid #eee;
  border-right: 1px solid #eee;
  padding-left: 15px;
  padding-right: 15px;
}
@media (max-width: 575px) {
  .cid-uIQpwoPGhG .content-left-side {
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
    padding: 0.5rem 0;
  }
  .cid-uIQpwoPGhG .content-left-side .content-link {
    font-size: 0.8rem;
    margin: 0;
    padding-bottom: 1rem;
    display: flex;
    -webkit-box-pack: justify;
    justify-content: space-between;
  }
}
.cid-uIQpwoPGhG .content-left-side .content-link.display-4 {
  font-size: 16px !important;
}
.cid-uIQpwoPGhG .content-left-side .content-link {
  line-height: 3.4375;
}
.cid-uIQpwoPGhG .content-right-side {
  text-align: center;
}
@media (max-width: 575px) {
  .cid-uIQpwoPGhG .content-right-side {
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
    padding: 0.5rem 0;
  }
  .cid-uIQpwoPGhG .content-right-side .content-link {
    font-size: 0.8rem;
    margin: 0;
    padding-bottom: 1rem;
    display: flex;
    -webkit-box-pack: justify;
    justify-content: space-between;
  }
}
.cid-uIQpwoPGhG .menu-content-top {
  -webkit-transition: height 0.3s ease-in-out;
  transition: height 0.3s ease-in-out;
  padding-top: 0px;
}
.cid-uIQpwoPGhG .menu-content-bottom {
  padding-bottom: 0px;
}
@media (max-width: 1200px) {
  .cid-uIQpwoPGhG .menu-content-bottom {
    margin-bottom: 1rem;
  }
}
.cid-uIQpwoPGhG .menu-content-top.show {
  display: block;
}
.cid-uIQpwoPGhG .pre-header-right {
  align-self: center;
}
.cid-uIQpwoPGhG .pre-header-right .content-right-side .content-link {
  border-right: 1px solid #eee;
  -webkit-transition: 0.3s all;
  transition: 0.3s all;
  padding: 21px 12px;
}
.cid-uIQpwoPGhG .pre-header-right .content-right-side .content-link:hover {
  -webkit-transition: 0.3s all;
  transition: 0.3s all;
  background-color: #ffa600;
}
.cid-uIQpwoPGhG .pre-header-right .content-right-side .content-link:hover span {
  color: #000000;
}
.cid-uIQpwoPGhG .pre-header-right .content-right-side .content-link span {
  vertical-align: middle;
  font-size: 1.2rem;
  color: #777;
}
.cid-uIQpwoPGhG .pre-header-right .content-right-side .content-link:first-child {
  border-left: 1px solid #eee;
}
.cid-uIQpwoPGhG .pre-header-right .content-right-side .content-link:last-child {
  border-right: 1px solid #eee;
}
.cid-uIQpwoPGhG .navbar .menu-content-top {
  display: block;
  width: 100%;
}
@media (max-width: 1200px) {
  .cid-uIQpwoPGhG .content-left-side {
    text-align: center;
    padding-bottom: 1rem;
  }
  .cid-uIQpwoPGhG .navbar .menu-content-top {
    display: none;
  }
  .cid-uIQpwoPGhG .dropdown-item {
    padding: 0.235em 0 !important;
    margin: 0 !important;
    -webkit-transition: all 0.25s ease-in-out;
    -moz-transition: all 0.25s ease-in-out;
  }
  .cid-uIQpwoPGhG .dropdown-item:before {
    display: none;
  }
  .cid-uIQpwoPGhG .menu-logo {
    width: 100%;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    justify-content: space-between;
  }
  .cid-uIQpwoPGhG img {
    height: 3.8rem !important;
  }
  .cid-uIQpwoPGhG .btn {
    display: flex;
  }
  .cid-uIQpwoPGhG button.navbar-toggler {
    display: block;
    align-self: center;
  }
  .cid-uIQpwoPGhG .navbar-brand {
    margin-left: 1rem !important;
    margin-top: 0.5rem;
  }
  .cid-uIQpwoPGhG .navbar-toggleable-sm {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
  }
  .cid-uIQpwoPGhG .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-uIQpwoPGhG .navbar-collapse.collapsing,
  .cid-uIQpwoPGhG .navbar-collapse.show {
    display: block !important;
  }
  .cid-uIQpwoPGhG .navbar-collapse.collapsing .navbar-nav,
  .cid-uIQpwoPGhG .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: left;
  }
  .cid-uIQpwoPGhG .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-uIQpwoPGhG .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
    padding: 0.5rem 0;
  }
  .cid-uIQpwoPGhG .navbar-collapse.collapsing .navbar-buttons,
  .cid-uIQpwoPGhG .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-uIQpwoPGhG .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-uIQpwoPGhG .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-uIQpwoPGhG .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    -webkit-transition-duration: 0.5s;
    transition-duration: 0.5s;
    -webkit-transition-property: opacity, padding, height;
    transition-property: opacity, padding, height;
  }
  .cid-uIQpwoPGhG .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-uIQpwoPGhG .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-uIQpwoPGhG .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-uIQpwoPGhG .menu-content-middle {
    width: 100%;
  }
}
@media (min-width: 1200px) {
  .cid-uIQpwoPGhG .menu-content-top .row {
    -webkit-box-pack: justify;
    justify-content: space-between;
    flex-wrap: nowrap;
  }
  .cid-uIQpwoPGhG .content-right-side {
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: end;
    justify-content: flex-end;
    flex-basis: 70%;
    flex-shrink: 0;
    flex-wrap: wrap;
    text-align: right;
  }
  .cid-uIQpwoPGhG .content-left-side {
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: start;
    justify-content: flex-start;
    flex-basis: 70%;
    flex-shrink: 0;
    flex-wrap: wrap;
    text-align: right;
  }
  .cid-uIQpwoPGhG .menu-content-top {
    border-bottom: 1px solid rgba(0, 0, 0, 0.12);
  }
  .cid-uIQpwoPGhG .navbar {
    display: block;
    padding: 0;
  }
  .cid-uIQpwoPGhG .navbar .menu-logo {
    margin-right: auto;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
  }
  .cid-uIQpwoPGhG .navbar.navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
    -webkit-align-self: initial;
    align-self: auto;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    z-index: 101;
    min-height: 76px;
  }
  .cid-uIQpwoPGhG .navbar-toggler {
    display: none;
  }
}
.cid-uIQpwoPGhG .menu-area-wrapper {
  height: 39px;
  width: 100%;
}
.cid-uIQpwoPGhG .menu-area-wrapper .menu-area {
  background-color: #0c2c68;
  position: relative;
  z-index: 9;
  border-radius: 5px;
  line-height: normal !important;
}
@media (max-width: 1200px) {
  .cid-uIQpwoPGhG .menu-area-wrapper .menu-area {
    background: transparent;
  }
}
@media (max-width: 1200px) {
  .cid-uIQpwoPGhG .menu-area-wrapper {
    height: 100%;
  }
}
.cid-uIQpwoPGhG .navbar-short {
  background: transparent;
}
.cid-uIQpwoPGhG .navbar-short .menu-content-top,
.cid-uIQpwoPGhG .navbar-short .menu-content-middle {
  display: none;
}
@media (max-width: 1200px) {
  .cid-uIQpwoPGhG .navbar-short .menu-area-wrapper {
    margin-top: 5rem;
  }
}
.cid-uIQpwoPGhG .btn {
  padding: 0.7rem 1.5rem;
  display: inline-flex;
  -webkit-box-align: center;
  align-items: center;
}
.cid-uIQpwoPGhG .btn .mbr-iconfont {
  font-size: 1.2em;
}
.cid-uIQpwoPGhG .navbar-toggleable-sm .navbar-collapse {
  -webkit-box-pack: end;
  justify-content: flex-end;
}
@media (max-width: 1200px) {
  .cid-uIQpwoPGhG .navbar-toggleable-sm .navbar-collapse {
    width: 300px;
    height: 100%;
    margin-left: 1rem;
    margin-top: 1rem;
  }
}
.cid-uIQpwoPGhG .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  padding-left: 15px;
}
.cid-uIQpwoPGhG .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-uIQpwoPGhG .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-uIQpwoPGhG .dropdown {
  color: #3a341c !important;
}
.cid-uIQpwoPGhG .dropdown .dropdown-menu {
  background: #ffffff;
  display: none;
  position: absolute;
  border-top: 3px solid #0c2c68;
  min-width: 16.875rem;
  text-align: left;
  padding-top: 0;
  padding-bottom: 0;
  color: #3a341c !important;
}
@media (max-width: 1200px) {
  .cid-uIQpwoPGhG .dropdown .dropdown-menu {
    overflow: hidden;
    border-top: none;
    background: #232323 !important;
  }
}
.cid-uIQpwoPGhG .dropdown .dropdown-menu .dropdown-item {
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
  padding-left: 10px !important;
}
.cid-uIQpwoPGhG .dropdown .dropdown-menu .dropdown-item::after {
  right: 1rem;
}
.cid-uIQpwoPGhG .dropdown .dropdown-menu .dropdown-item:hover {
  background-color: #ffa600;
  color: #000000;
}
.cid-uIQpwoPGhG .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
@media (max-width: 1200px) {
  .cid-uIQpwoPGhG .dropdown .dropdown-menu .dropdown-item:hover {
    background-color: #232323;
  }
}
.cid-uIQpwoPGhG .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-uIQpwoPGhG .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  color: #000000;
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-uIQpwoPGhG .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-uIQpwoPGhG .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uIQpwoPGhG .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;
  display: none;
}
.cid-uIQpwoPGhG .navbar.navbar-short {
  min-height: 50px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.cid-uIQpwoPGhG .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  -webkit-transition: font-size 0.3s;
  transition: font-size 0.3s;
}
.cid-uIQpwoPGhG .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-uIQpwoPGhG .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-uIQpwoPGhG .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-uIQpwoPGhG button.navbar-toggler.collapsed .hamburger span {
  height: 2px;
}
.cid-uIQpwoPGhG button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.cid-uIQpwoPGhG button.navbar-toggler:focus {
  outline: none;
}
.cid-uIQpwoPGhG button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-radius: 20px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uIQpwoPGhG button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.cid-uIQpwoPGhG button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  -webkit-transition: all 0.15s;
  transition: all 0.15s;
}
.cid-uIQpwoPGhG button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  -webkit-transition: all 0.15s;
  transition: all 0.15s;
}
.cid-uIQpwoPGhG button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.cid-uIQpwoPGhG nav.opened .hamburger span {
  height: 4px;
  background-color: #ffffff;
}
.cid-uIQpwoPGhG nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}
.cid-uIQpwoPGhG nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  -webkit-transition: all 0.25s;
  transition: all 0.25s;
}
.cid-uIQpwoPGhG nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  -webkit-transition: all 0.25s;
  transition: all 0.25s;
}
.cid-uIQpwoPGhG nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.cid-uIQpwoPGhG .collapsed.navbar {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
}
.cid-uIQpwoPGhG .collapsed .menu-logo {
  margin-right: 0;
}
.cid-uIQpwoPGhG .collapsed .btn {
  display: flex;
}
.cid-uIQpwoPGhG .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-uIQpwoPGhG .collapsed .navbar-collapse.collapsing,
.cid-uIQpwoPGhG .collapsed .navbar-collapse.show {
  display: block !important;
  width: 100%;
}
.cid-uIQpwoPGhG .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-uIQpwoPGhG .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: left;
}
.cid-uIQpwoPGhG .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-uIQpwoPGhG .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-uIQpwoPGhG .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-uIQpwoPGhG .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-uIQpwoPGhG .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-uIQpwoPGhG .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
@media (min-width: 1200px) {
  .cid-uIQpwoPGhG .collapsed:not(.navbar-short) .navbar-collapse {
    max-height: calc(100vh - 8rem  - 3.5rem);
  }
  .cid-uIQpwoPGhG .collapsed .dropdown .dropdown-menu {
    overflow: hidden;
  }
}
.cid-uIQpwoPGhG .collapsed button.navbar-toggler {
  display: block;
  -webkit-align-self: center;
  align-self: center;
}
.cid-uIQpwoPGhG .collapsed .navbar-brand {
  margin-left: 1rem !important;
  margin-top: 0.5rem;
}
.cid-uIQpwoPGhG .collapsed .navbar-toggleable-sm {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
}
.cid-uIQpwoPGhG .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  -webkit-transition-duration: 0.25s;
  transition-duration: 0.25s;
  -webkit-transition-property: opacity, padding, height;
  transition-property: opacity, padding, height;
}
.cid-uIQpwoPGhG .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-uIQpwoPGhG .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-uIQpwoPGhG .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-uIQpwoPGhG .collapsed .dropdown-item:before {
  display: none;
}
.cid-uIQpwoPGhG .navbar-dropdown {
  padding: 0rem 1rem;
  flex-wrap: nowrap;
}
.cid-uIQpwoPGhG .navbar-collapse {
  flex-basis: auto;
  display: flex;
}
.cid-uIQpwoPGhG .nav-link:focus {
  outline: none;
}
.cid-uIQpwoPGhG .navbar-toggler {
  position: relative;
}
.cid-uIQpwoPGhG .dropdown-item.active,
.cid-uIQpwoPGhG .dropdown-item:active {
  color: auto;
}
.cid-uIQpwoPGhG .dropdown-item:hover {
  color: #ffa600;
}
.cid-uIQpwoPGhG .widget-title,
.cid-uIQpwoPGhG .widget-icon {
  color: #0c2c68;
}
.cid-uIQpwoPGhG .widget-text {
  color: #0c2c68;
}
.cid-uIVl8f7cx7 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uIVl8f7cx7 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  background-image: url("../../../assets/images/background2.jpg");
}
.cid-uIVl8f7cx7 .image-wrap {
  height: 700px;
}
@media (max-width: 992px) {
  .cid-uIVl8f7cx7 .image-wrap {
    height: 350px;
  }
}
.cid-uIWcjZLzz3 {
  padding-top: 3rem;
  padding-bottom: 4rem;
  background-image: url("../../../assets/images/abc6.jpg");
}
.cid-uIWcjZLzz3 .mbr-overlay {
  background: #000000;
  opacity: 0.7;
}
.cid-uIWcjZLzz3 img,
.cid-uIWcjZLzz3 .item-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-uIWcjZLzz3 .item:focus,
.cid-uIWcjZLzz3 span:focus {
  outline: none;
}
.cid-uIWcjZLzz3 .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-uIWcjZLzz3 .item-wrapper {
  position: relative;
  border-radius: 1.5rem;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uIWcjZLzz3 .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-uIWcjZLzz3 .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uIWcjZLzz3 .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-uIWcjZLzz3 .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-uIWcjZLzz3 .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uIWcjZLzz3 .mbr-section-title {
  color: #232323;
}
.cid-uIWcjZLzz3 .mbr-text,
.cid-uIWcjZLzz3 .mbr-section-btn {
  color: #0c2c68;
}
.cid-uJ0tu9bhRP {
  padding-top: 8rem;
  padding-bottom: 8rem;
  overflow: hidden;
  background-image: url("../../../assets/images/abc6.jpg");
}
.cid-uJ0tu9bhRP .mbr-overlay {
  background: #000000;
  opacity: 0.7;
}
.cid-uJ0tu9bhRP .item:focus,
.cid-uJ0tu9bhRP span:focus {
  outline: none;
}
.cid-uJ0tu9bhRP .container-fluid {
  padding-left: 0;
  padding-right: 0;
  overflow: visible;
}
.cid-uJ0tu9bhRP .item {
  padding: 20px 0;
  min-height: 90px;
}
@media (max-width: 768px) {
  .cid-uJ0tu9bhRP .item {
    min-height: 45px;
  }
}
.cid-uJ0tu9bhRP .content-wrap_1 {
  transform: rotate(2deg);
  background-color: #9c98cf;
}
.cid-uJ0tu9bhRP .content-wrap_2 {
  transform: rotate(-2deg);
  margin-top: -3rem;
  background-color: #0c2c68;
}
@media (max-width: 992px) {
  .cid-uJ0tu9bhRP .content-wrap_2 {
    margin-top: -1rem;
  }
}
.cid-uJ0tu9bhRP .container_1 {
  background-color: #9c98cf;
}
.cid-uJ0tu9bhRP .container_1 .item_1 {
  color: #ffffff;
  background-color: #9c98cf;
}
.cid-uJ0tu9bhRP .container_2 {
  background-color: #0c2c68;
}
.cid-uJ0tu9bhRP .container_2 .item_2 {
  color: #ffffff;
  background-color: #0c2c68;
}
.cid-uJ0t4MjQyN {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-image: url("../../../assets/images/555853f0-7166-4173-a256-399bb09d2401-1.webp");
}
.cid-uJ0t4MjQyN .mbr-fallback-image.disabled {
  display: none;
}
.cid-uJ0t4MjQyN .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uJ0t4MjQyN .mbr-text {
  color: #fafafa;
}
.cid-uJ0t4MjQyN .mbr-section-subtitle,
.cid-uJ0t4MjQyN .mbr-section-title,
.cid-uJ0t4MjQyN .card-title {
  color: #fafafa;
}
.cid-uJ0t4MjQyN .title .card-title {
  z-index: 1;
}
.cid-uJ0t4MjQyN .num {
  color: #fafafa;
  word-break: normal;
}
@media (max-width: 767px) {
  .cid-uJ0t4MjQyN .content-column {
    margin-bottom: 2rem;
  }
  .cid-uJ0t4MjQyN .line-for-mobile {
    width: 80%;
  }
}
@media (max-width: 576px) {
  .cid-uJ0t4MjQyN .line-for-mobile {
    width: 100%;
  }
  .cid-uJ0t4MjQyN .pt-20 {
    padding: 0;
  }
}
.cid-uJ0t4MjQyN .card-box .rotate {
  margin-left: 1rem;
}
.cid-uJ0t4MjQyN .card-title {
  font-size: 20px;
}
.cid-uJ0t4MjQyN .title-arrow {
  transform: rotate(225deg);
  position: absolute;
}
@media (max-width: 425px) {
  .cid-uJ0t4MjQyN .title-arrow {
    top: -7px;
  }
}
.cid-uJ0t4MjQyN .rotate {
  transform: rotate(225deg);
}
.cid-uJ0t4MjQyN .hidden-text {
  visibility: hidden;
}
.cid-uJ0t4MjQyN .position {
  height: 76%;
  margin-left: 10px;
}
@media (max-width: 992px) {
  .cid-uJ0t4MjQyN .card {
    padding-bottom: 40px;
  }
  .cid-uJ0t4MjQyN .end {
    padding-bottom: 0;
  }
}
@media (min-width: 992px) {
  .cid-uJ0t4MjQyN .btn,
  .cid-uJ0t4MjQyN .btn-primary {
    width: 9rem;
    height: 9rem;
    border-radius: 50%;
    padding-left: -0.5rem;
    margin-left: auto;
    word-break: normal;
  }
  .cid-uJ0t4MjQyN .btn .rotate,
  .cid-uJ0t4MjQyN .btn-primary .rotate {
    transform: rotate(225deg);
    margin-top: 0.4rem;
    margin-right: 0.6rem;
    margin-left: 0.5rem;
  }
  .cid-uJ0t4MjQyN .btn svg,
  .cid-uJ0t4MjQyN .btn-primary svg {
    transition: all 0.4s;
  }
  .cid-uJ0t4MjQyN .btn:hover > svg,
  .cid-uJ0t4MjQyN .btn-primary:hover > svg {
    transform: rotate(315deg);
  }
}
@media (max-width: 991px) {
  .cid-uJ0t4MjQyN .btn,
  .cid-uJ0t4MjQyN .btn-primary {
    width: 9rem;
    height: 9rem;
    border-radius: 50%;
    padding-left: -0.5rem;
    padding-top: 0.5rem;
    margin-left: auto;
    right: 0;
    top: 1.5rem;
    word-break: normal;
  }
  .cid-uJ0t4MjQyN .btn .rotate,
  .cid-uJ0t4MjQyN .btn-primary .rotate {
    transform: rotate(225deg);
    margin-top: 0.2rem;
    margin-left: 0;
  }
  .cid-uJ0t4MjQyN .btn svg,
  .cid-uJ0t4MjQyN .btn-primary svg {
    transition: all 0.4s;
  }
  .cid-uJ0t4MjQyN .btn:hover > svg,
  .cid-uJ0t4MjQyN .btn-primary:hover > svg {
    transform: rotate(315deg);
  }
}
@media (max-width: 576px) {
  .cid-uJ0t4MjQyN .btn,
  .cid-uJ0t4MjQyN .btn-primary {
    width: 9rem;
    height: 9rem;
    border-radius: 50%;
    padding-left: -0.5rem;
    padding-top: 0.5rem;
    margin-left: auto;
    right: 0;
    top: 1.5rem;
    word-break: normal;
  }
  .cid-uJ0t4MjQyN .btn .rotate,
  .cid-uJ0t4MjQyN .btn-primary .rotate {
    transform: rotate(225deg);
    margin-top: 0.2rem;
    margin-left: 0;
  }
  .cid-uJ0t4MjQyN .btn svg,
  .cid-uJ0t4MjQyN .btn-primary svg {
    transition: all 0.4s;
  }
  .cid-uJ0t4MjQyN .btn:hover > svg,
  .cid-uJ0t4MjQyN .btn-primary:hover > svg {
    transform: rotate(315deg);
  }
  .cid-uJ0t4MjQyN .btn p,
  .cid-uJ0t4MjQyN .btn-primary p {
    margin-bottom: 0.5rem;
  }
}
.cid-uJ0t4MjQyN .hide {
  display: none;
}
.cid-uJ0t4MjQyN .pt-20 {
  padding-top: 20px;
}
@media (max-width: 425px) {
  .cid-uJ0t4MjQyN .pt-20 {
    padding-top: 10px;
  }
}
.cid-uJ0u1pZ2rH {
  padding-top: 2.5rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uJ0u1pZ2rH .item-img {
  position: relative;
}
.cid-uJ0u1pZ2rH .button1 {
  background: #0c2c68;
}
.cid-uJ0u1pZ2rH .btn-wrap {
  padding: 1.5rem 1.5rem;
  border-radius: 2rem;
  margin-top: 1rem;
  margin-right: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 767px) {
  .cid-uJ0u1pZ2rH .btn-wrap {
    margin-top: 0rem;
    margin-right: 0rem;
    width: 100%;
    padding: 1rem 1rem;
  }
}
.cid-uJ0u1pZ2rH .button2 {
  background: #9c98cf;
}
@media (max-width: 767px) {
  .cid-uJ0u1pZ2rH .button2 {
    margin-top: 1rem;
  }
}
.cid-uJ0u1pZ2rH .title {
  position: absolute;
  width: 100%;
  left: 50%;
  top: 40%;
  transform: translate(-50%, -50%);
}
@media (max-width: 767px) {
  .cid-uJ0u1pZ2rH .title {
    top: 25%;
  }
}
.cid-uJ0u1pZ2rH .image-wrapper {
  overflow: hidden;
  position: relative;
  border-radius: 2rem;
  height: 100%;
}
@media (max-width: 992px) {
  .cid-uJ0u1pZ2rH .image-wrapper {
    min-height: 600px;
  }
}
@media (max-width: 767px) {
  .cid-uJ0u1pZ2rH .image-wrapper {
    min-height: 400px;
  }
}
.cid-uJ0u1pZ2rH .image-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-uJ0u1pZ2rH .item-wrapper {
  position: relative;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (max-width: 767px) {
  .cid-uJ0u1pZ2rH .item-wrapper {
    margin-top: 4rem;
  }
}
.cid-uJ0u1pZ2rH .link-icon-wrapper {
  position: absolute;
  left: -1px;
  padding: 0rem;
  bottom: -1px;
  background: #ffffff;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
  border-top-right-radius: 2rem;
  border-bottom-left-radius: 2rem;
  z-index: 3;
}
@media (max-width: 767px) {
  .cid-uJ0u1pZ2rH .link-icon-wrapper {
    padding: 1rem;
    flex-direction: column;
  }
}
.cid-uJ0u1pZ2rH .link-icon-wrapper .icon-wrap {
  width: 50px;
  height: 50px;
  transition: all 0.3s;
  display: flex;
  border: 1px solid currentColor;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  margin-left: 1rem;
}
.cid-uJ0u1pZ2rH .link-icon-wrapper .icon-wrap:hover {
  cursor: pointer;
}
.cid-uJ0u1pZ2rH .link-icon-wrapper .icon-wrap:hover span {
  transform: scale(1.4);
}
.cid-uJ0u1pZ2rH .link-icon-wrapper .icon-wrap span {
  font-size: 1.1rem;
  transition: all 0.3s;
  display: block;
  padding-top: 1px;
}
.cid-uJ0u1pZ2rH .link-icon-wrapper .svg1 {
  position: absolute;
  top: -40px;
  left: 0px;
  transform: rotate(-90deg);
  width: 40px;
}
.cid-uJ0u1pZ2rH .link-icon-wrapper .svg1 path {
  fill: #ffffff;
}
.cid-uJ0u1pZ2rH .link-icon-wrapper .svg2 {
  position: absolute;
  transform: rotate(-90deg);
  width: 40px;
  bottom: 0;
  right: -40px;
}
.cid-uJ0u1pZ2rH .link-icon-wrapper .svg2 path {
  fill: #ffffff;
}
.cid-uJ0u1pZ2rH .icon1 {
  color: currentColor;
  border-color: currentColor;
}
.cid-uJ0u1pZ2rH .icon2 {
  color: currentColor;
  border-color: currentColor;
}
.cid-uJ0u1pZ2rH img,
.cid-uJ0u1pZ2rH .item-img {
  width: 100%;
}
.cid-uJ0u1pZ2rH .item-title2,
.cid-uJ0u1pZ2rH .icon2 {
  color: #000000;
}
.cid-uJ0u1pZ2rH .item-title1,
.cid-uJ0u1pZ2rH .icon1 {
  color: #ffffff;
}
.cid-uJ0u1pZ2rH .main-title {
  color: #ffffff;
  text-align: center;
}
.cid-uJ0u1pZ2rH .main-title DIV {
  text-align: center;
}
.cid-uJ0RmLqfZA {
  padding-top: 5rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
  background: linear-gradient(180deg, #ffffff, #9c98cf);
}
.cid-uJ0RmLqfZA .container {
  max-width: 1040px;
}
@media (max-width: 575px) {
  .cid-uJ0RmLqfZA .row {
    text-align: center!important;
  }
}
.cid-uJ0RmLqfZA .mbr-section-title {
  color: #4BFDB1;
}
@media (max-width: 575px) {
  .cid-uJ0RmLqfZA .mbr-section-title {
    text-align: center;
  }
}
.cid-uJ0RmLqfZA .mbr-section-subtitle {
  color: #000000;
}
.cid-uJ0RmLqfZA .mbr-text {
  color: #000000;
  margin-top: 28px;
}
.cid-uJ0RmLqfZA .mbr-section-btn {
  margin-top: 18px;
}
@media (max-width: 575px) {
  .cid-uJ0RmLqfZA .mbr-section-btn {
    display: flex;
    flex-wrap: wrap;
  }
  .cid-uJ0RmLqfZA .mbr-section-btn .btn {
    width: 100%;
  }
}
.cid-uJ0RmLqfZA .btn-primary-outline,
.cid-uJ0RmLqfZA .btn-secondary-outline,
.cid-uJ0RmLqfZA .btn-success-outline,
.cid-uJ0RmLqfZA .btn-info-outline,
.cid-uJ0RmLqfZA .btn-warning-outline,
.cid-uJ0RmLqfZA .btn-danger-outline,
.cid-uJ0RmLqfZA .btn-white-outline,
.cid-uJ0RmLqfZA .btn-black-outline {
  padding: 0;
  min-height: auto;
}
.cid-uJ0RmLqfZA .mbr-fallback-image.disabled {
  display: none;
}
.cid-uJ0RmLqfZA .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uJ0RmLqfZA .mbr-section-title,
.cid-uJ0RmLqfZA .mbr-section-btn {
  color: #0c2c68;
  text-align: left;
}
.cid-uJ0Vj8Yezw {
  padding-top: 45px;
  padding-bottom: 30px;
  background-color: #0c2c68;
}
.cid-uJ0Vj8Yezw .copyright {
  display: flex;
}
@media (max-width: 992px) {
  .cid-uJ0Vj8Yezw .copyright {
    margin-bottom: 1rem;
  }
}
.cid-uJ0Vj8Yezw .text-wrap {
  transition: all 0.3s;
  padding: 23px;
  bottom: 0;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: flex-end;
  width: 100%;
  overflow: hidden;
  position: relative;
}
.cid-uJ0Vj8Yezw .text-wrap .icons-wrap .icon-wrapper {
  background: #06182d;
  display: flex;
  width: 31px;
  height: 31px;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  border: 2px solid #9c98cf;
  transition: all 0.3s;
  z-index: 4;
  cursor: pointer;
  margin: 0 0.2rem;
}
.cid-uJ0Vj8Yezw .text-wrap .icons-wrap .icon-wrapper:hover {
  background: #ffa600;
  border-color: #ffa600;
}
.cid-uJ0Vj8Yezw .text-wrap .icons-wrap .icon-wrapper:hover .link-icon {
  color: #ffffde;
}
.cid-uJ0Vj8Yezw .text-wrap .icons-wrap .icon-wrapper .link-icon {
  display: inline-block;
  color: #ffffde;
  transition: all 0.3s;
  font-size: 14px;
  justify-content: center;
}
.cid-uJ0Vj8Yezw .text-wrap .icons-wrap::before {
  height: 2px;
  width: 100%;
  top: 50%;
  right: 58%;
  position: absolute;
  display: inline-block;
  content: "";
  background-color: #9c98cf;
}
@media (max-width: 992px) {
  .cid-uJ0Vj8Yezw .text-wrap .icons-wrap::before {
    display: none;
  }
}
.cid-uJ0Vj8Yezw .text-wrap .icons-wrap::after {
  height: 2px;
  width: 100%;
  top: 50%;
  left: 58%;
  position: absolute;
  display: inline-block;
  content: "";
  background-color: #9c98cf;
}
@media (max-width: 992px) {
  .cid-uJ0Vj8Yezw .text-wrap .icons-wrap::after {
    display: none;
  }
}
.cid-uJ1bndUEYW .navbar {
  background: #ffffff;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  min-height: 77px;
}
@media (min-width: 1200px) {
  .cid-uJ1bndUEYW .navbar .dropdown .dropdown-menu .dropdown-item {
    padding: 0.835em 2.5385em 0.835em 3.5385em !important;
    margin: 0 !important;
  }
  .cid-uJ1bndUEYW .navbar .dropdown .dropdown-menu .dropdown-item:hover {
    padding: 0.835em 2.5385em 0.835em 3.8385em !important;
  }
}
.cid-uJ1bndUEYW .menu-logo {
  display: flex;
  position: relative;
  -webkit-box-align: center;
  align-items: center;
  margin-right: auto;
}
.cid-uJ1bndUEYW .menu-logo .navbar-brand {
  display: flex;
  padding: 0.5rem 0;
  -webkit-transition: padding 0.2s;
  transition: padding 0.2s;
  min-height: 3.8rem;
  -webkit-box-align: center;
  align-items: center;
}
.cid-uJ1bndUEYW .menu-logo .navbar-brand .navbar-caption-wrap {
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: 0.3rem 0;
}
.cid-uJ1bndUEYW .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-uJ1bndUEYW .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  -webkit-transition: font-size 0.25s;
  transition: font-size 0.25s;
}
.cid-uJ1bndUEYW .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
  width: auto;
}
.cid-uJ1bndUEYW .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  -webkit-transition: font-size 0.25s;
  transition: font-size 0.25s;
}
.cid-uJ1bndUEYW .navbar-dropdown.bg-color.transparent.opened {
  background: #ffffff;
}
.cid-uJ1bndUEYW .navbar.opened {
  text-align: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
  margin-left: auto;
  max-width: 20rem;
  height: auto;
  -webkit-box-pack: start;
  justify-content: flex-start;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  background: #232323 !important;
}
.cid-uJ1bndUEYW .navbar.opened .collapse .dropdown-item {
  color: #ffffff;
}
.cid-uJ1bndUEYW .navbar.opened a.brand-link {
  color: #ffffff;
}
.cid-uJ1bndUEYW .navbar-fixed-top.opened {
  position: relative;
}
.cid-uJ1bndUEYW a {
  font-style: normal;
}
.cid-uJ1bndUEYW .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: middle;
  position: relative;
  text-decoration: none;
}
.cid-uJ1bndUEYW .nav-item a {
  padding: 0.4rem 0 !important;
}
.cid-uJ1bndUEYW .nav-item .nav-link {
  color: #ffffff;
}
.cid-uJ1bndUEYW .nav-item .nav-link.display-4 {
  font-size: 15px;
}
.cid-uJ1bndUEYW .widget-icon {
  display: inline-block;
  padding: 0.9rem;
  font-size: 1.25rem;
  margin-right: 10px;
  color: #4f87fb;
  border-radius: 50%;
  border: 1px solid #eee;
  font-weight: bold;
}
.cid-uJ1bndUEYW .info-widget {
  padding-left: 2rem;
  padding-top: 0.5rem;
  padding-right: 3rem;
}
.cid-uJ1bndUEYW .menu-content-right {
  display: flex;
  padding: 28px 0;
  -webkit-box-align: center;
  align-items: center;
}
.cid-uJ1bndUEYW .menu-content-right .info-widget:last-child {
  padding-right: 0;
}
.cid-uJ1bndUEYW .menu-content-right .info-widget:first-child {
  padding-left: 0;
}
@media (max-width: 1200px) {
  .cid-uJ1bndUEYW .menu-content-right {
    display: none;
  }
}
.cid-uJ1bndUEYW .widget-content {
  display: inline-block;
  vertical-align: middle;
  text-align: left;
  padding-bottom: 0.7rem;
}
.cid-uJ1bndUEYW .widget-content .widget-title {
  margin-bottom: 7px;
}
.cid-uJ1bndUEYW .widget-content .widget-text {
  margin-bottom: 0;
}
.cid-uJ1bndUEYW .widget-content .widget-text.display-4 {
  font-size: 13px;
}
.cid-uJ1bndUEYW .right-box .navbar-buttons .content-link {
  color: #ffffff;
  border-left: 1px solid #3a341c;
}
.cid-uJ1bndUEYW .right-box .navbar-buttons .content-link:first-child {
  border-left: none !important;
}
.cid-uJ1bndUEYW .right-box .navbar-buttons .btn {
  margin: 0;
  padding: 1.89rem 1.5rem !important;
  border-radius: 0 5px 5px 0 !important;
}
.cid-uJ1bndUEYW .right-box .navbar-buttons .btn.display-4 {
  font-size: 13px;
}
@media (max-width: 1200px) {
  .cid-uJ1bndUEYW .right-box {
    display: none;
  }
}
.cid-uJ1bndUEYW .dropdown-item:before {
  color: #000000;
  font-family: Material-Design-Icons !important;
  content: '\e716';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1.125rem;
  top: 1.1rem;
  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;
  transition: all 0.25s ease-in-out;
}
.cid-uJ1bndUEYW .dropdown-item:hover:before {
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  width: 16px;
}
.cid-uJ1bndUEYW .content-text {
  margin-bottom: 0;
}
.cid-uJ1bndUEYW .navbar-nav {
  padding-left: 15px;
  position: relative;
  min-height: 60px;
  color: #ffffff;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  flex-direction: row;
}
@media (min-width: 1200px) {
  .cid-uJ1bndUEYW .navbar-nav .main-menu-animated-line {
    position: absolute;
    left: 0;
    width: 0;
    height: 0;
    z-index: 100;
    border-top: 4px solid #0c2c68;
    -webkit-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-uJ1bndUEYW .navbar-nav .main-menu-animated-line.bottom {
    bottom: 0;
  }
  .cid-uJ1bndUEYW .navbar-nav .nav-item a {
    margin: 0 1.3rem !important;
  }
}
@media (max-width: 1200px) {
  .cid-uJ1bndUEYW .navbar-nav .nav-item a {
    margin: 0 !important;
  }
}
.cid-uJ1bndUEYW .navbar-nav .nav-item span {
  padding-right: 0.1rem;
}
.cid-uJ1bndUEYW .display-4 > .mbr-iconfont {
  font-size: 1.8em;
}
.cid-uJ1bndUEYW .display-4 > .btn > .mbr-iconfont {
  font-size: 1.43em;
}
.cid-uJ1bndUEYW .nav-dropdown .dropdown-item {
  font-weight: 400;
}
.cid-uJ1bndUEYW .navbar-buttons.mbr-section-btn {
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: center;
  justify-content: center;
}
.cid-uJ1bndUEYW .navbar-buttons.mbr-section-btn > .mbr-iconfont {
  font-size: 17px !important;
  margin-right: 13px;
}
.cid-uJ1bndUEYW .navbar-buttons.mbr-section-btn .content-link {
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-uJ1bndUEYW .nav-dropdown .link {
  font-weight: 600;
}
.cid-uJ1bndUEYW .menu .navbar-brand .logo-text-part {
  vertical-align: top;
}
.cid-uJ1bndUEYW .content-left-side {
  text-align: center;
  padding-top: 3px;
  border-left: 1px solid #eee;
  border-right: 1px solid #eee;
  padding-left: 15px;
  padding-right: 15px;
}
@media (max-width: 575px) {
  .cid-uJ1bndUEYW .content-left-side {
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
    padding: 0.5rem 0;
  }
  .cid-uJ1bndUEYW .content-left-side .content-link {
    font-size: 0.8rem;
    margin: 0;
    padding-bottom: 1rem;
    display: flex;
    -webkit-box-pack: justify;
    justify-content: space-between;
  }
}
.cid-uJ1bndUEYW .content-left-side .content-link.display-4 {
  font-size: 16px !important;
}
.cid-uJ1bndUEYW .content-left-side .content-link {
  line-height: 3.4375;
}
.cid-uJ1bndUEYW .content-right-side {
  text-align: center;
}
@media (max-width: 575px) {
  .cid-uJ1bndUEYW .content-right-side {
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
    padding: 0.5rem 0;
  }
  .cid-uJ1bndUEYW .content-right-side .content-link {
    font-size: 0.8rem;
    margin: 0;
    padding-bottom: 1rem;
    display: flex;
    -webkit-box-pack: justify;
    justify-content: space-between;
  }
}
.cid-uJ1bndUEYW .menu-content-top {
  -webkit-transition: height 0.3s ease-in-out;
  transition: height 0.3s ease-in-out;
  padding-top: 0px;
}
.cid-uJ1bndUEYW .menu-content-bottom {
  padding-bottom: 0px;
}
@media (max-width: 1200px) {
  .cid-uJ1bndUEYW .menu-content-bottom {
    margin-bottom: 1rem;
  }
}
.cid-uJ1bndUEYW .menu-content-top.show {
  display: block;
}
.cid-uJ1bndUEYW .pre-header-right {
  align-self: center;
}
.cid-uJ1bndUEYW .pre-header-right .content-right-side .content-link {
  border-right: 1px solid #eee;
  -webkit-transition: 0.3s all;
  transition: 0.3s all;
  padding: 21px 12px;
}
.cid-uJ1bndUEYW .pre-header-right .content-right-side .content-link:hover {
  -webkit-transition: 0.3s all;
  transition: 0.3s all;
  background-color: #ffa600;
}
.cid-uJ1bndUEYW .pre-header-right .content-right-side .content-link:hover span {
  color: #000000;
}
.cid-uJ1bndUEYW .pre-header-right .content-right-side .content-link span {
  vertical-align: middle;
  font-size: 1.2rem;
  color: #777;
}
.cid-uJ1bndUEYW .pre-header-right .content-right-side .content-link:first-child {
  border-left: 1px solid #eee;
}
.cid-uJ1bndUEYW .pre-header-right .content-right-side .content-link:last-child {
  border-right: 1px solid #eee;
}
.cid-uJ1bndUEYW .navbar .menu-content-top {
  display: block;
  width: 100%;
}
@media (max-width: 1200px) {
  .cid-uJ1bndUEYW .content-left-side {
    text-align: center;
    padding-bottom: 1rem;
  }
  .cid-uJ1bndUEYW .navbar .menu-content-top {
    display: none;
  }
  .cid-uJ1bndUEYW .dropdown-item {
    padding: 0.235em 0 !important;
    margin: 0 !important;
    -webkit-transition: all 0.25s ease-in-out;
    -moz-transition: all 0.25s ease-in-out;
  }
  .cid-uJ1bndUEYW .dropdown-item:before {
    display: none;
  }
  .cid-uJ1bndUEYW .menu-logo {
    width: 100%;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    justify-content: space-between;
  }
  .cid-uJ1bndUEYW img {
    height: 3.8rem !important;
  }
  .cid-uJ1bndUEYW .btn {
    display: flex;
  }
  .cid-uJ1bndUEYW button.navbar-toggler {
    display: block;
    align-self: center;
  }
  .cid-uJ1bndUEYW .navbar-brand {
    margin-left: 1rem !important;
    margin-top: 0.5rem;
  }
  .cid-uJ1bndUEYW .navbar-toggleable-sm {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
  }
  .cid-uJ1bndUEYW .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-uJ1bndUEYW .navbar-collapse.collapsing,
  .cid-uJ1bndUEYW .navbar-collapse.show {
    display: block !important;
  }
  .cid-uJ1bndUEYW .navbar-collapse.collapsing .navbar-nav,
  .cid-uJ1bndUEYW .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: left;
  }
  .cid-uJ1bndUEYW .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-uJ1bndUEYW .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
    padding: 0.5rem 0;
  }
  .cid-uJ1bndUEYW .navbar-collapse.collapsing .navbar-buttons,
  .cid-uJ1bndUEYW .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-uJ1bndUEYW .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-uJ1bndUEYW .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-uJ1bndUEYW .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    -webkit-transition-duration: 0.5s;
    transition-duration: 0.5s;
    -webkit-transition-property: opacity, padding, height;
    transition-property: opacity, padding, height;
  }
  .cid-uJ1bndUEYW .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-uJ1bndUEYW .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-uJ1bndUEYW .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-uJ1bndUEYW .menu-content-middle {
    width: 100%;
  }
}
@media (min-width: 1200px) {
  .cid-uJ1bndUEYW .menu-content-top .row {
    -webkit-box-pack: justify;
    justify-content: space-between;
    flex-wrap: nowrap;
  }
  .cid-uJ1bndUEYW .content-right-side {
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: end;
    justify-content: flex-end;
    flex-basis: 70%;
    flex-shrink: 0;
    flex-wrap: wrap;
    text-align: right;
  }
  .cid-uJ1bndUEYW .content-left-side {
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: start;
    justify-content: flex-start;
    flex-basis: 70%;
    flex-shrink: 0;
    flex-wrap: wrap;
    text-align: right;
  }
  .cid-uJ1bndUEYW .menu-content-top {
    border-bottom: 1px solid rgba(0, 0, 0, 0.12);
  }
  .cid-uJ1bndUEYW .navbar {
    display: block;
    padding: 0;
  }
  .cid-uJ1bndUEYW .navbar .menu-logo {
    margin-right: auto;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
  }
  .cid-uJ1bndUEYW .navbar.navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
    -webkit-align-self: initial;
    align-self: auto;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    z-index: 101;
    min-height: 76px;
  }
  .cid-uJ1bndUEYW .navbar-toggler {
    display: none;
  }
}
.cid-uJ1bndUEYW .menu-area-wrapper {
  height: 39px;
  width: 100%;
}
.cid-uJ1bndUEYW .menu-area-wrapper .menu-area {
  background-color: #0c2c68;
  position: relative;
  z-index: 9;
  border-radius: 5px;
  line-height: normal !important;
}
@media (max-width: 1200px) {
  .cid-uJ1bndUEYW .menu-area-wrapper .menu-area {
    background: transparent;
  }
}
@media (max-width: 1200px) {
  .cid-uJ1bndUEYW .menu-area-wrapper {
    height: 100%;
  }
}
.cid-uJ1bndUEYW .navbar-short {
  background: transparent;
}
.cid-uJ1bndUEYW .navbar-short .menu-content-top,
.cid-uJ1bndUEYW .navbar-short .menu-content-middle {
  display: none;
}
@media (max-width: 1200px) {
  .cid-uJ1bndUEYW .navbar-short .menu-area-wrapper {
    margin-top: 5rem;
  }
}
.cid-uJ1bndUEYW .btn {
  padding: 0.7rem 1.5rem;
  display: inline-flex;
  -webkit-box-align: center;
  align-items: center;
}
.cid-uJ1bndUEYW .btn .mbr-iconfont {
  font-size: 1.2em;
}
.cid-uJ1bndUEYW .navbar-toggleable-sm .navbar-collapse {
  -webkit-box-pack: end;
  justify-content: flex-end;
}
@media (max-width: 1200px) {
  .cid-uJ1bndUEYW .navbar-toggleable-sm .navbar-collapse {
    width: 300px;
    height: 100%;
    margin-left: 1rem;
    margin-top: 1rem;
  }
}
.cid-uJ1bndUEYW .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  padding-left: 15px;
}
.cid-uJ1bndUEYW .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-uJ1bndUEYW .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-uJ1bndUEYW .dropdown {
  color: #3a341c !important;
}
.cid-uJ1bndUEYW .dropdown .dropdown-menu {
  background: #ffffff;
  display: none;
  position: absolute;
  border-top: 3px solid #0c2c68;
  min-width: 16.875rem;
  text-align: left;
  padding-top: 0;
  padding-bottom: 0;
  color: #3a341c !important;
}
@media (max-width: 1200px) {
  .cid-uJ1bndUEYW .dropdown .dropdown-menu {
    overflow: hidden;
    border-top: none;
    background: #232323 !important;
  }
}
.cid-uJ1bndUEYW .dropdown .dropdown-menu .dropdown-item {
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
  padding-left: 10px !important;
}
.cid-uJ1bndUEYW .dropdown .dropdown-menu .dropdown-item::after {
  right: 1rem;
}
.cid-uJ1bndUEYW .dropdown .dropdown-menu .dropdown-item:hover {
  background-color: #ffa600;
  color: #000000;
}
.cid-uJ1bndUEYW .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
@media (max-width: 1200px) {
  .cid-uJ1bndUEYW .dropdown .dropdown-menu .dropdown-item:hover {
    background-color: #232323;
  }
}
.cid-uJ1bndUEYW .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-uJ1bndUEYW .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  color: #000000;
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-uJ1bndUEYW .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-uJ1bndUEYW .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uJ1bndUEYW .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;
  display: none;
}
.cid-uJ1bndUEYW .navbar.navbar-short {
  min-height: 50px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.cid-uJ1bndUEYW .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  -webkit-transition: font-size 0.3s;
  transition: font-size 0.3s;
}
.cid-uJ1bndUEYW .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-uJ1bndUEYW .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-uJ1bndUEYW .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-uJ1bndUEYW button.navbar-toggler.collapsed .hamburger span {
  height: 2px;
}
.cid-uJ1bndUEYW button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.cid-uJ1bndUEYW button.navbar-toggler:focus {
  outline: none;
}
.cid-uJ1bndUEYW button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-radius: 20px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uJ1bndUEYW button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.cid-uJ1bndUEYW button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  -webkit-transition: all 0.15s;
  transition: all 0.15s;
}
.cid-uJ1bndUEYW button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  -webkit-transition: all 0.15s;
  transition: all 0.15s;
}
.cid-uJ1bndUEYW button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.cid-uJ1bndUEYW nav.opened .hamburger span {
  height: 4px;
  background-color: #ffffff;
}
.cid-uJ1bndUEYW nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}
.cid-uJ1bndUEYW nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  -webkit-transition: all 0.25s;
  transition: all 0.25s;
}
.cid-uJ1bndUEYW nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  -webkit-transition: all 0.25s;
  transition: all 0.25s;
}
.cid-uJ1bndUEYW nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.cid-uJ1bndUEYW .collapsed.navbar {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
}
.cid-uJ1bndUEYW .collapsed .menu-logo {
  margin-right: 0;
}
.cid-uJ1bndUEYW .collapsed .btn {
  display: flex;
}
.cid-uJ1bndUEYW .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-uJ1bndUEYW .collapsed .navbar-collapse.collapsing,
.cid-uJ1bndUEYW .collapsed .navbar-collapse.show {
  display: block !important;
  width: 100%;
}
.cid-uJ1bndUEYW .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-uJ1bndUEYW .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: left;
}
.cid-uJ1bndUEYW .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-uJ1bndUEYW .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-uJ1bndUEYW .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-uJ1bndUEYW .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-uJ1bndUEYW .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-uJ1bndUEYW .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
@media (min-width: 1200px) {
  .cid-uJ1bndUEYW .collapsed:not(.navbar-short) .navbar-collapse {
    max-height: calc(100vh - 8rem  - 3.5rem);
  }
  .cid-uJ1bndUEYW .collapsed .dropdown .dropdown-menu {
    overflow: hidden;
  }
}
.cid-uJ1bndUEYW .collapsed button.navbar-toggler {
  display: block;
  -webkit-align-self: center;
  align-self: center;
}
.cid-uJ1bndUEYW .collapsed .navbar-brand {
  margin-left: 1rem !important;
  margin-top: 0.5rem;
}
.cid-uJ1bndUEYW .collapsed .navbar-toggleable-sm {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
}
.cid-uJ1bndUEYW .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  -webkit-transition-duration: 0.25s;
  transition-duration: 0.25s;
  -webkit-transition-property: opacity, padding, height;
  transition-property: opacity, padding, height;
}
.cid-uJ1bndUEYW .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-uJ1bndUEYW .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-uJ1bndUEYW .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-uJ1bndUEYW .collapsed .dropdown-item:before {
  display: none;
}
.cid-uJ1bndUEYW .navbar-dropdown {
  padding: 0rem 1rem;
  flex-wrap: nowrap;
}
.cid-uJ1bndUEYW .navbar-collapse {
  flex-basis: auto;
  display: flex;
}
.cid-uJ1bndUEYW .nav-link:focus {
  outline: none;
}
.cid-uJ1bndUEYW .navbar-toggler {
  position: relative;
}
.cid-uJ1bndUEYW .dropdown-item.active,
.cid-uJ1bndUEYW .dropdown-item:active {
  color: auto;
}
.cid-uJ1bndUEYW .dropdown-item:hover {
  color: #ffa600;
}
.cid-uJ1bndUEYW .widget-title,
.cid-uJ1bndUEYW .widget-icon {
  color: #0c2c68;
}
.cid-uJ1bndUEYW .widget-text {
  color: #0c2c68;
}
.cid-uJ1lc6vjXC {
  padding-top: 3rem;
  padding-bottom: 1rem;
  background-image: url("../../../assets/images/wbg.jpg");
}
.cid-uJ1lc6vjXC .mbr-fallback-image.disabled {
  display: none;
}
.cid-uJ1lc6vjXC .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uJ1lc6vjXC .row {
  flex-direction: row-reverse;
}
.cid-uJ1mSoMcdi {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uJ1mSoMcdi .video-wrapper iframe {
  width: 100%;
}
.cid-uJ1mSoMcdi .mbr-section-title,
.cid-uJ1mSoMcdi .mbr-section-subtitle,
.cid-uJ1mSoMcdi .mbr-text {
  text-align: center;
}
.cid-uJ1mSoMcdi .mbr-section-title {
  color: #0c2c68;
}
.cid-uJ1mSoMcdi .mbr-section-subtitle {
  color: #ffa600;
}
.cid-uJ1mSoMcdi .mbr-text {
  color: #0c2c68;
}
.cid-uJ1xa31K05 {
  padding-top: 3rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-uJ1xa31K05 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uJ1xa31K05 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-uJ1xa31K05 .container {
    padding: 0 22px;
  }
}
.cid-uJ1xa31K05 .row {
  justify-content: space-between;
}
.cid-uJ1xa31K05 .row .card {
  justify-content: center;
}
.cid-uJ1xa31K05 .content-wrapper .mbr-section-title {
  margin-bottom: 32px;
}
.cid-uJ1xa31K05 .content-wrapper .mbr-text {
  margin-bottom: 22px;
}
.cid-uJ1xa31K05 .image-wrapper {
  position: relative;
}
@media (max-width: 992px) {
  .cid-uJ1xa31K05 .image-wrapper {
    margin-top: 32px;
  }
}
.cid-uJ1xa31K05 .image-wrapper img {
  height: 850px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-uJ1xa31K05 .image-wrapper img {
    height: 350px;
  }
}
.cid-uJ1xa31K05 .image-wrapper::before {
  content: '';
  position: absolute;
  bottom: -1px;
  left: -1px;
  height: 128px;
  width: 55%;
  border-radius: 0 7rem 0 0;
  background-color: #f4f3f4;
}
@media (max-width: 992px) {
  .cid-uJ1xa31K05 .image-wrapper::before {
    height: 70px;
  }
}
.cid-uJ1xa31K05 .mbr-section-title {
  color: #000000;
}
.cid-uJ1xa31K05 .mbr-text {
  color: #ffffff;
}
.cid-uJ1xa31K05 .mbr-section-title,
.cid-uJ1xa31K05 .mbr-section-btn {
  color: #ffffff;
}
.cid-uJ1BDo3naD {
  padding-top: 75px;
  padding-bottom: 75px;
  background-image: url("../../../assets/images/abc5.jpg");
}
.cid-uJ1BDo3naD .mbr-fallback-image.disabled {
  display: none;
}
.cid-uJ1BDo3naD .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (min-width: 992px) {
  .cid-uJ1BDo3naD .col-padding {
    padding-right: 4rem;
  }
}
.cid-uJ1BDo3naD .mbr-text1 {
  background: #9c98cf;
  padding: 2rem;
  margin-left: 0;
  margin-right: auto;
  border-radius: 3rem;
  margin-bottom: 2rem;
  border-bottom-left-radius: 0;
  color: #ffffff;
}
@media (min-width: 767px) {
  .cid-uJ1BDo3naD .mbr-text1 {
    max-width: 80%;
  }
}
.cid-uJ1BDo3naD .mbr-text2 {
  background: #ffa600;
  padding: 2rem;
  border-radius: 3rem;
  border-bottom-right-radius: 0;
  margin-right: 0;
  margin-bottom: 2rem;
  margin-left: auto;
  color: #0c2c68;
}
@media (min-width: 767px) {
  .cid-uJ1BDo3naD .mbr-text2 {
    max-width: 80%;
  }
}
.cid-uJ1BDo3naD .mbr-text3 {
  background: #ff526b;
  padding: 2rem;
  border-radius: 3rem;
  border-bottom-left-radius: 0;
  margin-left: 0;
  margin-bottom: 2rem;
  margin-right: auto;
  color: #ffffff;
}
@media (min-width: 767px) {
  .cid-uJ1BDo3naD .mbr-text3 {
    max-width: 80%;
  }
}
.cid-uJ1BDo3naD .mbr-section-title {
  color: #ffa600;
}
.cid-uJ1BDo3naD .mbr-text {
  color: #ffffff;
}
.cid-uJ1ZAuh0kn {
  padding-top: 6rem;
  padding-bottom: 2rem;
  background: #ffffff;
}
.cid-uJ1ZAuh0kn .mbr-fallback-image.disabled {
  display: none;
}
.cid-uJ1ZAuh0kn .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (min-width: 768px) {
  .cid-uJ1ZAuh0kn .container-fluid {
    padding: 0;
  }
}
.cid-uJ1ZAuh0kn .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 490px;
  max-width: 490px;
}
@media (max-width: 768px) {
  .cid-uJ1ZAuh0kn .embla__slide {
    min-width: 100%;
    max-width: 100%;
    margin-left: 1rem !important;
    margin-right: 1rem !important;
  }
}
.cid-uJ1ZAuh0kn .embla__button--next,
.cid-uJ1ZAuh0kn .embla__button--prev {
  display: flex;
}
.cid-uJ1ZAuh0kn .mobi-mbri-arrow-next {
  margin-left: 5px;
}
.cid-uJ1ZAuh0kn .mobi-mbri-arrow-prev {
  margin-right: 5px;
}
.cid-uJ1ZAuh0kn .embla__button {
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-uJ1ZAuh0kn .embla__button:disabled {
  cursor: default;
  display: none;
}
.cid-uJ1ZAuh0kn .embla__button.embla__button--prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uJ1ZAuh0kn .embla__button.embla__button--next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-uJ1ZAuh0kn .embla__button {
    top: auto;
    bottom: 1rem;
  }
}
.cid-uJ1ZAuh0kn .embla {
  position: relative;
  width: 100%;
}
.cid-uJ1ZAuh0kn .embla__viewport {
  overflow: hidden;
  width: 100%;
}
.cid-uJ1ZAuh0kn .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-uJ1ZAuh0kn .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-uJ1ZAuh0kn .embla__slide a {
  cursor: grab;
}
.cid-uJ1ZAuh0kn .embla__slide a:active {
  cursor: grabbing;
}
.cid-uJ1ZAuh0kn .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-uJ1ZAuh0kn .item-menu-overlay {
  border-radius: 2rem;
}
.cid-uJ1ZAuh0kn .mbr-section-title {
  color: #0c2c68;
}
.cid-uJ1ZAuh0kn .mbr-section-subtitle {
  color: #232323;
}
.cid-uJ1ZAuh0kn .mbr-box {
  color: #ffffff;
}
.cid-uJ1ZAuh0kn .slide-content {
  position: relative;
  border-radius: 4px;
  height: 100%;
  width: 100%;
  display: flex;
  overflow: hidden;
  flex-flow: column nowrap;
}
.cid-uJ1ZAuh0kn img,
.cid-uJ1ZAuh0kn .item-img {
  width: 100%;
}
.cid-uJ1ZAuh0kn .item-wrapper {
  position: relative;
}
.cid-uJ1ZAuh0kn .content-head {
  max-width: 800px;
}
.cid-uJ1G0W0eUZ {
  padding-top: 1rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uJ1G0W0eUZ .mbr-fallback-image.disabled {
  display: none;
}
.cid-uJ1G0W0eUZ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uJ1G0W0eUZ .row {
  justify-content: center;
}
.cid-uJ1G0W0eUZ .image-wrapper img {
  height: 700px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-uJ1G0W0eUZ .image-wrapper img {
    height: 300px;
  }
}
.cid-uJ1G0W0eUZ .card-wrapper {
  position: relative;
  padding: 64px;
  overflow: hidden;
  margin-top: -25%;
}
@media (max-width: 1440px) {
  .cid-uJ1G0W0eUZ .card-wrapper {
    padding: 32px;
  }
}
@media (max-width: 992px) {
  .cid-uJ1G0W0eUZ .card-wrapper {
    padding: 24px;
    margin-top: 12px;
  }
}
.cid-uJ1G0W0eUZ .card-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  backdrop-filter: blur(10px);
  pointer-events: none;
}
.cid-uJ1G0W0eUZ .card-wrapper::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #e5e5e5;
  opacity: .5;
  pointer-events: none;
}
.cid-uJ1G0W0eUZ .card-wrapper .mbr-section-title {
  position: relative;
  z-index: 1;
  margin-bottom: 48px;
}
@media (max-width: 992px) {
  .cid-uJ1G0W0eUZ .card-wrapper .mbr-section-title {
    margin-bottom: 24px;
  }
}
.cid-uJ1G0W0eUZ .card-wrapper .text-wrapper {
  position: relative;
  z-index: 1;
}
.cid-uJ1G0W0eUZ .card-wrapper .text-wrapper .mbr-text {
  display: inline-block;
  width: 80%;
  margin-bottom: 24px;
}
@media (max-width: 992px) {
  .cid-uJ1G0W0eUZ .card-wrapper .text-wrapper .mbr-text {
    width: 100%;
  }
}
.cid-uJ1G0W0eUZ .card-wrapper .mbr-section-btn {
  position: relative;
  z-index: 1;
}
.cid-uJ1G0W0eUZ .card-wrapper .mbr-section-btn .btn {
  margin-bottom: 0;
}
.cid-uJ1G0W0eUZ .mbr-section-title {
  color: #2c2c26;
}
.cid-uJ1G0W0eUZ .mbr-text,
.cid-uJ1G0W0eUZ .text-wrapper {
  color: #0c2c68;
  text-align: left;
}
.cid-uJ1G0W0eUZ .mbr-section-title,
.cid-uJ1G0W0eUZ .mbr-section-btn {
  text-align: left;
  color: #0c2c68;
}
.cid-uJ1bnjoLHB {
  padding-top: 5rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
  background: linear-gradient(180deg, #ffffff, #ffa600);
}
.cid-uJ1bnjoLHB .container {
  max-width: 1040px;
}
@media (max-width: 575px) {
  .cid-uJ1bnjoLHB .row {
    text-align: center!important;
  }
}
.cid-uJ1bnjoLHB .mbr-section-title {
  color: #4BFDB1;
}
@media (max-width: 575px) {
  .cid-uJ1bnjoLHB .mbr-section-title {
    text-align: center;
  }
}
.cid-uJ1bnjoLHB .mbr-section-subtitle {
  color: #000000;
}
.cid-uJ1bnjoLHB .mbr-text {
  color: #000000;
  margin-top: 28px;
}
.cid-uJ1bnjoLHB .mbr-section-btn {
  margin-top: 18px;
}
@media (max-width: 575px) {
  .cid-uJ1bnjoLHB .mbr-section-btn {
    display: flex;
    flex-wrap: wrap;
  }
  .cid-uJ1bnjoLHB .mbr-section-btn .btn {
    width: 100%;
  }
}
.cid-uJ1bnjoLHB .btn-primary-outline,
.cid-uJ1bnjoLHB .btn-secondary-outline,
.cid-uJ1bnjoLHB .btn-success-outline,
.cid-uJ1bnjoLHB .btn-info-outline,
.cid-uJ1bnjoLHB .btn-warning-outline,
.cid-uJ1bnjoLHB .btn-danger-outline,
.cid-uJ1bnjoLHB .btn-white-outline,
.cid-uJ1bnjoLHB .btn-black-outline {
  padding: 0;
  min-height: auto;
}
.cid-uJ1bnjoLHB .mbr-fallback-image.disabled {
  display: none;
}
.cid-uJ1bnjoLHB .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uJ1bnjoLHB .mbr-section-title,
.cid-uJ1bnjoLHB .mbr-section-btn {
  color: #0c2c68;
  text-align: left;
}
.cid-uJ1bnkgSbq {
  padding-top: 45px;
  padding-bottom: 30px;
  background-color: #0c2c68;
}
.cid-uJ1bnkgSbq .copyright {
  display: flex;
}
@media (max-width: 992px) {
  .cid-uJ1bnkgSbq .copyright {
    margin-bottom: 1rem;
  }
}
.cid-uJ1bnkgSbq .text-wrap {
  transition: all 0.3s;
  padding: 23px;
  bottom: 0;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: flex-end;
  width: 100%;
  overflow: hidden;
  position: relative;
}
.cid-uJ1bnkgSbq .text-wrap .icons-wrap .icon-wrapper {
  background: #06182d;
  display: flex;
  width: 31px;
  height: 31px;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  border: 2px solid #9c98cf;
  transition: all 0.3s;
  z-index: 4;
  cursor: pointer;
  margin: 0 0.2rem;
}
.cid-uJ1bnkgSbq .text-wrap .icons-wrap .icon-wrapper:hover {
  background: #ffa600;
  border-color: #ffa600;
}
.cid-uJ1bnkgSbq .text-wrap .icons-wrap .icon-wrapper:hover .link-icon {
  color: #ffffde;
}
.cid-uJ1bnkgSbq .text-wrap .icons-wrap .icon-wrapper .link-icon {
  display: inline-block;
  color: #ffffde;
  transition: all 0.3s;
  font-size: 14px;
  justify-content: center;
}
.cid-uJ1bnkgSbq .text-wrap .icons-wrap::before {
  height: 2px;
  width: 100%;
  top: 50%;
  right: 58%;
  position: absolute;
  display: inline-block;
  content: "";
  background-color: #9c98cf;
}
@media (max-width: 992px) {
  .cid-uJ1bnkgSbq .text-wrap .icons-wrap::before {
    display: none;
  }
}
.cid-uJ1bnkgSbq .text-wrap .icons-wrap::after {
  height: 2px;
  width: 100%;
  top: 50%;
  left: 58%;
  position: absolute;
  display: inline-block;
  content: "";
  background-color: #9c98cf;
}
@media (max-width: 992px) {
  .cid-uJ1bnkgSbq .text-wrap .icons-wrap::after {
    display: none;
  }
}
.cid-uJ4MiaeVZc .navbar {
  background: #ffffff;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  min-height: 77px;
}
@media (min-width: 1200px) {
  .cid-uJ4MiaeVZc .navbar .dropdown .dropdown-menu .dropdown-item {
    padding: 0.835em 2.5385em 0.835em 3.5385em !important;
    margin: 0 !important;
  }
  .cid-uJ4MiaeVZc .navbar .dropdown .dropdown-menu .dropdown-item:hover {
    padding: 0.835em 2.5385em 0.835em 3.8385em !important;
  }
}
.cid-uJ4MiaeVZc .menu-logo {
  display: flex;
  position: relative;
  -webkit-box-align: center;
  align-items: center;
  margin-right: auto;
}
.cid-uJ4MiaeVZc .menu-logo .navbar-brand {
  display: flex;
  padding: 0.5rem 0;
  -webkit-transition: padding 0.2s;
  transition: padding 0.2s;
  min-height: 3.8rem;
  -webkit-box-align: center;
  align-items: center;
}
.cid-uJ4MiaeVZc .menu-logo .navbar-brand .navbar-caption-wrap {
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: 0.3rem 0;
}
.cid-uJ4MiaeVZc .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-uJ4MiaeVZc .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  -webkit-transition: font-size 0.25s;
  transition: font-size 0.25s;
}
.cid-uJ4MiaeVZc .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
  width: auto;
}
.cid-uJ4MiaeVZc .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  -webkit-transition: font-size 0.25s;
  transition: font-size 0.25s;
}
.cid-uJ4MiaeVZc .navbar-dropdown.bg-color.transparent.opened {
  background: #ffffff;
}
.cid-uJ4MiaeVZc .navbar.opened {
  text-align: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
  margin-left: auto;
  max-width: 20rem;
  height: auto;
  -webkit-box-pack: start;
  justify-content: flex-start;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  background: #232323 !important;
}
.cid-uJ4MiaeVZc .navbar.opened .collapse .dropdown-item {
  color: #ffffff;
}
.cid-uJ4MiaeVZc .navbar.opened a.brand-link {
  color: #ffffff;
}
.cid-uJ4MiaeVZc .navbar-fixed-top.opened {
  position: relative;
}
.cid-uJ4MiaeVZc a {
  font-style: normal;
}
.cid-uJ4MiaeVZc .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: middle;
  position: relative;
  text-decoration: none;
}
.cid-uJ4MiaeVZc .nav-item a {
  padding: 0.4rem 0 !important;
}
.cid-uJ4MiaeVZc .nav-item .nav-link {
  color: #ffffff;
}
.cid-uJ4MiaeVZc .nav-item .nav-link.display-4 {
  font-size: 15px;
}
.cid-uJ4MiaeVZc .widget-icon {
  display: inline-block;
  padding: 0.9rem;
  font-size: 1.25rem;
  margin-right: 10px;
  color: #4f87fb;
  border-radius: 50%;
  border: 1px solid #eee;
  font-weight: bold;
}
.cid-uJ4MiaeVZc .info-widget {
  padding-left: 2rem;
  padding-top: 0.5rem;
  padding-right: 3rem;
}
.cid-uJ4MiaeVZc .menu-content-right {
  display: flex;
  padding: 28px 0;
  -webkit-box-align: center;
  align-items: center;
}
.cid-uJ4MiaeVZc .menu-content-right .info-widget:last-child {
  padding-right: 0;
}
.cid-uJ4MiaeVZc .menu-content-right .info-widget:first-child {
  padding-left: 0;
}
@media (max-width: 1200px) {
  .cid-uJ4MiaeVZc .menu-content-right {
    display: none;
  }
}
.cid-uJ4MiaeVZc .widget-content {
  display: inline-block;
  vertical-align: middle;
  text-align: left;
  padding-bottom: 0.7rem;
}
.cid-uJ4MiaeVZc .widget-content .widget-title {
  margin-bottom: 7px;
}
.cid-uJ4MiaeVZc .widget-content .widget-text {
  margin-bottom: 0;
}
.cid-uJ4MiaeVZc .widget-content .widget-text.display-4 {
  font-size: 13px;
}
.cid-uJ4MiaeVZc .right-box .navbar-buttons .content-link {
  color: #ffffff;
  border-left: 1px solid #3a341c;
}
.cid-uJ4MiaeVZc .right-box .navbar-buttons .content-link:first-child {
  border-left: none !important;
}
.cid-uJ4MiaeVZc .right-box .navbar-buttons .btn {
  margin: 0;
  padding: 1.89rem 1.5rem !important;
  border-radius: 0 5px 5px 0 !important;
}
.cid-uJ4MiaeVZc .right-box .navbar-buttons .btn.display-4 {
  font-size: 13px;
}
@media (max-width: 1200px) {
  .cid-uJ4MiaeVZc .right-box {
    display: none;
  }
}
.cid-uJ4MiaeVZc .dropdown-item:before {
  color: #000000;
  font-family: Material-Design-Icons !important;
  content: '\e716';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1.125rem;
  top: 1.1rem;
  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;
  transition: all 0.25s ease-in-out;
}
.cid-uJ4MiaeVZc .dropdown-item:hover:before {
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  width: 16px;
}
.cid-uJ4MiaeVZc .content-text {
  margin-bottom: 0;
}
.cid-uJ4MiaeVZc .navbar-nav {
  padding-left: 15px;
  position: relative;
  min-height: 60px;
  color: #ffffff;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  flex-direction: row;
}
@media (min-width: 1200px) {
  .cid-uJ4MiaeVZc .navbar-nav .main-menu-animated-line {
    position: absolute;
    left: 0;
    width: 0;
    height: 0;
    z-index: 100;
    border-top: 4px solid #0c2c68;
    -webkit-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-uJ4MiaeVZc .navbar-nav .main-menu-animated-line.bottom {
    bottom: 0;
  }
  .cid-uJ4MiaeVZc .navbar-nav .nav-item a {
    margin: 0 1.3rem !important;
  }
}
@media (max-width: 1200px) {
  .cid-uJ4MiaeVZc .navbar-nav .nav-item a {
    margin: 0 !important;
  }
}
.cid-uJ4MiaeVZc .navbar-nav .nav-item span {
  padding-right: 0.1rem;
}
.cid-uJ4MiaeVZc .display-4 > .mbr-iconfont {
  font-size: 1.8em;
}
.cid-uJ4MiaeVZc .display-4 > .btn > .mbr-iconfont {
  font-size: 1.43em;
}
.cid-uJ4MiaeVZc .nav-dropdown .dropdown-item {
  font-weight: 400;
}
.cid-uJ4MiaeVZc .navbar-buttons.mbr-section-btn {
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: center;
  justify-content: center;
}
.cid-uJ4MiaeVZc .navbar-buttons.mbr-section-btn > .mbr-iconfont {
  font-size: 17px !important;
  margin-right: 13px;
}
.cid-uJ4MiaeVZc .navbar-buttons.mbr-section-btn .content-link {
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-uJ4MiaeVZc .nav-dropdown .link {
  font-weight: 600;
}
.cid-uJ4MiaeVZc .menu .navbar-brand .logo-text-part {
  vertical-align: top;
}
.cid-uJ4MiaeVZc .content-left-side {
  text-align: center;
  padding-top: 3px;
  border-left: 1px solid #eee;
  border-right: 1px solid #eee;
  padding-left: 15px;
  padding-right: 15px;
}
@media (max-width: 575px) {
  .cid-uJ4MiaeVZc .content-left-side {
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
    padding: 0.5rem 0;
  }
  .cid-uJ4MiaeVZc .content-left-side .content-link {
    font-size: 0.8rem;
    margin: 0;
    padding-bottom: 1rem;
    display: flex;
    -webkit-box-pack: justify;
    justify-content: space-between;
  }
}
.cid-uJ4MiaeVZc .content-left-side .content-link.display-4 {
  font-size: 16px !important;
}
.cid-uJ4MiaeVZc .content-left-side .content-link {
  line-height: 3.4375;
}
.cid-uJ4MiaeVZc .content-right-side {
  text-align: center;
}
@media (max-width: 575px) {
  .cid-uJ4MiaeVZc .content-right-side {
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
    padding: 0.5rem 0;
  }
  .cid-uJ4MiaeVZc .content-right-side .content-link {
    font-size: 0.8rem;
    margin: 0;
    padding-bottom: 1rem;
    display: flex;
    -webkit-box-pack: justify;
    justify-content: space-between;
  }
}
.cid-uJ4MiaeVZc .menu-content-top {
  -webkit-transition: height 0.3s ease-in-out;
  transition: height 0.3s ease-in-out;
  padding-top: 0px;
}
.cid-uJ4MiaeVZc .menu-content-bottom {
  padding-bottom: 0px;
}
@media (max-width: 1200px) {
  .cid-uJ4MiaeVZc .menu-content-bottom {
    margin-bottom: 1rem;
  }
}
.cid-uJ4MiaeVZc .menu-content-top.show {
  display: block;
}
.cid-uJ4MiaeVZc .pre-header-right {
  align-self: center;
}
.cid-uJ4MiaeVZc .pre-header-right .content-right-side .content-link {
  border-right: 1px solid #eee;
  -webkit-transition: 0.3s all;
  transition: 0.3s all;
  padding: 21px 12px;
}
.cid-uJ4MiaeVZc .pre-header-right .content-right-side .content-link:hover {
  -webkit-transition: 0.3s all;
  transition: 0.3s all;
  background-color: #ffa600;
}
.cid-uJ4MiaeVZc .pre-header-right .content-right-side .content-link:hover span {
  color: #000000;
}
.cid-uJ4MiaeVZc .pre-header-right .content-right-side .content-link span {
  vertical-align: middle;
  font-size: 1.2rem;
  color: #777;
}
.cid-uJ4MiaeVZc .pre-header-right .content-right-side .content-link:first-child {
  border-left: 1px solid #eee;
}
.cid-uJ4MiaeVZc .pre-header-right .content-right-side .content-link:last-child {
  border-right: 1px solid #eee;
}
.cid-uJ4MiaeVZc .navbar .menu-content-top {
  display: block;
  width: 100%;
}
@media (max-width: 1200px) {
  .cid-uJ4MiaeVZc .content-left-side {
    text-align: center;
    padding-bottom: 1rem;
  }
  .cid-uJ4MiaeVZc .navbar .menu-content-top {
    display: none;
  }
  .cid-uJ4MiaeVZc .dropdown-item {
    padding: 0.235em 0 !important;
    margin: 0 !important;
    -webkit-transition: all 0.25s ease-in-out;
    -moz-transition: all 0.25s ease-in-out;
  }
  .cid-uJ4MiaeVZc .dropdown-item:before {
    display: none;
  }
  .cid-uJ4MiaeVZc .menu-logo {
    width: 100%;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    justify-content: space-between;
  }
  .cid-uJ4MiaeVZc img {
    height: 3.8rem !important;
  }
  .cid-uJ4MiaeVZc .btn {
    display: flex;
  }
  .cid-uJ4MiaeVZc button.navbar-toggler {
    display: block;
    align-self: center;
  }
  .cid-uJ4MiaeVZc .navbar-brand {
    margin-left: 1rem !important;
    margin-top: 0.5rem;
  }
  .cid-uJ4MiaeVZc .navbar-toggleable-sm {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
  }
  .cid-uJ4MiaeVZc .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-uJ4MiaeVZc .navbar-collapse.collapsing,
  .cid-uJ4MiaeVZc .navbar-collapse.show {
    display: block !important;
  }
  .cid-uJ4MiaeVZc .navbar-collapse.collapsing .navbar-nav,
  .cid-uJ4MiaeVZc .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: left;
  }
  .cid-uJ4MiaeVZc .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-uJ4MiaeVZc .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
    padding: 0.5rem 0;
  }
  .cid-uJ4MiaeVZc .navbar-collapse.collapsing .navbar-buttons,
  .cid-uJ4MiaeVZc .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-uJ4MiaeVZc .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-uJ4MiaeVZc .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-uJ4MiaeVZc .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    -webkit-transition-duration: 0.5s;
    transition-duration: 0.5s;
    -webkit-transition-property: opacity, padding, height;
    transition-property: opacity, padding, height;
  }
  .cid-uJ4MiaeVZc .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-uJ4MiaeVZc .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-uJ4MiaeVZc .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-uJ4MiaeVZc .menu-content-middle {
    width: 100%;
  }
}
@media (min-width: 1200px) {
  .cid-uJ4MiaeVZc .menu-content-top .row {
    -webkit-box-pack: justify;
    justify-content: space-between;
    flex-wrap: nowrap;
  }
  .cid-uJ4MiaeVZc .content-right-side {
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: end;
    justify-content: flex-end;
    flex-basis: 70%;
    flex-shrink: 0;
    flex-wrap: wrap;
    text-align: right;
  }
  .cid-uJ4MiaeVZc .content-left-side {
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: start;
    justify-content: flex-start;
    flex-basis: 70%;
    flex-shrink: 0;
    flex-wrap: wrap;
    text-align: right;
  }
  .cid-uJ4MiaeVZc .menu-content-top {
    border-bottom: 1px solid rgba(0, 0, 0, 0.12);
  }
  .cid-uJ4MiaeVZc .navbar {
    display: block;
    padding: 0;
  }
  .cid-uJ4MiaeVZc .navbar .menu-logo {
    margin-right: auto;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
  }
  .cid-uJ4MiaeVZc .navbar.navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
    -webkit-align-self: initial;
    align-self: auto;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    z-index: 101;
    min-height: 76px;
  }
  .cid-uJ4MiaeVZc .navbar-toggler {
    display: none;
  }
}
.cid-uJ4MiaeVZc .menu-area-wrapper {
  height: 39px;
  width: 100%;
}
.cid-uJ4MiaeVZc .menu-area-wrapper .menu-area {
  background-color: #0c2c68;
  position: relative;
  z-index: 9;
  border-radius: 5px;
  line-height: normal !important;
}
@media (max-width: 1200px) {
  .cid-uJ4MiaeVZc .menu-area-wrapper .menu-area {
    background: transparent;
  }
}
@media (max-width: 1200px) {
  .cid-uJ4MiaeVZc .menu-area-wrapper {
    height: 100%;
  }
}
.cid-uJ4MiaeVZc .navbar-short {
  background: transparent;
}
.cid-uJ4MiaeVZc .navbar-short .menu-content-top,
.cid-uJ4MiaeVZc .navbar-short .menu-content-middle {
  display: none;
}
@media (max-width: 1200px) {
  .cid-uJ4MiaeVZc .navbar-short .menu-area-wrapper {
    margin-top: 5rem;
  }
}
.cid-uJ4MiaeVZc .btn {
  padding: 0.7rem 1.5rem;
  display: inline-flex;
  -webkit-box-align: center;
  align-items: center;
}
.cid-uJ4MiaeVZc .btn .mbr-iconfont {
  font-size: 1.2em;
}
.cid-uJ4MiaeVZc .navbar-toggleable-sm .navbar-collapse {
  -webkit-box-pack: end;
  justify-content: flex-end;
}
@media (max-width: 1200px) {
  .cid-uJ4MiaeVZc .navbar-toggleable-sm .navbar-collapse {
    width: 300px;
    height: 100%;
    margin-left: 1rem;
    margin-top: 1rem;
  }
}
.cid-uJ4MiaeVZc .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  padding-left: 15px;
}
.cid-uJ4MiaeVZc .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-uJ4MiaeVZc .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-uJ4MiaeVZc .dropdown {
  color: #3a341c !important;
}
.cid-uJ4MiaeVZc .dropdown .dropdown-menu {
  background: #ffffff;
  display: none;
  position: absolute;
  border-top: 3px solid #0c2c68;
  min-width: 16.875rem;
  text-align: left;
  padding-top: 0;
  padding-bottom: 0;
  color: #3a341c !important;
}
@media (max-width: 1200px) {
  .cid-uJ4MiaeVZc .dropdown .dropdown-menu {
    overflow: hidden;
    border-top: none;
    background: #232323 !important;
  }
}
.cid-uJ4MiaeVZc .dropdown .dropdown-menu .dropdown-item {
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
  padding-left: 10px !important;
}
.cid-uJ4MiaeVZc .dropdown .dropdown-menu .dropdown-item::after {
  right: 1rem;
}
.cid-uJ4MiaeVZc .dropdown .dropdown-menu .dropdown-item:hover {
  background-color: #ffa600;
  color: #000000;
}
.cid-uJ4MiaeVZc .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
@media (max-width: 1200px) {
  .cid-uJ4MiaeVZc .dropdown .dropdown-menu .dropdown-item:hover {
    background-color: #232323;
  }
}
.cid-uJ4MiaeVZc .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-uJ4MiaeVZc .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  color: #000000;
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-uJ4MiaeVZc .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-uJ4MiaeVZc .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uJ4MiaeVZc .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;
  display: none;
}
.cid-uJ4MiaeVZc .navbar.navbar-short {
  min-height: 50px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.cid-uJ4MiaeVZc .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  -webkit-transition: font-size 0.3s;
  transition: font-size 0.3s;
}
.cid-uJ4MiaeVZc .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-uJ4MiaeVZc .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-uJ4MiaeVZc .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-uJ4MiaeVZc button.navbar-toggler.collapsed .hamburger span {
  height: 2px;
}
.cid-uJ4MiaeVZc button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.cid-uJ4MiaeVZc button.navbar-toggler:focus {
  outline: none;
}
.cid-uJ4MiaeVZc button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-radius: 20px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uJ4MiaeVZc button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.cid-uJ4MiaeVZc button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  -webkit-transition: all 0.15s;
  transition: all 0.15s;
}
.cid-uJ4MiaeVZc button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  -webkit-transition: all 0.15s;
  transition: all 0.15s;
}
.cid-uJ4MiaeVZc button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.cid-uJ4MiaeVZc nav.opened .hamburger span {
  height: 4px;
  background-color: #ffffff;
}
.cid-uJ4MiaeVZc nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}
.cid-uJ4MiaeVZc nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  -webkit-transition: all 0.25s;
  transition: all 0.25s;
}
.cid-uJ4MiaeVZc nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  -webkit-transition: all 0.25s;
  transition: all 0.25s;
}
.cid-uJ4MiaeVZc nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.cid-uJ4MiaeVZc .collapsed.navbar {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
}
.cid-uJ4MiaeVZc .collapsed .menu-logo {
  margin-right: 0;
}
.cid-uJ4MiaeVZc .collapsed .btn {
  display: flex;
}
.cid-uJ4MiaeVZc .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-uJ4MiaeVZc .collapsed .navbar-collapse.collapsing,
.cid-uJ4MiaeVZc .collapsed .navbar-collapse.show {
  display: block !important;
  width: 100%;
}
.cid-uJ4MiaeVZc .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-uJ4MiaeVZc .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: left;
}
.cid-uJ4MiaeVZc .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-uJ4MiaeVZc .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-uJ4MiaeVZc .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-uJ4MiaeVZc .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-uJ4MiaeVZc .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-uJ4MiaeVZc .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
@media (min-width: 1200px) {
  .cid-uJ4MiaeVZc .collapsed:not(.navbar-short) .navbar-collapse {
    max-height: calc(100vh - 8rem  - 3.5rem);
  }
  .cid-uJ4MiaeVZc .collapsed .dropdown .dropdown-menu {
    overflow: hidden;
  }
}
.cid-uJ4MiaeVZc .collapsed button.navbar-toggler {
  display: block;
  -webkit-align-self: center;
  align-self: center;
}
.cid-uJ4MiaeVZc .collapsed .navbar-brand {
  margin-left: 1rem !important;
  margin-top: 0.5rem;
}
.cid-uJ4MiaeVZc .collapsed .navbar-toggleable-sm {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
}
.cid-uJ4MiaeVZc .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  -webkit-transition-duration: 0.25s;
  transition-duration: 0.25s;
  -webkit-transition-property: opacity, padding, height;
  transition-property: opacity, padding, height;
}
.cid-uJ4MiaeVZc .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-uJ4MiaeVZc .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-uJ4MiaeVZc .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-uJ4MiaeVZc .collapsed .dropdown-item:before {
  display: none;
}
.cid-uJ4MiaeVZc .navbar-dropdown {
  padding: 0rem 1rem;
  flex-wrap: nowrap;
}
.cid-uJ4MiaeVZc .navbar-collapse {
  flex-basis: auto;
  display: flex;
}
.cid-uJ4MiaeVZc .nav-link:focus {
  outline: none;
}
.cid-uJ4MiaeVZc .navbar-toggler {
  position: relative;
}
.cid-uJ4MiaeVZc .dropdown-item.active,
.cid-uJ4MiaeVZc .dropdown-item:active {
  color: auto;
}
.cid-uJ4MiaeVZc .dropdown-item:hover {
  color: #ffa600;
}
.cid-uJ4MiaeVZc .widget-title,
.cid-uJ4MiaeVZc .widget-icon {
  color: #0c2c68;
}
.cid-uJ4MiaeVZc .widget-text {
  color: #0c2c68;
}
.cid-uJ4MibRx8d {
  padding-top: 3rem;
  padding-bottom: 1rem;
  background-image: url("../../../assets/images/wbg.jpg");
}
.cid-uJ4MibRx8d .mbr-fallback-image.disabled {
  display: none;
}
.cid-uJ4MibRx8d .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uJ4MibRx8d .row {
  flex-direction: row-reverse;
}
.cid-uJ6CnfbxKG {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #0c2c68;
  background-image: radial-gradient(circle farthest-side at 120% 20%, #9c98cf, #0c2c68 30%);
}
.cid-uJ6CnfbxKG .title-wrapper {
  margin-bottom: 22px;
}
.cid-uJ6CnfbxKG .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-uJ6CnfbxKG .title-wrapper .mbr-section-subtitle {
  margin-bottom: 0;
  background-image: linear-gradient(90deg, #ffffff, #9c98cf 60%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.cid-uJ6CnfbxKG .mbr-section-btn {
  text-align: right;
  margin-bottom: 22px;
}
@media (max-width: 992px) {
  .cid-uJ6CnfbxKG .mbr-section-btn {
    text-align: left;
  }
}
.cid-uJ6CnfbxKG .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 390px;
  max-width: 390px;
}
@media (max-width: 767px) {
  .cid-uJ6CnfbxKG .embla__slide {
    min-width: 100%;
    max-width: 100%;
  }
}
.cid-uJ6CnfbxKG .embla__slide .slide-content {
  width: 100%;
}
.cid-uJ6CnfbxKG .embla__slide .slide-content .item-wrapper {
  height: 100%;
}
.cid-uJ6CnfbxKG .embla__slide .slide-content .item-wrapper .item-img {
  margin-bottom: 22px;
}
.cid-uJ6CnfbxKG .embla__slide .slide-content .item-wrapper .item-img img {
  height: 250px;
  object-fit: cover;
}
.cid-uJ6CnfbxKG .embla__slide .slide-content .item-wrapper .item-content {
  position: relative;
  z-index: 1;
}
.cid-uJ6CnfbxKG .embla__slide .slide-content .item-wrapper .item-content .date-wrapper .item-wrap {
  display: inline-block;
  border: 1px solid #ffffff;
  padding: 2px 8px;
}
.cid-uJ6CnfbxKG .embla__slide .slide-content .item-wrapper .item-content .item-title {
  margin-bottom: 16px;
}
.cid-uJ6CnfbxKG .embla__slide .slide-content .item-wrapper .item-content .item-text {
  margin-bottom: 16px;
}
.cid-uJ6CnfbxKG .embla__slide .slide-content .item-wrapper .item-content .mbr-section-btn-item .btn {
  margin-left: 0;
}
.cid-uJ6CnfbxKG .embla__button--next,
.cid-uJ6CnfbxKG .embla__button--prev {
  display: flex;
}
.cid-uJ6CnfbxKG .embla__button {
  top: 0;
  width: 40px;
  height: 40px;
  font-size: 18px;
  background-color: #000000 !important;
  color: #ffffff !important;
  border: none !important;
  border-radius: 50%;
  transition: all 0.3s;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 1 !important;
  z-index: 2;
}
.cid-uJ6CnfbxKG .embla__button:disabled {
  cursor: default;
  display: none;
}
.cid-uJ6CnfbxKG .embla__button:hover {
  box-shadow: 0 0 33px 0 #000000;
}
.cid-uJ6CnfbxKG .embla__button.embla__button--prev {
  right: 50px;
}
.cid-uJ6CnfbxKG .embla__button.embla__button--prev .mbr-iconfont {
  margin-right: 4px;
}
.cid-uJ6CnfbxKG .embla__button.embla__button--next {
  right: 0;
}
.cid-uJ6CnfbxKG .embla__button.embla__button--next .mbr-iconfont {
  margin-left: 4px;
}
.cid-uJ6CnfbxKG .embla {
  position: relative;
  width: 100%;
  padding-top: 4rem;
  padding-bottom: 100px;
}
@media (max-width: 992px) {
  .cid-uJ6CnfbxKG .embla {
    padding-bottom: 32px;
  }
}
.cid-uJ6CnfbxKG .embla::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  background-image: radial-gradient(ellipse farthest-corner at 50% 50%, #ffffff 0%, transparent 50%);
  height: 1px;
  width: 100%;
}
.cid-uJ6CnfbxKG .embla__viewport {
  overflow: hidden;
  width: 100%;
  margin-right: 1rem;
}
.cid-uJ6CnfbxKG .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-uJ6CnfbxKG .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-uJ6CnfbxKG .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-uJ6CnfbxKG .item-menu-overlay {
  opacity: 0 !important;
}
.cid-uJ6CnfbxKG .mbr-section-title {
  color: #ffffff;
}
.cid-uJ6CnfbxKG .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uJ6CnfbxKG .item-wrap {
  color: #ffffff;
}
.cid-uJ6CnfbxKG .item-title {
  color: #ffffff;
}
.cid-uJ6CnfbxKG .item-text {
  color: #ffffff;
}
.cid-uJfRCqAjVt {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/mygas-airliquide-argon.jpg.webp");
}
.cid-uJfRCqAjVt .mbr-fallback-image.disabled {
  display: none;
}
.cid-uJfRCqAjVt .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uJfRCqAjVt .items-wrapper {
  justify-content: flex-end;
}
.cid-uJfRCqAjVt .items-wrapper .card {
  justify-content: center;
}
.cid-uJfRCqAjVt .content-wrapper {
  padding-right: 120px;
}
@media (max-width: 1440px) {
  .cid-uJfRCqAjVt .content-wrapper {
    padding-right: 60px;
  }
}
@media (max-width: 992px) {
  .cid-uJfRCqAjVt .content-wrapper {
    padding-right: 0;
    margin-bottom: 32px;
  }
}
.cid-uJfRCqAjVt .content-wrapper .mbr-section-title {
  margin-bottom: 24px;
}
.cid-uJfRCqAjVt .content-wrapper .mbr-section-title span {
  background: linear-gradient(170deg, #0c2c68, #113f96);
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent;
}
.cid-uJfRCqAjVt .content-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-uJfRCqAjVt .content-wrapper .mbr-section-btn {
  margin-top: 22px;
}
@media (max-width: 992px) {
  .cid-uJfRCqAjVt .content-wrapper .mbr-section-btn {
    margin-top: 16px;
  }
}
.cid-uJfRCqAjVt .image-wrapper {
  display: grid;
  grid-template-columns: .5fr 1fr;
  gap: 16px;
}
@media (max-width: 992px) {
  .cid-uJfRCqAjVt .image-wrapper {
    display: block;
  }
}
@media (max-width: 992px) {
  .cid-uJfRCqAjVt .image-wrapper .item {
    margin-bottom: 16px;
  }
  .cid-uJfRCqAjVt .image-wrapper .item:last-child {
    margin-bottom: 0;
  }
}
.cid-uJfRCqAjVt .image-wrapper .item .item-wrapper .item-img img {
  height: 200px;
  object-fit: cover;
  width: 100%;
}
.cid-uJfRCqAjVt .mbr-section-title {
  color: #ffffff;
}
.cid-uJfRCqAjVt .mbr-text {
  color: #ffffff;
}
.cid-uJfRCqAjVt .mbr-section-title,
.cid-uJfRCqAjVt .mbr-section-btn {
  color: #ffffff;
}
.cid-uJfVBtP3JL {
  padding-top: 7rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uJfVBtP3JL .mbr-fallback-image.disabled {
  display: none;
}
.cid-uJfVBtP3JL .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-uJfVBtP3JL .container {
    padding: 0 16px;
  }
}
.cid-uJfVBtP3JL .row {
  position: relative;
  z-index: 1;
}
.cid-uJfVBtP3JL .title-wrapper .subtitle-wrapper .mbr-section-subtitle {
  display: inline-flex;
  margin-bottom: 56px;
  padding: 18px 24px;
  border-radius: 16px !important;
  box-shadow: 6px 8px 0 0 #0c2c68;
  background-color: #ffa600;
  transform: rotate(4deg);
}
@media (max-width: 992px) {
  .cid-uJfVBtP3JL .title-wrapper .subtitle-wrapper .mbr-section-subtitle {
    margin-bottom: 32px;
  }
}
.cid-uJfVBtP3JL .title-wrapper .mbr-section-title {
  margin-bottom: 96px;
}
@media (max-width: 992px) {
  .cid-uJfVBtP3JL .title-wrapper .mbr-section-title {
    margin-bottom: 32px;
  }
}
.cid-uJfVBtP3JL .title-wrapper .text-wrapper .mbr-text {
  display: inline-flex;
  width: 50%;
  margin-bottom: 64px;
}
@media (max-width: 992px) {
  .cid-uJfVBtP3JL .title-wrapper .text-wrapper .mbr-text {
    width: 100%;
    margin-bottom: 32px;
  }
}
.cid-uJfVBtP3JL .tabs-wrapper .nav.nav-tabs {
  border: none;
  padding: 0;
  border-radius: 0 !important;
  background-color: transparent;
  display: block;
}
@media (max-width: 992px) {
  .cid-uJfVBtP3JL .tabs-wrapper .nav.nav-tabs {
    margin-bottom: 32px;
  }
}
.cid-uJfVBtP3JL .tabs-wrapper .nav.nav-tabs .nav-item {
  padding: 0;
  border: none;
  border-radius: 0;
  display: block;
  margin-bottom: 24px;
}
.cid-uJfVBtP3JL .tabs-wrapper .nav.nav-tabs .nav-item .nav-link {
  position: relative;
  padding: 24px 40px;
  margin-bottom: 0;
  border: none;
  color: #0c2c68;
  background-color: transparent;
  transition: all 0.3s ease-in-out;
  border-radius: 1rem !important;
}
@media (max-width: 992px) {
  .cid-uJfVBtP3JL .tabs-wrapper .nav.nav-tabs .nav-item .nav-link {
    padding: 14px 24px;
  }
}
.cid-uJfVBtP3JL .tabs-wrapper .nav.nav-tabs .nav-item .nav-link.active {
  background-color: #ffa600;
  box-shadow: 4px 6px 0 0 #0c2c68;
}
.cid-uJfVBtP3JL .tab-content {
  padding-left: 24px;
}
@media (max-width: 992px) {
  .cid-uJfVBtP3JL .tab-content {
    padding-left: 0;
  }
}
.cid-uJfVBtP3JL .tab-content .tab-pane .content-wrap {
  padding: 52px 32px 52px 72px;
  border-radius: 24px;
  background-color: #7787a5;
}
@media (max-width: 992px) {
  .cid-uJfVBtP3JL .tab-content .tab-pane .content-wrap {
    padding: 24px 16px 24px 32px;
  }
}
.cid-uJfVBtP3JL .tab-content .tab-pane .content-wrap .image-wrapper {
  margin-left: 72px;
  margin-bottom: 48px;
}
@media (max-width: 992px) {
  .cid-uJfVBtP3JL .tab-content .tab-pane .content-wrap .image-wrapper {
    margin-bottom: 24px;
    margin-left: 0;
  }
}
.cid-uJfVBtP3JL .tab-content .tab-pane .content-wrap .image-wrapper img {
  height: 390px;
  object-fit: cover;
  box-shadow: 4px 6px 0 0 #0c2c68;
}
.cid-uJfVBtP3JL .tab-content .tab-pane .content-wrap .text-wrap .item-text {
  display: inline-flex;
  margin-bottom: 0;
  width: 75%;
}
@media (max-width: 992px) {
  .cid-uJfVBtP3JL .tab-content .tab-pane .content-wrap .text-wrap .item-text {
    width: 100%;
  }
}
.cid-uJfVBtP3JL .mbr-section-title {
  color: #0c2c68;
}
.cid-uJfVBtP3JL .mbr-section-subtitle {
  color: #000000;
}
.cid-uJfVBtP3JL .mbr-text {
  color: #000000;
}
.cid-uJfVBtP3JL .item-text {
  color: #000000;
}
.cid-uJfVBtP3JL .mbr-text,
.cid-uJfVBtP3JL .text-wrapper {
  color: #0c2c68;
}
.cid-uJfVBtP3JL .item-text,
.cid-uJfVBtP3JL .text-wrap {
  color: #ffffff;
}
.cid-uJfPWmthia {
  padding-top: 90px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/gas-supply-modes-to-better-suit-customer-requirements.jpg");
}
.cid-uJfPWmthia .mbr-fallback-image.disabled {
  display: none;
}
.cid-uJfPWmthia .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uJfQ0rUC4U {
  padding-top: 60px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uJfQ0rUC4U .counter-container {
  color: #767676;
}
.cid-uJfQ0rUC4U .counter-container ul {
  margin-bottom: 0;
}
.cid-uJfQ0rUC4U .counter-container ul li {
  margin-bottom: 1rem;
  list-style: none;
  position: relative;
}
.cid-uJfQ0rUC4U .counter-container ul li:before {
  position: absolute;
  left: -56px;
  margin-top: -10px;
  padding-top: 3px;
  content: '';
  display: inline-block;
  text-align: center;
  margin: 5px 10px;
  line-height: 20px;
  transition: all .2s;
  color: #ffffff;
  background: #0c2c68;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  background: linear-gradient(135deg, #0c2c68, #9c98cf);
  content: '✓';
}
.cid-uJfQ0rUC4U .mbr-text {
  color: #0c2c68;
}
.cid-uJgiYv7QBI {
  padding-top: 3rem;
  padding-bottom: 3rem;
  overflow: hidden;
  background-color: #ffffff;
}
.cid-uJgiYv7QBI .mbr-fallback-image.disabled {
  display: none;
}
.cid-uJgiYv7QBI .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uJgiYv7QBI .container-fluid {
  padding: 0 64px;
}
@media (max-width: 992px) {
  .cid-uJgiYv7QBI .container-fluid {
    padding: 0 24px;
  }
}
@media (max-width: 992px) {
  .cid-uJgiYv7QBI .container {
    padding: 0 24px;
  }
}
.cid-uJgiYv7QBI .content-wrapper {
  padding: 32px;
  position: relative;
  display: flex;
  align-items: flex-end;
  min-height: 700px;
}
@media (max-width: 992px) {
  .cid-uJgiYv7QBI .content-wrapper {
    padding: 0;
  }
}
.cid-uJgiYv7QBI .content-wrapper img {
  position: absolute;
  top: 0;
  left: 0;
  border-radius: .75rem !important;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-uJgiYv7QBI .content-wrapper .card-wrap {
  position: relative;
  z-index: 1;
  display: inline-flex;
  flex-direction: column;
  width: 35%;
  padding: 32px;
  background-color: #ffffff;
  border-radius: .75rem !important;
}
@media (max-width: 1200px) {
  .cid-uJgiYv7QBI .content-wrapper .card-wrap {
    width: 50%;
  }
}
@media (max-width: 992px) {
  .cid-uJgiYv7QBI .content-wrapper .card-wrap {
    padding: 24px;
    width: 100%;
  }
}
.cid-uJgiYv7QBI .content-wrapper .card-wrap .icon-wrapper {
  margin-bottom: 24px;
}
.cid-uJgiYv7QBI .content-wrapper .card-wrap .icon-wrapper .mbr-iconfont {
  width: 64px;
  height: 64px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
  background-color: #ffa600;
  color: #ffffff;
  font-size: 32px;
}
.cid-uJgiYv7QBI .content-wrapper .card-wrap .mbr-section-title {
  margin-bottom: 24px;
}
.cid-uJgiYv7QBI .content-wrapper .card-wrap .mbr-text {
  margin-bottom: 0;
}
.cid-uJgiYv7QBI .mbr-section-title {
  color: #141414;
}
.cid-uJgiYv7QBI .mbr-desc {
  color: #141414;
}
.cid-uJgiYv7QBI .mbr-text {
  color: #0c2c68;
}
.cid-uJgiYv7QBI .mbr-section-title,
.cid-uJgiYv7QBI .icon-wrapper {
  color: #ffa600;
}
.cid-uKvuFlTkWN {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uKvuFlTkWN .mbr-fallback-image.disabled {
  display: none;
}
.cid-uKvuFlTkWN .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-uKvuFlTkWN .container {
    padding: 0 16px;
  }
}
@media (max-width: 992px) {
  .cid-uKvuFlTkWN .image-wrapper {
    margin-bottom: 40px;
  }
}
.cid-uKvuFlTkWN .image-wrapper img {
  height: 460px;
  object-fit: cover;
  border-radius: 16px;
}
@media (max-width: 992px) {
  .cid-uKvuFlTkWN .image-wrapper img {
    height: 300px;
  }
}
.cid-uKvuFlTkWN .card-wrapper {
  margin-top: 15%;
  padding-top: 120px;
  background-color: #0c2c68;
  border-radius: 40px;
}
@media (max-width: 992px) {
  .cid-uKvuFlTkWN .card-wrapper {
    margin-top: 0;
  }
}
@media (max-width: 768px) {
  .cid-uKvuFlTkWN .card-wrapper {
    margin-top: 0;
    padding-top: 20px;
  }
}
.cid-uKvuFlTkWN .card-wrapper .mbr-section-title {
  padding: 0 100px;
  margin-bottom: 40px;
}
@media (max-width: 768px) {
  .cid-uKvuFlTkWN .card-wrapper .mbr-section-title {
    margin-bottom: 20px;
    padding: 0 20px;
  }
}
.cid-uKvuFlTkWN .card-wrapper .mbr-text {
  padding: 0 100px;
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  .cid-uKvuFlTkWN .card-wrapper .mbr-text {
    padding: 0 20px;
  }
}
.cid-uKvuFlTkWN .card-wrapper .icon-wrapper {
  padding: 0 20px 20px;
}
.cid-uKvuFlTkWN .card-wrapper .icon-wrapper .mbr-iconfont {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 56px;
  width: 56px;
  background-color: #ffffff;
  color: #ffa600;
  font-size: 20px;
  border-radius: 50%;
}
@media (max-width: 992px) {
  .cid-uKvuFlTkWN .card-wrapper .icon-wrapper {
    display: none;
  }
}
.cid-uKvuFlTkWN .mbr-section-title {
  color: #ffffff;
}
.cid-uKvuFlTkWN .mbr-text {
  color: #ffffff;
}
.cid-uKvuFlTkWN .icon-wrapper {
  text-align: right;
}
.cid-uKvuFlTkWN .mbr-section-title,
.cid-uKvuFlTkWN .icon-wrapper {
  color: #ffa600;
}
.cid-uJdoJ16Fld {
  padding-top: 45px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
@media (min-width: 992px) {
  .cid-uJdoJ16Fld .content {
    max-width: 600px;
    margin: auto;
  }
}
@media (min-width: 767px) {
  .cid-uJdoJ16Fld .content {
    padding: 0 2rem;
  }
}
.cid-uJdoJ16Fld .img-col {
  padding: 0;
  margin: auto 0;
}
@media (max-width: 992px) {
  .cid-uJdoJ16Fld .content {
    margin: auto;
  }
}
.cid-uJdoJ16Fld li {
  list-style: none;
}
.cid-uJdoJ16Fld .item-wrap {
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  margin-bottom: 20px;
}
.cid-uJdoJ16Fld .item-wrap:hover .mbr-iconfont {
  color: #181818 !important;
}
.cid-uJdoJ16Fld .mbr-iconfont {
  font-size: 18px !important;
  padding-right: 12px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  font-weight: 900;
  color: #7aba59 !important;
}
.cid-uJdoJ16Fld h4 {
  margin: 0;
}
.cid-uJdoJ16Fld ul {
  padding: 0;
  margin: 0;
}
.cid-uJdoJ16Fld H2 {
  color: #ffa600;
}
.cid-uJdoJ16Fld .mbr-fallback-image.disabled {
  display: none;
}
.cid-uJdoJ16Fld .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uJdoJ16Fld H1 {
  color: #9c98cf;
}
.cid-uJdoJ16Fld .mbr-text,
.cid-uJdoJ16Fld .mbr-section-btn {
  color: #0c2c68;
}
.cid-uJdoJ16Fld .item1 {
  color: #0c2c68;
}
.cid-uJfJrUiJH1 {
  padding-top: 30px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-uJfJrUiJH1 li {
  list-style: none;
}
.cid-uJfJrUiJH1 .item-wrap {
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  margin-bottom: 20px;
}
.cid-uJfJrUiJH1 .item-wrap:hover .mbr-iconfont {
  color: #181818 !important;
}
.cid-uJfJrUiJH1 .mbr-iconfont {
  font-size: 22px !important;
  padding-right: 12px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  font-weight: 900;
  color: #ffa600 !important;
}
.cid-uJfJrUiJH1 h4 {
  margin: 0;
}
.cid-uJfJrUiJH1 ul {
  padding: 0;
  margin: 0;
}
@media (max-width: 768px) {
  .cid-uJfJrUiJH1 .md-pb {
    padding-bottom: 1rem;
  }
}
.cid-uJfJrUiJH1 .col-title2 {
  color: #ed6436;
}
.cid-uJfJrUiJH1 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uJfJrUiJH1 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uJfJrUiJH1 .item1 {
  color: #0c2c68;
}
.cid-uJfJrUiJH1 .col-title1 {
  color: #0c2c68;
}
.cid-uJfLPYZ2N9 {
  padding-top: 90px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/468443729-538530075727331-8539108304646246878-n.jpg");
}
.cid-uJfLPYZ2N9 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uJfLPYZ2N9 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uJfM17DvQK {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-uJfM17DvQK .counter-container {
  color: #767676;
}
.cid-uJfM17DvQK .counter-container ul {
  margin-bottom: 0;
}
.cid-uJfM17DvQK .counter-container ul li {
  margin-bottom: 1rem;
  list-style: none;
  position: relative;
}
.cid-uJfM17DvQK .counter-container ul li:before {
  position: absolute;
  left: -56px;
  margin-top: -10px;
  padding-top: 3px;
  content: '';
  display: inline-block;
  text-align: center;
  margin: 5px 10px;
  line-height: 20px;
  transition: all .2s;
  color: #ffffff;
  background: #0c2c68;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  background: linear-gradient(135deg, #0c2c68, #9c98cf);
  content: '✓';
}
.cid-uJfM17DvQK .mbr-text {
  color: #0c2c68;
}
.cid-uJ4MignLwu {
  padding-top: 5rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
  background: linear-gradient(180deg, #ffffff, #ffa600);
}
.cid-uJ4MignLwu .container {
  max-width: 1040px;
}
@media (max-width: 575px) {
  .cid-uJ4MignLwu .row {
    text-align: center!important;
  }
}
.cid-uJ4MignLwu .mbr-section-title {
  color: #4BFDB1;
}
@media (max-width: 575px) {
  .cid-uJ4MignLwu .mbr-section-title {
    text-align: center;
  }
}
.cid-uJ4MignLwu .mbr-section-subtitle {
  color: #000000;
}
.cid-uJ4MignLwu .mbr-text {
  color: #000000;
  margin-top: 28px;
}
.cid-uJ4MignLwu .mbr-section-btn {
  margin-top: 18px;
}
@media (max-width: 575px) {
  .cid-uJ4MignLwu .mbr-section-btn {
    display: flex;
    flex-wrap: wrap;
  }
  .cid-uJ4MignLwu .mbr-section-btn .btn {
    width: 100%;
  }
}
.cid-uJ4MignLwu .btn-primary-outline,
.cid-uJ4MignLwu .btn-secondary-outline,
.cid-uJ4MignLwu .btn-success-outline,
.cid-uJ4MignLwu .btn-info-outline,
.cid-uJ4MignLwu .btn-warning-outline,
.cid-uJ4MignLwu .btn-danger-outline,
.cid-uJ4MignLwu .btn-white-outline,
.cid-uJ4MignLwu .btn-black-outline {
  padding: 0;
  min-height: auto;
}
.cid-uJ4MignLwu .mbr-fallback-image.disabled {
  display: none;
}
.cid-uJ4MignLwu .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uJ4MignLwu .mbr-section-title,
.cid-uJ4MignLwu .mbr-section-btn {
  color: #0c2c68;
  text-align: left;
}
.cid-uJ4Mih54zR {
  padding-top: 45px;
  padding-bottom: 30px;
  background-color: #0c2c68;
}
.cid-uJ4Mih54zR .copyright {
  display: flex;
}
@media (max-width: 992px) {
  .cid-uJ4Mih54zR .copyright {
    margin-bottom: 1rem;
  }
}
.cid-uJ4Mih54zR .text-wrap {
  transition: all 0.3s;
  padding: 23px;
  bottom: 0;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: flex-end;
  width: 100%;
  overflow: hidden;
  position: relative;
}
.cid-uJ4Mih54zR .text-wrap .icons-wrap .icon-wrapper {
  background: #06182d;
  display: flex;
  width: 31px;
  height: 31px;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  border: 2px solid #9c98cf;
  transition: all 0.3s;
  z-index: 4;
  cursor: pointer;
  margin: 0 0.2rem;
}
.cid-uJ4Mih54zR .text-wrap .icons-wrap .icon-wrapper:hover {
  background: #ffa600;
  border-color: #ffa600;
}
.cid-uJ4Mih54zR .text-wrap .icons-wrap .icon-wrapper:hover .link-icon {
  color: #ffffde;
}
.cid-uJ4Mih54zR .text-wrap .icons-wrap .icon-wrapper .link-icon {
  display: inline-block;
  color: #ffffde;
  transition: all 0.3s;
  font-size: 14px;
  justify-content: center;
}
.cid-uJ4Mih54zR .text-wrap .icons-wrap::before {
  height: 2px;
  width: 100%;
  top: 50%;
  right: 58%;
  position: absolute;
  display: inline-block;
  content: "";
  background-color: #9c98cf;
}
@media (max-width: 992px) {
  .cid-uJ4Mih54zR .text-wrap .icons-wrap::before {
    display: none;
  }
}
.cid-uJ4Mih54zR .text-wrap .icons-wrap::after {
  height: 2px;
  width: 100%;
  top: 50%;
  left: 58%;
  position: absolute;
  display: inline-block;
  content: "";
  background-color: #9c98cf;
}
@media (max-width: 992px) {
  .cid-uJ4Mih54zR .text-wrap .icons-wrap::after {
    display: none;
  }
}
.cid-uJh2aq5EiV .navbar {
  background: #ffffff;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  min-height: 77px;
}
@media (min-width: 1200px) {
  .cid-uJh2aq5EiV .navbar .dropdown .dropdown-menu .dropdown-item {
    padding: 0.835em 2.5385em 0.835em 3.5385em !important;
    margin: 0 !important;
  }
  .cid-uJh2aq5EiV .navbar .dropdown .dropdown-menu .dropdown-item:hover {
    padding: 0.835em 2.5385em 0.835em 3.8385em !important;
  }
}
.cid-uJh2aq5EiV .menu-logo {
  display: flex;
  position: relative;
  -webkit-box-align: center;
  align-items: center;
  margin-right: auto;
}
.cid-uJh2aq5EiV .menu-logo .navbar-brand {
  display: flex;
  padding: 0.5rem 0;
  -webkit-transition: padding 0.2s;
  transition: padding 0.2s;
  min-height: 3.8rem;
  -webkit-box-align: center;
  align-items: center;
}
.cid-uJh2aq5EiV .menu-logo .navbar-brand .navbar-caption-wrap {
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: 0.3rem 0;
}
.cid-uJh2aq5EiV .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-uJh2aq5EiV .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  -webkit-transition: font-size 0.25s;
  transition: font-size 0.25s;
}
.cid-uJh2aq5EiV .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
  width: auto;
}
.cid-uJh2aq5EiV .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  -webkit-transition: font-size 0.25s;
  transition: font-size 0.25s;
}
.cid-uJh2aq5EiV .navbar-dropdown.bg-color.transparent.opened {
  background: #ffffff;
}
.cid-uJh2aq5EiV .navbar.opened {
  text-align: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
  margin-left: auto;
  max-width: 20rem;
  height: auto;
  -webkit-box-pack: start;
  justify-content: flex-start;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  background: #232323 !important;
}
.cid-uJh2aq5EiV .navbar.opened .collapse .dropdown-item {
  color: #ffffff;
}
.cid-uJh2aq5EiV .navbar.opened a.brand-link {
  color: #ffffff;
}
.cid-uJh2aq5EiV .navbar-fixed-top.opened {
  position: relative;
}
.cid-uJh2aq5EiV a {
  font-style: normal;
}
.cid-uJh2aq5EiV .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: middle;
  position: relative;
  text-decoration: none;
}
.cid-uJh2aq5EiV .nav-item a {
  padding: 0.4rem 0 !important;
}
.cid-uJh2aq5EiV .nav-item .nav-link {
  color: #ffffff;
}
.cid-uJh2aq5EiV .nav-item .nav-link.display-4 {
  font-size: 15px;
}
.cid-uJh2aq5EiV .widget-icon {
  display: inline-block;
  padding: 0.9rem;
  font-size: 1.25rem;
  margin-right: 10px;
  color: #4f87fb;
  border-radius: 50%;
  border: 1px solid #eee;
  font-weight: bold;
}
.cid-uJh2aq5EiV .info-widget {
  padding-left: 2rem;
  padding-top: 0.5rem;
  padding-right: 3rem;
}
.cid-uJh2aq5EiV .menu-content-right {
  display: flex;
  padding: 28px 0;
  -webkit-box-align: center;
  align-items: center;
}
.cid-uJh2aq5EiV .menu-content-right .info-widget:last-child {
  padding-right: 0;
}
.cid-uJh2aq5EiV .menu-content-right .info-widget:first-child {
  padding-left: 0;
}
@media (max-width: 1200px) {
  .cid-uJh2aq5EiV .menu-content-right {
    display: none;
  }
}
.cid-uJh2aq5EiV .widget-content {
  display: inline-block;
  vertical-align: middle;
  text-align: left;
  padding-bottom: 0.7rem;
}
.cid-uJh2aq5EiV .widget-content .widget-title {
  margin-bottom: 7px;
}
.cid-uJh2aq5EiV .widget-content .widget-text {
  margin-bottom: 0;
}
.cid-uJh2aq5EiV .widget-content .widget-text.display-4 {
  font-size: 13px;
}
.cid-uJh2aq5EiV .right-box .navbar-buttons .content-link {
  color: #ffffff;
  border-left: 1px solid #3a341c;
}
.cid-uJh2aq5EiV .right-box .navbar-buttons .content-link:first-child {
  border-left: none !important;
}
.cid-uJh2aq5EiV .right-box .navbar-buttons .btn {
  margin: 0;
  padding: 1.89rem 1.5rem !important;
  border-radius: 0 5px 5px 0 !important;
}
.cid-uJh2aq5EiV .right-box .navbar-buttons .btn.display-4 {
  font-size: 13px;
}
@media (max-width: 1200px) {
  .cid-uJh2aq5EiV .right-box {
    display: none;
  }
}
.cid-uJh2aq5EiV .dropdown-item:before {
  color: #000000;
  font-family: Material-Design-Icons !important;
  content: '\e716';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1.125rem;
  top: 1.1rem;
  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;
  transition: all 0.25s ease-in-out;
}
.cid-uJh2aq5EiV .dropdown-item:hover:before {
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  width: 16px;
}
.cid-uJh2aq5EiV .content-text {
  margin-bottom: 0;
}
.cid-uJh2aq5EiV .navbar-nav {
  padding-left: 15px;
  position: relative;
  min-height: 60px;
  color: #ffffff;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  flex-direction: row;
}
@media (min-width: 1200px) {
  .cid-uJh2aq5EiV .navbar-nav .main-menu-animated-line {
    position: absolute;
    left: 0;
    width: 0;
    height: 0;
    z-index: 100;
    border-top: 4px solid #0c2c68;
    -webkit-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-uJh2aq5EiV .navbar-nav .main-menu-animated-line.bottom {
    bottom: 0;
  }
  .cid-uJh2aq5EiV .navbar-nav .nav-item a {
    margin: 0 1.3rem !important;
  }
}
@media (max-width: 1200px) {
  .cid-uJh2aq5EiV .navbar-nav .nav-item a {
    margin: 0 !important;
  }
}
.cid-uJh2aq5EiV .navbar-nav .nav-item span {
  padding-right: 0.1rem;
}
.cid-uJh2aq5EiV .display-4 > .mbr-iconfont {
  font-size: 1.8em;
}
.cid-uJh2aq5EiV .display-4 > .btn > .mbr-iconfont {
  font-size: 1.43em;
}
.cid-uJh2aq5EiV .nav-dropdown .dropdown-item {
  font-weight: 400;
}
.cid-uJh2aq5EiV .navbar-buttons.mbr-section-btn {
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: center;
  justify-content: center;
}
.cid-uJh2aq5EiV .navbar-buttons.mbr-section-btn > .mbr-iconfont {
  font-size: 17px !important;
  margin-right: 13px;
}
.cid-uJh2aq5EiV .navbar-buttons.mbr-section-btn .content-link {
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-uJh2aq5EiV .nav-dropdown .link {
  font-weight: 600;
}
.cid-uJh2aq5EiV .menu .navbar-brand .logo-text-part {
  vertical-align: top;
}
.cid-uJh2aq5EiV .content-left-side {
  text-align: center;
  padding-top: 3px;
  border-left: 1px solid #eee;
  border-right: 1px solid #eee;
  padding-left: 15px;
  padding-right: 15px;
}
@media (max-width: 575px) {
  .cid-uJh2aq5EiV .content-left-side {
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
    padding: 0.5rem 0;
  }
  .cid-uJh2aq5EiV .content-left-side .content-link {
    font-size: 0.8rem;
    margin: 0;
    padding-bottom: 1rem;
    display: flex;
    -webkit-box-pack: justify;
    justify-content: space-between;
  }
}
.cid-uJh2aq5EiV .content-left-side .content-link.display-4 {
  font-size: 16px !important;
}
.cid-uJh2aq5EiV .content-left-side .content-link {
  line-height: 3.4375;
}
.cid-uJh2aq5EiV .content-right-side {
  text-align: center;
}
@media (max-width: 575px) {
  .cid-uJh2aq5EiV .content-right-side {
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
    padding: 0.5rem 0;
  }
  .cid-uJh2aq5EiV .content-right-side .content-link {
    font-size: 0.8rem;
    margin: 0;
    padding-bottom: 1rem;
    display: flex;
    -webkit-box-pack: justify;
    justify-content: space-between;
  }
}
.cid-uJh2aq5EiV .menu-content-top {
  -webkit-transition: height 0.3s ease-in-out;
  transition: height 0.3s ease-in-out;
  padding-top: 0px;
}
.cid-uJh2aq5EiV .menu-content-bottom {
  padding-bottom: 0px;
}
@media (max-width: 1200px) {
  .cid-uJh2aq5EiV .menu-content-bottom {
    margin-bottom: 1rem;
  }
}
.cid-uJh2aq5EiV .menu-content-top.show {
  display: block;
}
.cid-uJh2aq5EiV .pre-header-right {
  align-self: center;
}
.cid-uJh2aq5EiV .pre-header-right .content-right-side .content-link {
  border-right: 1px solid #eee;
  -webkit-transition: 0.3s all;
  transition: 0.3s all;
  padding: 21px 12px;
}
.cid-uJh2aq5EiV .pre-header-right .content-right-side .content-link:hover {
  -webkit-transition: 0.3s all;
  transition: 0.3s all;
  background-color: #ffa600;
}
.cid-uJh2aq5EiV .pre-header-right .content-right-side .content-link:hover span {
  color: #000000;
}
.cid-uJh2aq5EiV .pre-header-right .content-right-side .content-link span {
  vertical-align: middle;
  font-size: 1.2rem;
  color: #777;
}
.cid-uJh2aq5EiV .pre-header-right .content-right-side .content-link:first-child {
  border-left: 1px solid #eee;
}
.cid-uJh2aq5EiV .pre-header-right .content-right-side .content-link:last-child {
  border-right: 1px solid #eee;
}
.cid-uJh2aq5EiV .navbar .menu-content-top {
  display: block;
  width: 100%;
}
@media (max-width: 1200px) {
  .cid-uJh2aq5EiV .content-left-side {
    text-align: center;
    padding-bottom: 1rem;
  }
  .cid-uJh2aq5EiV .navbar .menu-content-top {
    display: none;
  }
  .cid-uJh2aq5EiV .dropdown-item {
    padding: 0.235em 0 !important;
    margin: 0 !important;
    -webkit-transition: all 0.25s ease-in-out;
    -moz-transition: all 0.25s ease-in-out;
  }
  .cid-uJh2aq5EiV .dropdown-item:before {
    display: none;
  }
  .cid-uJh2aq5EiV .menu-logo {
    width: 100%;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    justify-content: space-between;
  }
  .cid-uJh2aq5EiV img {
    height: 3.8rem !important;
  }
  .cid-uJh2aq5EiV .btn {
    display: flex;
  }
  .cid-uJh2aq5EiV button.navbar-toggler {
    display: block;
    align-self: center;
  }
  .cid-uJh2aq5EiV .navbar-brand {
    margin-left: 1rem !important;
    margin-top: 0.5rem;
  }
  .cid-uJh2aq5EiV .navbar-toggleable-sm {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
  }
  .cid-uJh2aq5EiV .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-uJh2aq5EiV .navbar-collapse.collapsing,
  .cid-uJh2aq5EiV .navbar-collapse.show {
    display: block !important;
  }
  .cid-uJh2aq5EiV .navbar-collapse.collapsing .navbar-nav,
  .cid-uJh2aq5EiV .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: left;
  }
  .cid-uJh2aq5EiV .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-uJh2aq5EiV .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
    padding: 0.5rem 0;
  }
  .cid-uJh2aq5EiV .navbar-collapse.collapsing .navbar-buttons,
  .cid-uJh2aq5EiV .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-uJh2aq5EiV .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-uJh2aq5EiV .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-uJh2aq5EiV .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    -webkit-transition-duration: 0.5s;
    transition-duration: 0.5s;
    -webkit-transition-property: opacity, padding, height;
    transition-property: opacity, padding, height;
  }
  .cid-uJh2aq5EiV .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-uJh2aq5EiV .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-uJh2aq5EiV .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-uJh2aq5EiV .menu-content-middle {
    width: 100%;
  }
}
@media (min-width: 1200px) {
  .cid-uJh2aq5EiV .menu-content-top .row {
    -webkit-box-pack: justify;
    justify-content: space-between;
    flex-wrap: nowrap;
  }
  .cid-uJh2aq5EiV .content-right-side {
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: end;
    justify-content: flex-end;
    flex-basis: 70%;
    flex-shrink: 0;
    flex-wrap: wrap;
    text-align: right;
  }
  .cid-uJh2aq5EiV .content-left-side {
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: start;
    justify-content: flex-start;
    flex-basis: 70%;
    flex-shrink: 0;
    flex-wrap: wrap;
    text-align: right;
  }
  .cid-uJh2aq5EiV .menu-content-top {
    border-bottom: 1px solid rgba(0, 0, 0, 0.12);
  }
  .cid-uJh2aq5EiV .navbar {
    display: block;
    padding: 0;
  }
  .cid-uJh2aq5EiV .navbar .menu-logo {
    margin-right: auto;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
  }
  .cid-uJh2aq5EiV .navbar.navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
    -webkit-align-self: initial;
    align-self: auto;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    z-index: 101;
    min-height: 76px;
  }
  .cid-uJh2aq5EiV .navbar-toggler {
    display: none;
  }
}
.cid-uJh2aq5EiV .menu-area-wrapper {
  height: 39px;
  width: 100%;
}
.cid-uJh2aq5EiV .menu-area-wrapper .menu-area {
  background-color: #0c2c68;
  position: relative;
  z-index: 9;
  border-radius: 5px;
  line-height: normal !important;
}
@media (max-width: 1200px) {
  .cid-uJh2aq5EiV .menu-area-wrapper .menu-area {
    background: transparent;
  }
}
@media (max-width: 1200px) {
  .cid-uJh2aq5EiV .menu-area-wrapper {
    height: 100%;
  }
}
.cid-uJh2aq5EiV .navbar-short {
  background: transparent;
}
.cid-uJh2aq5EiV .navbar-short .menu-content-top,
.cid-uJh2aq5EiV .navbar-short .menu-content-middle {
  display: none;
}
@media (max-width: 1200px) {
  .cid-uJh2aq5EiV .navbar-short .menu-area-wrapper {
    margin-top: 5rem;
  }
}
.cid-uJh2aq5EiV .btn {
  padding: 0.7rem 1.5rem;
  display: inline-flex;
  -webkit-box-align: center;
  align-items: center;
}
.cid-uJh2aq5EiV .btn .mbr-iconfont {
  font-size: 1.2em;
}
.cid-uJh2aq5EiV .navbar-toggleable-sm .navbar-collapse {
  -webkit-box-pack: end;
  justify-content: flex-end;
}
@media (max-width: 1200px) {
  .cid-uJh2aq5EiV .navbar-toggleable-sm .navbar-collapse {
    width: 300px;
    height: 100%;
    margin-left: 1rem;
    margin-top: 1rem;
  }
}
.cid-uJh2aq5EiV .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  padding-left: 15px;
}
.cid-uJh2aq5EiV .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-uJh2aq5EiV .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-uJh2aq5EiV .dropdown {
  color: #3a341c !important;
}
.cid-uJh2aq5EiV .dropdown .dropdown-menu {
  background: #ffffff;
  display: none;
  position: absolute;
  border-top: 3px solid #0c2c68;
  min-width: 16.875rem;
  text-align: left;
  padding-top: 0;
  padding-bottom: 0;
  color: #3a341c !important;
}
@media (max-width: 1200px) {
  .cid-uJh2aq5EiV .dropdown .dropdown-menu {
    overflow: hidden;
    border-top: none;
    background: #232323 !important;
  }
}
.cid-uJh2aq5EiV .dropdown .dropdown-menu .dropdown-item {
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
  padding-left: 10px !important;
}
.cid-uJh2aq5EiV .dropdown .dropdown-menu .dropdown-item::after {
  right: 1rem;
}
.cid-uJh2aq5EiV .dropdown .dropdown-menu .dropdown-item:hover {
  background-color: #ffa600;
  color: #000000;
}
.cid-uJh2aq5EiV .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
@media (max-width: 1200px) {
  .cid-uJh2aq5EiV .dropdown .dropdown-menu .dropdown-item:hover {
    background-color: #232323;
  }
}
.cid-uJh2aq5EiV .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-uJh2aq5EiV .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  color: #000000;
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-uJh2aq5EiV .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-uJh2aq5EiV .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uJh2aq5EiV .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;
  display: none;
}
.cid-uJh2aq5EiV .navbar.navbar-short {
  min-height: 50px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.cid-uJh2aq5EiV .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  -webkit-transition: font-size 0.3s;
  transition: font-size 0.3s;
}
.cid-uJh2aq5EiV .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-uJh2aq5EiV .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-uJh2aq5EiV .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-uJh2aq5EiV button.navbar-toggler.collapsed .hamburger span {
  height: 2px;
}
.cid-uJh2aq5EiV button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.cid-uJh2aq5EiV button.navbar-toggler:focus {
  outline: none;
}
.cid-uJh2aq5EiV button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-radius: 20px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uJh2aq5EiV button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.cid-uJh2aq5EiV button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  -webkit-transition: all 0.15s;
  transition: all 0.15s;
}
.cid-uJh2aq5EiV button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  -webkit-transition: all 0.15s;
  transition: all 0.15s;
}
.cid-uJh2aq5EiV button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.cid-uJh2aq5EiV nav.opened .hamburger span {
  height: 4px;
  background-color: #ffffff;
}
.cid-uJh2aq5EiV nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}
.cid-uJh2aq5EiV nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  -webkit-transition: all 0.25s;
  transition: all 0.25s;
}
.cid-uJh2aq5EiV nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  -webkit-transition: all 0.25s;
  transition: all 0.25s;
}
.cid-uJh2aq5EiV nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.cid-uJh2aq5EiV .collapsed.navbar {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
}
.cid-uJh2aq5EiV .collapsed .menu-logo {
  margin-right: 0;
}
.cid-uJh2aq5EiV .collapsed .btn {
  display: flex;
}
.cid-uJh2aq5EiV .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-uJh2aq5EiV .collapsed .navbar-collapse.collapsing,
.cid-uJh2aq5EiV .collapsed .navbar-collapse.show {
  display: block !important;
  width: 100%;
}
.cid-uJh2aq5EiV .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-uJh2aq5EiV .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: left;
}
.cid-uJh2aq5EiV .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-uJh2aq5EiV .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-uJh2aq5EiV .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-uJh2aq5EiV .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-uJh2aq5EiV .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-uJh2aq5EiV .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
@media (min-width: 1200px) {
  .cid-uJh2aq5EiV .collapsed:not(.navbar-short) .navbar-collapse {
    max-height: calc(100vh - 8rem  - 3.5rem);
  }
  .cid-uJh2aq5EiV .collapsed .dropdown .dropdown-menu {
    overflow: hidden;
  }
}
.cid-uJh2aq5EiV .collapsed button.navbar-toggler {
  display: block;
  -webkit-align-self: center;
  align-self: center;
}
.cid-uJh2aq5EiV .collapsed .navbar-brand {
  margin-left: 1rem !important;
  margin-top: 0.5rem;
}
.cid-uJh2aq5EiV .collapsed .navbar-toggleable-sm {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
}
.cid-uJh2aq5EiV .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  -webkit-transition-duration: 0.25s;
  transition-duration: 0.25s;
  -webkit-transition-property: opacity, padding, height;
  transition-property: opacity, padding, height;
}
.cid-uJh2aq5EiV .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-uJh2aq5EiV .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-uJh2aq5EiV .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-uJh2aq5EiV .collapsed .dropdown-item:before {
  display: none;
}
.cid-uJh2aq5EiV .navbar-dropdown {
  padding: 0rem 1rem;
  flex-wrap: nowrap;
}
.cid-uJh2aq5EiV .navbar-collapse {
  flex-basis: auto;
  display: flex;
}
.cid-uJh2aq5EiV .nav-link:focus {
  outline: none;
}
.cid-uJh2aq5EiV .navbar-toggler {
  position: relative;
}
.cid-uJh2aq5EiV .dropdown-item.active,
.cid-uJh2aq5EiV .dropdown-item:active {
  color: auto;
}
.cid-uJh2aq5EiV .dropdown-item:hover {
  color: #ffa600;
}
.cid-uJh2aq5EiV .widget-title,
.cid-uJh2aq5EiV .widget-icon {
  color: #0c2c68;
}
.cid-uJh2aq5EiV .widget-text {
  color: #0c2c68;
}
.cid-uJh2aqXwSd {
  padding-top: 3rem;
  padding-bottom: 1rem;
  background-image: url("../../../assets/images/wbg.jpg");
}
.cid-uJh2aqXwSd .mbr-fallback-image.disabled {
  display: none;
}
.cid-uJh2aqXwSd .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uJh2aqXwSd .row {
  flex-direction: row-reverse;
}
.cid-uKvkgIfJsQ {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uKvkgIfJsQ .mbr-fallback-image.disabled {
  display: none;
}
.cid-uKvkgIfJsQ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uKvkgIfJsQ .row {
  padding: 0 110px;
}
@media (max-width: 992px) {
  .cid-uKvkgIfJsQ .row {
    padding: 0 12px;
  }
}
.cid-uKvkgIfJsQ .text-wrapper {
  padding: 25px;
}
@media (max-width: 992px) {
  .cid-uKvkgIfJsQ .text-wrapper {
    padding: 0;
  }
}
.cid-uKvkgIfJsQ .text-wrapper .mbr-section-title {
  margin-bottom: 15px;
}
.cid-uKvkgIfJsQ .text-wrapper .mbr-section-title span {
  color: #9c98cf;
}
.cid-uKvkgIfJsQ .text-wrapper .mbr-text {
  margin-bottom: 16px;
}
.cid-uKvkgIfJsQ .image {
  position: relative;
}
.cid-uKvkgIfJsQ .image::before {
  content: '';
  position: absolute;
  bottom: 3rem;
  left: 0;
  width: 155px;
  height: 155px;
  background-color: transparent;
  border-radius: 100%;
  border: 20px solid #ffa600;
}
@media (max-width: 992px) {
  .cid-uKvkgIfJsQ .image::before {
    display: none;
  }
}
.cid-uKvkgIfJsQ .image::after {
  content: '';
  position: absolute;
  bottom: 5.93rem;
  left: 3rem;
  width: 60px;
  height: 60px;
  background-color: #ffa600;
  border-radius: 100%;
}
@media (max-width: 992px) {
  .cid-uKvkgIfJsQ .image::after {
    display: none;
  }
}
.cid-uKvkgIfJsQ .image-wrapper {
  position: relative;
  padding-top: 50%;
  width: fit-content;
}
@media (max-width: 992px) {
  .cid-uKvkgIfJsQ .image-wrapper {
    padding: 0;
    display: flex;
    justify-content: center;
    margin-bottom: 25px;
    width: auto;
  }
}
.cid-uKvkgIfJsQ .image-wrapper::before {
  content: '';
  position: absolute;
  right: -20rem;
  top: 13rem;
  display: block;
  width: 400px;
  height: 400px;
  border: 30px solid #ffa600;
  border-radius: 50%;
  background-color: transparent;
  z-index: 5;
}
@media (max-width: 992px) {
  .cid-uKvkgIfJsQ .image-wrapper::before {
    display: none;
  }
}
.cid-uKvkgIfJsQ .image-wrapper::after {
  content: '';
  position: absolute;
  right: -26rem;
  top: 6.7rem;
  display: block;
  width: 600px;
  height: 600px;
  border: 30px solid #ffa600;
  border-radius: 50%;
  background-color: transparent;
  z-index: 1;
}
@media (max-width: 992px) {
  .cid-uKvkgIfJsQ .image-wrapper::after {
    display: none;
  }
}
.cid-uKvkgIfJsQ .image-wrapper img {
  width: 400px;
  min-height: 600px;
  border-radius: 0 0 0 100%;
  z-index: 2;
  position: relative;
}
@media (max-width: 992px) {
  .cid-uKvkgIfJsQ .image-wrapper img {
    min-height: auto;
    width: 250px;
  }
}
.cid-uKvkgIfJsQ .mbr-section-title {
  color: #0c2c68;
}
.cid-uKvkgIfJsQ .mbr-text {
  color: #1e4381;
}
.cid-uP3OO41wCl {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
  overflow: hidden;
  box-sizing: border-box;
}
.cid-uP3OO41wCl .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-uP3OO41wCl .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uP3OO41wCl .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-uP3OO41wCl .mbr-gallery-item {
  width: 33.3%;
}
.cid-uP3OO41wCl .mbr-gallery-item:hover img {
  transform: scale(1.1);
}
@media (max-width: 767px) {
  .cid-uP3OO41wCl .mbr-gallery-item {
    width: 100%;
  }
}
.cid-uP3OO41wCl .container {
  padding-right: 6px;
  padding-left: 6px;
}
.cid-uP3OO41wCl .mbr-gallery-row {
  justify-content: center;
}
.cid-uP3OO41wCl .mbr-gallery-item > div:hover:before {
  z-index: 5;
}
.cid-uP3OO41wCl .mbr-gallery-item > div:hover .icon-focus {
  opacity: 0.8 !important;
}
.cid-uP3OO41wCl .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-uP3OO41wCl .mbr-gallery-item > div:hover:before {
  opacity: 0 !important;
}
.cid-uP3OO41wCl .icon-focus {
  font-family: 'Moririse2' !important;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 50px;
  width: 50px;
  background: white;
  border-radius: 6px;
}
.cid-uP3OO41wCl .icon-focus:before {
  content: '\e970';
  font-size: 1.2rem;
  color: black;
}
.cid-uP3OO41wCl .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-uP3OO41wCl .mbr-gallery-item > div {
  overflow: hidden;
}
.cid-uP3OO41wCl img {
  transition: all 2s !important;
}
.cid-uP3OO41wCl .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-uP3OO41wCl .mbr-gallery-title {
  font-size: 0.9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 5;
}
.cid-uP3OO41wCl .mbr-gallery-title:before {
  content: ' ';
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #000000 !important;
  opacity: 0;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-uJh2aA9x4w {
  padding-top: 5rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
  background: linear-gradient(180deg, #ffffff, #ffa600);
}
.cid-uJh2aA9x4w .container {
  max-width: 1040px;
}
@media (max-width: 575px) {
  .cid-uJh2aA9x4w .row {
    text-align: center!important;
  }
}
.cid-uJh2aA9x4w .mbr-section-title {
  color: #4BFDB1;
}
@media (max-width: 575px) {
  .cid-uJh2aA9x4w .mbr-section-title {
    text-align: center;
  }
}
.cid-uJh2aA9x4w .mbr-section-subtitle {
  color: #000000;
}
.cid-uJh2aA9x4w .mbr-text {
  color: #000000;
  margin-top: 28px;
}
.cid-uJh2aA9x4w .mbr-section-btn {
  margin-top: 18px;
}
@media (max-width: 575px) {
  .cid-uJh2aA9x4w .mbr-section-btn {
    display: flex;
    flex-wrap: wrap;
  }
  .cid-uJh2aA9x4w .mbr-section-btn .btn {
    width: 100%;
  }
}
.cid-uJh2aA9x4w .btn-primary-outline,
.cid-uJh2aA9x4w .btn-secondary-outline,
.cid-uJh2aA9x4w .btn-success-outline,
.cid-uJh2aA9x4w .btn-info-outline,
.cid-uJh2aA9x4w .btn-warning-outline,
.cid-uJh2aA9x4w .btn-danger-outline,
.cid-uJh2aA9x4w .btn-white-outline,
.cid-uJh2aA9x4w .btn-black-outline {
  padding: 0;
  min-height: auto;
}
.cid-uJh2aA9x4w .mbr-fallback-image.disabled {
  display: none;
}
.cid-uJh2aA9x4w .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uJh2aA9x4w .mbr-section-title,
.cid-uJh2aA9x4w .mbr-section-btn {
  color: #0c2c68;
  text-align: left;
}
.cid-uJh2aAQ5sa {
  padding-top: 45px;
  padding-bottom: 30px;
  background-color: #0c2c68;
}
.cid-uJh2aAQ5sa .copyright {
  display: flex;
}
@media (max-width: 992px) {
  .cid-uJh2aAQ5sa .copyright {
    margin-bottom: 1rem;
  }
}
.cid-uJh2aAQ5sa .text-wrap {
  transition: all 0.3s;
  padding: 23px;
  bottom: 0;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: flex-end;
  width: 100%;
  overflow: hidden;
  position: relative;
}
.cid-uJh2aAQ5sa .text-wrap .icons-wrap .icon-wrapper {
  background: #06182d;
  display: flex;
  width: 31px;
  height: 31px;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  border: 2px solid #9c98cf;
  transition: all 0.3s;
  z-index: 4;
  cursor: pointer;
  margin: 0 0.2rem;
}
.cid-uJh2aAQ5sa .text-wrap .icons-wrap .icon-wrapper:hover {
  background: #ffa600;
  border-color: #ffa600;
}
.cid-uJh2aAQ5sa .text-wrap .icons-wrap .icon-wrapper:hover .link-icon {
  color: #ffffde;
}
.cid-uJh2aAQ5sa .text-wrap .icons-wrap .icon-wrapper .link-icon {
  display: inline-block;
  color: #ffffde;
  transition: all 0.3s;
  font-size: 14px;
  justify-content: center;
}
.cid-uJh2aAQ5sa .text-wrap .icons-wrap::before {
  height: 2px;
  width: 100%;
  top: 50%;
  right: 58%;
  position: absolute;
  display: inline-block;
  content: "";
  background-color: #9c98cf;
}
@media (max-width: 992px) {
  .cid-uJh2aAQ5sa .text-wrap .icons-wrap::before {
    display: none;
  }
}
.cid-uJh2aAQ5sa .text-wrap .icons-wrap::after {
  height: 2px;
  width: 100%;
  top: 50%;
  left: 58%;
  position: absolute;
  display: inline-block;
  content: "";
  background-color: #9c98cf;
}
@media (max-width: 992px) {
  .cid-uJh2aAQ5sa .text-wrap .icons-wrap::after {
    display: none;
  }
}
.cid-uJlfERNi0C .navbar {
  background: #ffffff;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  min-height: 77px;
}
@media (min-width: 1200px) {
  .cid-uJlfERNi0C .navbar .dropdown .dropdown-menu .dropdown-item {
    padding: 0.835em 2.5385em 0.835em 3.5385em !important;
    margin: 0 !important;
  }
  .cid-uJlfERNi0C .navbar .dropdown .dropdown-menu .dropdown-item:hover {
    padding: 0.835em 2.5385em 0.835em 3.8385em !important;
  }
}
.cid-uJlfERNi0C .menu-logo {
  display: flex;
  position: relative;
  -webkit-box-align: center;
  align-items: center;
  margin-right: auto;
}
.cid-uJlfERNi0C .menu-logo .navbar-brand {
  display: flex;
  padding: 0.5rem 0;
  -webkit-transition: padding 0.2s;
  transition: padding 0.2s;
  min-height: 3.8rem;
  -webkit-box-align: center;
  align-items: center;
}
.cid-uJlfERNi0C .menu-logo .navbar-brand .navbar-caption-wrap {
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: 0.3rem 0;
}
.cid-uJlfERNi0C .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-uJlfERNi0C .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  -webkit-transition: font-size 0.25s;
  transition: font-size 0.25s;
}
.cid-uJlfERNi0C .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
  width: auto;
}
.cid-uJlfERNi0C .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  -webkit-transition: font-size 0.25s;
  transition: font-size 0.25s;
}
.cid-uJlfERNi0C .navbar-dropdown.bg-color.transparent.opened {
  background: #ffffff;
}
.cid-uJlfERNi0C .navbar.opened {
  text-align: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
  margin-left: auto;
  max-width: 20rem;
  height: auto;
  -webkit-box-pack: start;
  justify-content: flex-start;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  background: #232323 !important;
}
.cid-uJlfERNi0C .navbar.opened .collapse .dropdown-item {
  color: #ffffff;
}
.cid-uJlfERNi0C .navbar.opened a.brand-link {
  color: #ffffff;
}
.cid-uJlfERNi0C .navbar-fixed-top.opened {
  position: relative;
}
.cid-uJlfERNi0C a {
  font-style: normal;
}
.cid-uJlfERNi0C .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: middle;
  position: relative;
  text-decoration: none;
}
.cid-uJlfERNi0C .nav-item a {
  padding: 0.4rem 0 !important;
}
.cid-uJlfERNi0C .nav-item .nav-link {
  color: #ffffff;
}
.cid-uJlfERNi0C .nav-item .nav-link.display-4 {
  font-size: 15px;
}
.cid-uJlfERNi0C .widget-icon {
  display: inline-block;
  padding: 0.9rem;
  font-size: 1.25rem;
  margin-right: 10px;
  color: #4f87fb;
  border-radius: 50%;
  border: 1px solid #eee;
  font-weight: bold;
}
.cid-uJlfERNi0C .info-widget {
  padding-left: 2rem;
  padding-top: 0.5rem;
  padding-right: 3rem;
}
.cid-uJlfERNi0C .menu-content-right {
  display: flex;
  padding: 28px 0;
  -webkit-box-align: center;
  align-items: center;
}
.cid-uJlfERNi0C .menu-content-right .info-widget:last-child {
  padding-right: 0;
}
.cid-uJlfERNi0C .menu-content-right .info-widget:first-child {
  padding-left: 0;
}
@media (max-width: 1200px) {
  .cid-uJlfERNi0C .menu-content-right {
    display: none;
  }
}
.cid-uJlfERNi0C .widget-content {
  display: inline-block;
  vertical-align: middle;
  text-align: left;
  padding-bottom: 0.7rem;
}
.cid-uJlfERNi0C .widget-content .widget-title {
  margin-bottom: 7px;
}
.cid-uJlfERNi0C .widget-content .widget-text {
  margin-bottom: 0;
}
.cid-uJlfERNi0C .widget-content .widget-text.display-4 {
  font-size: 13px;
}
.cid-uJlfERNi0C .right-box .navbar-buttons .content-link {
  color: #ffffff;
  border-left: 1px solid #3a341c;
}
.cid-uJlfERNi0C .right-box .navbar-buttons .content-link:first-child {
  border-left: none !important;
}
.cid-uJlfERNi0C .right-box .navbar-buttons .btn {
  margin: 0;
  padding: 1.89rem 1.5rem !important;
  border-radius: 0 5px 5px 0 !important;
}
.cid-uJlfERNi0C .right-box .navbar-buttons .btn.display-4 {
  font-size: 13px;
}
@media (max-width: 1200px) {
  .cid-uJlfERNi0C .right-box {
    display: none;
  }
}
.cid-uJlfERNi0C .dropdown-item:before {
  color: #000000;
  font-family: Material-Design-Icons !important;
  content: '\e716';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1.125rem;
  top: 1.1rem;
  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;
  transition: all 0.25s ease-in-out;
}
.cid-uJlfERNi0C .dropdown-item:hover:before {
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  width: 16px;
}
.cid-uJlfERNi0C .content-text {
  margin-bottom: 0;
}
.cid-uJlfERNi0C .navbar-nav {
  padding-left: 15px;
  position: relative;
  min-height: 60px;
  color: #ffffff;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  flex-direction: row;
}
@media (min-width: 1200px) {
  .cid-uJlfERNi0C .navbar-nav .main-menu-animated-line {
    position: absolute;
    left: 0;
    width: 0;
    height: 0;
    z-index: 100;
    border-top: 4px solid #0c2c68;
    -webkit-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-uJlfERNi0C .navbar-nav .main-menu-animated-line.bottom {
    bottom: 0;
  }
  .cid-uJlfERNi0C .navbar-nav .nav-item a {
    margin: 0 1.3rem !important;
  }
}
@media (max-width: 1200px) {
  .cid-uJlfERNi0C .navbar-nav .nav-item a {
    margin: 0 !important;
  }
}
.cid-uJlfERNi0C .navbar-nav .nav-item span {
  padding-right: 0.1rem;
}
.cid-uJlfERNi0C .display-4 > .mbr-iconfont {
  font-size: 1.8em;
}
.cid-uJlfERNi0C .display-4 > .btn > .mbr-iconfont {
  font-size: 1.43em;
}
.cid-uJlfERNi0C .nav-dropdown .dropdown-item {
  font-weight: 400;
}
.cid-uJlfERNi0C .navbar-buttons.mbr-section-btn {
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: center;
  justify-content: center;
}
.cid-uJlfERNi0C .navbar-buttons.mbr-section-btn > .mbr-iconfont {
  font-size: 17px !important;
  margin-right: 13px;
}
.cid-uJlfERNi0C .navbar-buttons.mbr-section-btn .content-link {
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-uJlfERNi0C .nav-dropdown .link {
  font-weight: 600;
}
.cid-uJlfERNi0C .menu .navbar-brand .logo-text-part {
  vertical-align: top;
}
.cid-uJlfERNi0C .content-left-side {
  text-align: center;
  padding-top: 3px;
  border-left: 1px solid #eee;
  border-right: 1px solid #eee;
  padding-left: 15px;
  padding-right: 15px;
}
@media (max-width: 575px) {
  .cid-uJlfERNi0C .content-left-side {
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
    padding: 0.5rem 0;
  }
  .cid-uJlfERNi0C .content-left-side .content-link {
    font-size: 0.8rem;
    margin: 0;
    padding-bottom: 1rem;
    display: flex;
    -webkit-box-pack: justify;
    justify-content: space-between;
  }
}
.cid-uJlfERNi0C .content-left-side .content-link.display-4 {
  font-size: 16px !important;
}
.cid-uJlfERNi0C .content-left-side .content-link {
  line-height: 3.4375;
}
.cid-uJlfERNi0C .content-right-side {
  text-align: center;
}
@media (max-width: 575px) {
  .cid-uJlfERNi0C .content-right-side {
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
    padding: 0.5rem 0;
  }
  .cid-uJlfERNi0C .content-right-side .content-link {
    font-size: 0.8rem;
    margin: 0;
    padding-bottom: 1rem;
    display: flex;
    -webkit-box-pack: justify;
    justify-content: space-between;
  }
}
.cid-uJlfERNi0C .menu-content-top {
  -webkit-transition: height 0.3s ease-in-out;
  transition: height 0.3s ease-in-out;
  padding-top: 0px;
}
.cid-uJlfERNi0C .menu-content-bottom {
  padding-bottom: 0px;
}
@media (max-width: 1200px) {
  .cid-uJlfERNi0C .menu-content-bottom {
    margin-bottom: 1rem;
  }
}
.cid-uJlfERNi0C .menu-content-top.show {
  display: block;
}
.cid-uJlfERNi0C .pre-header-right {
  align-self: center;
}
.cid-uJlfERNi0C .pre-header-right .content-right-side .content-link {
  border-right: 1px solid #eee;
  -webkit-transition: 0.3s all;
  transition: 0.3s all;
  padding: 21px 12px;
}
.cid-uJlfERNi0C .pre-header-right .content-right-side .content-link:hover {
  -webkit-transition: 0.3s all;
  transition: 0.3s all;
  background-color: #ffa600;
}
.cid-uJlfERNi0C .pre-header-right .content-right-side .content-link:hover span {
  color: #000000;
}
.cid-uJlfERNi0C .pre-header-right .content-right-side .content-link span {
  vertical-align: middle;
  font-size: 1.2rem;
  color: #777;
}
.cid-uJlfERNi0C .pre-header-right .content-right-side .content-link:first-child {
  border-left: 1px solid #eee;
}
.cid-uJlfERNi0C .pre-header-right .content-right-side .content-link:last-child {
  border-right: 1px solid #eee;
}
.cid-uJlfERNi0C .navbar .menu-content-top {
  display: block;
  width: 100%;
}
@media (max-width: 1200px) {
  .cid-uJlfERNi0C .content-left-side {
    text-align: center;
    padding-bottom: 1rem;
  }
  .cid-uJlfERNi0C .navbar .menu-content-top {
    display: none;
  }
  .cid-uJlfERNi0C .dropdown-item {
    padding: 0.235em 0 !important;
    margin: 0 !important;
    -webkit-transition: all 0.25s ease-in-out;
    -moz-transition: all 0.25s ease-in-out;
  }
  .cid-uJlfERNi0C .dropdown-item:before {
    display: none;
  }
  .cid-uJlfERNi0C .menu-logo {
    width: 100%;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    justify-content: space-between;
  }
  .cid-uJlfERNi0C img {
    height: 3.8rem !important;
  }
  .cid-uJlfERNi0C .btn {
    display: flex;
  }
  .cid-uJlfERNi0C button.navbar-toggler {
    display: block;
    align-self: center;
  }
  .cid-uJlfERNi0C .navbar-brand {
    margin-left: 1rem !important;
    margin-top: 0.5rem;
  }
  .cid-uJlfERNi0C .navbar-toggleable-sm {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
  }
  .cid-uJlfERNi0C .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-uJlfERNi0C .navbar-collapse.collapsing,
  .cid-uJlfERNi0C .navbar-collapse.show {
    display: block !important;
  }
  .cid-uJlfERNi0C .navbar-collapse.collapsing .navbar-nav,
  .cid-uJlfERNi0C .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: left;
  }
  .cid-uJlfERNi0C .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-uJlfERNi0C .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
    padding: 0.5rem 0;
  }
  .cid-uJlfERNi0C .navbar-collapse.collapsing .navbar-buttons,
  .cid-uJlfERNi0C .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-uJlfERNi0C .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-uJlfERNi0C .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-uJlfERNi0C .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    -webkit-transition-duration: 0.5s;
    transition-duration: 0.5s;
    -webkit-transition-property: opacity, padding, height;
    transition-property: opacity, padding, height;
  }
  .cid-uJlfERNi0C .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-uJlfERNi0C .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-uJlfERNi0C .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-uJlfERNi0C .menu-content-middle {
    width: 100%;
  }
}
@media (min-width: 1200px) {
  .cid-uJlfERNi0C .menu-content-top .row {
    -webkit-box-pack: justify;
    justify-content: space-between;
    flex-wrap: nowrap;
  }
  .cid-uJlfERNi0C .content-right-side {
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: end;
    justify-content: flex-end;
    flex-basis: 70%;
    flex-shrink: 0;
    flex-wrap: wrap;
    text-align: right;
  }
  .cid-uJlfERNi0C .content-left-side {
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: start;
    justify-content: flex-start;
    flex-basis: 70%;
    flex-shrink: 0;
    flex-wrap: wrap;
    text-align: right;
  }
  .cid-uJlfERNi0C .menu-content-top {
    border-bottom: 1px solid rgba(0, 0, 0, 0.12);
  }
  .cid-uJlfERNi0C .navbar {
    display: block;
    padding: 0;
  }
  .cid-uJlfERNi0C .navbar .menu-logo {
    margin-right: auto;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
  }
  .cid-uJlfERNi0C .navbar.navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
    -webkit-align-self: initial;
    align-self: auto;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    z-index: 101;
    min-height: 76px;
  }
  .cid-uJlfERNi0C .navbar-toggler {
    display: none;
  }
}
.cid-uJlfERNi0C .menu-area-wrapper {
  height: 39px;
  width: 100%;
}
.cid-uJlfERNi0C .menu-area-wrapper .menu-area {
  background-color: #0c2c68;
  position: relative;
  z-index: 9;
  border-radius: 5px;
  line-height: normal !important;
}
@media (max-width: 1200px) {
  .cid-uJlfERNi0C .menu-area-wrapper .menu-area {
    background: transparent;
  }
}
@media (max-width: 1200px) {
  .cid-uJlfERNi0C .menu-area-wrapper {
    height: 100%;
  }
}
.cid-uJlfERNi0C .navbar-short {
  background: transparent;
}
.cid-uJlfERNi0C .navbar-short .menu-content-top,
.cid-uJlfERNi0C .navbar-short .menu-content-middle {
  display: none;
}
@media (max-width: 1200px) {
  .cid-uJlfERNi0C .navbar-short .menu-area-wrapper {
    margin-top: 5rem;
  }
}
.cid-uJlfERNi0C .btn {
  padding: 0.7rem 1.5rem;
  display: inline-flex;
  -webkit-box-align: center;
  align-items: center;
}
.cid-uJlfERNi0C .btn .mbr-iconfont {
  font-size: 1.2em;
}
.cid-uJlfERNi0C .navbar-toggleable-sm .navbar-collapse {
  -webkit-box-pack: end;
  justify-content: flex-end;
}
@media (max-width: 1200px) {
  .cid-uJlfERNi0C .navbar-toggleable-sm .navbar-collapse {
    width: 300px;
    height: 100%;
    margin-left: 1rem;
    margin-top: 1rem;
  }
}
.cid-uJlfERNi0C .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  padding-left: 15px;
}
.cid-uJlfERNi0C .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-uJlfERNi0C .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-uJlfERNi0C .dropdown {
  color: #3a341c !important;
}
.cid-uJlfERNi0C .dropdown .dropdown-menu {
  background: #ffffff;
  display: none;
  position: absolute;
  border-top: 3px solid #0c2c68;
  min-width: 16.875rem;
  text-align: left;
  padding-top: 0;
  padding-bottom: 0;
  color: #3a341c !important;
}
@media (max-width: 1200px) {
  .cid-uJlfERNi0C .dropdown .dropdown-menu {
    overflow: hidden;
    border-top: none;
    background: #232323 !important;
  }
}
.cid-uJlfERNi0C .dropdown .dropdown-menu .dropdown-item {
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
  padding-left: 10px !important;
}
.cid-uJlfERNi0C .dropdown .dropdown-menu .dropdown-item::after {
  right: 1rem;
}
.cid-uJlfERNi0C .dropdown .dropdown-menu .dropdown-item:hover {
  background-color: #ffa600;
  color: #000000;
}
.cid-uJlfERNi0C .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
@media (max-width: 1200px) {
  .cid-uJlfERNi0C .dropdown .dropdown-menu .dropdown-item:hover {
    background-color: #232323;
  }
}
.cid-uJlfERNi0C .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-uJlfERNi0C .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  color: #000000;
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-uJlfERNi0C .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-uJlfERNi0C .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uJlfERNi0C .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;
  display: none;
}
.cid-uJlfERNi0C .navbar.navbar-short {
  min-height: 50px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.cid-uJlfERNi0C .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  -webkit-transition: font-size 0.3s;
  transition: font-size 0.3s;
}
.cid-uJlfERNi0C .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-uJlfERNi0C .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-uJlfERNi0C .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-uJlfERNi0C button.navbar-toggler.collapsed .hamburger span {
  height: 2px;
}
.cid-uJlfERNi0C button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.cid-uJlfERNi0C button.navbar-toggler:focus {
  outline: none;
}
.cid-uJlfERNi0C button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-radius: 20px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uJlfERNi0C button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.cid-uJlfERNi0C button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  -webkit-transition: all 0.15s;
  transition: all 0.15s;
}
.cid-uJlfERNi0C button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  -webkit-transition: all 0.15s;
  transition: all 0.15s;
}
.cid-uJlfERNi0C button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.cid-uJlfERNi0C nav.opened .hamburger span {
  height: 4px;
  background-color: #ffffff;
}
.cid-uJlfERNi0C nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}
.cid-uJlfERNi0C nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  -webkit-transition: all 0.25s;
  transition: all 0.25s;
}
.cid-uJlfERNi0C nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  -webkit-transition: all 0.25s;
  transition: all 0.25s;
}
.cid-uJlfERNi0C nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.cid-uJlfERNi0C .collapsed.navbar {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
}
.cid-uJlfERNi0C .collapsed .menu-logo {
  margin-right: 0;
}
.cid-uJlfERNi0C .collapsed .btn {
  display: flex;
}
.cid-uJlfERNi0C .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-uJlfERNi0C .collapsed .navbar-collapse.collapsing,
.cid-uJlfERNi0C .collapsed .navbar-collapse.show {
  display: block !important;
  width: 100%;
}
.cid-uJlfERNi0C .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-uJlfERNi0C .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: left;
}
.cid-uJlfERNi0C .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-uJlfERNi0C .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-uJlfERNi0C .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-uJlfERNi0C .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-uJlfERNi0C .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-uJlfERNi0C .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
@media (min-width: 1200px) {
  .cid-uJlfERNi0C .collapsed:not(.navbar-short) .navbar-collapse {
    max-height: calc(100vh - 8rem  - 3.5rem);
  }
  .cid-uJlfERNi0C .collapsed .dropdown .dropdown-menu {
    overflow: hidden;
  }
}
.cid-uJlfERNi0C .collapsed button.navbar-toggler {
  display: block;
  -webkit-align-self: center;
  align-self: center;
}
.cid-uJlfERNi0C .collapsed .navbar-brand {
  margin-left: 1rem !important;
  margin-top: 0.5rem;
}
.cid-uJlfERNi0C .collapsed .navbar-toggleable-sm {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
}
.cid-uJlfERNi0C .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  -webkit-transition-duration: 0.25s;
  transition-duration: 0.25s;
  -webkit-transition-property: opacity, padding, height;
  transition-property: opacity, padding, height;
}
.cid-uJlfERNi0C .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-uJlfERNi0C .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-uJlfERNi0C .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-uJlfERNi0C .collapsed .dropdown-item:before {
  display: none;
}
.cid-uJlfERNi0C .navbar-dropdown {
  padding: 0rem 1rem;
  flex-wrap: nowrap;
}
.cid-uJlfERNi0C .navbar-collapse {
  flex-basis: auto;
  display: flex;
}
.cid-uJlfERNi0C .nav-link:focus {
  outline: none;
}
.cid-uJlfERNi0C .navbar-toggler {
  position: relative;
}
.cid-uJlfERNi0C .dropdown-item.active,
.cid-uJlfERNi0C .dropdown-item:active {
  color: auto;
}
.cid-uJlfERNi0C .dropdown-item:hover {
  color: #ffa600;
}
.cid-uJlfERNi0C .widget-title,
.cid-uJlfERNi0C .widget-icon {
  color: #0c2c68;
}
.cid-uJlfERNi0C .widget-text {
  color: #0c2c68;
}
.cid-uJlfESuoUm {
  padding-top: 3rem;
  padding-bottom: 1rem;
  background-image: url("../../../assets/images/wbg.jpg");
}
.cid-uJlfESuoUm .mbr-fallback-image.disabled {
  display: none;
}
.cid-uJlfESuoUm .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uJlfESuoUm .row {
  flex-direction: row-reverse;
}
.cid-uKvN9P67Wb {
  padding-top: 5rem;
  padding-bottom: 3rem;
  background-color: #edefeb;
}
.cid-uKvN9P67Wb .mbr-fallback-image.disabled {
  display: none;
}
.cid-uKvN9P67Wb .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-uKvN9P67Wb .container {
    padding: 0 24px;
  }
}
.cid-uKvN9P67Wb .row {
  justify-content: center;
}
.cid-uKvN9P67Wb .form-wrapper .row.dragArea .mbr-section-title {
  margin-bottom: 16px !important;
}
.cid-uKvN9P67Wb .form-wrapper .row.dragArea .mbr-text {
  margin-bottom: 32px !important;
}
.cid-uKvN9P67Wb .form-wrapper .row.dragArea .form-group {
  margin-bottom: 32px !important;
}
.cid-uKvN9P67Wb .form-wrapper .row.dragArea .form-group .form-control {
  background-color: #ffffff;
  padding: 32px;
  box-shadow: none;
  border: 2px solid transparent !important;
  border-radius: 16px !important;
  transition: all 0.3s ease-in-out;
}
@media (max-width: 992px) {
  .cid-uKvN9P67Wb .form-wrapper .row.dragArea .form-group .form-control {
    padding: 16px;
  }
}
.cid-uKvN9P67Wb .form-wrapper .row.dragArea .form-group .form-control::placeholder {
  color: #320707;
}
.cid-uKvN9P67Wb .form-wrapper .row.dragArea .form-group .form-control:hover,
.cid-uKvN9P67Wb .form-wrapper .row.dragArea .form-group .form-control:focus {
  box-shadow: none;
  border: 2px solid #ffa600 !important;
}
.cid-uKvN9P67Wb .form-wrapper .row.dragArea .form-group textarea.form-control {
  min-height: 150px;
}
.cid-uKvN9P67Wb .form-wrapper .row.dragArea .form-group .form-check {
  padding-left: 2.1em;
  margin-bottom: 16px !important;
}
.cid-uKvN9P67Wb .form-wrapper .row.dragArea .form-group .form-check .form-check-input {
  background-color: #ffa600;
  border-color: #ffa600;
}
.cid-uKvN9P67Wb .form-wrapper .row.dragArea .mbr-section-btn {
  width: 100%;
}
.cid-uKvN9P67Wb .form-wrapper .row.dragArea .mbr-section-btn .btn {
  width: 100%;
}
.cid-uKvN9P67Wb .mbr-section-title {
  color: #0c2c68;
  text-align: center;
}
.cid-uKvN9P67Wb .mbr-text {
  color: #0c2c68;
  text-align: center;
}
.cid-uKvN9P67Wb label {
  color: #262642;
}
.cid-uKvN9P67Wb LABEL {
  color: #0c2c68;
}
.cid-uKvN9P67Wb H2 {
  color: #0c2c68;
}
.cid-uKvN9P67Wb P {
  color: #0c2c68;
}
.cid-uJlfEWm8jp {
  padding-top: 5rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
  background: linear-gradient(180deg, #ffffff, #ffa600);
}
.cid-uJlfEWm8jp .container {
  max-width: 1040px;
}
@media (max-width: 575px) {
  .cid-uJlfEWm8jp .row {
    text-align: center!important;
  }
}
.cid-uJlfEWm8jp .mbr-section-title {
  color: #4BFDB1;
}
@media (max-width: 575px) {
  .cid-uJlfEWm8jp .mbr-section-title {
    text-align: center;
  }
}
.cid-uJlfEWm8jp .mbr-section-subtitle {
  color: #000000;
}
.cid-uJlfEWm8jp .mbr-text {
  color: #000000;
  margin-top: 28px;
}
.cid-uJlfEWm8jp .mbr-section-btn {
  margin-top: 18px;
}
@media (max-width: 575px) {
  .cid-uJlfEWm8jp .mbr-section-btn {
    display: flex;
    flex-wrap: wrap;
  }
  .cid-uJlfEWm8jp .mbr-section-btn .btn {
    width: 100%;
  }
}
.cid-uJlfEWm8jp .btn-primary-outline,
.cid-uJlfEWm8jp .btn-secondary-outline,
.cid-uJlfEWm8jp .btn-success-outline,
.cid-uJlfEWm8jp .btn-info-outline,
.cid-uJlfEWm8jp .btn-warning-outline,
.cid-uJlfEWm8jp .btn-danger-outline,
.cid-uJlfEWm8jp .btn-white-outline,
.cid-uJlfEWm8jp .btn-black-outline {
  padding: 0;
  min-height: auto;
}
.cid-uJlfEWm8jp .mbr-fallback-image.disabled {
  display: none;
}
.cid-uJlfEWm8jp .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uJlfEWm8jp .mbr-section-title,
.cid-uJlfEWm8jp .mbr-section-btn {
  color: #0c2c68;
  text-align: left;
}
.cid-uJlfEWYuVl {
  padding-top: 45px;
  padding-bottom: 30px;
  background-color: #0c2c68;
}
.cid-uJlfEWYuVl .copyright {
  display: flex;
}
@media (max-width: 992px) {
  .cid-uJlfEWYuVl .copyright {
    margin-bottom: 1rem;
  }
}
.cid-uJlfEWYuVl .text-wrap {
  transition: all 0.3s;
  padding: 23px;
  bottom: 0;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: flex-end;
  width: 100%;
  overflow: hidden;
  position: relative;
}
.cid-uJlfEWYuVl .text-wrap .icons-wrap .icon-wrapper {
  background: #06182d;
  display: flex;
  width: 31px;
  height: 31px;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  border: 2px solid #9c98cf;
  transition: all 0.3s;
  z-index: 4;
  cursor: pointer;
  margin: 0 0.2rem;
}
.cid-uJlfEWYuVl .text-wrap .icons-wrap .icon-wrapper:hover {
  background: #ffa600;
  border-color: #ffa600;
}
.cid-uJlfEWYuVl .text-wrap .icons-wrap .icon-wrapper:hover .link-icon {
  color: #ffffde;
}
.cid-uJlfEWYuVl .text-wrap .icons-wrap .icon-wrapper .link-icon {
  display: inline-block;
  color: #ffffde;
  transition: all 0.3s;
  font-size: 14px;
  justify-content: center;
}
.cid-uJlfEWYuVl .text-wrap .icons-wrap::before {
  height: 2px;
  width: 100%;
  top: 50%;
  right: 58%;
  position: absolute;
  display: inline-block;
  content: "";
  background-color: #9c98cf;
}
@media (max-width: 992px) {
  .cid-uJlfEWYuVl .text-wrap .icons-wrap::before {
    display: none;
  }
}
.cid-uJlfEWYuVl .text-wrap .icons-wrap::after {
  height: 2px;
  width: 100%;
  top: 50%;
  left: 58%;
  position: absolute;
  display: inline-block;
  content: "";
  background-color: #9c98cf;
}
@media (max-width: 992px) {
  .cid-uJlfEWYuVl .text-wrap .icons-wrap::after {
    display: none;
  }
}
.cid-uKwnv7Z0Mr .navbar {
  background: #ffffff;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  min-height: 77px;
}
@media (min-width: 1200px) {
  .cid-uKwnv7Z0Mr .navbar .dropdown .dropdown-menu .dropdown-item {
    padding: 0.835em 2.5385em 0.835em 3.5385em !important;
    margin: 0 !important;
  }
  .cid-uKwnv7Z0Mr .navbar .dropdown .dropdown-menu .dropdown-item:hover {
    padding: 0.835em 2.5385em 0.835em 3.8385em !important;
  }
}
.cid-uKwnv7Z0Mr .menu-logo {
  display: flex;
  position: relative;
  -webkit-box-align: center;
  align-items: center;
  margin-right: auto;
}
.cid-uKwnv7Z0Mr .menu-logo .navbar-brand {
  display: flex;
  padding: 0.5rem 0;
  -webkit-transition: padding 0.2s;
  transition: padding 0.2s;
  min-height: 3.8rem;
  -webkit-box-align: center;
  align-items: center;
}
.cid-uKwnv7Z0Mr .menu-logo .navbar-brand .navbar-caption-wrap {
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: 0.3rem 0;
}
.cid-uKwnv7Z0Mr .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-uKwnv7Z0Mr .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  -webkit-transition: font-size 0.25s;
  transition: font-size 0.25s;
}
.cid-uKwnv7Z0Mr .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
  width: auto;
}
.cid-uKwnv7Z0Mr .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  -webkit-transition: font-size 0.25s;
  transition: font-size 0.25s;
}
.cid-uKwnv7Z0Mr .navbar-dropdown.bg-color.transparent.opened {
  background: #ffffff;
}
.cid-uKwnv7Z0Mr .navbar.opened {
  text-align: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
  margin-left: auto;
  max-width: 20rem;
  height: auto;
  -webkit-box-pack: start;
  justify-content: flex-start;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  background: #232323 !important;
}
.cid-uKwnv7Z0Mr .navbar.opened .collapse .dropdown-item {
  color: #ffffff;
}
.cid-uKwnv7Z0Mr .navbar.opened a.brand-link {
  color: #ffffff;
}
.cid-uKwnv7Z0Mr .navbar-fixed-top.opened {
  position: relative;
}
.cid-uKwnv7Z0Mr a {
  font-style: normal;
}
.cid-uKwnv7Z0Mr .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: middle;
  position: relative;
  text-decoration: none;
}
.cid-uKwnv7Z0Mr .nav-item a {
  padding: 0.4rem 0 !important;
}
.cid-uKwnv7Z0Mr .nav-item .nav-link {
  color: #ffffff;
}
.cid-uKwnv7Z0Mr .nav-item .nav-link.display-4 {
  font-size: 15px;
}
.cid-uKwnv7Z0Mr .widget-icon {
  display: inline-block;
  padding: 0.9rem;
  font-size: 1.25rem;
  margin-right: 10px;
  color: #4f87fb;
  border-radius: 50%;
  border: 1px solid #eee;
  font-weight: bold;
}
.cid-uKwnv7Z0Mr .info-widget {
  padding-left: 2rem;
  padding-top: 0.5rem;
  padding-right: 3rem;
}
.cid-uKwnv7Z0Mr .menu-content-right {
  display: flex;
  padding: 28px 0;
  -webkit-box-align: center;
  align-items: center;
}
.cid-uKwnv7Z0Mr .menu-content-right .info-widget:last-child {
  padding-right: 0;
}
.cid-uKwnv7Z0Mr .menu-content-right .info-widget:first-child {
  padding-left: 0;
}
@media (max-width: 1200px) {
  .cid-uKwnv7Z0Mr .menu-content-right {
    display: none;
  }
}
.cid-uKwnv7Z0Mr .widget-content {
  display: inline-block;
  vertical-align: middle;
  text-align: left;
  padding-bottom: 0.7rem;
}
.cid-uKwnv7Z0Mr .widget-content .widget-title {
  margin-bottom: 7px;
}
.cid-uKwnv7Z0Mr .widget-content .widget-text {
  margin-bottom: 0;
}
.cid-uKwnv7Z0Mr .widget-content .widget-text.display-4 {
  font-size: 13px;
}
.cid-uKwnv7Z0Mr .right-box .navbar-buttons .content-link {
  color: #ffffff;
  border-left: 1px solid #3a341c;
}
.cid-uKwnv7Z0Mr .right-box .navbar-buttons .content-link:first-child {
  border-left: none !important;
}
.cid-uKwnv7Z0Mr .right-box .navbar-buttons .btn {
  margin: 0;
  padding: 1.89rem 1.5rem !important;
  border-radius: 0 5px 5px 0 !important;
}
.cid-uKwnv7Z0Mr .right-box .navbar-buttons .btn.display-4 {
  font-size: 13px;
}
@media (max-width: 1200px) {
  .cid-uKwnv7Z0Mr .right-box {
    display: none;
  }
}
.cid-uKwnv7Z0Mr .dropdown-item:before {
  color: #000000;
  font-family: Material-Design-Icons !important;
  content: '\e716';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1.125rem;
  top: 1.1rem;
  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;
  transition: all 0.25s ease-in-out;
}
.cid-uKwnv7Z0Mr .dropdown-item:hover:before {
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  width: 16px;
}
.cid-uKwnv7Z0Mr .content-text {
  margin-bottom: 0;
}
.cid-uKwnv7Z0Mr .navbar-nav {
  padding-left: 15px;
  position: relative;
  min-height: 60px;
  color: #ffffff;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  flex-direction: row;
}
@media (min-width: 1200px) {
  .cid-uKwnv7Z0Mr .navbar-nav .main-menu-animated-line {
    position: absolute;
    left: 0;
    width: 0;
    height: 0;
    z-index: 100;
    border-top: 4px solid #0c2c68;
    -webkit-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-uKwnv7Z0Mr .navbar-nav .main-menu-animated-line.bottom {
    bottom: 0;
  }
  .cid-uKwnv7Z0Mr .navbar-nav .nav-item a {
    margin: 0 1.3rem !important;
  }
}
@media (max-width: 1200px) {
  .cid-uKwnv7Z0Mr .navbar-nav .nav-item a {
    margin: 0 !important;
  }
}
.cid-uKwnv7Z0Mr .navbar-nav .nav-item span {
  padding-right: 0.1rem;
}
.cid-uKwnv7Z0Mr .display-4 > .mbr-iconfont {
  font-size: 1.8em;
}
.cid-uKwnv7Z0Mr .display-4 > .btn > .mbr-iconfont {
  font-size: 1.43em;
}
.cid-uKwnv7Z0Mr .nav-dropdown .dropdown-item {
  font-weight: 400;
}
.cid-uKwnv7Z0Mr .navbar-buttons.mbr-section-btn {
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: center;
  justify-content: center;
}
.cid-uKwnv7Z0Mr .navbar-buttons.mbr-section-btn > .mbr-iconfont {
  font-size: 17px !important;
  margin-right: 13px;
}
.cid-uKwnv7Z0Mr .navbar-buttons.mbr-section-btn .content-link {
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-uKwnv7Z0Mr .nav-dropdown .link {
  font-weight: 600;
}
.cid-uKwnv7Z0Mr .menu .navbar-brand .logo-text-part {
  vertical-align: top;
}
.cid-uKwnv7Z0Mr .content-left-side {
  text-align: center;
  padding-top: 3px;
  border-left: 1px solid #eee;
  border-right: 1px solid #eee;
  padding-left: 15px;
  padding-right: 15px;
}
@media (max-width: 575px) {
  .cid-uKwnv7Z0Mr .content-left-side {
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
    padding: 0.5rem 0;
  }
  .cid-uKwnv7Z0Mr .content-left-side .content-link {
    font-size: 0.8rem;
    margin: 0;
    padding-bottom: 1rem;
    display: flex;
    -webkit-box-pack: justify;
    justify-content: space-between;
  }
}
.cid-uKwnv7Z0Mr .content-left-side .content-link.display-4 {
  font-size: 16px !important;
}
.cid-uKwnv7Z0Mr .content-left-side .content-link {
  line-height: 3.4375;
}
.cid-uKwnv7Z0Mr .content-right-side {
  text-align: center;
}
@media (max-width: 575px) {
  .cid-uKwnv7Z0Mr .content-right-side {
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
    padding: 0.5rem 0;
  }
  .cid-uKwnv7Z0Mr .content-right-side .content-link {
    font-size: 0.8rem;
    margin: 0;
    padding-bottom: 1rem;
    display: flex;
    -webkit-box-pack: justify;
    justify-content: space-between;
  }
}
.cid-uKwnv7Z0Mr .menu-content-top {
  -webkit-transition: height 0.3s ease-in-out;
  transition: height 0.3s ease-in-out;
  padding-top: 0px;
}
.cid-uKwnv7Z0Mr .menu-content-bottom {
  padding-bottom: 0px;
}
@media (max-width: 1200px) {
  .cid-uKwnv7Z0Mr .menu-content-bottom {
    margin-bottom: 1rem;
  }
}
.cid-uKwnv7Z0Mr .menu-content-top.show {
  display: block;
}
.cid-uKwnv7Z0Mr .pre-header-right {
  align-self: center;
}
.cid-uKwnv7Z0Mr .pre-header-right .content-right-side .content-link {
  border-right: 1px solid #eee;
  -webkit-transition: 0.3s all;
  transition: 0.3s all;
  padding: 21px 12px;
}
.cid-uKwnv7Z0Mr .pre-header-right .content-right-side .content-link:hover {
  -webkit-transition: 0.3s all;
  transition: 0.3s all;
  background-color: #ffa600;
}
.cid-uKwnv7Z0Mr .pre-header-right .content-right-side .content-link:hover span {
  color: #000000;
}
.cid-uKwnv7Z0Mr .pre-header-right .content-right-side .content-link span {
  vertical-align: middle;
  font-size: 1.2rem;
  color: #777;
}
.cid-uKwnv7Z0Mr .pre-header-right .content-right-side .content-link:first-child {
  border-left: 1px solid #eee;
}
.cid-uKwnv7Z0Mr .pre-header-right .content-right-side .content-link:last-child {
  border-right: 1px solid #eee;
}
.cid-uKwnv7Z0Mr .navbar .menu-content-top {
  display: block;
  width: 100%;
}
@media (max-width: 1200px) {
  .cid-uKwnv7Z0Mr .content-left-side {
    text-align: center;
    padding-bottom: 1rem;
  }
  .cid-uKwnv7Z0Mr .navbar .menu-content-top {
    display: none;
  }
  .cid-uKwnv7Z0Mr .dropdown-item {
    padding: 0.235em 0 !important;
    margin: 0 !important;
    -webkit-transition: all 0.25s ease-in-out;
    -moz-transition: all 0.25s ease-in-out;
  }
  .cid-uKwnv7Z0Mr .dropdown-item:before {
    display: none;
  }
  .cid-uKwnv7Z0Mr .menu-logo {
    width: 100%;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    justify-content: space-between;
  }
  .cid-uKwnv7Z0Mr img {
    height: 3.8rem !important;
  }
  .cid-uKwnv7Z0Mr .btn {
    display: flex;
  }
  .cid-uKwnv7Z0Mr button.navbar-toggler {
    display: block;
    align-self: center;
  }
  .cid-uKwnv7Z0Mr .navbar-brand {
    margin-left: 1rem !important;
    margin-top: 0.5rem;
  }
  .cid-uKwnv7Z0Mr .navbar-toggleable-sm {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
  }
  .cid-uKwnv7Z0Mr .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-uKwnv7Z0Mr .navbar-collapse.collapsing,
  .cid-uKwnv7Z0Mr .navbar-collapse.show {
    display: block !important;
  }
  .cid-uKwnv7Z0Mr .navbar-collapse.collapsing .navbar-nav,
  .cid-uKwnv7Z0Mr .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: left;
  }
  .cid-uKwnv7Z0Mr .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-uKwnv7Z0Mr .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
    padding: 0.5rem 0;
  }
  .cid-uKwnv7Z0Mr .navbar-collapse.collapsing .navbar-buttons,
  .cid-uKwnv7Z0Mr .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-uKwnv7Z0Mr .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-uKwnv7Z0Mr .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-uKwnv7Z0Mr .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    -webkit-transition-duration: 0.5s;
    transition-duration: 0.5s;
    -webkit-transition-property: opacity, padding, height;
    transition-property: opacity, padding, height;
  }
  .cid-uKwnv7Z0Mr .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-uKwnv7Z0Mr .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-uKwnv7Z0Mr .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-uKwnv7Z0Mr .menu-content-middle {
    width: 100%;
  }
}
@media (min-width: 1200px) {
  .cid-uKwnv7Z0Mr .menu-content-top .row {
    -webkit-box-pack: justify;
    justify-content: space-between;
    flex-wrap: nowrap;
  }
  .cid-uKwnv7Z0Mr .content-right-side {
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: end;
    justify-content: flex-end;
    flex-basis: 70%;
    flex-shrink: 0;
    flex-wrap: wrap;
    text-align: right;
  }
  .cid-uKwnv7Z0Mr .content-left-side {
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: start;
    justify-content: flex-start;
    flex-basis: 70%;
    flex-shrink: 0;
    flex-wrap: wrap;
    text-align: right;
  }
  .cid-uKwnv7Z0Mr .menu-content-top {
    border-bottom: 1px solid rgba(0, 0, 0, 0.12);
  }
  .cid-uKwnv7Z0Mr .navbar {
    display: block;
    padding: 0;
  }
  .cid-uKwnv7Z0Mr .navbar .menu-logo {
    margin-right: auto;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
  }
  .cid-uKwnv7Z0Mr .navbar.navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
    -webkit-align-self: initial;
    align-self: auto;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    z-index: 101;
    min-height: 76px;
  }
  .cid-uKwnv7Z0Mr .navbar-toggler {
    display: none;
  }
}
.cid-uKwnv7Z0Mr .menu-area-wrapper {
  height: 39px;
  width: 100%;
}
.cid-uKwnv7Z0Mr .menu-area-wrapper .menu-area {
  background-color: #0c2c68;
  position: relative;
  z-index: 9;
  border-radius: 5px;
  line-height: normal !important;
}
@media (max-width: 1200px) {
  .cid-uKwnv7Z0Mr .menu-area-wrapper .menu-area {
    background: transparent;
  }
}
@media (max-width: 1200px) {
  .cid-uKwnv7Z0Mr .menu-area-wrapper {
    height: 100%;
  }
}
.cid-uKwnv7Z0Mr .navbar-short {
  background: transparent;
}
.cid-uKwnv7Z0Mr .navbar-short .menu-content-top,
.cid-uKwnv7Z0Mr .navbar-short .menu-content-middle {
  display: none;
}
@media (max-width: 1200px) {
  .cid-uKwnv7Z0Mr .navbar-short .menu-area-wrapper {
    margin-top: 5rem;
  }
}
.cid-uKwnv7Z0Mr .btn {
  padding: 0.7rem 1.5rem;
  display: inline-flex;
  -webkit-box-align: center;
  align-items: center;
}
.cid-uKwnv7Z0Mr .btn .mbr-iconfont {
  font-size: 1.2em;
}
.cid-uKwnv7Z0Mr .navbar-toggleable-sm .navbar-collapse {
  -webkit-box-pack: end;
  justify-content: flex-end;
}
@media (max-width: 1200px) {
  .cid-uKwnv7Z0Mr .navbar-toggleable-sm .navbar-collapse {
    width: 300px;
    height: 100%;
    margin-left: 1rem;
    margin-top: 1rem;
  }
}
.cid-uKwnv7Z0Mr .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  padding-left: 15px;
}
.cid-uKwnv7Z0Mr .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-uKwnv7Z0Mr .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-uKwnv7Z0Mr .dropdown {
  color: #3a341c !important;
}
.cid-uKwnv7Z0Mr .dropdown .dropdown-menu {
  background: #ffffff;
  display: none;
  position: absolute;
  border-top: 3px solid #0c2c68;
  min-width: 16.875rem;
  text-align: left;
  padding-top: 0;
  padding-bottom: 0;
  color: #3a341c !important;
}
@media (max-width: 1200px) {
  .cid-uKwnv7Z0Mr .dropdown .dropdown-menu {
    overflow: hidden;
    border-top: none;
    background: #232323 !important;
  }
}
.cid-uKwnv7Z0Mr .dropdown .dropdown-menu .dropdown-item {
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
  padding-left: 10px !important;
}
.cid-uKwnv7Z0Mr .dropdown .dropdown-menu .dropdown-item::after {
  right: 1rem;
}
.cid-uKwnv7Z0Mr .dropdown .dropdown-menu .dropdown-item:hover {
  background-color: #ffa600;
  color: #000000;
}
.cid-uKwnv7Z0Mr .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
@media (max-width: 1200px) {
  .cid-uKwnv7Z0Mr .dropdown .dropdown-menu .dropdown-item:hover {
    background-color: #232323;
  }
}
.cid-uKwnv7Z0Mr .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-uKwnv7Z0Mr .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  color: #000000;
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-uKwnv7Z0Mr .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-uKwnv7Z0Mr .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uKwnv7Z0Mr .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;
  display: none;
}
.cid-uKwnv7Z0Mr .navbar.navbar-short {
  min-height: 50px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.cid-uKwnv7Z0Mr .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  -webkit-transition: font-size 0.3s;
  transition: font-size 0.3s;
}
.cid-uKwnv7Z0Mr .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-uKwnv7Z0Mr .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-uKwnv7Z0Mr .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-uKwnv7Z0Mr button.navbar-toggler.collapsed .hamburger span {
  height: 2px;
}
.cid-uKwnv7Z0Mr button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.cid-uKwnv7Z0Mr button.navbar-toggler:focus {
  outline: none;
}
.cid-uKwnv7Z0Mr button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-radius: 20px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uKwnv7Z0Mr button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.cid-uKwnv7Z0Mr button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  -webkit-transition: all 0.15s;
  transition: all 0.15s;
}
.cid-uKwnv7Z0Mr button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  -webkit-transition: all 0.15s;
  transition: all 0.15s;
}
.cid-uKwnv7Z0Mr button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.cid-uKwnv7Z0Mr nav.opened .hamburger span {
  height: 4px;
  background-color: #ffffff;
}
.cid-uKwnv7Z0Mr nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}
.cid-uKwnv7Z0Mr nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  -webkit-transition: all 0.25s;
  transition: all 0.25s;
}
.cid-uKwnv7Z0Mr nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  -webkit-transition: all 0.25s;
  transition: all 0.25s;
}
.cid-uKwnv7Z0Mr nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.cid-uKwnv7Z0Mr .collapsed.navbar {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
}
.cid-uKwnv7Z0Mr .collapsed .menu-logo {
  margin-right: 0;
}
.cid-uKwnv7Z0Mr .collapsed .btn {
  display: flex;
}
.cid-uKwnv7Z0Mr .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-uKwnv7Z0Mr .collapsed .navbar-collapse.collapsing,
.cid-uKwnv7Z0Mr .collapsed .navbar-collapse.show {
  display: block !important;
  width: 100%;
}
.cid-uKwnv7Z0Mr .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-uKwnv7Z0Mr .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: left;
}
.cid-uKwnv7Z0Mr .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-uKwnv7Z0Mr .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-uKwnv7Z0Mr .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-uKwnv7Z0Mr .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-uKwnv7Z0Mr .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-uKwnv7Z0Mr .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
@media (min-width: 1200px) {
  .cid-uKwnv7Z0Mr .collapsed:not(.navbar-short) .navbar-collapse {
    max-height: calc(100vh - 8rem  - 3.5rem);
  }
  .cid-uKwnv7Z0Mr .collapsed .dropdown .dropdown-menu {
    overflow: hidden;
  }
}
.cid-uKwnv7Z0Mr .collapsed button.navbar-toggler {
  display: block;
  -webkit-align-self: center;
  align-self: center;
}
.cid-uKwnv7Z0Mr .collapsed .navbar-brand {
  margin-left: 1rem !important;
  margin-top: 0.5rem;
}
.cid-uKwnv7Z0Mr .collapsed .navbar-toggleable-sm {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
}
.cid-uKwnv7Z0Mr .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  -webkit-transition-duration: 0.25s;
  transition-duration: 0.25s;
  -webkit-transition-property: opacity, padding, height;
  transition-property: opacity, padding, height;
}
.cid-uKwnv7Z0Mr .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-uKwnv7Z0Mr .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-uKwnv7Z0Mr .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-uKwnv7Z0Mr .collapsed .dropdown-item:before {
  display: none;
}
.cid-uKwnv7Z0Mr .navbar-dropdown {
  padding: 0rem 1rem;
  flex-wrap: nowrap;
}
.cid-uKwnv7Z0Mr .navbar-collapse {
  flex-basis: auto;
  display: flex;
}
.cid-uKwnv7Z0Mr .nav-link:focus {
  outline: none;
}
.cid-uKwnv7Z0Mr .navbar-toggler {
  position: relative;
}
.cid-uKwnv7Z0Mr .dropdown-item.active,
.cid-uKwnv7Z0Mr .dropdown-item:active {
  color: auto;
}
.cid-uKwnv7Z0Mr .dropdown-item:hover {
  color: #ffa600;
}
.cid-uKwnv7Z0Mr .widget-title,
.cid-uKwnv7Z0Mr .widget-icon {
  color: #0c2c68;
}
.cid-uKwnv7Z0Mr .widget-text {
  color: #0c2c68;
}
.cid-uKwnv9mguX {
  padding-top: 3rem;
  padding-bottom: 1rem;
  background-image: url("../../../assets/images/wbg.jpg");
}
.cid-uKwnv9mguX .mbr-fallback-image.disabled {
  display: none;
}
.cid-uKwnv9mguX .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uKwnv9mguX .row {
  flex-direction: row-reverse;
}
.cid-uKwnv9UD8H {
  padding-top: 5rem;
  padding-bottom: 3rem;
  background-color: #edefeb;
}
.cid-uKwnv9UD8H .mbr-fallback-image.disabled {
  display: none;
}
.cid-uKwnv9UD8H .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-uKwnv9UD8H .container {
    padding: 0 24px;
  }
}
.cid-uKwnv9UD8H .row {
  justify-content: center;
}
.cid-uKwnv9UD8H .form-wrapper .row.dragArea .mbr-section-title {
  margin-bottom: 16px !important;
}
.cid-uKwnv9UD8H .form-wrapper .row.dragArea .mbr-text {
  margin-bottom: 32px !important;
}
.cid-uKwnv9UD8H .form-wrapper .row.dragArea .form-group {
  margin-bottom: 32px !important;
}
.cid-uKwnv9UD8H .form-wrapper .row.dragArea .form-group .form-control {
  background-color: #ffffff;
  padding: 32px;
  box-shadow: none;
  border: 2px solid transparent !important;
  border-radius: 16px !important;
  transition: all 0.3s ease-in-out;
}
@media (max-width: 992px) {
  .cid-uKwnv9UD8H .form-wrapper .row.dragArea .form-group .form-control {
    padding: 16px;
  }
}
.cid-uKwnv9UD8H .form-wrapper .row.dragArea .form-group .form-control::placeholder {
  color: #320707;
}
.cid-uKwnv9UD8H .form-wrapper .row.dragArea .form-group .form-control:hover,
.cid-uKwnv9UD8H .form-wrapper .row.dragArea .form-group .form-control:focus {
  box-shadow: none;
  border: 2px solid #ffa600 !important;
}
.cid-uKwnv9UD8H .form-wrapper .row.dragArea .form-group textarea.form-control {
  min-height: 150px;
}
.cid-uKwnv9UD8H .form-wrapper .row.dragArea .form-group .form-check {
  padding-left: 2.1em;
  margin-bottom: 16px !important;
}
.cid-uKwnv9UD8H .form-wrapper .row.dragArea .form-group .form-check .form-check-input {
  background-color: #ffa600;
  border-color: #ffa600;
}
.cid-uKwnv9UD8H .form-wrapper .row.dragArea .mbr-section-btn {
  width: 100%;
}
.cid-uKwnv9UD8H .form-wrapper .row.dragArea .mbr-section-btn .btn {
  width: 100%;
}
.cid-uKwnv9UD8H .mbr-section-title {
  color: #0c2c68;
  text-align: center;
}
.cid-uKwnv9UD8H .mbr-text {
  color: #0c2c68;
  text-align: center;
}
.cid-uKwnv9UD8H label {
  color: #262642;
}
.cid-uKwnv9UD8H LABEL {
  color: #0c2c68;
}
.cid-uKwnv9UD8H H2 {
  color: #0c2c68;
}
.cid-uKwnv9UD8H P {
  color: #0c2c68;
}
.cid-uKwnvb6Kn0 {
  padding-top: 5rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
  background: linear-gradient(180deg, #ffffff, #ffa600);
}
.cid-uKwnvb6Kn0 .container {
  max-width: 1040px;
}
@media (max-width: 575px) {
  .cid-uKwnvb6Kn0 .row {
    text-align: center!important;
  }
}
.cid-uKwnvb6Kn0 .mbr-section-title {
  color: #4BFDB1;
}
@media (max-width: 575px) {
  .cid-uKwnvb6Kn0 .mbr-section-title {
    text-align: center;
  }
}
.cid-uKwnvb6Kn0 .mbr-section-subtitle {
  color: #000000;
}
.cid-uKwnvb6Kn0 .mbr-text {
  color: #000000;
  margin-top: 28px;
}
.cid-uKwnvb6Kn0 .mbr-section-btn {
  margin-top: 18px;
}
@media (max-width: 575px) {
  .cid-uKwnvb6Kn0 .mbr-section-btn {
    display: flex;
    flex-wrap: wrap;
  }
  .cid-uKwnvb6Kn0 .mbr-section-btn .btn {
    width: 100%;
  }
}
.cid-uKwnvb6Kn0 .btn-primary-outline,
.cid-uKwnvb6Kn0 .btn-secondary-outline,
.cid-uKwnvb6Kn0 .btn-success-outline,
.cid-uKwnvb6Kn0 .btn-info-outline,
.cid-uKwnvb6Kn0 .btn-warning-outline,
.cid-uKwnvb6Kn0 .btn-danger-outline,
.cid-uKwnvb6Kn0 .btn-white-outline,
.cid-uKwnvb6Kn0 .btn-black-outline {
  padding: 0;
  min-height: auto;
}
.cid-uKwnvb6Kn0 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uKwnvb6Kn0 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uKwnvb6Kn0 .mbr-section-title,
.cid-uKwnvb6Kn0 .mbr-section-btn {
  color: #0c2c68;
  text-align: left;
}
.cid-uKwnvccuQG {
  padding-top: 45px;
  padding-bottom: 30px;
  background-color: #0c2c68;
}
.cid-uKwnvccuQG .copyright {
  display: flex;
}
@media (max-width: 992px) {
  .cid-uKwnvccuQG .copyright {
    margin-bottom: 1rem;
  }
}
.cid-uKwnvccuQG .text-wrap {
  transition: all 0.3s;
  padding: 23px;
  bottom: 0;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: flex-end;
  width: 100%;
  overflow: hidden;
  position: relative;
}
.cid-uKwnvccuQG .text-wrap .icons-wrap .icon-wrapper {
  background: #06182d;
  display: flex;
  width: 31px;
  height: 31px;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  border: 2px solid #9c98cf;
  transition: all 0.3s;
  z-index: 4;
  cursor: pointer;
  margin: 0 0.2rem;
}
.cid-uKwnvccuQG .text-wrap .icons-wrap .icon-wrapper:hover {
  background: #ffa600;
  border-color: #ffa600;
}
.cid-uKwnvccuQG .text-wrap .icons-wrap .icon-wrapper:hover .link-icon {
  color: #ffffde;
}
.cid-uKwnvccuQG .text-wrap .icons-wrap .icon-wrapper .link-icon {
  display: inline-block;
  color: #ffffde;
  transition: all 0.3s;
  font-size: 14px;
  justify-content: center;
}
.cid-uKwnvccuQG .text-wrap .icons-wrap::before {
  height: 2px;
  width: 100%;
  top: 50%;
  right: 58%;
  position: absolute;
  display: inline-block;
  content: "";
  background-color: #9c98cf;
}
@media (max-width: 992px) {
  .cid-uKwnvccuQG .text-wrap .icons-wrap::before {
    display: none;
  }
}
.cid-uKwnvccuQG .text-wrap .icons-wrap::after {
  height: 2px;
  width: 100%;
  top: 50%;
  left: 58%;
  position: absolute;
  display: inline-block;
  content: "";
  background-color: #9c98cf;
}
@media (max-width: 992px) {
  .cid-uKwnvccuQG .text-wrap .icons-wrap::after {
    display: none;
  }
}
.cid-uKwtWxkbrd .navbar {
  background: #ffffff;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  min-height: 77px;
}
@media (min-width: 1200px) {
  .cid-uKwtWxkbrd .navbar .dropdown .dropdown-menu .dropdown-item {
    padding: 0.835em 2.5385em 0.835em 3.5385em !important;
    margin: 0 !important;
  }
  .cid-uKwtWxkbrd .navbar .dropdown .dropdown-menu .dropdown-item:hover {
    padding: 0.835em 2.5385em 0.835em 3.8385em !important;
  }
}
.cid-uKwtWxkbrd .menu-logo {
  display: flex;
  position: relative;
  -webkit-box-align: center;
  align-items: center;
  margin-right: auto;
}
.cid-uKwtWxkbrd .menu-logo .navbar-brand {
  display: flex;
  padding: 0.5rem 0;
  -webkit-transition: padding 0.2s;
  transition: padding 0.2s;
  min-height: 3.8rem;
  -webkit-box-align: center;
  align-items: center;
}
.cid-uKwtWxkbrd .menu-logo .navbar-brand .navbar-caption-wrap {
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: 0.3rem 0;
}
.cid-uKwtWxkbrd .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-uKwtWxkbrd .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  -webkit-transition: font-size 0.25s;
  transition: font-size 0.25s;
}
.cid-uKwtWxkbrd .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
  width: auto;
}
.cid-uKwtWxkbrd .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  -webkit-transition: font-size 0.25s;
  transition: font-size 0.25s;
}
.cid-uKwtWxkbrd .navbar-dropdown.bg-color.transparent.opened {
  background: #ffffff;
}
.cid-uKwtWxkbrd .navbar.opened {
  text-align: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
  margin-left: auto;
  max-width: 20rem;
  height: auto;
  -webkit-box-pack: start;
  justify-content: flex-start;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  background: #232323 !important;
}
.cid-uKwtWxkbrd .navbar.opened .collapse .dropdown-item {
  color: #ffffff;
}
.cid-uKwtWxkbrd .navbar.opened a.brand-link {
  color: #ffffff;
}
.cid-uKwtWxkbrd .navbar-fixed-top.opened {
  position: relative;
}
.cid-uKwtWxkbrd a {
  font-style: normal;
}
.cid-uKwtWxkbrd .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: middle;
  position: relative;
  text-decoration: none;
}
.cid-uKwtWxkbrd .nav-item a {
  padding: 0.4rem 0 !important;
}
.cid-uKwtWxkbrd .nav-item .nav-link {
  color: #ffffff;
}
.cid-uKwtWxkbrd .nav-item .nav-link.display-4 {
  font-size: 15px;
}
.cid-uKwtWxkbrd .widget-icon {
  display: inline-block;
  padding: 0.9rem;
  font-size: 1.25rem;
  margin-right: 10px;
  color: #4f87fb;
  border-radius: 50%;
  border: 1px solid #eee;
  font-weight: bold;
}
.cid-uKwtWxkbrd .info-widget {
  padding-left: 2rem;
  padding-top: 0.5rem;
  padding-right: 3rem;
}
.cid-uKwtWxkbrd .menu-content-right {
  display: flex;
  padding: 28px 0;
  -webkit-box-align: center;
  align-items: center;
}
.cid-uKwtWxkbrd .menu-content-right .info-widget:last-child {
  padding-right: 0;
}
.cid-uKwtWxkbrd .menu-content-right .info-widget:first-child {
  padding-left: 0;
}
@media (max-width: 1200px) {
  .cid-uKwtWxkbrd .menu-content-right {
    display: none;
  }
}
.cid-uKwtWxkbrd .widget-content {
  display: inline-block;
  vertical-align: middle;
  text-align: left;
  padding-bottom: 0.7rem;
}
.cid-uKwtWxkbrd .widget-content .widget-title {
  margin-bottom: 7px;
}
.cid-uKwtWxkbrd .widget-content .widget-text {
  margin-bottom: 0;
}
.cid-uKwtWxkbrd .widget-content .widget-text.display-4 {
  font-size: 13px;
}
.cid-uKwtWxkbrd .right-box .navbar-buttons .content-link {
  color: #ffffff;
  border-left: 1px solid #3a341c;
}
.cid-uKwtWxkbrd .right-box .navbar-buttons .content-link:first-child {
  border-left: none !important;
}
.cid-uKwtWxkbrd .right-box .navbar-buttons .btn {
  margin: 0;
  padding: 1.89rem 1.5rem !important;
  border-radius: 0 5px 5px 0 !important;
}
.cid-uKwtWxkbrd .right-box .navbar-buttons .btn.display-4 {
  font-size: 13px;
}
@media (max-width: 1200px) {
  .cid-uKwtWxkbrd .right-box {
    display: none;
  }
}
.cid-uKwtWxkbrd .dropdown-item:before {
  color: #000000;
  font-family: Material-Design-Icons !important;
  content: '\e716';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1.125rem;
  top: 1.1rem;
  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;
  transition: all 0.25s ease-in-out;
}
.cid-uKwtWxkbrd .dropdown-item:hover:before {
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  width: 16px;
}
.cid-uKwtWxkbrd .content-text {
  margin-bottom: 0;
}
.cid-uKwtWxkbrd .navbar-nav {
  padding-left: 15px;
  position: relative;
  min-height: 60px;
  color: #ffffff;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  flex-direction: row;
}
@media (min-width: 1200px) {
  .cid-uKwtWxkbrd .navbar-nav .main-menu-animated-line {
    position: absolute;
    left: 0;
    width: 0;
    height: 0;
    z-index: 100;
    border-top: 4px solid #0c2c68;
    -webkit-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-uKwtWxkbrd .navbar-nav .main-menu-animated-line.bottom {
    bottom: 0;
  }
  .cid-uKwtWxkbrd .navbar-nav .nav-item a {
    margin: 0 1.3rem !important;
  }
}
@media (max-width: 1200px) {
  .cid-uKwtWxkbrd .navbar-nav .nav-item a {
    margin: 0 !important;
  }
}
.cid-uKwtWxkbrd .navbar-nav .nav-item span {
  padding-right: 0.1rem;
}
.cid-uKwtWxkbrd .display-4 > .mbr-iconfont {
  font-size: 1.8em;
}
.cid-uKwtWxkbrd .display-4 > .btn > .mbr-iconfont {
  font-size: 1.43em;
}
.cid-uKwtWxkbrd .nav-dropdown .dropdown-item {
  font-weight: 400;
}
.cid-uKwtWxkbrd .navbar-buttons.mbr-section-btn {
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: center;
  justify-content: center;
}
.cid-uKwtWxkbrd .navbar-buttons.mbr-section-btn > .mbr-iconfont {
  font-size: 17px !important;
  margin-right: 13px;
}
.cid-uKwtWxkbrd .navbar-buttons.mbr-section-btn .content-link {
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-uKwtWxkbrd .nav-dropdown .link {
  font-weight: 600;
}
.cid-uKwtWxkbrd .menu .navbar-brand .logo-text-part {
  vertical-align: top;
}
.cid-uKwtWxkbrd .content-left-side {
  text-align: center;
  padding-top: 3px;
  border-left: 1px solid #eee;
  border-right: 1px solid #eee;
  padding-left: 15px;
  padding-right: 15px;
}
@media (max-width: 575px) {
  .cid-uKwtWxkbrd .content-left-side {
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
    padding: 0.5rem 0;
  }
  .cid-uKwtWxkbrd .content-left-side .content-link {
    font-size: 0.8rem;
    margin: 0;
    padding-bottom: 1rem;
    display: flex;
    -webkit-box-pack: justify;
    justify-content: space-between;
  }
}
.cid-uKwtWxkbrd .content-left-side .content-link.display-4 {
  font-size: 16px !important;
}
.cid-uKwtWxkbrd .content-left-side .content-link {
  line-height: 3.4375;
}
.cid-uKwtWxkbrd .content-right-side {
  text-align: center;
}
@media (max-width: 575px) {
  .cid-uKwtWxkbrd .content-right-side {
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
    padding: 0.5rem 0;
  }
  .cid-uKwtWxkbrd .content-right-side .content-link {
    font-size: 0.8rem;
    margin: 0;
    padding-bottom: 1rem;
    display: flex;
    -webkit-box-pack: justify;
    justify-content: space-between;
  }
}
.cid-uKwtWxkbrd .menu-content-top {
  -webkit-transition: height 0.3s ease-in-out;
  transition: height 0.3s ease-in-out;
  padding-top: 0px;
}
.cid-uKwtWxkbrd .menu-content-bottom {
  padding-bottom: 0px;
}
@media (max-width: 1200px) {
  .cid-uKwtWxkbrd .menu-content-bottom {
    margin-bottom: 1rem;
  }
}
.cid-uKwtWxkbrd .menu-content-top.show {
  display: block;
}
.cid-uKwtWxkbrd .pre-header-right {
  align-self: center;
}
.cid-uKwtWxkbrd .pre-header-right .content-right-side .content-link {
  border-right: 1px solid #eee;
  -webkit-transition: 0.3s all;
  transition: 0.3s all;
  padding: 21px 12px;
}
.cid-uKwtWxkbrd .pre-header-right .content-right-side .content-link:hover {
  -webkit-transition: 0.3s all;
  transition: 0.3s all;
  background-color: #ffa600;
}
.cid-uKwtWxkbrd .pre-header-right .content-right-side .content-link:hover span {
  color: #000000;
}
.cid-uKwtWxkbrd .pre-header-right .content-right-side .content-link span {
  vertical-align: middle;
  font-size: 1.2rem;
  color: #777;
}
.cid-uKwtWxkbrd .pre-header-right .content-right-side .content-link:first-child {
  border-left: 1px solid #eee;
}
.cid-uKwtWxkbrd .pre-header-right .content-right-side .content-link:last-child {
  border-right: 1px solid #eee;
}
.cid-uKwtWxkbrd .navbar .menu-content-top {
  display: block;
  width: 100%;
}
@media (max-width: 1200px) {
  .cid-uKwtWxkbrd .content-left-side {
    text-align: center;
    padding-bottom: 1rem;
  }
  .cid-uKwtWxkbrd .navbar .menu-content-top {
    display: none;
  }
  .cid-uKwtWxkbrd .dropdown-item {
    padding: 0.235em 0 !important;
    margin: 0 !important;
    -webkit-transition: all 0.25s ease-in-out;
    -moz-transition: all 0.25s ease-in-out;
  }
  .cid-uKwtWxkbrd .dropdown-item:before {
    display: none;
  }
  .cid-uKwtWxkbrd .menu-logo {
    width: 100%;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    justify-content: space-between;
  }
  .cid-uKwtWxkbrd img {
    height: 3.8rem !important;
  }
  .cid-uKwtWxkbrd .btn {
    display: flex;
  }
  .cid-uKwtWxkbrd button.navbar-toggler {
    display: block;
    align-self: center;
  }
  .cid-uKwtWxkbrd .navbar-brand {
    margin-left: 1rem !important;
    margin-top: 0.5rem;
  }
  .cid-uKwtWxkbrd .navbar-toggleable-sm {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
  }
  .cid-uKwtWxkbrd .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-uKwtWxkbrd .navbar-collapse.collapsing,
  .cid-uKwtWxkbrd .navbar-collapse.show {
    display: block !important;
  }
  .cid-uKwtWxkbrd .navbar-collapse.collapsing .navbar-nav,
  .cid-uKwtWxkbrd .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: left;
  }
  .cid-uKwtWxkbrd .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-uKwtWxkbrd .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
    padding: 0.5rem 0;
  }
  .cid-uKwtWxkbrd .navbar-collapse.collapsing .navbar-buttons,
  .cid-uKwtWxkbrd .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-uKwtWxkbrd .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-uKwtWxkbrd .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-uKwtWxkbrd .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    -webkit-transition-duration: 0.5s;
    transition-duration: 0.5s;
    -webkit-transition-property: opacity, padding, height;
    transition-property: opacity, padding, height;
  }
  .cid-uKwtWxkbrd .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-uKwtWxkbrd .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-uKwtWxkbrd .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-uKwtWxkbrd .menu-content-middle {
    width: 100%;
  }
}
@media (min-width: 1200px) {
  .cid-uKwtWxkbrd .menu-content-top .row {
    -webkit-box-pack: justify;
    justify-content: space-between;
    flex-wrap: nowrap;
  }
  .cid-uKwtWxkbrd .content-right-side {
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: end;
    justify-content: flex-end;
    flex-basis: 70%;
    flex-shrink: 0;
    flex-wrap: wrap;
    text-align: right;
  }
  .cid-uKwtWxkbrd .content-left-side {
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: start;
    justify-content: flex-start;
    flex-basis: 70%;
    flex-shrink: 0;
    flex-wrap: wrap;
    text-align: right;
  }
  .cid-uKwtWxkbrd .menu-content-top {
    border-bottom: 1px solid rgba(0, 0, 0, 0.12);
  }
  .cid-uKwtWxkbrd .navbar {
    display: block;
    padding: 0;
  }
  .cid-uKwtWxkbrd .navbar .menu-logo {
    margin-right: auto;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
  }
  .cid-uKwtWxkbrd .navbar.navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
    -webkit-align-self: initial;
    align-self: auto;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    z-index: 101;
    min-height: 76px;
  }
  .cid-uKwtWxkbrd .navbar-toggler {
    display: none;
  }
}
.cid-uKwtWxkbrd .menu-area-wrapper {
  height: 39px;
  width: 100%;
}
.cid-uKwtWxkbrd .menu-area-wrapper .menu-area {
  background-color: #0c2c68;
  position: relative;
  z-index: 9;
  border-radius: 5px;
  line-height: normal !important;
}
@media (max-width: 1200px) {
  .cid-uKwtWxkbrd .menu-area-wrapper .menu-area {
    background: transparent;
  }
}
@media (max-width: 1200px) {
  .cid-uKwtWxkbrd .menu-area-wrapper {
    height: 100%;
  }
}
.cid-uKwtWxkbrd .navbar-short {
  background: transparent;
}
.cid-uKwtWxkbrd .navbar-short .menu-content-top,
.cid-uKwtWxkbrd .navbar-short .menu-content-middle {
  display: none;
}
@media (max-width: 1200px) {
  .cid-uKwtWxkbrd .navbar-short .menu-area-wrapper {
    margin-top: 5rem;
  }
}
.cid-uKwtWxkbrd .btn {
  padding: 0.7rem 1.5rem;
  display: inline-flex;
  -webkit-box-align: center;
  align-items: center;
}
.cid-uKwtWxkbrd .btn .mbr-iconfont {
  font-size: 1.2em;
}
.cid-uKwtWxkbrd .navbar-toggleable-sm .navbar-collapse {
  -webkit-box-pack: end;
  justify-content: flex-end;
}
@media (max-width: 1200px) {
  .cid-uKwtWxkbrd .navbar-toggleable-sm .navbar-collapse {
    width: 300px;
    height: 100%;
    margin-left: 1rem;
    margin-top: 1rem;
  }
}
.cid-uKwtWxkbrd .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  padding-left: 15px;
}
.cid-uKwtWxkbrd .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-uKwtWxkbrd .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-uKwtWxkbrd .dropdown {
  color: #3a341c !important;
}
.cid-uKwtWxkbrd .dropdown .dropdown-menu {
  background: #ffffff;
  display: none;
  position: absolute;
  border-top: 3px solid #0c2c68;
  min-width: 16.875rem;
  text-align: left;
  padding-top: 0;
  padding-bottom: 0;
  color: #3a341c !important;
}
@media (max-width: 1200px) {
  .cid-uKwtWxkbrd .dropdown .dropdown-menu {
    overflow: hidden;
    border-top: none;
    background: #232323 !important;
  }
}
.cid-uKwtWxkbrd .dropdown .dropdown-menu .dropdown-item {
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
  padding-left: 10px !important;
}
.cid-uKwtWxkbrd .dropdown .dropdown-menu .dropdown-item::after {
  right: 1rem;
}
.cid-uKwtWxkbrd .dropdown .dropdown-menu .dropdown-item:hover {
  background-color: #ffa600;
  color: #000000;
}
.cid-uKwtWxkbrd .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
@media (max-width: 1200px) {
  .cid-uKwtWxkbrd .dropdown .dropdown-menu .dropdown-item:hover {
    background-color: #232323;
  }
}
.cid-uKwtWxkbrd .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-uKwtWxkbrd .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  color: #000000;
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-uKwtWxkbrd .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-uKwtWxkbrd .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uKwtWxkbrd .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;
  display: none;
}
.cid-uKwtWxkbrd .navbar.navbar-short {
  min-height: 50px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.cid-uKwtWxkbrd .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  -webkit-transition: font-size 0.3s;
  transition: font-size 0.3s;
}
.cid-uKwtWxkbrd .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-uKwtWxkbrd .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-uKwtWxkbrd .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-uKwtWxkbrd button.navbar-toggler.collapsed .hamburger span {
  height: 2px;
}
.cid-uKwtWxkbrd button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.cid-uKwtWxkbrd button.navbar-toggler:focus {
  outline: none;
}
.cid-uKwtWxkbrd button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-radius: 20px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uKwtWxkbrd button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.cid-uKwtWxkbrd button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  -webkit-transition: all 0.15s;
  transition: all 0.15s;
}
.cid-uKwtWxkbrd button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  -webkit-transition: all 0.15s;
  transition: all 0.15s;
}
.cid-uKwtWxkbrd button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.cid-uKwtWxkbrd nav.opened .hamburger span {
  height: 4px;
  background-color: #ffffff;
}
.cid-uKwtWxkbrd nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}
.cid-uKwtWxkbrd nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  -webkit-transition: all 0.25s;
  transition: all 0.25s;
}
.cid-uKwtWxkbrd nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  -webkit-transition: all 0.25s;
  transition: all 0.25s;
}
.cid-uKwtWxkbrd nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.cid-uKwtWxkbrd .collapsed.navbar {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
}
.cid-uKwtWxkbrd .collapsed .menu-logo {
  margin-right: 0;
}
.cid-uKwtWxkbrd .collapsed .btn {
  display: flex;
}
.cid-uKwtWxkbrd .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-uKwtWxkbrd .collapsed .navbar-collapse.collapsing,
.cid-uKwtWxkbrd .collapsed .navbar-collapse.show {
  display: block !important;
  width: 100%;
}
.cid-uKwtWxkbrd .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-uKwtWxkbrd .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: left;
}
.cid-uKwtWxkbrd .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-uKwtWxkbrd .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-uKwtWxkbrd .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-uKwtWxkbrd .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-uKwtWxkbrd .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-uKwtWxkbrd .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
@media (min-width: 1200px) {
  .cid-uKwtWxkbrd .collapsed:not(.navbar-short) .navbar-collapse {
    max-height: calc(100vh - 8rem  - 3.5rem);
  }
  .cid-uKwtWxkbrd .collapsed .dropdown .dropdown-menu {
    overflow: hidden;
  }
}
.cid-uKwtWxkbrd .collapsed button.navbar-toggler {
  display: block;
  -webkit-align-self: center;
  align-self: center;
}
.cid-uKwtWxkbrd .collapsed .navbar-brand {
  margin-left: 1rem !important;
  margin-top: 0.5rem;
}
.cid-uKwtWxkbrd .collapsed .navbar-toggleable-sm {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
}
.cid-uKwtWxkbrd .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  -webkit-transition-duration: 0.25s;
  transition-duration: 0.25s;
  -webkit-transition-property: opacity, padding, height;
  transition-property: opacity, padding, height;
}
.cid-uKwtWxkbrd .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-uKwtWxkbrd .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-uKwtWxkbrd .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-uKwtWxkbrd .collapsed .dropdown-item:before {
  display: none;
}
.cid-uKwtWxkbrd .navbar-dropdown {
  padding: 0rem 1rem;
  flex-wrap: nowrap;
}
.cid-uKwtWxkbrd .navbar-collapse {
  flex-basis: auto;
  display: flex;
}
.cid-uKwtWxkbrd .nav-link:focus {
  outline: none;
}
.cid-uKwtWxkbrd .navbar-toggler {
  position: relative;
}
.cid-uKwtWxkbrd .dropdown-item.active,
.cid-uKwtWxkbrd .dropdown-item:active {
  color: auto;
}
.cid-uKwtWxkbrd .dropdown-item:hover {
  color: #ffa600;
}
.cid-uKwtWxkbrd .widget-title,
.cid-uKwtWxkbrd .widget-icon {
  color: #0c2c68;
}
.cid-uKwtWxkbrd .widget-text {
  color: #0c2c68;
}
.cid-uKwtWyKkke {
  padding-top: 3rem;
  padding-bottom: 1rem;
  background-image: url("../../../assets/images/wbg.jpg");
}
.cid-uKwtWyKkke .mbr-fallback-image.disabled {
  display: none;
}
.cid-uKwtWyKkke .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uKwtWyKkke .row {
  flex-direction: row-reverse;
}
.cid-uKwtWzw8iC {
  padding-top: 5rem;
  padding-bottom: 3rem;
  background-color: #edefeb;
}
.cid-uKwtWzw8iC .mbr-fallback-image.disabled {
  display: none;
}
.cid-uKwtWzw8iC .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-uKwtWzw8iC .container {
    padding: 0 24px;
  }
}
.cid-uKwtWzw8iC .row {
  justify-content: center;
}
.cid-uKwtWzw8iC .form-wrapper .row.dragArea .mbr-section-title {
  margin-bottom: 16px !important;
}
.cid-uKwtWzw8iC .form-wrapper .row.dragArea .mbr-text {
  margin-bottom: 32px !important;
}
.cid-uKwtWzw8iC .form-wrapper .row.dragArea .form-group {
  margin-bottom: 32px !important;
}
.cid-uKwtWzw8iC .form-wrapper .row.dragArea .form-group .form-control {
  background-color: #ffffff;
  padding: 32px;
  box-shadow: none;
  border: 2px solid transparent !important;
  border-radius: 16px !important;
  transition: all 0.3s ease-in-out;
}
@media (max-width: 992px) {
  .cid-uKwtWzw8iC .form-wrapper .row.dragArea .form-group .form-control {
    padding: 16px;
  }
}
.cid-uKwtWzw8iC .form-wrapper .row.dragArea .form-group .form-control::placeholder {
  color: #320707;
}
.cid-uKwtWzw8iC .form-wrapper .row.dragArea .form-group .form-control:hover,
.cid-uKwtWzw8iC .form-wrapper .row.dragArea .form-group .form-control:focus {
  box-shadow: none;
  border: 2px solid #ffa600 !important;
}
.cid-uKwtWzw8iC .form-wrapper .row.dragArea .form-group textarea.form-control {
  min-height: 150px;
}
.cid-uKwtWzw8iC .form-wrapper .row.dragArea .form-group .form-check {
  padding-left: 2.1em;
  margin-bottom: 16px !important;
}
.cid-uKwtWzw8iC .form-wrapper .row.dragArea .form-group .form-check .form-check-input {
  background-color: #ffa600;
  border-color: #ffa600;
}
.cid-uKwtWzw8iC .form-wrapper .row.dragArea .mbr-section-btn {
  width: 100%;
}
.cid-uKwtWzw8iC .form-wrapper .row.dragArea .mbr-section-btn .btn {
  width: 100%;
}
.cid-uKwtWzw8iC .mbr-section-title {
  color: #0c2c68;
  text-align: center;
}
.cid-uKwtWzw8iC .mbr-text {
  color: #0c2c68;
  text-align: center;
}
.cid-uKwtWzw8iC label {
  color: #262642;
}
.cid-uKwtWzw8iC LABEL {
  color: #0c2c68;
}
.cid-uKwtWzw8iC H2 {
  color: #0c2c68;
}
.cid-uKwtWzw8iC P {
  color: #0c2c68;
}
.cid-uKwtWAtJQv {
  padding-top: 5rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
  background: linear-gradient(180deg, #ffffff, #ffa600);
}
.cid-uKwtWAtJQv .container {
  max-width: 1040px;
}
@media (max-width: 575px) {
  .cid-uKwtWAtJQv .row {
    text-align: center!important;
  }
}
.cid-uKwtWAtJQv .mbr-section-title {
  color: #4BFDB1;
}
@media (max-width: 575px) {
  .cid-uKwtWAtJQv .mbr-section-title {
    text-align: center;
  }
}
.cid-uKwtWAtJQv .mbr-section-subtitle {
  color: #000000;
}
.cid-uKwtWAtJQv .mbr-text {
  color: #000000;
  margin-top: 28px;
}
.cid-uKwtWAtJQv .mbr-section-btn {
  margin-top: 18px;
}
@media (max-width: 575px) {
  .cid-uKwtWAtJQv .mbr-section-btn {
    display: flex;
    flex-wrap: wrap;
  }
  .cid-uKwtWAtJQv .mbr-section-btn .btn {
    width: 100%;
  }
}
.cid-uKwtWAtJQv .btn-primary-outline,
.cid-uKwtWAtJQv .btn-secondary-outline,
.cid-uKwtWAtJQv .btn-success-outline,
.cid-uKwtWAtJQv .btn-info-outline,
.cid-uKwtWAtJQv .btn-warning-outline,
.cid-uKwtWAtJQv .btn-danger-outline,
.cid-uKwtWAtJQv .btn-white-outline,
.cid-uKwtWAtJQv .btn-black-outline {
  padding: 0;
  min-height: auto;
}
.cid-uKwtWAtJQv .mbr-fallback-image.disabled {
  display: none;
}
.cid-uKwtWAtJQv .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uKwtWAtJQv .mbr-section-title,
.cid-uKwtWAtJQv .mbr-section-btn {
  color: #0c2c68;
  text-align: left;
}
.cid-uKwtWBfDiS {
  padding-top: 45px;
  padding-bottom: 30px;
  background-color: #0c2c68;
}
.cid-uKwtWBfDiS .copyright {
  display: flex;
}
@media (max-width: 992px) {
  .cid-uKwtWBfDiS .copyright {
    margin-bottom: 1rem;
  }
}
.cid-uKwtWBfDiS .text-wrap {
  transition: all 0.3s;
  padding: 23px;
  bottom: 0;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: flex-end;
  width: 100%;
  overflow: hidden;
  position: relative;
}
.cid-uKwtWBfDiS .text-wrap .icons-wrap .icon-wrapper {
  background: #06182d;
  display: flex;
  width: 31px;
  height: 31px;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  border: 2px solid #9c98cf;
  transition: all 0.3s;
  z-index: 4;
  cursor: pointer;
  margin: 0 0.2rem;
}
.cid-uKwtWBfDiS .text-wrap .icons-wrap .icon-wrapper:hover {
  background: #ffa600;
  border-color: #ffa600;
}
.cid-uKwtWBfDiS .text-wrap .icons-wrap .icon-wrapper:hover .link-icon {
  color: #ffffde;
}
.cid-uKwtWBfDiS .text-wrap .icons-wrap .icon-wrapper .link-icon {
  display: inline-block;
  color: #ffffde;
  transition: all 0.3s;
  font-size: 14px;
  justify-content: center;
}
.cid-uKwtWBfDiS .text-wrap .icons-wrap::before {
  height: 2px;
  width: 100%;
  top: 50%;
  right: 58%;
  position: absolute;
  display: inline-block;
  content: "";
  background-color: #9c98cf;
}
@media (max-width: 992px) {
  .cid-uKwtWBfDiS .text-wrap .icons-wrap::before {
    display: none;
  }
}
.cid-uKwtWBfDiS .text-wrap .icons-wrap::after {
  height: 2px;
  width: 100%;
  top: 50%;
  left: 58%;
  position: absolute;
  display: inline-block;
  content: "";
  background-color: #9c98cf;
}
@media (max-width: 992px) {
  .cid-uKwtWBfDiS .text-wrap .icons-wrap::after {
    display: none;
  }
}
.cid-uMdC8Dz8RM {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #000000;
}
.cid-uMdC8Dz8RM .row {
  flex-direction: row-reverse;
}
.cid-uMdC8Dz8RM .justify-content-center {
  align-items: center;
}
.cid-uMdC8Dz8RM .mbr-section-title {
  text-align: center;
  color: #ffa600;
}
.cid-uMdC8Dz8RM .mbr-text,
.cid-uMdC8Dz8RM .mbr-section-btn {
  text-align: center;
}
@media (max-width: 767px) {
  .cid-uMdC8Dz8RM .item-wrapper {
    margin-bottom: 2rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-uMdC8Dz8RM .item-wrapper {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uMdC8Dz8RM .item-wrapper {
    padding: 4rem;
  }
}
.cid-uMcYuMLJii {
  padding-top: 5rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
  background: linear-gradient(180deg, #ffffff, #9c98cf);
}
.cid-uMcYuMLJii .container {
  max-width: 1040px;
}
@media (max-width: 575px) {
  .cid-uMcYuMLJii .row {
    text-align: center!important;
  }
}
.cid-uMcYuMLJii .mbr-section-title {
  color: #4BFDB1;
}
@media (max-width: 575px) {
  .cid-uMcYuMLJii .mbr-section-title {
    text-align: center;
  }
}
.cid-uMcYuMLJii .mbr-section-subtitle {
  color: #000000;
}
.cid-uMcYuMLJii .mbr-text {
  color: #000000;
  margin-top: 28px;
}
.cid-uMcYuMLJii .mbr-section-btn {
  margin-top: 18px;
}
@media (max-width: 575px) {
  .cid-uMcYuMLJii .mbr-section-btn {
    display: flex;
    flex-wrap: wrap;
  }
  .cid-uMcYuMLJii .mbr-section-btn .btn {
    width: 100%;
  }
}
.cid-uMcYuMLJii .btn-primary-outline,
.cid-uMcYuMLJii .btn-secondary-outline,
.cid-uMcYuMLJii .btn-success-outline,
.cid-uMcYuMLJii .btn-info-outline,
.cid-uMcYuMLJii .btn-warning-outline,
.cid-uMcYuMLJii .btn-danger-outline,
.cid-uMcYuMLJii .btn-white-outline,
.cid-uMcYuMLJii .btn-black-outline {
  padding: 0;
  min-height: auto;
}
.cid-uMcYuMLJii .mbr-fallback-image.disabled {
  display: none;
}
.cid-uMcYuMLJii .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uMcYuMLJii .mbr-section-title,
.cid-uMcYuMLJii .mbr-section-btn {
  color: #0c2c68;
  text-align: left;
}
.cid-uMcYuNeI4p {
  padding-top: 45px;
  padding-bottom: 30px;
  background-color: #0c2c68;
}
.cid-uMcYuNeI4p .copyright {
  display: flex;
}
@media (max-width: 992px) {
  .cid-uMcYuNeI4p .copyright {
    margin-bottom: 1rem;
  }
}
.cid-uMcYuNeI4p .text-wrap {
  transition: all 0.3s;
  padding: 23px;
  bottom: 0;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: flex-end;
  width: 100%;
  overflow: hidden;
  position: relative;
}
.cid-uMcYuNeI4p .text-wrap .icons-wrap .icon-wrapper {
  background: #06182d;
  display: flex;
  width: 31px;
  height: 31px;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  border: 2px solid #9c98cf;
  transition: all 0.3s;
  z-index: 4;
  cursor: pointer;
  margin: 0 0.2rem;
}
.cid-uMcYuNeI4p .text-wrap .icons-wrap .icon-wrapper:hover {
  background: #ffa600;
  border-color: #ffa600;
}
.cid-uMcYuNeI4p .text-wrap .icons-wrap .icon-wrapper:hover .link-icon {
  color: #ffffde;
}
.cid-uMcYuNeI4p .text-wrap .icons-wrap .icon-wrapper .link-icon {
  display: inline-block;
  color: #ffffde;
  transition: all 0.3s;
  font-size: 14px;
  justify-content: center;
}
.cid-uMcYuNeI4p .text-wrap .icons-wrap::before {
  height: 2px;
  width: 100%;
  top: 50%;
  right: 58%;
  position: absolute;
  display: inline-block;
  content: "";
  background-color: #9c98cf;
}
@media (max-width: 992px) {
  .cid-uMcYuNeI4p .text-wrap .icons-wrap::before {
    display: none;
  }
}
.cid-uMcYuNeI4p .text-wrap .icons-wrap::after {
  height: 2px;
  width: 100%;
  top: 50%;
  left: 58%;
  position: absolute;
  display: inline-block;
  content: "";
  background-color: #9c98cf;
}
@media (max-width: 992px) {
  .cid-uMcYuNeI4p .text-wrap .icons-wrap::after {
    display: none;
  }
}
.cid-uMAt8Xxyph .navbar {
  background: #ffffff;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  min-height: 77px;
}
@media (min-width: 1200px) {
  .cid-uMAt8Xxyph .navbar .dropdown .dropdown-menu .dropdown-item {
    padding: 0.835em 2.5385em 0.835em 3.5385em !important;
    margin: 0 !important;
  }
  .cid-uMAt8Xxyph .navbar .dropdown .dropdown-menu .dropdown-item:hover {
    padding: 0.835em 2.5385em 0.835em 3.8385em !important;
  }
}
.cid-uMAt8Xxyph .menu-logo {
  display: flex;
  position: relative;
  -webkit-box-align: center;
  align-items: center;
  margin-right: auto;
}
.cid-uMAt8Xxyph .menu-logo .navbar-brand {
  display: flex;
  padding: 0.5rem 0;
  -webkit-transition: padding 0.2s;
  transition: padding 0.2s;
  min-height: 3.8rem;
  -webkit-box-align: center;
  align-items: center;
}
.cid-uMAt8Xxyph .menu-logo .navbar-brand .navbar-caption-wrap {
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: 0.3rem 0;
}
.cid-uMAt8Xxyph .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-uMAt8Xxyph .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  -webkit-transition: font-size 0.25s;
  transition: font-size 0.25s;
}
.cid-uMAt8Xxyph .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
  width: auto;
}
.cid-uMAt8Xxyph .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  -webkit-transition: font-size 0.25s;
  transition: font-size 0.25s;
}
.cid-uMAt8Xxyph .navbar-dropdown.bg-color.transparent.opened {
  background: #ffffff;
}
.cid-uMAt8Xxyph .navbar.opened {
  text-align: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
  margin-left: auto;
  max-width: 20rem;
  height: auto;
  -webkit-box-pack: start;
  justify-content: flex-start;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  background: #232323 !important;
}
.cid-uMAt8Xxyph .navbar.opened .collapse .dropdown-item {
  color: #ffffff;
}
.cid-uMAt8Xxyph .navbar.opened a.brand-link {
  color: #ffffff;
}
.cid-uMAt8Xxyph .navbar-fixed-top.opened {
  position: relative;
}
.cid-uMAt8Xxyph a {
  font-style: normal;
}
.cid-uMAt8Xxyph .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: middle;
  position: relative;
  text-decoration: none;
}
.cid-uMAt8Xxyph .nav-item a {
  padding: 0.4rem 0 !important;
}
.cid-uMAt8Xxyph .nav-item .nav-link {
  color: #ffffff;
}
.cid-uMAt8Xxyph .nav-item .nav-link.display-4 {
  font-size: 15px;
}
.cid-uMAt8Xxyph .widget-icon {
  display: inline-block;
  padding: 0.9rem;
  font-size: 1.25rem;
  margin-right: 10px;
  color: #4f87fb;
  border-radius: 50%;
  border: 1px solid #eee;
  font-weight: bold;
}
.cid-uMAt8Xxyph .info-widget {
  padding-left: 2rem;
  padding-top: 0.5rem;
  padding-right: 3rem;
}
.cid-uMAt8Xxyph .menu-content-right {
  display: flex;
  padding: 28px 0;
  -webkit-box-align: center;
  align-items: center;
}
.cid-uMAt8Xxyph .menu-content-right .info-widget:last-child {
  padding-right: 0;
}
.cid-uMAt8Xxyph .menu-content-right .info-widget:first-child {
  padding-left: 0;
}
@media (max-width: 1200px) {
  .cid-uMAt8Xxyph .menu-content-right {
    display: none;
  }
}
.cid-uMAt8Xxyph .widget-content {
  display: inline-block;
  vertical-align: middle;
  text-align: left;
  padding-bottom: 0.7rem;
}
.cid-uMAt8Xxyph .widget-content .widget-title {
  margin-bottom: 7px;
}
.cid-uMAt8Xxyph .widget-content .widget-text {
  margin-bottom: 0;
}
.cid-uMAt8Xxyph .widget-content .widget-text.display-4 {
  font-size: 13px;
}
.cid-uMAt8Xxyph .right-box .navbar-buttons .content-link {
  color: #ffffff;
  border-left: 1px solid #3a341c;
}
.cid-uMAt8Xxyph .right-box .navbar-buttons .content-link:first-child {
  border-left: none !important;
}
.cid-uMAt8Xxyph .right-box .navbar-buttons .btn {
  margin: 0;
  padding: 1.89rem 1.5rem !important;
  border-radius: 0 5px 5px 0 !important;
}
.cid-uMAt8Xxyph .right-box .navbar-buttons .btn.display-4 {
  font-size: 13px;
}
@media (max-width: 1200px) {
  .cid-uMAt8Xxyph .right-box {
    display: none;
  }
}
.cid-uMAt8Xxyph .dropdown-item:before {
  color: #000000;
  font-family: Material-Design-Icons !important;
  content: '\e716';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1.125rem;
  top: 1.1rem;
  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;
  transition: all 0.25s ease-in-out;
}
.cid-uMAt8Xxyph .dropdown-item:hover:before {
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  width: 16px;
}
.cid-uMAt8Xxyph .content-text {
  margin-bottom: 0;
}
.cid-uMAt8Xxyph .navbar-nav {
  padding-left: 15px;
  position: relative;
  min-height: 60px;
  color: #ffffff;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  flex-direction: row;
}
@media (min-width: 1200px) {
  .cid-uMAt8Xxyph .navbar-nav .main-menu-animated-line {
    position: absolute;
    left: 0;
    width: 0;
    height: 0;
    z-index: 100;
    border-top: 4px solid #0c2c68;
    -webkit-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-uMAt8Xxyph .navbar-nav .main-menu-animated-line.bottom {
    bottom: 0;
  }
  .cid-uMAt8Xxyph .navbar-nav .nav-item a {
    margin: 0 1.3rem !important;
  }
}
@media (max-width: 1200px) {
  .cid-uMAt8Xxyph .navbar-nav .nav-item a {
    margin: 0 !important;
  }
}
.cid-uMAt8Xxyph .navbar-nav .nav-item span {
  padding-right: 0.1rem;
}
.cid-uMAt8Xxyph .display-4 > .mbr-iconfont {
  font-size: 1.8em;
}
.cid-uMAt8Xxyph .display-4 > .btn > .mbr-iconfont {
  font-size: 1.43em;
}
.cid-uMAt8Xxyph .nav-dropdown .dropdown-item {
  font-weight: 400;
}
.cid-uMAt8Xxyph .navbar-buttons.mbr-section-btn {
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: center;
  justify-content: center;
}
.cid-uMAt8Xxyph .navbar-buttons.mbr-section-btn > .mbr-iconfont {
  font-size: 17px !important;
  margin-right: 13px;
}
.cid-uMAt8Xxyph .navbar-buttons.mbr-section-btn .content-link {
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-uMAt8Xxyph .nav-dropdown .link {
  font-weight: 600;
}
.cid-uMAt8Xxyph .menu .navbar-brand .logo-text-part {
  vertical-align: top;
}
.cid-uMAt8Xxyph .content-left-side {
  text-align: center;
  padding-top: 3px;
  border-left: 1px solid #eee;
  border-right: 1px solid #eee;
  padding-left: 15px;
  padding-right: 15px;
}
@media (max-width: 575px) {
  .cid-uMAt8Xxyph .content-left-side {
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
    padding: 0.5rem 0;
  }
  .cid-uMAt8Xxyph .content-left-side .content-link {
    font-size: 0.8rem;
    margin: 0;
    padding-bottom: 1rem;
    display: flex;
    -webkit-box-pack: justify;
    justify-content: space-between;
  }
}
.cid-uMAt8Xxyph .content-left-side .content-link.display-4 {
  font-size: 16px !important;
}
.cid-uMAt8Xxyph .content-left-side .content-link {
  line-height: 3.4375;
}
.cid-uMAt8Xxyph .content-right-side {
  text-align: center;
}
@media (max-width: 575px) {
  .cid-uMAt8Xxyph .content-right-side {
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
    padding: 0.5rem 0;
  }
  .cid-uMAt8Xxyph .content-right-side .content-link {
    font-size: 0.8rem;
    margin: 0;
    padding-bottom: 1rem;
    display: flex;
    -webkit-box-pack: justify;
    justify-content: space-between;
  }
}
.cid-uMAt8Xxyph .menu-content-top {
  -webkit-transition: height 0.3s ease-in-out;
  transition: height 0.3s ease-in-out;
  padding-top: 0px;
}
.cid-uMAt8Xxyph .menu-content-bottom {
  padding-bottom: 0px;
}
@media (max-width: 1200px) {
  .cid-uMAt8Xxyph .menu-content-bottom {
    margin-bottom: 1rem;
  }
}
.cid-uMAt8Xxyph .menu-content-top.show {
  display: block;
}
.cid-uMAt8Xxyph .pre-header-right {
  align-self: center;
}
.cid-uMAt8Xxyph .pre-header-right .content-right-side .content-link {
  border-right: 1px solid #eee;
  -webkit-transition: 0.3s all;
  transition: 0.3s all;
  padding: 21px 12px;
}
.cid-uMAt8Xxyph .pre-header-right .content-right-side .content-link:hover {
  -webkit-transition: 0.3s all;
  transition: 0.3s all;
  background-color: #ffa600;
}
.cid-uMAt8Xxyph .pre-header-right .content-right-side .content-link:hover span {
  color: #000000;
}
.cid-uMAt8Xxyph .pre-header-right .content-right-side .content-link span {
  vertical-align: middle;
  font-size: 1.2rem;
  color: #777;
}
.cid-uMAt8Xxyph .pre-header-right .content-right-side .content-link:first-child {
  border-left: 1px solid #eee;
}
.cid-uMAt8Xxyph .pre-header-right .content-right-side .content-link:last-child {
  border-right: 1px solid #eee;
}
.cid-uMAt8Xxyph .navbar .menu-content-top {
  display: block;
  width: 100%;
}
@media (max-width: 1200px) {
  .cid-uMAt8Xxyph .content-left-side {
    text-align: center;
    padding-bottom: 1rem;
  }
  .cid-uMAt8Xxyph .navbar .menu-content-top {
    display: none;
  }
  .cid-uMAt8Xxyph .dropdown-item {
    padding: 0.235em 0 !important;
    margin: 0 !important;
    -webkit-transition: all 0.25s ease-in-out;
    -moz-transition: all 0.25s ease-in-out;
  }
  .cid-uMAt8Xxyph .dropdown-item:before {
    display: none;
  }
  .cid-uMAt8Xxyph .menu-logo {
    width: 100%;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    justify-content: space-between;
  }
  .cid-uMAt8Xxyph img {
    height: 3.8rem !important;
  }
  .cid-uMAt8Xxyph .btn {
    display: flex;
  }
  .cid-uMAt8Xxyph button.navbar-toggler {
    display: block;
    align-self: center;
  }
  .cid-uMAt8Xxyph .navbar-brand {
    margin-left: 1rem !important;
    margin-top: 0.5rem;
  }
  .cid-uMAt8Xxyph .navbar-toggleable-sm {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
  }
  .cid-uMAt8Xxyph .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-uMAt8Xxyph .navbar-collapse.collapsing,
  .cid-uMAt8Xxyph .navbar-collapse.show {
    display: block !important;
  }
  .cid-uMAt8Xxyph .navbar-collapse.collapsing .navbar-nav,
  .cid-uMAt8Xxyph .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: left;
  }
  .cid-uMAt8Xxyph .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-uMAt8Xxyph .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
    padding: 0.5rem 0;
  }
  .cid-uMAt8Xxyph .navbar-collapse.collapsing .navbar-buttons,
  .cid-uMAt8Xxyph .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-uMAt8Xxyph .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-uMAt8Xxyph .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-uMAt8Xxyph .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    -webkit-transition-duration: 0.5s;
    transition-duration: 0.5s;
    -webkit-transition-property: opacity, padding, height;
    transition-property: opacity, padding, height;
  }
  .cid-uMAt8Xxyph .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-uMAt8Xxyph .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-uMAt8Xxyph .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-uMAt8Xxyph .menu-content-middle {
    width: 100%;
  }
}
@media (min-width: 1200px) {
  .cid-uMAt8Xxyph .menu-content-top .row {
    -webkit-box-pack: justify;
    justify-content: space-between;
    flex-wrap: nowrap;
  }
  .cid-uMAt8Xxyph .content-right-side {
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: end;
    justify-content: flex-end;
    flex-basis: 70%;
    flex-shrink: 0;
    flex-wrap: wrap;
    text-align: right;
  }
  .cid-uMAt8Xxyph .content-left-side {
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: start;
    justify-content: flex-start;
    flex-basis: 70%;
    flex-shrink: 0;
    flex-wrap: wrap;
    text-align: right;
  }
  .cid-uMAt8Xxyph .menu-content-top {
    border-bottom: 1px solid rgba(0, 0, 0, 0.12);
  }
  .cid-uMAt8Xxyph .navbar {
    display: block;
    padding: 0;
  }
  .cid-uMAt8Xxyph .navbar .menu-logo {
    margin-right: auto;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
  }
  .cid-uMAt8Xxyph .navbar.navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
    -webkit-align-self: initial;
    align-self: auto;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    z-index: 101;
    min-height: 76px;
  }
  .cid-uMAt8Xxyph .navbar-toggler {
    display: none;
  }
}
.cid-uMAt8Xxyph .menu-area-wrapper {
  height: 39px;
  width: 100%;
}
.cid-uMAt8Xxyph .menu-area-wrapper .menu-area {
  background-color: #0c2c68;
  position: relative;
  z-index: 9;
  border-radius: 5px;
  line-height: normal !important;
}
@media (max-width: 1200px) {
  .cid-uMAt8Xxyph .menu-area-wrapper .menu-area {
    background: transparent;
  }
}
@media (max-width: 1200px) {
  .cid-uMAt8Xxyph .menu-area-wrapper {
    height: 100%;
  }
}
.cid-uMAt8Xxyph .navbar-short {
  background: transparent;
}
.cid-uMAt8Xxyph .navbar-short .menu-content-top,
.cid-uMAt8Xxyph .navbar-short .menu-content-middle {
  display: none;
}
@media (max-width: 1200px) {
  .cid-uMAt8Xxyph .navbar-short .menu-area-wrapper {
    margin-top: 5rem;
  }
}
.cid-uMAt8Xxyph .btn {
  padding: 0.7rem 1.5rem;
  display: inline-flex;
  -webkit-box-align: center;
  align-items: center;
}
.cid-uMAt8Xxyph .btn .mbr-iconfont {
  font-size: 1.2em;
}
.cid-uMAt8Xxyph .navbar-toggleable-sm .navbar-collapse {
  -webkit-box-pack: end;
  justify-content: flex-end;
}
@media (max-width: 1200px) {
  .cid-uMAt8Xxyph .navbar-toggleable-sm .navbar-collapse {
    width: 300px;
    height: 100%;
    margin-left: 1rem;
    margin-top: 1rem;
  }
}
.cid-uMAt8Xxyph .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  padding-left: 15px;
}
.cid-uMAt8Xxyph .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-uMAt8Xxyph .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-uMAt8Xxyph .dropdown {
  color: #3a341c !important;
}
.cid-uMAt8Xxyph .dropdown .dropdown-menu {
  background: #ffffff;
  display: none;
  position: absolute;
  border-top: 3px solid #0c2c68;
  min-width: 16.875rem;
  text-align: left;
  padding-top: 0;
  padding-bottom: 0;
  color: #3a341c !important;
}
@media (max-width: 1200px) {
  .cid-uMAt8Xxyph .dropdown .dropdown-menu {
    overflow: hidden;
    border-top: none;
    background: #232323 !important;
  }
}
.cid-uMAt8Xxyph .dropdown .dropdown-menu .dropdown-item {
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
  padding-left: 10px !important;
}
.cid-uMAt8Xxyph .dropdown .dropdown-menu .dropdown-item::after {
  right: 1rem;
}
.cid-uMAt8Xxyph .dropdown .dropdown-menu .dropdown-item:hover {
  background-color: #ffa600;
  color: #000000;
}
.cid-uMAt8Xxyph .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
@media (max-width: 1200px) {
  .cid-uMAt8Xxyph .dropdown .dropdown-menu .dropdown-item:hover {
    background-color: #232323;
  }
}
.cid-uMAt8Xxyph .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-uMAt8Xxyph .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  color: #000000;
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-uMAt8Xxyph .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-uMAt8Xxyph .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uMAt8Xxyph .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;
  display: none;
}
.cid-uMAt8Xxyph .navbar.navbar-short {
  min-height: 50px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.cid-uMAt8Xxyph .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  -webkit-transition: font-size 0.3s;
  transition: font-size 0.3s;
}
.cid-uMAt8Xxyph .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-uMAt8Xxyph .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-uMAt8Xxyph .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-uMAt8Xxyph button.navbar-toggler.collapsed .hamburger span {
  height: 2px;
}
.cid-uMAt8Xxyph button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.cid-uMAt8Xxyph button.navbar-toggler:focus {
  outline: none;
}
.cid-uMAt8Xxyph button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-radius: 20px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uMAt8Xxyph button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.cid-uMAt8Xxyph button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  -webkit-transition: all 0.15s;
  transition: all 0.15s;
}
.cid-uMAt8Xxyph button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  -webkit-transition: all 0.15s;
  transition: all 0.15s;
}
.cid-uMAt8Xxyph button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.cid-uMAt8Xxyph nav.opened .hamburger span {
  height: 4px;
  background-color: #ffffff;
}
.cid-uMAt8Xxyph nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}
.cid-uMAt8Xxyph nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  -webkit-transition: all 0.25s;
  transition: all 0.25s;
}
.cid-uMAt8Xxyph nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  -webkit-transition: all 0.25s;
  transition: all 0.25s;
}
.cid-uMAt8Xxyph nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.cid-uMAt8Xxyph .collapsed.navbar {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
}
.cid-uMAt8Xxyph .collapsed .menu-logo {
  margin-right: 0;
}
.cid-uMAt8Xxyph .collapsed .btn {
  display: flex;
}
.cid-uMAt8Xxyph .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-uMAt8Xxyph .collapsed .navbar-collapse.collapsing,
.cid-uMAt8Xxyph .collapsed .navbar-collapse.show {
  display: block !important;
  width: 100%;
}
.cid-uMAt8Xxyph .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-uMAt8Xxyph .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: left;
}
.cid-uMAt8Xxyph .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-uMAt8Xxyph .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-uMAt8Xxyph .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-uMAt8Xxyph .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-uMAt8Xxyph .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-uMAt8Xxyph .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
@media (min-width: 1200px) {
  .cid-uMAt8Xxyph .collapsed:not(.navbar-short) .navbar-collapse {
    max-height: calc(100vh - 8rem  - 3.5rem);
  }
  .cid-uMAt8Xxyph .collapsed .dropdown .dropdown-menu {
    overflow: hidden;
  }
}
.cid-uMAt8Xxyph .collapsed button.navbar-toggler {
  display: block;
  -webkit-align-self: center;
  align-self: center;
}
.cid-uMAt8Xxyph .collapsed .navbar-brand {
  margin-left: 1rem !important;
  margin-top: 0.5rem;
}
.cid-uMAt8Xxyph .collapsed .navbar-toggleable-sm {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
}
.cid-uMAt8Xxyph .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  -webkit-transition-duration: 0.25s;
  transition-duration: 0.25s;
  -webkit-transition-property: opacity, padding, height;
  transition-property: opacity, padding, height;
}
.cid-uMAt8Xxyph .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-uMAt8Xxyph .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-uMAt8Xxyph .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-uMAt8Xxyph .collapsed .dropdown-item:before {
  display: none;
}
.cid-uMAt8Xxyph .navbar-dropdown {
  padding: 0rem 1rem;
  flex-wrap: nowrap;
}
.cid-uMAt8Xxyph .navbar-collapse {
  flex-basis: auto;
  display: flex;
}
.cid-uMAt8Xxyph .nav-link:focus {
  outline: none;
}
.cid-uMAt8Xxyph .navbar-toggler {
  position: relative;
}
.cid-uMAt8Xxyph .dropdown-item.active,
.cid-uMAt8Xxyph .dropdown-item:active {
  color: auto;
}
.cid-uMAt8Xxyph .dropdown-item:hover {
  color: #ffa600;
}
.cid-uMAt8Xxyph .widget-title,
.cid-uMAt8Xxyph .widget-icon {
  color: #0c2c68;
}
.cid-uMAt8Xxyph .widget-text {
  color: #0c2c68;
}
.cid-uMAt8YnTHK {
  padding-top: 3rem;
  padding-bottom: 1rem;
  background-image: url("../../../assets/images/wbg.jpg");
}
.cid-uMAt8YnTHK .mbr-fallback-image.disabled {
  display: none;
}
.cid-uMAt8YnTHK .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uMAt8YnTHK .row {
  flex-direction: row-reverse;
}
.cid-uMAt8YNtuv {
  padding-top: 5rem;
  padding-bottom: 3rem;
  background-color: #edefeb;
}
.cid-uMAt8YNtuv .mbr-fallback-image.disabled {
  display: none;
}
.cid-uMAt8YNtuv .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-uMAt8YNtuv .container {
    padding: 0 24px;
  }
}
.cid-uMAt8YNtuv .row {
  justify-content: center;
}
.cid-uMAt8YNtuv .form-wrapper .row.dragArea .mbr-section-title {
  margin-bottom: 16px !important;
}
.cid-uMAt8YNtuv .form-wrapper .row.dragArea .mbr-text {
  margin-bottom: 32px !important;
}
.cid-uMAt8YNtuv .form-wrapper .row.dragArea .form-group {
  margin-bottom: 32px !important;
}
.cid-uMAt8YNtuv .form-wrapper .row.dragArea .form-group .form-control {
  background-color: #ffffff;
  padding: 32px;
  box-shadow: none;
  border: 2px solid transparent !important;
  border-radius: 16px !important;
  transition: all 0.3s ease-in-out;
}
@media (max-width: 992px) {
  .cid-uMAt8YNtuv .form-wrapper .row.dragArea .form-group .form-control {
    padding: 16px;
  }
}
.cid-uMAt8YNtuv .form-wrapper .row.dragArea .form-group .form-control::placeholder {
  color: #320707;
}
.cid-uMAt8YNtuv .form-wrapper .row.dragArea .form-group .form-control:hover,
.cid-uMAt8YNtuv .form-wrapper .row.dragArea .form-group .form-control:focus {
  box-shadow: none;
  border: 2px solid #ffa600 !important;
}
.cid-uMAt8YNtuv .form-wrapper .row.dragArea .form-group textarea.form-control {
  min-height: 150px;
}
.cid-uMAt8YNtuv .form-wrapper .row.dragArea .form-group .form-check {
  padding-left: 2.1em;
  margin-bottom: 16px !important;
}
.cid-uMAt8YNtuv .form-wrapper .row.dragArea .form-group .form-check .form-check-input {
  background-color: #ffa600;
  border-color: #ffa600;
}
.cid-uMAt8YNtuv .form-wrapper .row.dragArea .mbr-section-btn {
  width: 100%;
}
.cid-uMAt8YNtuv .form-wrapper .row.dragArea .mbr-section-btn .btn {
  width: 100%;
}
.cid-uMAt8YNtuv .mbr-section-title {
  color: #0c2c68;
  text-align: center;
}
.cid-uMAt8YNtuv .mbr-text {
  color: #0c2c68;
  text-align: center;
}
.cid-uMAt8YNtuv label {
  color: #262642;
}
.cid-uMAt8YNtuv LABEL {
  color: #0c2c68;
}
.cid-uMAt8YNtuv H2 {
  color: #0c2c68;
}
.cid-uMAt8YNtuv P {
  color: #0c2c68;
}
.cid-uMAt8Zermz {
  padding-top: 5rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
  background: linear-gradient(180deg, #ffffff, #ffa600);
}
.cid-uMAt8Zermz .container {
  max-width: 1040px;
}
@media (max-width: 575px) {
  .cid-uMAt8Zermz .row {
    text-align: center!important;
  }
}
.cid-uMAt8Zermz .mbr-section-title {
  color: #4BFDB1;
}
@media (max-width: 575px) {
  .cid-uMAt8Zermz .mbr-section-title {
    text-align: center;
  }
}
.cid-uMAt8Zermz .mbr-section-subtitle {
  color: #000000;
}
.cid-uMAt8Zermz .mbr-text {
  color: #000000;
  margin-top: 28px;
}
.cid-uMAt8Zermz .mbr-section-btn {
  margin-top: 18px;
}
@media (max-width: 575px) {
  .cid-uMAt8Zermz .mbr-section-btn {
    display: flex;
    flex-wrap: wrap;
  }
  .cid-uMAt8Zermz .mbr-section-btn .btn {
    width: 100%;
  }
}
.cid-uMAt8Zermz .btn-primary-outline,
.cid-uMAt8Zermz .btn-secondary-outline,
.cid-uMAt8Zermz .btn-success-outline,
.cid-uMAt8Zermz .btn-info-outline,
.cid-uMAt8Zermz .btn-warning-outline,
.cid-uMAt8Zermz .btn-danger-outline,
.cid-uMAt8Zermz .btn-white-outline,
.cid-uMAt8Zermz .btn-black-outline {
  padding: 0;
  min-height: auto;
}
.cid-uMAt8Zermz .mbr-fallback-image.disabled {
  display: none;
}
.cid-uMAt8Zermz .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uMAt8Zermz .mbr-section-title,
.cid-uMAt8Zermz .mbr-section-btn {
  color: #0c2c68;
  text-align: left;
}
.cid-uMAt8ZGJwq {
  padding-top: 45px;
  padding-bottom: 30px;
  background-color: #0c2c68;
}
.cid-uMAt8ZGJwq .copyright {
  display: flex;
}
@media (max-width: 992px) {
  .cid-uMAt8ZGJwq .copyright {
    margin-bottom: 1rem;
  }
}
.cid-uMAt8ZGJwq .text-wrap {
  transition: all 0.3s;
  padding: 23px;
  bottom: 0;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: flex-end;
  width: 100%;
  overflow: hidden;
  position: relative;
}
.cid-uMAt8ZGJwq .text-wrap .icons-wrap .icon-wrapper {
  background: #06182d;
  display: flex;
  width: 31px;
  height: 31px;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  border: 2px solid #9c98cf;
  transition: all 0.3s;
  z-index: 4;
  cursor: pointer;
  margin: 0 0.2rem;
}
.cid-uMAt8ZGJwq .text-wrap .icons-wrap .icon-wrapper:hover {
  background: #ffa600;
  border-color: #ffa600;
}
.cid-uMAt8ZGJwq .text-wrap .icons-wrap .icon-wrapper:hover .link-icon {
  color: #ffffde;
}
.cid-uMAt8ZGJwq .text-wrap .icons-wrap .icon-wrapper .link-icon {
  display: inline-block;
  color: #ffffde;
  transition: all 0.3s;
  font-size: 14px;
  justify-content: center;
}
.cid-uMAt8ZGJwq .text-wrap .icons-wrap::before {
  height: 2px;
  width: 100%;
  top: 50%;
  right: 58%;
  position: absolute;
  display: inline-block;
  content: "";
  background-color: #9c98cf;
}
@media (max-width: 992px) {
  .cid-uMAt8ZGJwq .text-wrap .icons-wrap::before {
    display: none;
  }
}
.cid-uMAt8ZGJwq .text-wrap .icons-wrap::after {
  height: 2px;
  width: 100%;
  top: 50%;
  left: 58%;
  position: absolute;
  display: inline-block;
  content: "";
  background-color: #9c98cf;
}
@media (max-width: 992px) {
  .cid-uMAt8ZGJwq .text-wrap .icons-wrap::after {
    display: none;
  }
}
