body {
  font-family: DM Sans;
}
.display-1 {
  font-family: 'Luxurious Roman', display;
  font-size: 4.11rem;
  line-height: 1;
  letter-spacing: -0.67px;
  font-weight: 400;
}
.display-1 > .mbr-iconfont {
  font-size: 5.1375rem;
}
.display-2 {
  font-family: 'Luxurious Roman', display;
  font-size: 2.6rem;
  line-height: 1.05;
  letter-spacing: -0.58px;
  font-weight: 400;
}
.display-2 > .mbr-iconfont {
  font-size: 3.25rem;
}
.display-4 {
  font-family: 'Luxurious Roman', display;
  font-size: 1.11rem;
  line-height: 1.68;
}
.display-4 > .mbr-iconfont {
  font-size: 1.3875rem;
}
.display-5 {
  font-family: 'Luxurious Roman', display;
  font-size: 2.33rem;
  line-height: 1.2;
  letter-spacing: -0.38px;
  font-weight: 400;
}
.display-5 > .mbr-iconfont {
  font-size: 2.9125rem;
}
.display-7 {
  font-family: 'Luxurious Roman', display;
  font-size: 1rem;
  line-height: 1.68;
  font-weight: 400;
}
.display-7 > .mbr-iconfont {
  font-size: 1.25rem;
}
/* ---- Fluid typography for mobile devices ---- */
/* 1.4 - font scale ratio ( bootstrap == 1.42857 ) */
/* 100vw - current viewport width */
/* (48 - 20)  48 == 48rem == 768px, 20 == 20rem == 320px(minimal supported viewport) */
/* 0.65 - min scale variable, may vary */
@media (max-width: 992px) {
  .display-1 {
    font-size: 3.288rem;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 2.877rem;
    font-size: calc( 2.0885000000000002rem + (4.11 - 2.0885000000000002) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (2.0885000000000002rem + (4.11 - 2.0885000000000002) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 2.08rem;
    font-size: calc( 1.56rem + (2.6 - 1.56) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.3 * (1.56rem + (2.6 - 1.56) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 0.888rem;
    font-size: calc( 1.0385rem + (1.11 - 1.0385) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.0385rem + (1.11 - 1.0385) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 1.864rem;
    font-size: calc( 1.4655rem + (2.33 - 1.4655) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.4655rem + (2.33 - 1.4655) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-7 {
    font-size: 0.8rem;
    font-size: calc( 1rem + (1 - 1) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1rem + (1 - 1) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* Buttons */
@keyframes scale-in {
  0% {
    transform: scaleX(0);
    transform-origin: left;
  }
  to {
    transform: scaleX(1);
    transform-origin: left;
  }
}
@keyframes scale-out {
  0% {
    transform: scaleX(1);
    transform-origin: right;
  }
  to {
    transform: scaleX(0);
    transform-origin: right;
  }
}
.btn {
  padding: 1rem 2rem;
  border-radius: 0;
}
.btn-sm {
  padding: 0.75rem 1rem;
  border-radius: 0;
}
.btn-md {
  padding: 1rem 2rem;
  border-radius: 0;
}
.btn-lg {
  padding: 1rem 2rem;
  border-radius: 0;
}
.bg-primary {
  background-color: #f87d4d !important;
}
.btn-secondary {
  background-color: #5c6873 !important;
}
.bg-success {
  background-color: #d4e7eb !important;
}
.bg-info {
  background-color: #000000 !important;
}
.bg-warning {
  background-color: #67beb0 !important;
}
.bg-danger {
  background-color: #afd3ce !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #f87d4d !important;
  border-color: #f87d4d !important;
  color: #ffffff !important;
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus,
.btn-primary.active {
  background: #afd3ce !important;
  color: #000000 !important;
  border-color: #afd3ce !important;
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #afd3ce !important;
  border-color: #afd3ce !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #5c6873 !important;
  border-color: #5c6873 !important;
  color: #ffffff !important;
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus,
.btn-secondary.active {
  background: #67beb0 !important;
  color: #ffffff !important;
  border-color: #67beb0 !important;
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #67beb0 !important;
  border-color: #67beb0 !important;
}
.btn-info,
.btn-info:active {
  background-color: #f87d4d !important;
  border-color: #f87d4d !important;
  color: #ffffff !important;
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus,
.btn-info.active {
  background: #5c6873 !important;
  color: #ffffff !important;
  border-color: #5c6873 !important;
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #5c6873 !important;
  border-color: #5c6873 !important;
}
.btn-success,
.btn-success:active {
  background-color: #d4e7eb !important;
  border-color: #d4e7eb !important;
  color: #0c181b !important;
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus,
.btn-success.active {
  background: #f87d4d !important;
  color: #ffffff !important;
  border-color: #f87d4d !important;
}
.btn-success.disabled,
.btn-success:disabled {
  color: #0c181b !important;
  background-color: #f87d4d !important;
  border-color: #f87d4d !important;
}
.btn-warning,
.btn-warning:active {
  background-color: #67beb0 !important;
  border-color: #67beb0 !important;
  color: #ffffff !important;
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus,
.btn-warning.active {
  background: #d4e7eb !important;
  color: #0c181b !important;
  border-color: #d4e7eb !important;
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #ffffff !important;
  background-color: #d4e7eb !important;
  border-color: #d4e7eb !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #afd3ce !important;
  border-color: #afd3ce !important;
  color: #000000 !important;
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus,
.btn-danger.active {
  background: #d4e7eb !important;
  color: #0c181b !important;
  border-color: #d4e7eb !important;
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #000000 !important;
  background-color: #d4e7eb !important;
  border-color: #d4e7eb !important;
}
.btn-white,
.btn-white:active {
  background-color: #ffffff !important;
  border-color: #ffffff !important;
  color: #333333 !important;
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus,
.btn-white.active {
  background: #000000 !important;
  color: #ffffff !important;
  border-color: #000000 !important;
}
.btn-white.disabled,
.btn-white:disabled {
  color: #333333 !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-black,
.btn-black:active {
  background-color: #000000 !important;
  border-color: #000000 !important;
  color: #ffffff !important;
}
.btn-black:hover,
.btn-black:focus,
.btn-black.focus,
.btn-black.active {
  background: #ffffff !important;
  color: #333333 !important;
  border-color: #ffffff !important;
}
.btn-black.disabled,
.btn-black:disabled {
  color: #ffffff !important;
  background-color: #ffffff !important;
  border-color: #ffffff !important;
}
.btn-primary-outline,
.btn-primary-outline:active {
  background-color: transparent !important;
  border-color: #f87d4d;
  color: #f87d4d;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #ffffff !important;
  background-color: #f87d4d !important;
  border-color: #f87d4d !important;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #f87d4d !important;
  border-color: #f87d4d !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background-color: transparent !important;
  border-color: #5c6873;
  color: #5c6873;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #ffffff !important;
  background-color: #5c6873 !important;
  border-color: #5c6873 !important;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #5c6873 !important;
  border-color: #5c6873 !important;
}
.btn-info-outline {
  color: #f87d4d !important;
  background: transparent !important;
  border: 0 !important;
  padding-top: 0 !important;
  padding-right: 0 !important;
  padding-left: 0 !important;
  padding-bottom: .25rem !important;
  position: relative;
  font-weight: 500 !important;
  transition: color 0.25s cubic-bezier(0.28, 0.44, 0.49, 1);
}
.btn-info-outline:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  width: 100%;
  will-change: transform;
  background-color: #f87d4d;
}
.btn-info-outline:hover {
  background-color: transparent !important;
  color: #67beb0 !important;
}
.btn-info-outline:active {
  outline: none;
}
.btn-info-outline:hover:after {
  background-color: #67beb0;
  animation: scale-out 0.25s cubic-bezier(0.28, 0.44, 0.49, 1) 0s forwards, scale-in 0.25s cubic-bezier(0.28, 0.44, 0.49, 1) 0.25s forwards;
}
.btn-success-outline,
.btn-success-outline:active {
  background-color: transparent !important;
  border-color: #d4e7eb;
  color: #d4e7eb;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #3d7783 !important;
  background-color: #d4e7eb !important;
  border-color: #d4e7eb !important;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #3d7783 !important;
  background-color: #d4e7eb !important;
  border-color: #d4e7eb !important;
}
.btn-warning-outline {
  color: #67beb0 !important;
  background: transparent !important;
  border: 0 !important;
  padding-top: 0 !important;
  padding-right: 0 !important;
  padding-left: 0 !important;
  padding-bottom: .25rem !important;
  position: relative;
  font-weight: 500 !important;
  transition: color 0.25s cubic-bezier(0.28, 0.44, 0.49, 1);
}
.btn-warning-outline:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  width: 100%;
  will-change: transform;
  background-color: #67beb0;
}
.btn-warning-outline:hover {
  background-color: transparent !important;
  color: #afd3ce !important;
}
.btn-warning-outline:active {
  outline: none;
}
.btn-warning-outline:hover:after {
  background-color: #afd3ce;
  animation: scale-out 0.25s cubic-bezier(0.28, 0.44, 0.49, 1) 0s forwards, scale-in 0.25s cubic-bezier(0.28, 0.44, 0.49, 1) 0.25s forwards;
}
.btn-danger-outline {
  color: #f87d4d !important;
  background: transparent !important;
  border: 0 !important;
  padding-top: 0 !important;
  padding-right: 0 !important;
  padding-left: 0 !important;
  padding-bottom: .25rem !important;
  position: relative;
  font-weight: 500 !important;
  transition: color 0.25s cubic-bezier(0.28, 0.44, 0.49, 1);
}
.btn-danger-outline:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  width: 100%;
  will-change: transform;
  background-color: #f87d4d;
}
.btn-danger-outline:hover {
  background-color: transparent !important;
  color: #5c6873 !important;
}
.btn-danger-outline:active {
  outline: none;
}
.btn-danger-outline:hover:after {
  background-color: #5c6873;
  animation: scale-out 0.25s cubic-bezier(0.28, 0.44, 0.49, 1) 0s forwards, scale-in 0.25s cubic-bezier(0.28, 0.44, 0.49, 1) 0.25s forwards;
}
.btn-black-outline,
.btn-black-outline:active,
.btn-black-outline.active {
  background-color: transparent;
  border-color: #000000;
  color: #000000;
}
.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.focus {
  color: #ffffff;
  background-color: #000000;
  border-color: #000000;
}
.btn-white-outline,
.btn-white-outline:active,
.btn-white-outline.active {
  background-color: transparent;
  border-color: #ffffff;
  color: #ffffff;
}
.btn-white-outline:hover,
.btn-white-outline:focus,
.btn-white-outline.focus {
  color: #000000;
  background-color: #ffffff;
  border-color: #ffffff;
}
.text-primary {
  color: #f87d4d !important;
}
.text-secondary {
  color: #5c6873 !important;
}
.text-success {
  color: #d4e7eb !important;
}
.text-info {
  color: #000000 !important;
}
.text-warning {
  color: #67beb0 !important;
}
.text-danger {
  color: #afd3ce !important;
}
.text-white {
  color: #fafafa !important;
}
.text-black {
  color: #232323 !important;
}
a.text-primary:hover,
a.text-primary:focus,
a.text-primary.active {
  color: #f87d4d !important;
}
a.text-secondary:hover,
a.text-secondary:focus,
a.text-secondary.active {
  color: #5c6873 !important;
}
a.text-success:hover,
a.text-success:focus,
a.text-success.active {
  color: #d4e7eb !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: #67beb0 !important;
}
a.text-danger:hover,
a.text-danger:focus,
a.text-danger.active {
  color: #afd3ce !important;
}
a.text-white:hover,
a.text-white:focus,
a.text-white.active {
  color: #fafafa !important;
}
a.text-black:hover,
a.text-black:focus,
a.text-black.active {
  color: #232323 !important;
}
a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]) {
  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]):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: #f87d4d;
}
.nav-tabs .nav-link:not(.active) {
  color: #232323;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #000000;
}
.alert-warning {
  background-color: #67beb0;
}
.alert-danger {
  background-color: #afd3ce;
}
.mbr-section-btn a.btn:not(.btn-form) {
  border-radius: 100px;
}
.mbr-gallery-filter li a {
  border-radius: 100px !important;
}
.mbr-gallery-filter li.active .btn {
  background-color: #f87d4d;
  border-color: #f87d4d;
  color: #ffffff;
}
.nav-tabs .nav-link {
  border-radius: 100px !important;
}
a,
a:hover {
  color: #f87d4d;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #b3b3b3;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #c0e4de;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #ffffff;
}
/* Scroll to top button*/
.scrollToTop_wraper {
  display: none;
}
.form-control {
  font-family: 'Luxurious Roman', display;
  font-size: 1.11rem;
  line-height: 1.68;
  font-weight: 400;
}
.form-control > .mbr-iconfont {
  font-size: 1.3875rem;
}
.form-control:-webkit-input-placeholder {
  font-family: 'Luxurious Roman', display;
  font-size: 1.11rem;
  line-height: 1.68;
  font-weight: 400;
}
.form-control:-webkit-input-placeholder > .mbr-iconfont {
  font-size: 1.3875rem;
}
blockquote {
  border-color: #f87d4d;
}
/* Forms */
.mbr-form .input-group-btn a.btn {
  border-radius: 50px !important;
}
.mbr-form .input-group-btn button[type="submit"] {
  border-radius: 50px !important;
  padding: 1rem 3rem;
}
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #f87d4d;
  color: #ffffff;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #f87d4d;
}
.jq-selectbox .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:after,
.jq-number__spin.plus:after {
  transition: 0.4s;
  border-top-color: #353535;
  border-bottom-color: #353535;
}
.jq-selectbox:hover .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:hover:after,
.jq-number__spin.plus:hover:after {
  border-top-color: #f87d4d;
  border-bottom-color: #f87d4d;
}
.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: #000000 !important;
  background-color: #f87d4d !important;
  box-shadow: none !important;
}
.xdsoft_datetimepicker .xdsoft_calendar td:hover,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div:hover {
  color: #ffffff !important;
  background: #5c6873 !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='%23f87d4d' %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;
}
.cid-ulrHLGN0QD {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-ulrHLGN0QD nav.navbar {
  position: fixed;
}
.cid-ulrHLGN0QD .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-ulrHLGN0QD .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-ulrHLGN0QD .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-ulrHLGN0QD .dropdown-item:hover,
.cid-ulrHLGN0QD .dropdown-item:focus {
  background: #f87d4d !important;
  color: white !important;
}
.cid-ulrHLGN0QD .dropdown-item:hover span {
  color: white;
}
.cid-ulrHLGN0QD .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-ulrHLGN0QD .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-ulrHLGN0QD .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-ulrHLGN0QD .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-ulrHLGN0QD .nav-link {
  position: relative;
}
.cid-ulrHLGN0QD .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-ulrHLGN0QD .container {
    flex-wrap: wrap;
  }
}
.cid-ulrHLGN0QD .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-ulrHLGN0QD .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-ulrHLGN0QD .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-ulrHLGN0QD .dropdown-menu,
.cid-ulrHLGN0QD .navbar.opened {
  background: #d4e7eb !important;
}
.cid-ulrHLGN0QD .nav-item:focus,
.cid-ulrHLGN0QD .nav-link:focus {
  outline: none;
}
.cid-ulrHLGN0QD .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-ulrHLGN0QD .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-ulrHLGN0QD .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-ulrHLGN0QD .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-ulrHLGN0QD .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-ulrHLGN0QD .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-ulrHLGN0QD .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #d4e7eb;
}
.cid-ulrHLGN0QD .navbar.opened {
  transition: all 0.3s;
}
.cid-ulrHLGN0QD .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-ulrHLGN0QD .navbar .navbar-logo img {
  width: auto;
}
.cid-ulrHLGN0QD .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-ulrHLGN0QD .navbar.collapsed {
  justify-content: center;
}
.cid-ulrHLGN0QD .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-ulrHLGN0QD .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-ulrHLGN0QD .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-ulrHLGN0QD .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-ulrHLGN0QD .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-ulrHLGN0QD .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-ulrHLGN0QD .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-ulrHLGN0QD .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-ulrHLGN0QD .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-ulrHLGN0QD .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-ulrHLGN0QD .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-ulrHLGN0QD .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-ulrHLGN0QD .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-ulrHLGN0QD .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-ulrHLGN0QD .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-ulrHLGN0QD .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-ulrHLGN0QD .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-ulrHLGN0QD .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-ulrHLGN0QD .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-ulrHLGN0QD .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-ulrHLGN0QD .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-ulrHLGN0QD .navbar.navbar-short {
  min-height: 60px;
}
.cid-ulrHLGN0QD .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-ulrHLGN0QD .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-ulrHLGN0QD .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-ulrHLGN0QD .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-ulrHLGN0QD .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-ulrHLGN0QD .dropdown-item.active,
.cid-ulrHLGN0QD .dropdown-item:active {
  background-color: transparent;
}
.cid-ulrHLGN0QD .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-ulrHLGN0QD .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-ulrHLGN0QD .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-ulrHLGN0QD .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #d4e7eb;
}
.cid-ulrHLGN0QD .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-ulrHLGN0QD .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-ulrHLGN0QD ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-ulrHLGN0QD .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-ulrHLGN0QD button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-ulrHLGN0QD button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-ulrHLGN0QD button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-ulrHLGN0QD button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-ulrHLGN0QD button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-ulrHLGN0QD button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-ulrHLGN0QD nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-ulrHLGN0QD nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-ulrHLGN0QD nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-ulrHLGN0QD nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-ulrHLGN0QD .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-ulrHLGN0QD a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-ulrHLGN0QD .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-ulrHLGN0QD .navbar {
    height: 70px;
  }
  .cid-ulrHLGN0QD .navbar.opened {
    height: auto;
  }
  .cid-ulrHLGN0QD .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-ufn2bpOZ9I {
  background-image: url("../../../assets/images/foldable-screen-ces2019-ie-1920x1080.jpg");
}
.cid-ufn2bpOZ9I .mbr-fallback-image.disabled {
  display: none;
}
.cid-ufn2bpOZ9I .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ufn2bpOZ9I .container-fluid {
  padding: 0 40px;
}
@media (max-width: 992px) {
  .cid-ufn2bpOZ9I .container-fluid {
    padding: 0 20px;
  }
}
.cid-ufn2bpOZ9I .container-fluid .row {
  padding-top: 15%;
}
@media (max-width: 992px) {
  .cid-ufn2bpOZ9I .container-fluid .row {
    padding-top: 0;
  }
}
@media (max-width: 992px) {
  .cid-ufn2bpOZ9I .container {
    padding: 0 20px;
  }
}
@media (max-width: 992px) {
  .cid-ufn2bpOZ9I .title-wrapper {
    margin-bottom: 24px;
  }
}
.cid-ufn2bpOZ9I .title-wrapper .logo-wrap {
  margin-bottom: 16px;
}
.cid-ufn2bpOZ9I .title-wrapper .logo-wrap img {
  display: inline-flex;
  height: 92px;
  width: 254px;
  object-fit: cover;
}
.cid-ufn2bpOZ9I .title-wrapper .mbr-section-title {
  margin-bottom: 24px;
}
@media (max-width: 992px) {
  .cid-ufn2bpOZ9I .title-wrapper .mbr-section-title {
    margin-bottom: 20px;
  }
}
.cid-ufn2bpOZ9I .title-wrapper .desc-wrapper .desc-wrap {
  display: inline-flex;
  align-items: center;
  margin-bottom: 24px;
}
@media (max-width: 992px) {
  .cid-ufn2bpOZ9I .title-wrapper .desc-wrapper .desc-wrap {
    margin-bottom: 20px;
    display: block;
  }
}
.cid-ufn2bpOZ9I .title-wrapper .desc-wrapper .desc-wrap .mbr-price {
  margin-bottom: 0;
}
.cid-ufn2bpOZ9I .title-wrapper .desc-wrapper .desc-wrap .mbr-desc {
  margin: 0 0 0 6px;
}
@media (max-width: 992px) {
  .cid-ufn2bpOZ9I .title-wrapper .desc-wrapper .desc-wrap .mbr-desc {
    margin: 0;
  }
}
.cid-ufn2bpOZ9I .title-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-ufn2bpOZ9I .buttons-wrap {
  display: flex;
  align-items: flex-end;
  height: 100%;
}
.cid-ufn2bpOZ9I .buttons-wrap .mbr-section-btn {
  width: 100%;
}
@media (max-width: 992px) {
  .cid-ufn2bpOZ9I .buttons-wrap .mbr-section-btn {
    text-align: left;
  }
}
.cid-ufn2bpOZ9I .mbr-section-title {
  color: #ffffff;
}
.cid-ufn2bpOZ9I .mbr-price {
  color: #ffffff;
}
.cid-ufn2bpOZ9I .mbr-desc {
  color: #f2f2f2;
}
.cid-ufn2bpOZ9I .mbr-text {
  color: #f2f2f2;
  text-align: left;
}
.cid-ufn2bpOZ9I .mbr-section-btn {
  text-align: right;
}
.cid-ufn2bpOZ9I .mbr-section-title,
.cid-ufn2bpOZ9I .logo-wrap,
.cid-ufn2bpOZ9I .mbr-section-btn {
  text-align: left;
}
.cid-uk1FQlzJzV {
  padding-top: 5rem;
  padding-bottom: 5rem;
  overflow: hidden;
  position: relative;
  background-color: #d4e7eb;
}
.cid-uk1FQlzJzV .decor-wrap_1 {
  position: absolute;
  top: 2rem;
  left: 18%;
  width: 133px;
  height: 133px;
  border-radius: 100%;
  background-image: radial-gradient(165.7% 132.72% at 4.98% 5.22%, #144031 0, #bcd9df 43%, #246f55 100%);
}
.cid-uk1FQlzJzV .decor-wrap_2 {
  position: absolute;
  top: 20%;
  right: -4rem;
  width: 245px;
  height: 245px;
  border-radius: 100%;
  background-image: radial-gradient(165.7% 132.72% at 4.98% 5.22%, #144031 0, #bcd9df 43%, #246f55 100%);
}
.cid-uk1FQlzJzV .decor-wrap_3 {
  position: absolute;
  bottom: -35%;
  left: -10rem;
  width: 539px;
  height: 539px;
  border-radius: 100%;
  background-image: radial-gradient(165.7% 132.72% at 4.98% 5.22%, #144031 0, #bcd9df 43%, #246f55 100%);
}
.cid-uk1FQlzJzV .mbr-fallback-image.disabled {
  display: none;
}
.cid-uk1FQlzJzV .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-uk1FQlzJzV .container {
    padding: 0 30px;
  }
}
.cid-uk1FQlzJzV .row {
  position: relative;
  z-index: 1;
  justify-content: center;
}
.cid-uk1FQlzJzV .image-wrapper {
  background-color: #ffffff;
  padding: 40px 40px 40px 0;
}
@media (max-width: 992px) {
  .cid-uk1FQlzJzV .image-wrapper {
    padding: 20px 20px 20px 0;
  }
}
.cid-uk1FQlzJzV .image-wrapper img {
  height: 450px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-uk1FQlzJzV .image-wrapper img {
    height: 350px;
  }
}
.cid-uk1IJyIQKN {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uk1IJyIQKN .mbr-fallback-image.disabled {
  display: none;
}
.cid-uk1IJyIQKN .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uk1IJyIQKN .container-fluid {
  padding: 0 30px;
}
@media (max-width: 768px) {
  .cid-uk1IJyIQKN .container-fluid {
    padding: 0 20px;
  }
}
@media (max-width: 992px) {
  .cid-uk1IJyIQKN .container {
    padding: 0 20px;
  }
}
.cid-uk1IJyIQKN .row {
  margin: 0;
  justify-content: center;
  padding: 60px 16px;
  background-color: #d4e7eb;
  border-radius: 20px !important;
}
@media (max-width: 992px) {
  .cid-uk1IJyIQKN .row {
    padding: 46px 4px 46px;
  }
}
.cid-uk1IJyIQKN .content-wrapper {
  margin-bottom: 80px;
}
@media (max-width: 992px) {
  .cid-uk1IJyIQKN .content-wrapper {
    margin-bottom: 46px;
  }
}
.cid-uk1IJyIQKN .content-wrapper .mbr-desc {
  margin-bottom: 32px;
}
.cid-uk1IJyIQKN .content-wrapper .mbr-section-title {
  margin-bottom: 32px;
}
.cid-uk1IJyIQKN .content-wrapper .text-wrapper .mbr-text {
  display: inline-flex;
  width: 40%;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-uk1IJyIQKN .content-wrapper .text-wrapper .mbr-text {
    width: 100%;
  }
}
.cid-uk1IJyIQKN .item {
  margin-bottom: 40px;
}
.cid-uk1IJyIQKN .item:first-child {
  margin-bottom: 0;
}
.cid-uk1IJyIQKN .item:hover .item-wrapper .item-img img,
.cid-uk1IJyIQKN .item:focus .item-wrapper .item-img img {
  transform: scale(1.05);
}
.cid-uk1IJyIQKN .item .item-wrapper .item-img {
  overflow: hidden;
  margin-bottom: 25px;
  border-radius: 20px !important;
}
.cid-uk1IJyIQKN .item .item-wrapper .item-img img {
  height: 300px;
  object-fit: cover;
  border-radius: 20px !important;
  transition: all 0.3s ease-in-out;
}
.cid-uk1IJyIQKN .item .item-wrapper .item-content .card-title {
  margin-bottom: 16px;
}
.cid-uk1IJyIQKN .item .item-wrapper .item-content .card-desc {
  margin-bottom: 0;
}
.cid-uk1IJyIQKN .item a {
  display: block;
}
.cid-uk1IJyIQKN .mbr-section-title {
  color: #000000;
  text-align: center;
}
.cid-uk1IJyIQKN .mbr-desc {
  color: #000000;
  text-align: center;
}
.cid-uk1IJyIQKN .mbr-text,
.cid-uk1IJyIQKN .text-wrapper {
  color: #000000;
  text-align: center;
}
.cid-uk1IJyIQKN .card-title {
  color: #000000;
}
.cid-uk1IJyIQKN .card-desc {
  color: #000000;
}
.cid-uk1IJyIQKN .card-title,
.cid-uk1IJyIQKN .icon-wrapper {
  color: #000000;
}
.cid-sgRvTN4FKH {
  padding-top: 2rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-sgRvTN4FKH .card-wrapper {
  background-color: #7bc7d3;
  padding: 2rem;
}
@media (max-width: 767px) {
  .cid-sgRvTN4FKH .card-wrapper {
    padding: 1rem;
  }
}
.cid-sgRvTN4FKH .text-wrapper {
  max-width: 28rem;
}
.cid-sgRvTN4FKH .content-wrapper {
  background: #ffffff;
}
@media (max-width: 991px) {
  .cid-sgRvTN4FKH .content-wrapper .image-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-sgRvTN4FKH .content-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-sgRvTN4FKH .content-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-sgRvTN4FKH .content-wrapper {
    padding: 3rem;
  }
  .cid-sgRvTN4FKH .content-wrapper .text-column {
    padding-left: 4rem;
  }
}
.cid-sgRvTN4FKH .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-ulJ1FWy9AM {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-ulJ1FWy9AM .mbr-fallback-image.disabled {
  display: none;
}
.cid-ulJ1FWy9AM .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ulJ1FWy9AM .container-fluid {
  padding: 0 56px;
}
@media (max-width: 992px) {
  .cid-ulJ1FWy9AM .container-fluid {
    padding: 0 26px;
  }
}
@media (max-width: 992px) {
  .cid-ulJ1FWy9AM .container {
    padding: 0 26px;
  }
}
.cid-ulJ1FWy9AM .row {
  justify-content: center;
}
.cid-ulJ1FWy9AM .content-wrapper {
  display: flex;
  align-items: center;
  padding: 200px 100px 200px 60px;
  background-color: #bcd9df;
  border-radius: 20px;
}
@media (max-width: 1440px) {
  .cid-ulJ1FWy9AM .content-wrapper {
    padding: 100px 60px;
  }
}
@media (max-width: 992px) {
  .cid-ulJ1FWy9AM .content-wrapper {
    padding: 100px 20px;
    display: block;
  }
}
.cid-ulJ1FWy9AM .content-wrapper .title-wrapper {
  width: 50%;
  padding-right: 45px;
}
@media (max-width: 992px) {
  .cid-ulJ1FWy9AM .content-wrapper .title-wrapper {
    width: 100%;
    padding-right: 0;
    margin-bottom: 40px;
  }
}
.cid-ulJ1FWy9AM .content-wrapper .title-wrapper .mbr-section-title {
  margin-bottom: 30px;
}
.cid-ulJ1FWy9AM .content-wrapper .title-wrapper .mbr-desc {
  margin-bottom: 0;
}
.cid-ulJ1FWy9AM .content-wrapper .text-wrapper {
  width: 50%;
}
@media (max-width: 992px) {
  .cid-ulJ1FWy9AM .content-wrapper .text-wrapper {
    width: 100%;
  }
}
.cid-ulJ1FWy9AM .content-wrapper .text-wrapper .mbr-section-subtitle {
  margin-bottom: 20px;
}
.cid-ulJ1FWy9AM .content-wrapper .text-wrapper .mbr-text {
  margin-bottom: 20px;
}
.cid-ulJ1FWy9AM .content-wrapper .text-wrapper .link-wrapper:hover .mbr-link,
.cid-ulJ1FWy9AM .content-wrapper .text-wrapper .link-wrapper:focus .mbr-link {
  color: #000000;
}
.cid-ulJ1FWy9AM .content-wrapper .text-wrapper .link-wrapper .mbr-link {
  margin-bottom: 0;
  transition: all 0.3s ease-in-out;
}
.cid-ulJ1FWy9AM .mbr-section-title {
  color: #ffffff;
}
.cid-ulJ1FWy9AM .mbr-section-subtitle {
  color: #ffffff;
}
.cid-ulJ1FWy9AM .mbr-desc {
  color: #ffffff;
}
.cid-ulJ1FWy9AM .mbr-text {
  color: #ffffff;
}
.cid-ulJ1FWy9AM .mbr-link {
  color: #ffffff;
}
.cid-uk1LbKbAsY {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uk1LbKbAsY .mbr-fallback-image.disabled {
  display: none;
}
.cid-uk1LbKbAsY .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-uk1LbKbAsY .container {
    padding: 0 16px;
  }
}
.cid-uk1LbKbAsY .card {
  justify-content: center;
}
.cid-uk1LbKbAsY .title-wrapper .mbr-section-title {
  display: inline-flex;
  margin-bottom: 0;
  padding: 18px 24px;
  border-radius: 16px !important;
  box-shadow: 6px 8px 0 0 #000000;
  background-color: #d4e7eb;
  transform: rotate(-4deg);
}
@media (max-width: 992px) {
  .cid-uk1LbKbAsY .title-wrapper .mbr-section-title {
    margin-bottom: 32px;
  }
}
.cid-uk1LbKbAsY .text-wrapper .mbr-text {
  margin-bottom: 24px;
}
.cid-uk1LbKbAsY .text-wrapper .mbr-desc {
  margin-top: 24px;
  margin-bottom: 0;
}
.cid-uk1LbKbAsY .mbr-section-title {
  color: #000000;
}
.cid-uk1LbKbAsY .mbr-text {
  color: #000000;
}
.cid-uk1LbKbAsY .mbr-desc {
  color: #000000;
}
.cid-ulJ3a3CrnT {
  padding-top: 5rem;
  padding-bottom: 5rem;
  overflow: hidden;
  position: relative;
  background-color: #f5f9fc;
}
.cid-ulJ3a3CrnT .decor-wrap_1 {
  position: absolute;
  top: -65%;
  right: -10rem;
  width: 474px;
  height: 474px;
  border-radius: 100%;
  background-image: radial-gradient(165.7% 132.72% at 4.98% 5.22%, #144031 0, #d4e7eb 43%, #97dbd0 100%);
}
.cid-ulJ3a3CrnT .decor-wrap_2 {
  position: absolute;
  bottom: -25%;
  left: -2rem;
  width: 254px;
  height: 254px;
  border-radius: 100%;
  background-image: radial-gradient(165.7% 132.72% at 4.98% 5.22%, #144031 0, #d4e7eb 43%, #97dbd0 100%);
}
.cid-ulJ3a3CrnT .mbr-fallback-image.disabled {
  display: none;
}
.cid-ulJ3a3CrnT .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-ulJ3a3CrnT .container {
    padding: 0 30px;
  }
}
.cid-ulJ3a3CrnT .row {
  justify-content: center;
  position: relative;
  z-index: 1;
}
.cid-ulJ3a3CrnT .title-wrapper .mbr-section-title {
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .cid-ulJ3a3CrnT .title-wrapper .mbr-section-title {
    margin-bottom: 30px;
  }
}
.cid-ulJ3a3CrnT .text-wrapper {
  border-left: 1px solid #055d4e;
  padding-left: 40px;
}
@media (max-width: 992px) {
  .cid-ulJ3a3CrnT .text-wrapper {
    padding-left: 20px;
  }
}
.cid-ulJ3a3CrnT .text-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-ulJ3a3CrnT .mbr-section-title {
  color: #000000;
  text-align: center;
}
.cid-ulJ3a3CrnT .mbr-text {
  color: #000000;
}
.cid-ulIUHFbNDs {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #d4e7eb;
}
.cid-ulIUHFbNDs .mbr-fallback-image.disabled {
  display: none;
}
.cid-ulIUHFbNDs .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-ulIUHFbNDs .container {
    padding: 0 30px;
  }
}
.cid-ulIUHFbNDs .row {
  justify-content: center;
}
.cid-ulIUHFbNDs .title-wrapper .mbr-section-title {
  margin-bottom: 40px;
}
.cid-ulIUHFbNDs .video-block .video-wrapper iframe {
  height: 550px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-ulIUHFbNDs .video-block .video-wrapper iframe {
    height: 300px;
  }
}
.cid-ulIUHFbNDs .video-block .video-wrapper .app-video-wrapper::before {
  color: #e64c10;
  text-shadow: none;
}
.cid-ulIUHFbNDs .video-block .video-wrapper .app-video-wrapper img {
  height: 550px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-ulIUHFbNDs .video-block .video-wrapper .app-video-wrapper img {
    height: 300px;
  }
}
.cid-ulIUHFbNDs .mbr-section-title {
  color: #212529;
  text-align: center;
}
.cid-uN583t3PM0 .footer-head {
  width: 100%;
  position: relative;
  z-index: 5;
  background-color: #000000;
  border-bottom-left-radius: 40px;
  border-bottom-right-radius: 40px;
  overflow: hidden;
}
.cid-uN583t3PM0 .img-bg {
  content: '';
  position: absolute;
  top: 0;
  right: 57%;
  bottom: 0;
  left: 0;
  background-color: #ffffff;
  border-top-right-radius: 190px;
  border-bottom-left-radius: 40px;
}
@media (max-width: 991px) {
  .cid-uN583t3PM0 .img-bg {
    display: none;
  }
}
.cid-uN583t3PM0 .container {
  display: flex;
  justify-content: center;
  max-width: 1160px;
}
@media (max-width: 991px) {
  .cid-uN583t3PM0 .container {
    padding: 0 !important;
  }
}
.cid-uN583t3PM0 .row {
  width: 100%;
  align-items: center;
}
.cid-uN583t3PM0 .content-container {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  padding-left: 0 !important;
  padding-right: 0 !important;
  padding-top: 5rem;
  padding-bottom: 5rem;
}
@media (max-width: 991px) {
  .cid-uN583t3PM0 .content-container {
    padding-top: 0;
    background-color: #000000;
  }
}
@media (max-width: 991px) {
  .cid-uN583t3PM0 .col-brand {
    padding: 0 15px 65px 15px;
    padding-top: 5rem;
    border-bottom-left-radius: 40px;
    background-color: #ffffff;
  }
}
.cid-uN583t3PM0 .col-links {
  display: flex;
  flex-wrap: wrap;
  padding: 10px;
}
@media (max-width: 991px) {
  .cid-uN583t3PM0 .col-links {
    padding: 70px 15px 0 15px;
  }
}
.cid-uN583t3PM0 .navbar-brand {
  display: flex;
  flex-basis: auto;
  word-break: break-word;
  min-height: 40px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  margin-bottom: 20px;
  padding: 0;
  transition: all 0.3s;
  z-index: 1;
  font-weight: 700;
}
.cid-uN583t3PM0 .navbar-brand .navbar-logo {
  margin-right: 0.5rem;
}
.cid-uN583t3PM0 .navbar-brand .navbar-logo img {
  width: auto;
}
.cid-uN583t3PM0 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uN583t3PM0 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uN583t3PM0 .brand-text {
  margin-top: 75px;
  margin-bottom: 0;
  color: #ffffff;
  opacity: 0.85;
  width: 100%;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-uN583t3PM0 .brand-text {
    margin-top: 45px;
  }
}
.cid-uN583t3PM0 .mbr-section-subtitle {
  color: #ffffff;
  opacity: 0.85;
  margin-bottom: 10px;
}
.cid-uN583t3PM0 .social-row {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 60px;
}
.cid-uN583t3PM0 .mbr-iconfont {
  font-size: 16px;
  color: #ffffff;
}
.cid-uN583t3PM0 .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  margin-bottom: 15px;
  padding: 0;
  min-height: 28px;
  min-width: 28px;
}
.cid-uN583t3PM0 .soc-item a {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uN583t3PM0 .soc-item .mbr-iconfont {
  font-size: 28px;
  color: #ffffff !important;
}
@media (max-width: 991px) {
  .cid-uN583t3PM0 .col-link {
    width: auto !important;
    max-width: 33.33333333%;
  }
}
@media (max-width: 767px) {
  .cid-uN583t3PM0 .col-link {
    max-width: 100%;
    width: 100% !important;
  }
}
@media (max-width: 768px) {
  .cid-uN583t3PM0 .col-link1 {
    margin-bottom: 30px;
  }
}
.cid-uN583t3PM0 .col-link2 {
  padding-left: 30px;
}
@media (max-width: 768px) {
  .cid-uN583t3PM0 .col-link2 {
    padding-left: 0;
    margin-bottom: 30px;
  }
}
@media (min-width: 1200px) {
  .cid-uN583t3PM0 .col-link3 {
    padding-left: 70px;
  }
}
@media (max-width: 991px) {
  .cid-uN583t3PM0 .col-link3 {
    padding-left: 70px;
  }
}
@media (max-width: 768px) {
  .cid-uN583t3PM0 .col-link3 {
    padding-left: 0;
  }
}
.cid-uN583t3PM0 .list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
  color: #ffb18a;
}
.cid-uN583t3PM0 .list li {
  display: flex;
  align-items: center;
  line-height: 1.44;
}
.cid-uN583t3PM0 .list a {
  display: flex;
  align-items: center;
  line-height: 1.44;
}
.cid-uN583t3PM0 .footer-copyright {
  position: relative;
  z-index: 4;
  width: 100%;
  margin-top: -40px;
  background-color: #000000;
}
.cid-uN583t3PM0 .col-copyright {
  padding: 85px 0 60px 0 !important;
}
@media (max-width: 991px) {
  .cid-uN583t3PM0 .col-copyright {
    padding: 85px 10px 60px 10px !important;
  }
}
.cid-uN583t3PM0 .copyright {
  color: #ffffff;
  text-align: center;
}
@media (max-width: 991px) {
  .cid-uN583t3PM0 .copyright {
    text-align: center !important;
  }
}
.cid-ulrHLGN0QD {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-ulrHLGN0QD nav.navbar {
  position: fixed;
}
.cid-ulrHLGN0QD .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-ulrHLGN0QD .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-ulrHLGN0QD .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-ulrHLGN0QD .dropdown-item:hover,
.cid-ulrHLGN0QD .dropdown-item:focus {
  background: #f87d4d !important;
  color: white !important;
}
.cid-ulrHLGN0QD .dropdown-item:hover span {
  color: white;
}
.cid-ulrHLGN0QD .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-ulrHLGN0QD .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-ulrHLGN0QD .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-ulrHLGN0QD .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-ulrHLGN0QD .nav-link {
  position: relative;
}
.cid-ulrHLGN0QD .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-ulrHLGN0QD .container {
    flex-wrap: wrap;
  }
}
.cid-ulrHLGN0QD .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-ulrHLGN0QD .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-ulrHLGN0QD .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-ulrHLGN0QD .dropdown-menu,
.cid-ulrHLGN0QD .navbar.opened {
  background: #d4e7eb !important;
}
.cid-ulrHLGN0QD .nav-item:focus,
.cid-ulrHLGN0QD .nav-link:focus {
  outline: none;
}
.cid-ulrHLGN0QD .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-ulrHLGN0QD .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-ulrHLGN0QD .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-ulrHLGN0QD .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-ulrHLGN0QD .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-ulrHLGN0QD .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-ulrHLGN0QD .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #d4e7eb;
}
.cid-ulrHLGN0QD .navbar.opened {
  transition: all 0.3s;
}
.cid-ulrHLGN0QD .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-ulrHLGN0QD .navbar .navbar-logo img {
  width: auto;
}
.cid-ulrHLGN0QD .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-ulrHLGN0QD .navbar.collapsed {
  justify-content: center;
}
.cid-ulrHLGN0QD .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-ulrHLGN0QD .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-ulrHLGN0QD .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-ulrHLGN0QD .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-ulrHLGN0QD .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-ulrHLGN0QD .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-ulrHLGN0QD .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-ulrHLGN0QD .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-ulrHLGN0QD .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-ulrHLGN0QD .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-ulrHLGN0QD .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-ulrHLGN0QD .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-ulrHLGN0QD .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-ulrHLGN0QD .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-ulrHLGN0QD .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-ulrHLGN0QD .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-ulrHLGN0QD .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-ulrHLGN0QD .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-ulrHLGN0QD .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-ulrHLGN0QD .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-ulrHLGN0QD .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-ulrHLGN0QD .navbar.navbar-short {
  min-height: 60px;
}
.cid-ulrHLGN0QD .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-ulrHLGN0QD .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-ulrHLGN0QD .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-ulrHLGN0QD .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-ulrHLGN0QD .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-ulrHLGN0QD .dropdown-item.active,
.cid-ulrHLGN0QD .dropdown-item:active {
  background-color: transparent;
}
.cid-ulrHLGN0QD .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-ulrHLGN0QD .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-ulrHLGN0QD .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-ulrHLGN0QD .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #d4e7eb;
}
.cid-ulrHLGN0QD .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-ulrHLGN0QD .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-ulrHLGN0QD ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-ulrHLGN0QD .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-ulrHLGN0QD button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-ulrHLGN0QD button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-ulrHLGN0QD button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-ulrHLGN0QD button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-ulrHLGN0QD button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-ulrHLGN0QD button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-ulrHLGN0QD nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-ulrHLGN0QD nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-ulrHLGN0QD nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-ulrHLGN0QD nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-ulrHLGN0QD .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-ulrHLGN0QD a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-ulrHLGN0QD .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-ulrHLGN0QD .navbar {
    height: 70px;
  }
  .cid-ulrHLGN0QD .navbar.opened {
    height: auto;
  }
  .cid-ulrHLGN0QD .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-ulJ5NR1VTV {
  padding-top: 60px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
@media (max-width: 992px) {
  .cid-ulJ5NR1VTV {
    padding-top: 40px;
    padding-bottom: 0px;
  }
}
.cid-ulJ5NR1VTV .mbr-section-text {
  margin-top: 1.5rem;
  animation-delay: .2s;
}
.cid-ulJ5NR1VTV .mbr-section-btn {
  animation-delay: .4s;
}
.cid-ulJ5NR1VTV .card-wrap {
  background-color: #ffffff;
  padding: 3rem 2.5rem;
  margin-right: 2.5rem;
  margin-top: 1rem;
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .cid-ulJ5NR1VTV .card-wrap {
    width: calc(100% + 15rem);
    margin-left: -17.5rem;
    margin-top: 4rem;
    margin-bottom: 0;
  }
}
@media (max-width: 767px) {
  .cid-ulJ5NR1VTV .card-wrap {
    margin: auto;
    padding: 1rem;
  }
}
.cid-ulJ5NR1VTV .back {
  position: absolute;
  top: 0;
  right: 0;
  width: 80%;
  height: 90%;
  background-color: #d4e7eb;
}
@media (max-width: 991px) {
  .cid-ulJ5NR1VTV .back {
    width: 100%;
    height: 100%;
  }
}
.cid-ulJ5NR1VTV section {
  position: relative;
}
.cid-ulJ5NR1VTV .box {
  padding-top: 1rem;
  margin-right: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (min-width: 992px) {
  .cid-ulJ5NR1VTV .box {
    padding-top: 8rem;
  }
}
.cid-ulJ5NR1VTV .box img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  object-position: 50% 50%;
}
@media (max-width: 767px) {
  .cid-ulJ5NR1VTV {
    padding-top: 28px;
    padding-bottom: 0px;
  }
  .cid-ulJ5NR1VTV .row {
    padding: 1rem!important;
  }
}
.cid-ulJ5NR1VTV H1 {
  text-align: left;
}
.cid-ulJ5NR1VTV .mbr-section-subtitle,
.cid-ulJ5NR1VTV .mbr-section-btn {
  text-align: left;
}
.cid-ulJ5NR1VTV .mbr-section-text,
.cid-ulJ5NR1VTV .mbr-section-btn {
  text-align: left;
}
.cid-ulJ684FeeS {
  padding-top: 5rem;
  padding-bottom: 0rem;
  position: relative;
  overflow: hidden;
  background-color: #d4e7eb;
}
.cid-ulJ684FeeS .border-wrap {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 1000vh;
  height: 1px;
  background-color: #150764;
}
.cid-ulJ684FeeS .mbr-fallback-image.disabled {
  display: none;
}
.cid-ulJ684FeeS .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ulJ684FeeS .content-wrap {
  align-items: center;
  justify-content: space-between;
}
.cid-ulJ684FeeS .content-wrap .card {
  justify-content: space-between;
}
.cid-ulJ684FeeS .content-wrapper {
  padding: 0 24px;
}
@media (max-width: 992px) {
  .cid-ulJ684FeeS .content-wrapper {
    padding: 0;
  }
}
.cid-ulJ684FeeS .content-wrapper .mbr-section-title {
  margin-bottom: 16px;
}
.cid-ulJ684FeeS .content-wrapper .desc-wrapper .mbr-desc {
  display: inline-flex;
  margin-bottom: 0;
  padding: 10px;
  -webkit-text-stroke-color: #150764;
  box-shadow: 4px 4px 0 0 #150764;
  border: 2px solid #150764;
  background-color: #4188ff;
  -webkit-text-stroke-width: .15rem;
}
@media (max-width: 992px) {
  .cid-ulJ684FeeS .content-wrapper .desc-wrapper .mbr-desc {
    -webkit-text-stroke-width: .12rem;
  }
}
.cid-ulJ684FeeS .mbr-section-title {
  color: #150764;
  text-align: center;
}
.cid-ulJ684FeeS .mbr-desc,
.cid-ulJ684FeeS .desc-wrapper {
  color: #ffffff;
  text-align: center;
}
.cid-uN58tBo6Ym {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-uN58tBo6Ym H1 {
  color: #000000;
}
.cid-uN58tBo6Ym .mbr-text,
.cid-uN58tBo6Ym .mbr-section-btn {
  color: #000000;
}
.cid-uN58tBo6Ym .mbr-subtitle {
  color: #000000;
}
.cid-uN58tBo6Ym .mbr-text {
  margin-top: 1.5rem;
}
.cid-uN58tBo6Ym .mbr-section-btn {
  margin-top: 2rem;
}
.cid-uN58tBo6Ym .mbr-fallback-image.disabled {
  display: none;
}
.cid-uN58tBo6Ym .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uN583t3PM0 .footer-head {
  width: 100%;
  position: relative;
  z-index: 5;
  background-color: #000000;
  border-bottom-left-radius: 40px;
  border-bottom-right-radius: 40px;
  overflow: hidden;
}
.cid-uN583t3PM0 .img-bg {
  content: '';
  position: absolute;
  top: 0;
  right: 57%;
  bottom: 0;
  left: 0;
  background-color: #ffffff;
  border-top-right-radius: 190px;
  border-bottom-left-radius: 40px;
}
@media (max-width: 991px) {
  .cid-uN583t3PM0 .img-bg {
    display: none;
  }
}
.cid-uN583t3PM0 .container {
  display: flex;
  justify-content: center;
  max-width: 1160px;
}
@media (max-width: 991px) {
  .cid-uN583t3PM0 .container {
    padding: 0 !important;
  }
}
.cid-uN583t3PM0 .row {
  width: 100%;
  align-items: center;
}
.cid-uN583t3PM0 .content-container {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  padding-left: 0 !important;
  padding-right: 0 !important;
  padding-top: 5rem;
  padding-bottom: 5rem;
}
@media (max-width: 991px) {
  .cid-uN583t3PM0 .content-container {
    padding-top: 0;
    background-color: #000000;
  }
}
@media (max-width: 991px) {
  .cid-uN583t3PM0 .col-brand {
    padding: 0 15px 65px 15px;
    padding-top: 5rem;
    border-bottom-left-radius: 40px;
    background-color: #ffffff;
  }
}
.cid-uN583t3PM0 .col-links {
  display: flex;
  flex-wrap: wrap;
  padding: 10px;
}
@media (max-width: 991px) {
  .cid-uN583t3PM0 .col-links {
    padding: 70px 15px 0 15px;
  }
}
.cid-uN583t3PM0 .navbar-brand {
  display: flex;
  flex-basis: auto;
  word-break: break-word;
  min-height: 40px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  margin-bottom: 20px;
  padding: 0;
  transition: all 0.3s;
  z-index: 1;
  font-weight: 700;
}
.cid-uN583t3PM0 .navbar-brand .navbar-logo {
  margin-right: 0.5rem;
}
.cid-uN583t3PM0 .navbar-brand .navbar-logo img {
  width: auto;
}
.cid-uN583t3PM0 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uN583t3PM0 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uN583t3PM0 .brand-text {
  margin-top: 75px;
  margin-bottom: 0;
  color: #ffffff;
  opacity: 0.85;
  width: 100%;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-uN583t3PM0 .brand-text {
    margin-top: 45px;
  }
}
.cid-uN583t3PM0 .mbr-section-subtitle {
  color: #ffffff;
  opacity: 0.85;
  margin-bottom: 10px;
}
.cid-uN583t3PM0 .social-row {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 60px;
}
.cid-uN583t3PM0 .mbr-iconfont {
  font-size: 16px;
  color: #ffffff;
}
.cid-uN583t3PM0 .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  margin-bottom: 15px;
  padding: 0;
  min-height: 28px;
  min-width: 28px;
}
.cid-uN583t3PM0 .soc-item a {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uN583t3PM0 .soc-item .mbr-iconfont {
  font-size: 28px;
  color: #ffffff !important;
}
@media (max-width: 991px) {
  .cid-uN583t3PM0 .col-link {
    width: auto !important;
    max-width: 33.33333333%;
  }
}
@media (max-width: 767px) {
  .cid-uN583t3PM0 .col-link {
    max-width: 100%;
    width: 100% !important;
  }
}
@media (max-width: 768px) {
  .cid-uN583t3PM0 .col-link1 {
    margin-bottom: 30px;
  }
}
.cid-uN583t3PM0 .col-link2 {
  padding-left: 30px;
}
@media (max-width: 768px) {
  .cid-uN583t3PM0 .col-link2 {
    padding-left: 0;
    margin-bottom: 30px;
  }
}
@media (min-width: 1200px) {
  .cid-uN583t3PM0 .col-link3 {
    padding-left: 70px;
  }
}
@media (max-width: 991px) {
  .cid-uN583t3PM0 .col-link3 {
    padding-left: 70px;
  }
}
@media (max-width: 768px) {
  .cid-uN583t3PM0 .col-link3 {
    padding-left: 0;
  }
}
.cid-uN583t3PM0 .list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
  color: #ffb18a;
}
.cid-uN583t3PM0 .list li {
  display: flex;
  align-items: center;
  line-height: 1.44;
}
.cid-uN583t3PM0 .list a {
  display: flex;
  align-items: center;
  line-height: 1.44;
}
.cid-uN583t3PM0 .footer-copyright {
  position: relative;
  z-index: 4;
  width: 100%;
  margin-top: -40px;
  background-color: #000000;
}
.cid-uN583t3PM0 .col-copyright {
  padding: 85px 0 60px 0 !important;
}
@media (max-width: 991px) {
  .cid-uN583t3PM0 .col-copyright {
    padding: 85px 10px 60px 10px !important;
  }
}
.cid-uN583t3PM0 .copyright {
  color: #ffffff;
  text-align: center;
}
@media (max-width: 991px) {
  .cid-uN583t3PM0 .copyright {
    text-align: center !important;
  }
}
.cid-ulJ7n1XVK7 {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-ulJ7n1XVK7 nav.navbar {
  position: fixed;
}
.cid-ulJ7n1XVK7 .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-ulJ7n1XVK7 .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-ulJ7n1XVK7 .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-ulJ7n1XVK7 .dropdown-item:hover,
.cid-ulJ7n1XVK7 .dropdown-item:focus {
  background: #f87d4d !important;
  color: white !important;
}
.cid-ulJ7n1XVK7 .dropdown-item:hover span {
  color: white;
}
.cid-ulJ7n1XVK7 .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-ulJ7n1XVK7 .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-ulJ7n1XVK7 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-ulJ7n1XVK7 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-ulJ7n1XVK7 .nav-link {
  position: relative;
}
.cid-ulJ7n1XVK7 .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-ulJ7n1XVK7 .container {
    flex-wrap: wrap;
  }
}
.cid-ulJ7n1XVK7 .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-ulJ7n1XVK7 .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-ulJ7n1XVK7 .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-ulJ7n1XVK7 .dropdown-menu,
.cid-ulJ7n1XVK7 .navbar.opened {
  background: #d4e7eb !important;
}
.cid-ulJ7n1XVK7 .nav-item:focus,
.cid-ulJ7n1XVK7 .nav-link:focus {
  outline: none;
}
.cid-ulJ7n1XVK7 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-ulJ7n1XVK7 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-ulJ7n1XVK7 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-ulJ7n1XVK7 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-ulJ7n1XVK7 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-ulJ7n1XVK7 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-ulJ7n1XVK7 .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #d4e7eb;
}
.cid-ulJ7n1XVK7 .navbar.opened {
  transition: all 0.3s;
}
.cid-ulJ7n1XVK7 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-ulJ7n1XVK7 .navbar .navbar-logo img {
  width: auto;
}
.cid-ulJ7n1XVK7 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-ulJ7n1XVK7 .navbar.collapsed {
  justify-content: center;
}
.cid-ulJ7n1XVK7 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-ulJ7n1XVK7 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-ulJ7n1XVK7 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-ulJ7n1XVK7 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-ulJ7n1XVK7 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-ulJ7n1XVK7 .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-ulJ7n1XVK7 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-ulJ7n1XVK7 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-ulJ7n1XVK7 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-ulJ7n1XVK7 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-ulJ7n1XVK7 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-ulJ7n1XVK7 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-ulJ7n1XVK7 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-ulJ7n1XVK7 .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-ulJ7n1XVK7 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-ulJ7n1XVK7 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-ulJ7n1XVK7 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-ulJ7n1XVK7 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-ulJ7n1XVK7 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-ulJ7n1XVK7 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-ulJ7n1XVK7 .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-ulJ7n1XVK7 .navbar.navbar-short {
  min-height: 60px;
}
.cid-ulJ7n1XVK7 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-ulJ7n1XVK7 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-ulJ7n1XVK7 .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-ulJ7n1XVK7 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-ulJ7n1XVK7 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-ulJ7n1XVK7 .dropdown-item.active,
.cid-ulJ7n1XVK7 .dropdown-item:active {
  background-color: transparent;
}
.cid-ulJ7n1XVK7 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-ulJ7n1XVK7 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-ulJ7n1XVK7 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-ulJ7n1XVK7 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #d4e7eb;
}
.cid-ulJ7n1XVK7 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-ulJ7n1XVK7 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-ulJ7n1XVK7 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-ulJ7n1XVK7 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-ulJ7n1XVK7 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-ulJ7n1XVK7 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-ulJ7n1XVK7 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-ulJ7n1XVK7 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-ulJ7n1XVK7 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-ulJ7n1XVK7 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-ulJ7n1XVK7 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-ulJ7n1XVK7 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-ulJ7n1XVK7 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-ulJ7n1XVK7 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-ulJ7n1XVK7 .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-ulJ7n1XVK7 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-ulJ7n1XVK7 .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-ulJ7n1XVK7 .navbar {
    height: 70px;
  }
  .cid-ulJ7n1XVK7 .navbar.opened {
    height: auto;
  }
  .cid-ulJ7n1XVK7 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-ulJ7n2nekb {
  padding-top: 60px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
@media (max-width: 992px) {
  .cid-ulJ7n2nekb {
    padding-top: 40px;
    padding-bottom: 0px;
  }
}
.cid-ulJ7n2nekb .mbr-section-text {
  margin-top: 1.5rem;
  animation-delay: .2s;
}
.cid-ulJ7n2nekb .mbr-section-btn {
  animation-delay: .4s;
}
.cid-ulJ7n2nekb .card-wrap {
  background-color: #ffffff;
  padding: 3rem 2.5rem;
  margin-right: 2.5rem;
  margin-top: 1rem;
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .cid-ulJ7n2nekb .card-wrap {
    width: calc(100% + 15rem);
    margin-left: -17.5rem;
    margin-top: 4rem;
    margin-bottom: 0;
  }
}
@media (max-width: 767px) {
  .cid-ulJ7n2nekb .card-wrap {
    margin: auto;
    padding: 1rem;
  }
}
.cid-ulJ7n2nekb .back {
  position: absolute;
  top: 0;
  right: 0;
  width: 80%;
  height: 90%;
  background-color: #d4e7eb;
}
@media (max-width: 991px) {
  .cid-ulJ7n2nekb .back {
    width: 100%;
    height: 100%;
  }
}
.cid-ulJ7n2nekb section {
  position: relative;
}
.cid-ulJ7n2nekb .box {
  padding-top: 1rem;
  margin-right: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (min-width: 992px) {
  .cid-ulJ7n2nekb .box {
    padding-top: 8rem;
  }
}
.cid-ulJ7n2nekb .box img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  object-position: 50% 50%;
}
@media (max-width: 767px) {
  .cid-ulJ7n2nekb {
    padding-top: 28px;
    padding-bottom: 0px;
  }
  .cid-ulJ7n2nekb .row {
    padding: 1rem!important;
  }
}
.cid-ulJ7n2nekb H1 {
  text-align: left;
}
.cid-ulJ7n2nekb .mbr-section-subtitle,
.cid-ulJ7n2nekb .mbr-section-btn {
  text-align: left;
}
.cid-ulJ7n2nekb .mbr-section-text,
.cid-ulJ7n2nekb .mbr-section-btn {
  text-align: left;
}
.cid-ulJ7n2H222 {
  padding-top: 5rem;
  padding-bottom: 0rem;
  position: relative;
  overflow: hidden;
  background-color: #d4e7eb;
}
.cid-ulJ7n2H222 .border-wrap {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 1000vh;
  height: 1px;
  background-color: #150764;
}
.cid-ulJ7n2H222 .mbr-fallback-image.disabled {
  display: none;
}
.cid-ulJ7n2H222 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ulJ7n2H222 .content-wrap {
  align-items: center;
  justify-content: space-between;
}
.cid-ulJ7n2H222 .content-wrap .card {
  justify-content: space-between;
}
.cid-ulJ7n2H222 .content-wrapper {
  padding: 0 24px;
}
@media (max-width: 992px) {
  .cid-ulJ7n2H222 .content-wrapper {
    padding: 0;
  }
}
.cid-ulJ7n2H222 .content-wrapper .mbr-section-title {
  margin-bottom: 16px;
}
.cid-ulJ7n2H222 .content-wrapper .desc-wrapper .mbr-desc {
  display: inline-flex;
  margin-bottom: 0;
  padding: 10px;
  -webkit-text-stroke-color: #150764;
  box-shadow: 4px 4px 0 0 #150764;
  border: 2px solid #150764;
  background-color: #4188ff;
  -webkit-text-stroke-width: .15rem;
}
@media (max-width: 992px) {
  .cid-ulJ7n2H222 .content-wrapper .desc-wrapper .mbr-desc {
    -webkit-text-stroke-width: .12rem;
  }
}
.cid-ulJ7n2H222 .mbr-section-title {
  color: #150764;
  text-align: center;
}
.cid-ulJ7n2H222 .mbr-desc,
.cid-ulJ7n2H222 .desc-wrapper {
  color: #ffffff;
  text-align: center;
}
.cid-uN59mgafy5 {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-uN59mgafy5 H1 {
  color: #000000;
}
.cid-uN59mgafy5 .mbr-text,
.cid-uN59mgafy5 .mbr-section-btn {
  color: #000000;
}
.cid-uN59mgafy5 .mbr-subtitle {
  color: #000000;
}
.cid-uN59mgafy5 .mbr-text {
  margin-top: 1.5rem;
}
.cid-uN59mgafy5 .mbr-section-btn {
  margin-top: 2rem;
}
.cid-uN59mgafy5 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uN59mgafy5 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ulJbbJ824p {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f5f9fc;
}
.cid-ulJbbJ824p .mbr-fallback-image.disabled {
  display: none;
}
.cid-ulJbbJ824p .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-ulJbbJ824p .container {
    padding: 0 30px;
  }
}
.cid-ulJbbJ824p .row {
  justify-content: center;
}
.cid-ulJbbJ824p .title-wrapper .mbr-section-title {
  margin-bottom: 40px;
}
.cid-ulJbbJ824p .video-block .video-wrapper iframe {
  height: 550px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-ulJbbJ824p .video-block .video-wrapper iframe {
    height: 300px;
  }
}
.cid-ulJbbJ824p .video-block .video-wrapper .app-video-wrapper::before {
  color: #f5f9fc;
  text-shadow: none;
}
.cid-ulJbbJ824p .video-block .video-wrapper .app-video-wrapper img {
  height: 550px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-ulJbbJ824p .video-block .video-wrapper .app-video-wrapper img {
    height: 300px;
  }
}
.cid-ulJbbJ824p .mbr-section-title {
  color: #212529;
  text-align: center;
}
.cid-uN583t3PM0 .footer-head {
  width: 100%;
  position: relative;
  z-index: 5;
  background-color: #000000;
  border-bottom-left-radius: 40px;
  border-bottom-right-radius: 40px;
  overflow: hidden;
}
.cid-uN583t3PM0 .img-bg {
  content: '';
  position: absolute;
  top: 0;
  right: 57%;
  bottom: 0;
  left: 0;
  background-color: #ffffff;
  border-top-right-radius: 190px;
  border-bottom-left-radius: 40px;
}
@media (max-width: 991px) {
  .cid-uN583t3PM0 .img-bg {
    display: none;
  }
}
.cid-uN583t3PM0 .container {
  display: flex;
  justify-content: center;
  max-width: 1160px;
}
@media (max-width: 991px) {
  .cid-uN583t3PM0 .container {
    padding: 0 !important;
  }
}
.cid-uN583t3PM0 .row {
  width: 100%;
  align-items: center;
}
.cid-uN583t3PM0 .content-container {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  padding-left: 0 !important;
  padding-right: 0 !important;
  padding-top: 5rem;
  padding-bottom: 5rem;
}
@media (max-width: 991px) {
  .cid-uN583t3PM0 .content-container {
    padding-top: 0;
    background-color: #000000;
  }
}
@media (max-width: 991px) {
  .cid-uN583t3PM0 .col-brand {
    padding: 0 15px 65px 15px;
    padding-top: 5rem;
    border-bottom-left-radius: 40px;
    background-color: #ffffff;
  }
}
.cid-uN583t3PM0 .col-links {
  display: flex;
  flex-wrap: wrap;
  padding: 10px;
}
@media (max-width: 991px) {
  .cid-uN583t3PM0 .col-links {
    padding: 70px 15px 0 15px;
  }
}
.cid-uN583t3PM0 .navbar-brand {
  display: flex;
  flex-basis: auto;
  word-break: break-word;
  min-height: 40px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  margin-bottom: 20px;
  padding: 0;
  transition: all 0.3s;
  z-index: 1;
  font-weight: 700;
}
.cid-uN583t3PM0 .navbar-brand .navbar-logo {
  margin-right: 0.5rem;
}
.cid-uN583t3PM0 .navbar-brand .navbar-logo img {
  width: auto;
}
.cid-uN583t3PM0 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uN583t3PM0 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uN583t3PM0 .brand-text {
  margin-top: 75px;
  margin-bottom: 0;
  color: #ffffff;
  opacity: 0.85;
  width: 100%;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-uN583t3PM0 .brand-text {
    margin-top: 45px;
  }
}
.cid-uN583t3PM0 .mbr-section-subtitle {
  color: #ffffff;
  opacity: 0.85;
  margin-bottom: 10px;
}
.cid-uN583t3PM0 .social-row {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 60px;
}
.cid-uN583t3PM0 .mbr-iconfont {
  font-size: 16px;
  color: #ffffff;
}
.cid-uN583t3PM0 .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  margin-bottom: 15px;
  padding: 0;
  min-height: 28px;
  min-width: 28px;
}
.cid-uN583t3PM0 .soc-item a {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uN583t3PM0 .soc-item .mbr-iconfont {
  font-size: 28px;
  color: #ffffff !important;
}
@media (max-width: 991px) {
  .cid-uN583t3PM0 .col-link {
    width: auto !important;
    max-width: 33.33333333%;
  }
}
@media (max-width: 767px) {
  .cid-uN583t3PM0 .col-link {
    max-width: 100%;
    width: 100% !important;
  }
}
@media (max-width: 768px) {
  .cid-uN583t3PM0 .col-link1 {
    margin-bottom: 30px;
  }
}
.cid-uN583t3PM0 .col-link2 {
  padding-left: 30px;
}
@media (max-width: 768px) {
  .cid-uN583t3PM0 .col-link2 {
    padding-left: 0;
    margin-bottom: 30px;
  }
}
@media (min-width: 1200px) {
  .cid-uN583t3PM0 .col-link3 {
    padding-left: 70px;
  }
}
@media (max-width: 991px) {
  .cid-uN583t3PM0 .col-link3 {
    padding-left: 70px;
  }
}
@media (max-width: 768px) {
  .cid-uN583t3PM0 .col-link3 {
    padding-left: 0;
  }
}
.cid-uN583t3PM0 .list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
  color: #ffb18a;
}
.cid-uN583t3PM0 .list li {
  display: flex;
  align-items: center;
  line-height: 1.44;
}
.cid-uN583t3PM0 .list a {
  display: flex;
  align-items: center;
  line-height: 1.44;
}
.cid-uN583t3PM0 .footer-copyright {
  position: relative;
  z-index: 4;
  width: 100%;
  margin-top: -40px;
  background-color: #000000;
}
.cid-uN583t3PM0 .col-copyright {
  padding: 85px 0 60px 0 !important;
}
@media (max-width: 991px) {
  .cid-uN583t3PM0 .col-copyright {
    padding: 85px 10px 60px 10px !important;
  }
}
.cid-uN583t3PM0 .copyright {
  color: #ffffff;
  text-align: center;
}
@media (max-width: 991px) {
  .cid-uN583t3PM0 .copyright {
    text-align: center !important;
  }
}
.cid-ulJcu5HPlM {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-ulJcu5HPlM nav.navbar {
  position: fixed;
}
.cid-ulJcu5HPlM .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-ulJcu5HPlM .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-ulJcu5HPlM .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-ulJcu5HPlM .dropdown-item:hover,
.cid-ulJcu5HPlM .dropdown-item:focus {
  background: #f87d4d !important;
  color: white !important;
}
.cid-ulJcu5HPlM .dropdown-item:hover span {
  color: white;
}
.cid-ulJcu5HPlM .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-ulJcu5HPlM .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-ulJcu5HPlM .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-ulJcu5HPlM .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-ulJcu5HPlM .nav-link {
  position: relative;
}
.cid-ulJcu5HPlM .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-ulJcu5HPlM .container {
    flex-wrap: wrap;
  }
}
.cid-ulJcu5HPlM .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-ulJcu5HPlM .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-ulJcu5HPlM .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-ulJcu5HPlM .dropdown-menu,
.cid-ulJcu5HPlM .navbar.opened {
  background: #d4e7eb !important;
}
.cid-ulJcu5HPlM .nav-item:focus,
.cid-ulJcu5HPlM .nav-link:focus {
  outline: none;
}
.cid-ulJcu5HPlM .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-ulJcu5HPlM .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-ulJcu5HPlM .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-ulJcu5HPlM .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-ulJcu5HPlM .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-ulJcu5HPlM .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-ulJcu5HPlM .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #d4e7eb;
}
.cid-ulJcu5HPlM .navbar.opened {
  transition: all 0.3s;
}
.cid-ulJcu5HPlM .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-ulJcu5HPlM .navbar .navbar-logo img {
  width: auto;
}
.cid-ulJcu5HPlM .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-ulJcu5HPlM .navbar.collapsed {
  justify-content: center;
}
.cid-ulJcu5HPlM .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-ulJcu5HPlM .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-ulJcu5HPlM .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-ulJcu5HPlM .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-ulJcu5HPlM .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-ulJcu5HPlM .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-ulJcu5HPlM .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-ulJcu5HPlM .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-ulJcu5HPlM .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-ulJcu5HPlM .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-ulJcu5HPlM .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-ulJcu5HPlM .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-ulJcu5HPlM .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-ulJcu5HPlM .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-ulJcu5HPlM .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-ulJcu5HPlM .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-ulJcu5HPlM .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-ulJcu5HPlM .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-ulJcu5HPlM .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-ulJcu5HPlM .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-ulJcu5HPlM .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-ulJcu5HPlM .navbar.navbar-short {
  min-height: 60px;
}
.cid-ulJcu5HPlM .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-ulJcu5HPlM .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-ulJcu5HPlM .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-ulJcu5HPlM .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-ulJcu5HPlM .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-ulJcu5HPlM .dropdown-item.active,
.cid-ulJcu5HPlM .dropdown-item:active {
  background-color: transparent;
}
.cid-ulJcu5HPlM .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-ulJcu5HPlM .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-ulJcu5HPlM .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-ulJcu5HPlM .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #d4e7eb;
}
.cid-ulJcu5HPlM .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-ulJcu5HPlM .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-ulJcu5HPlM ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-ulJcu5HPlM .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-ulJcu5HPlM button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-ulJcu5HPlM button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-ulJcu5HPlM button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-ulJcu5HPlM button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-ulJcu5HPlM button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-ulJcu5HPlM button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-ulJcu5HPlM nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-ulJcu5HPlM nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-ulJcu5HPlM nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-ulJcu5HPlM nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-ulJcu5HPlM .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-ulJcu5HPlM a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-ulJcu5HPlM .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-ulJcu5HPlM .navbar {
    height: 70px;
  }
  .cid-ulJcu5HPlM .navbar.opened {
    height: auto;
  }
  .cid-ulJcu5HPlM .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-ulJcu61VqG {
  padding-top: 60px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
@media (max-width: 992px) {
  .cid-ulJcu61VqG {
    padding-top: 40px;
    padding-bottom: 0px;
  }
}
.cid-ulJcu61VqG .mbr-section-text {
  margin-top: 1.5rem;
  animation-delay: .2s;
}
.cid-ulJcu61VqG .mbr-section-btn {
  animation-delay: .4s;
}
.cid-ulJcu61VqG .card-wrap {
  background-color: #ffffff;
  padding: 3rem 2.5rem;
  margin-right: 2.5rem;
  margin-top: 1rem;
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .cid-ulJcu61VqG .card-wrap {
    width: calc(100% + 15rem);
    margin-left: -17.5rem;
    margin-top: 4rem;
    margin-bottom: 0;
  }
}
@media (max-width: 767px) {
  .cid-ulJcu61VqG .card-wrap {
    margin: auto;
    padding: 1rem;
  }
}
.cid-ulJcu61VqG .back {
  position: absolute;
  top: 0;
  right: 0;
  width: 80%;
  height: 90%;
  background-color: #d4e7eb;
}
@media (max-width: 991px) {
  .cid-ulJcu61VqG .back {
    width: 100%;
    height: 100%;
  }
}
.cid-ulJcu61VqG section {
  position: relative;
}
.cid-ulJcu61VqG .box {
  padding-top: 1rem;
  margin-right: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (min-width: 992px) {
  .cid-ulJcu61VqG .box {
    padding-top: 8rem;
  }
}
.cid-ulJcu61VqG .box img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  object-position: 50% 50%;
}
@media (max-width: 767px) {
  .cid-ulJcu61VqG {
    padding-top: 28px;
    padding-bottom: 0px;
  }
  .cid-ulJcu61VqG .row {
    padding: 1rem!important;
  }
}
.cid-ulJcu61VqG H1 {
  text-align: left;
}
.cid-ulJcu61VqG .mbr-section-subtitle,
.cid-ulJcu61VqG .mbr-section-btn {
  text-align: left;
}
.cid-ulJcu61VqG .mbr-section-text,
.cid-ulJcu61VqG .mbr-section-btn {
  text-align: left;
}
.cid-ulJcu6jMQJ {
  padding-top: 5rem;
  padding-bottom: 0rem;
  position: relative;
  overflow: hidden;
  background-color: #d4e7eb;
}
.cid-ulJcu6jMQJ .border-wrap {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 1000vh;
  height: 1px;
  background-color: #150764;
}
.cid-ulJcu6jMQJ .mbr-fallback-image.disabled {
  display: none;
}
.cid-ulJcu6jMQJ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ulJcu6jMQJ .content-wrap {
  align-items: center;
  justify-content: space-between;
}
.cid-ulJcu6jMQJ .content-wrap .card {
  justify-content: space-between;
}
.cid-ulJcu6jMQJ .content-wrapper {
  padding: 0 24px;
}
@media (max-width: 992px) {
  .cid-ulJcu6jMQJ .content-wrapper {
    padding: 0;
  }
}
.cid-ulJcu6jMQJ .content-wrapper .mbr-section-title {
  margin-bottom: 16px;
}
.cid-ulJcu6jMQJ .content-wrapper .desc-wrapper .mbr-desc {
  display: inline-flex;
  margin-bottom: 0;
  padding: 10px;
  -webkit-text-stroke-color: #150764;
  box-shadow: 4px 4px 0 0 #150764;
  border: 2px solid #150764;
  background-color: #4188ff;
  -webkit-text-stroke-width: .15rem;
}
@media (max-width: 992px) {
  .cid-ulJcu6jMQJ .content-wrapper .desc-wrapper .mbr-desc {
    -webkit-text-stroke-width: .12rem;
  }
}
.cid-ulJcu6jMQJ .mbr-section-title {
  color: #150764;
  text-align: center;
}
.cid-ulJcu6jMQJ .mbr-desc,
.cid-ulJcu6jMQJ .desc-wrapper {
  color: #ffffff;
  text-align: center;
}
.cid-uN5aFmnOxh {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-uN5aFmnOxh H1 {
  color: #000000;
}
.cid-uN5aFmnOxh .mbr-text,
.cid-uN5aFmnOxh .mbr-section-btn {
  color: #000000;
}
.cid-uN5aFmnOxh .mbr-subtitle {
  color: #000000;
}
.cid-uN5aFmnOxh .mbr-text {
  margin-top: 1.5rem;
}
.cid-uN5aFmnOxh .mbr-section-btn {
  margin-top: 2rem;
}
.cid-uN5aFmnOxh .mbr-fallback-image.disabled {
  display: none;
}
.cid-uN5aFmnOxh .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uN583t3PM0 .footer-head {
  width: 100%;
  position: relative;
  z-index: 5;
  background-color: #000000;
  border-bottom-left-radius: 40px;
  border-bottom-right-radius: 40px;
  overflow: hidden;
}
.cid-uN583t3PM0 .img-bg {
  content: '';
  position: absolute;
  top: 0;
  right: 57%;
  bottom: 0;
  left: 0;
  background-color: #ffffff;
  border-top-right-radius: 190px;
  border-bottom-left-radius: 40px;
}
@media (max-width: 991px) {
  .cid-uN583t3PM0 .img-bg {
    display: none;
  }
}
.cid-uN583t3PM0 .container {
  display: flex;
  justify-content: center;
  max-width: 1160px;
}
@media (max-width: 991px) {
  .cid-uN583t3PM0 .container {
    padding: 0 !important;
  }
}
.cid-uN583t3PM0 .row {
  width: 100%;
  align-items: center;
}
.cid-uN583t3PM0 .content-container {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  padding-left: 0 !important;
  padding-right: 0 !important;
  padding-top: 5rem;
  padding-bottom: 5rem;
}
@media (max-width: 991px) {
  .cid-uN583t3PM0 .content-container {
    padding-top: 0;
    background-color: #000000;
  }
}
@media (max-width: 991px) {
  .cid-uN583t3PM0 .col-brand {
    padding: 0 15px 65px 15px;
    padding-top: 5rem;
    border-bottom-left-radius: 40px;
    background-color: #ffffff;
  }
}
.cid-uN583t3PM0 .col-links {
  display: flex;
  flex-wrap: wrap;
  padding: 10px;
}
@media (max-width: 991px) {
  .cid-uN583t3PM0 .col-links {
    padding: 70px 15px 0 15px;
  }
}
.cid-uN583t3PM0 .navbar-brand {
  display: flex;
  flex-basis: auto;
  word-break: break-word;
  min-height: 40px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  margin-bottom: 20px;
  padding: 0;
  transition: all 0.3s;
  z-index: 1;
  font-weight: 700;
}
.cid-uN583t3PM0 .navbar-brand .navbar-logo {
  margin-right: 0.5rem;
}
.cid-uN583t3PM0 .navbar-brand .navbar-logo img {
  width: auto;
}
.cid-uN583t3PM0 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uN583t3PM0 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uN583t3PM0 .brand-text {
  margin-top: 75px;
  margin-bottom: 0;
  color: #ffffff;
  opacity: 0.85;
  width: 100%;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-uN583t3PM0 .brand-text {
    margin-top: 45px;
  }
}
.cid-uN583t3PM0 .mbr-section-subtitle {
  color: #ffffff;
  opacity: 0.85;
  margin-bottom: 10px;
}
.cid-uN583t3PM0 .social-row {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 60px;
}
.cid-uN583t3PM0 .mbr-iconfont {
  font-size: 16px;
  color: #ffffff;
}
.cid-uN583t3PM0 .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  margin-bottom: 15px;
  padding: 0;
  min-height: 28px;
  min-width: 28px;
}
.cid-uN583t3PM0 .soc-item a {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uN583t3PM0 .soc-item .mbr-iconfont {
  font-size: 28px;
  color: #ffffff !important;
}
@media (max-width: 991px) {
  .cid-uN583t3PM0 .col-link {
    width: auto !important;
    max-width: 33.33333333%;
  }
}
@media (max-width: 767px) {
  .cid-uN583t3PM0 .col-link {
    max-width: 100%;
    width: 100% !important;
  }
}
@media (max-width: 768px) {
  .cid-uN583t3PM0 .col-link1 {
    margin-bottom: 30px;
  }
}
.cid-uN583t3PM0 .col-link2 {
  padding-left: 30px;
}
@media (max-width: 768px) {
  .cid-uN583t3PM0 .col-link2 {
    padding-left: 0;
    margin-bottom: 30px;
  }
}
@media (min-width: 1200px) {
  .cid-uN583t3PM0 .col-link3 {
    padding-left: 70px;
  }
}
@media (max-width: 991px) {
  .cid-uN583t3PM0 .col-link3 {
    padding-left: 70px;
  }
}
@media (max-width: 768px) {
  .cid-uN583t3PM0 .col-link3 {
    padding-left: 0;
  }
}
.cid-uN583t3PM0 .list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
  color: #ffb18a;
}
.cid-uN583t3PM0 .list li {
  display: flex;
  align-items: center;
  line-height: 1.44;
}
.cid-uN583t3PM0 .list a {
  display: flex;
  align-items: center;
  line-height: 1.44;
}
.cid-uN583t3PM0 .footer-copyright {
  position: relative;
  z-index: 4;
  width: 100%;
  margin-top: -40px;
  background-color: #000000;
}
.cid-uN583t3PM0 .col-copyright {
  padding: 85px 0 60px 0 !important;
}
@media (max-width: 991px) {
  .cid-uN583t3PM0 .col-copyright {
    padding: 85px 10px 60px 10px !important;
  }
}
.cid-uN583t3PM0 .copyright {
  color: #ffffff;
  text-align: center;
}
@media (max-width: 991px) {
  .cid-uN583t3PM0 .copyright {
    text-align: center !important;
  }
}
.cid-uN5aUEVyRN {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uN5aUEVyRN nav.navbar {
  position: fixed;
}
.cid-uN5aUEVyRN .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uN5aUEVyRN .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uN5aUEVyRN .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uN5aUEVyRN .dropdown-item:hover,
.cid-uN5aUEVyRN .dropdown-item:focus {
  background: #f87d4d !important;
  color: white !important;
}
.cid-uN5aUEVyRN .dropdown-item:hover span {
  color: white;
}
.cid-uN5aUEVyRN .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uN5aUEVyRN .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uN5aUEVyRN .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uN5aUEVyRN .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uN5aUEVyRN .nav-link {
  position: relative;
}
.cid-uN5aUEVyRN .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uN5aUEVyRN .container {
    flex-wrap: wrap;
  }
}
.cid-uN5aUEVyRN .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uN5aUEVyRN .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-uN5aUEVyRN .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uN5aUEVyRN .dropdown-menu,
.cid-uN5aUEVyRN .navbar.opened {
  background: #d4e7eb !important;
}
.cid-uN5aUEVyRN .nav-item:focus,
.cid-uN5aUEVyRN .nav-link:focus {
  outline: none;
}
.cid-uN5aUEVyRN .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uN5aUEVyRN .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uN5aUEVyRN .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uN5aUEVyRN .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uN5aUEVyRN .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uN5aUEVyRN .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uN5aUEVyRN .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #d4e7eb;
}
.cid-uN5aUEVyRN .navbar.opened {
  transition: all 0.3s;
}
.cid-uN5aUEVyRN .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uN5aUEVyRN .navbar .navbar-logo img {
  width: auto;
}
.cid-uN5aUEVyRN .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uN5aUEVyRN .navbar.collapsed {
  justify-content: center;
}
.cid-uN5aUEVyRN .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uN5aUEVyRN .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uN5aUEVyRN .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-uN5aUEVyRN .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uN5aUEVyRN .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uN5aUEVyRN .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-uN5aUEVyRN .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uN5aUEVyRN .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uN5aUEVyRN .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uN5aUEVyRN .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uN5aUEVyRN .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uN5aUEVyRN .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uN5aUEVyRN .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uN5aUEVyRN .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-uN5aUEVyRN .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uN5aUEVyRN .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uN5aUEVyRN .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uN5aUEVyRN .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uN5aUEVyRN .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uN5aUEVyRN .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uN5aUEVyRN .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uN5aUEVyRN .navbar.navbar-short {
  min-height: 60px;
}
.cid-uN5aUEVyRN .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uN5aUEVyRN .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uN5aUEVyRN .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uN5aUEVyRN .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uN5aUEVyRN .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uN5aUEVyRN .dropdown-item.active,
.cid-uN5aUEVyRN .dropdown-item:active {
  background-color: transparent;
}
.cid-uN5aUEVyRN .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uN5aUEVyRN .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uN5aUEVyRN .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uN5aUEVyRN .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #d4e7eb;
}
.cid-uN5aUEVyRN .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uN5aUEVyRN .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uN5aUEVyRN ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uN5aUEVyRN .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uN5aUEVyRN button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uN5aUEVyRN button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uN5aUEVyRN button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uN5aUEVyRN button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uN5aUEVyRN button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uN5aUEVyRN button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uN5aUEVyRN nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uN5aUEVyRN nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uN5aUEVyRN nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uN5aUEVyRN nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uN5aUEVyRN .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uN5aUEVyRN a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uN5aUEVyRN .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uN5aUEVyRN .navbar {
    height: 70px;
  }
  .cid-uN5aUEVyRN .navbar.opened {
    height: auto;
  }
  .cid-uN5aUEVyRN .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uN5aUFoaur {
  padding-top: 60px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
@media (max-width: 992px) {
  .cid-uN5aUFoaur {
    padding-top: 40px;
    padding-bottom: 0px;
  }
}
.cid-uN5aUFoaur .mbr-section-text {
  margin-top: 1.5rem;
  animation-delay: .2s;
}
.cid-uN5aUFoaur .mbr-section-btn {
  animation-delay: .4s;
}
.cid-uN5aUFoaur .card-wrap {
  background-color: #ffffff;
  padding: 3rem 2.5rem;
  margin-right: 2.5rem;
  margin-top: 1rem;
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .cid-uN5aUFoaur .card-wrap {
    width: calc(100% + 15rem);
    margin-left: -17.5rem;
    margin-top: 4rem;
    margin-bottom: 0;
  }
}
@media (max-width: 767px) {
  .cid-uN5aUFoaur .card-wrap {
    margin: auto;
    padding: 1rem;
  }
}
.cid-uN5aUFoaur .back {
  position: absolute;
  top: 0;
  right: 0;
  width: 80%;
  height: 90%;
  background-color: #d4e7eb;
}
@media (max-width: 991px) {
  .cid-uN5aUFoaur .back {
    width: 100%;
    height: 100%;
  }
}
.cid-uN5aUFoaur section {
  position: relative;
}
.cid-uN5aUFoaur .box {
  padding-top: 1rem;
  margin-right: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (min-width: 992px) {
  .cid-uN5aUFoaur .box {
    padding-top: 8rem;
  }
}
.cid-uN5aUFoaur .box img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  object-position: 50% 50%;
}
@media (max-width: 767px) {
  .cid-uN5aUFoaur {
    padding-top: 28px;
    padding-bottom: 0px;
  }
  .cid-uN5aUFoaur .row {
    padding: 1rem!important;
  }
}
.cid-uN5aUFoaur H1 {
  text-align: left;
}
.cid-uN5aUFoaur .mbr-section-subtitle,
.cid-uN5aUFoaur .mbr-section-btn {
  text-align: left;
}
.cid-uN5aUFoaur .mbr-section-text,
.cid-uN5aUFoaur .mbr-section-btn {
  text-align: left;
}
.cid-uN5eVCZ4aH {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f2f1f3;
}
.cid-uN5eVCZ4aH .mbr-fallback-image.disabled {
  display: none;
}
.cid-uN5eVCZ4aH .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uN5eVCZ4aH .content-wrapper {
  position: sticky;
  top: 40px;
}
@media (max-width: 992px) {
  .cid-uN5eVCZ4aH .content-wrapper {
    margin-bottom: 40px;
    position: static;
  }
}
.cid-uN5eVCZ4aH .panel-group .card {
  position: relative;
  border-radius: 0 !important;
  padding: 30px 0;
  background-color: transparent;
  border-bottom: 1px solid #dddddd;
}
@media (max-width: 992px) {
  .cid-uN5eVCZ4aH .panel-group .card {
    padding: 20px 0;
  }
}
.cid-uN5eVCZ4aH .panel-group .card .card-header {
  background-color: transparent;
  border: none;
  border-radius: 0;
  padding: 0;
}
.cid-uN5eVCZ4aH .panel-group .card .card-header .panel-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
.cid-uN5eVCZ4aH .panel-group .card .card-header .panel-title .panel-title-edit {
  margin-bottom: 0;
}
.cid-uN5eVCZ4aH .panel-group .card .card-header .panel-title .icon-wrapper .mbr-iconfont {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  font-size: 16px;
  transition: all 0.3s ease-in-out;
  color: #19171c;
  margin-top: 4px;
  margin-left: 20px;
}
.cid-uN5eVCZ4aH .panel-group .card .card-header .panel-title:not(.collapsed) .icon-wrapper .mbr-iconfont {
  transform: rotate(180deg);
}
.cid-uN5eVCZ4aH .panel-group .card .panel-collapse .panel-body {
  padding-top: 20px;
}
.cid-uN5eVCZ4aH .panel-group .card .panel-collapse .panel-body .panel-text {
  margin-bottom: 0;
}
.cid-uN5eVCZ4aH .mbr-section-title {
  color: #19171c;
}
.cid-uN5eVCZ4aH .panel-title {
  color: #19171c;
}
.cid-uN5eVCZ4aH .panel-text {
  color: #6e6e73;
}
.cid-uN5aUG8EBl .footer-head {
  width: 100%;
  position: relative;
  z-index: 5;
  background-color: #000000;
  border-bottom-left-radius: 40px;
  border-bottom-right-radius: 40px;
  overflow: hidden;
}
.cid-uN5aUG8EBl .img-bg {
  content: '';
  position: absolute;
  top: 0;
  right: 57%;
  bottom: 0;
  left: 0;
  background-color: #ffffff;
  border-top-right-radius: 190px;
  border-bottom-left-radius: 40px;
}
@media (max-width: 991px) {
  .cid-uN5aUG8EBl .img-bg {
    display: none;
  }
}
.cid-uN5aUG8EBl .container {
  display: flex;
  justify-content: center;
  max-width: 1160px;
}
@media (max-width: 991px) {
  .cid-uN5aUG8EBl .container {
    padding: 0 !important;
  }
}
.cid-uN5aUG8EBl .row {
  width: 100%;
  align-items: center;
}
.cid-uN5aUG8EBl .content-container {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  padding-left: 0 !important;
  padding-right: 0 !important;
  padding-top: 5rem;
  padding-bottom: 5rem;
}
@media (max-width: 991px) {
  .cid-uN5aUG8EBl .content-container {
    padding-top: 0;
    background-color: #000000;
  }
}
@media (max-width: 991px) {
  .cid-uN5aUG8EBl .col-brand {
    padding: 0 15px 65px 15px;
    padding-top: 5rem;
    border-bottom-left-radius: 40px;
    background-color: #ffffff;
  }
}
.cid-uN5aUG8EBl .col-links {
  display: flex;
  flex-wrap: wrap;
  padding: 10px;
}
@media (max-width: 991px) {
  .cid-uN5aUG8EBl .col-links {
    padding: 70px 15px 0 15px;
  }
}
.cid-uN5aUG8EBl .navbar-brand {
  display: flex;
  flex-basis: auto;
  word-break: break-word;
  min-height: 40px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  margin-bottom: 20px;
  padding: 0;
  transition: all 0.3s;
  z-index: 1;
  font-weight: 700;
}
.cid-uN5aUG8EBl .navbar-brand .navbar-logo {
  margin-right: 0.5rem;
}
.cid-uN5aUG8EBl .navbar-brand .navbar-logo img {
  width: auto;
}
.cid-uN5aUG8EBl .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uN5aUG8EBl .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uN5aUG8EBl .brand-text {
  margin-top: 75px;
  margin-bottom: 0;
  color: #ffffff;
  opacity: 0.85;
  width: 100%;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-uN5aUG8EBl .brand-text {
    margin-top: 45px;
  }
}
.cid-uN5aUG8EBl .mbr-section-subtitle {
  color: #ffffff;
  opacity: 0.85;
  margin-bottom: 10px;
}
.cid-uN5aUG8EBl .social-row {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 60px;
}
.cid-uN5aUG8EBl .mbr-iconfont {
  font-size: 16px;
  color: #ffffff;
}
.cid-uN5aUG8EBl .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  margin-bottom: 15px;
  padding: 0;
  min-height: 28px;
  min-width: 28px;
}
.cid-uN5aUG8EBl .soc-item a {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uN5aUG8EBl .soc-item .mbr-iconfont {
  font-size: 28px;
  color: #ffffff !important;
}
@media (max-width: 991px) {
  .cid-uN5aUG8EBl .col-link {
    width: auto !important;
    max-width: 33.33333333%;
  }
}
@media (max-width: 767px) {
  .cid-uN5aUG8EBl .col-link {
    max-width: 100%;
    width: 100% !important;
  }
}
@media (max-width: 768px) {
  .cid-uN5aUG8EBl .col-link1 {
    margin-bottom: 30px;
  }
}
.cid-uN5aUG8EBl .col-link2 {
  padding-left: 30px;
}
@media (max-width: 768px) {
  .cid-uN5aUG8EBl .col-link2 {
    padding-left: 0;
    margin-bottom: 30px;
  }
}
@media (min-width: 1200px) {
  .cid-uN5aUG8EBl .col-link3 {
    padding-left: 70px;
  }
}
@media (max-width: 991px) {
  .cid-uN5aUG8EBl .col-link3 {
    padding-left: 70px;
  }
}
@media (max-width: 768px) {
  .cid-uN5aUG8EBl .col-link3 {
    padding-left: 0;
  }
}
.cid-uN5aUG8EBl .list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
  color: #ffb18a;
}
.cid-uN5aUG8EBl .list li {
  display: flex;
  align-items: center;
  line-height: 1.44;
}
.cid-uN5aUG8EBl .list a {
  display: flex;
  align-items: center;
  line-height: 1.44;
}
.cid-uN5aUG8EBl .footer-copyright {
  position: relative;
  z-index: 4;
  width: 100%;
  margin-top: -40px;
  background-color: #000000;
}
.cid-uN5aUG8EBl .col-copyright {
  padding: 85px 0 60px 0 !important;
}
@media (max-width: 991px) {
  .cid-uN5aUG8EBl .col-copyright {
    padding: 85px 10px 60px 10px !important;
  }
}
.cid-uN5aUG8EBl .copyright {
  color: #ffffff;
  text-align: center;
}
@media (max-width: 991px) {
  .cid-uN5aUG8EBl .copyright {
    text-align: center !important;
  }
}
.cid-uN5bJu8Hc3 {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uN5bJu8Hc3 nav.navbar {
  position: fixed;
}
.cid-uN5bJu8Hc3 .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uN5bJu8Hc3 .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uN5bJu8Hc3 .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uN5bJu8Hc3 .dropdown-item:hover,
.cid-uN5bJu8Hc3 .dropdown-item:focus {
  background: #f87d4d !important;
  color: white !important;
}
.cid-uN5bJu8Hc3 .dropdown-item:hover span {
  color: white;
}
.cid-uN5bJu8Hc3 .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uN5bJu8Hc3 .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uN5bJu8Hc3 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uN5bJu8Hc3 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uN5bJu8Hc3 .nav-link {
  position: relative;
}
.cid-uN5bJu8Hc3 .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uN5bJu8Hc3 .container {
    flex-wrap: wrap;
  }
}
.cid-uN5bJu8Hc3 .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uN5bJu8Hc3 .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-uN5bJu8Hc3 .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uN5bJu8Hc3 .dropdown-menu,
.cid-uN5bJu8Hc3 .navbar.opened {
  background: #d4e7eb !important;
}
.cid-uN5bJu8Hc3 .nav-item:focus,
.cid-uN5bJu8Hc3 .nav-link:focus {
  outline: none;
}
.cid-uN5bJu8Hc3 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uN5bJu8Hc3 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uN5bJu8Hc3 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uN5bJu8Hc3 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uN5bJu8Hc3 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uN5bJu8Hc3 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uN5bJu8Hc3 .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #d4e7eb;
}
.cid-uN5bJu8Hc3 .navbar.opened {
  transition: all 0.3s;
}
.cid-uN5bJu8Hc3 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uN5bJu8Hc3 .navbar .navbar-logo img {
  width: auto;
}
.cid-uN5bJu8Hc3 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uN5bJu8Hc3 .navbar.collapsed {
  justify-content: center;
}
.cid-uN5bJu8Hc3 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uN5bJu8Hc3 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uN5bJu8Hc3 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-uN5bJu8Hc3 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uN5bJu8Hc3 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uN5bJu8Hc3 .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-uN5bJu8Hc3 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uN5bJu8Hc3 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uN5bJu8Hc3 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uN5bJu8Hc3 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uN5bJu8Hc3 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uN5bJu8Hc3 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uN5bJu8Hc3 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uN5bJu8Hc3 .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-uN5bJu8Hc3 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uN5bJu8Hc3 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uN5bJu8Hc3 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uN5bJu8Hc3 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uN5bJu8Hc3 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uN5bJu8Hc3 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uN5bJu8Hc3 .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uN5bJu8Hc3 .navbar.navbar-short {
  min-height: 60px;
}
.cid-uN5bJu8Hc3 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uN5bJu8Hc3 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uN5bJu8Hc3 .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uN5bJu8Hc3 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uN5bJu8Hc3 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uN5bJu8Hc3 .dropdown-item.active,
.cid-uN5bJu8Hc3 .dropdown-item:active {
  background-color: transparent;
}
.cid-uN5bJu8Hc3 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uN5bJu8Hc3 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uN5bJu8Hc3 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uN5bJu8Hc3 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #d4e7eb;
}
.cid-uN5bJu8Hc3 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uN5bJu8Hc3 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uN5bJu8Hc3 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uN5bJu8Hc3 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uN5bJu8Hc3 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uN5bJu8Hc3 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uN5bJu8Hc3 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uN5bJu8Hc3 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uN5bJu8Hc3 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uN5bJu8Hc3 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uN5bJu8Hc3 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uN5bJu8Hc3 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uN5bJu8Hc3 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uN5bJu8Hc3 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uN5bJu8Hc3 .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uN5bJu8Hc3 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uN5bJu8Hc3 .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uN5bJu8Hc3 .navbar {
    height: 70px;
  }
  .cid-uN5bJu8Hc3 .navbar.opened {
    height: auto;
  }
  .cid-uN5bJu8Hc3 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uN5bJuxa7e {
  padding-top: 60px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
@media (max-width: 992px) {
  .cid-uN5bJuxa7e {
    padding-top: 40px;
    padding-bottom: 0px;
  }
}
.cid-uN5bJuxa7e .mbr-section-text {
  margin-top: 1.5rem;
  animation-delay: .2s;
}
.cid-uN5bJuxa7e .mbr-section-btn {
  animation-delay: .4s;
}
.cid-uN5bJuxa7e .card-wrap {
  background-color: #ffffff;
  padding: 3rem 2.5rem;
  margin-right: 2.5rem;
  margin-top: 1rem;
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .cid-uN5bJuxa7e .card-wrap {
    width: calc(100% + 15rem);
    margin-left: -17.5rem;
    margin-top: 4rem;
    margin-bottom: 0;
  }
}
@media (max-width: 767px) {
  .cid-uN5bJuxa7e .card-wrap {
    margin: auto;
    padding: 1rem;
  }
}
.cid-uN5bJuxa7e .back {
  position: absolute;
  top: 0;
  right: 0;
  width: 80%;
  height: 90%;
  background-color: #d4e7eb;
}
@media (max-width: 991px) {
  .cid-uN5bJuxa7e .back {
    width: 100%;
    height: 100%;
  }
}
.cid-uN5bJuxa7e section {
  position: relative;
}
.cid-uN5bJuxa7e .box {
  padding-top: 1rem;
  margin-right: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (min-width: 992px) {
  .cid-uN5bJuxa7e .box {
    padding-top: 8rem;
  }
}
.cid-uN5bJuxa7e .box img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  object-position: 50% 50%;
}
@media (max-width: 767px) {
  .cid-uN5bJuxa7e {
    padding-top: 28px;
    padding-bottom: 0px;
  }
  .cid-uN5bJuxa7e .row {
    padding: 1rem!important;
  }
}
.cid-uN5bJuxa7e H1 {
  text-align: left;
}
.cid-uN5bJuxa7e .mbr-section-subtitle,
.cid-uN5bJuxa7e .mbr-section-btn {
  text-align: left;
}
.cid-uN5bJuxa7e .mbr-section-text,
.cid-uN5bJuxa7e .mbr-section-btn {
  text-align: left;
}
.cid-uN5bJuUSo2 {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-uN5bJuUSo2 H1 {
  color: #000000;
}
.cid-uN5bJuUSo2 .mbr-text,
.cid-uN5bJuUSo2 .mbr-section-btn {
  color: #000000;
}
.cid-uN5bJuUSo2 .mbr-subtitle {
  color: #000000;
}
.cid-uN5bJuUSo2 .mbr-text {
  margin-top: 1.5rem;
}
.cid-uN5bJuUSo2 .mbr-section-btn {
  margin-top: 2rem;
}
.cid-uN5bJuUSo2 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uN5bJuUSo2 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uN5bJvdjc6 .footer-head {
  width: 100%;
  position: relative;
  z-index: 5;
  background-color: #000000;
  border-bottom-left-radius: 40px;
  border-bottom-right-radius: 40px;
  overflow: hidden;
}
.cid-uN5bJvdjc6 .img-bg {
  content: '';
  position: absolute;
  top: 0;
  right: 57%;
  bottom: 0;
  left: 0;
  background-color: #ffffff;
  border-top-right-radius: 190px;
  border-bottom-left-radius: 40px;
}
@media (max-width: 991px) {
  .cid-uN5bJvdjc6 .img-bg {
    display: none;
  }
}
.cid-uN5bJvdjc6 .container {
  display: flex;
  justify-content: center;
  max-width: 1160px;
}
@media (max-width: 991px) {
  .cid-uN5bJvdjc6 .container {
    padding: 0 !important;
  }
}
.cid-uN5bJvdjc6 .row {
  width: 100%;
  align-items: center;
}
.cid-uN5bJvdjc6 .content-container {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  padding-left: 0 !important;
  padding-right: 0 !important;
  padding-top: 5rem;
  padding-bottom: 5rem;
}
@media (max-width: 991px) {
  .cid-uN5bJvdjc6 .content-container {
    padding-top: 0;
    background-color: #000000;
  }
}
@media (max-width: 991px) {
  .cid-uN5bJvdjc6 .col-brand {
    padding: 0 15px 65px 15px;
    padding-top: 5rem;
    border-bottom-left-radius: 40px;
    background-color: #ffffff;
  }
}
.cid-uN5bJvdjc6 .col-links {
  display: flex;
  flex-wrap: wrap;
  padding: 10px;
}
@media (max-width: 991px) {
  .cid-uN5bJvdjc6 .col-links {
    padding: 70px 15px 0 15px;
  }
}
.cid-uN5bJvdjc6 .navbar-brand {
  display: flex;
  flex-basis: auto;
  word-break: break-word;
  min-height: 40px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  margin-bottom: 20px;
  padding: 0;
  transition: all 0.3s;
  z-index: 1;
  font-weight: 700;
}
.cid-uN5bJvdjc6 .navbar-brand .navbar-logo {
  margin-right: 0.5rem;
}
.cid-uN5bJvdjc6 .navbar-brand .navbar-logo img {
  width: auto;
}
.cid-uN5bJvdjc6 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uN5bJvdjc6 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uN5bJvdjc6 .brand-text {
  margin-top: 75px;
  margin-bottom: 0;
  color: #ffffff;
  opacity: 0.85;
  width: 100%;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-uN5bJvdjc6 .brand-text {
    margin-top: 45px;
  }
}
.cid-uN5bJvdjc6 .mbr-section-subtitle {
  color: #ffffff;
  opacity: 0.85;
  margin-bottom: 10px;
}
.cid-uN5bJvdjc6 .social-row {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 60px;
}
.cid-uN5bJvdjc6 .mbr-iconfont {
  font-size: 16px;
  color: #ffffff;
}
.cid-uN5bJvdjc6 .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  margin-bottom: 15px;
  padding: 0;
  min-height: 28px;
  min-width: 28px;
}
.cid-uN5bJvdjc6 .soc-item a {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uN5bJvdjc6 .soc-item .mbr-iconfont {
  font-size: 28px;
  color: #ffffff !important;
}
@media (max-width: 991px) {
  .cid-uN5bJvdjc6 .col-link {
    width: auto !important;
    max-width: 33.33333333%;
  }
}
@media (max-width: 767px) {
  .cid-uN5bJvdjc6 .col-link {
    max-width: 100%;
    width: 100% !important;
  }
}
@media (max-width: 768px) {
  .cid-uN5bJvdjc6 .col-link1 {
    margin-bottom: 30px;
  }
}
.cid-uN5bJvdjc6 .col-link2 {
  padding-left: 30px;
}
@media (max-width: 768px) {
  .cid-uN5bJvdjc6 .col-link2 {
    padding-left: 0;
    margin-bottom: 30px;
  }
}
@media (min-width: 1200px) {
  .cid-uN5bJvdjc6 .col-link3 {
    padding-left: 70px;
  }
}
@media (max-width: 991px) {
  .cid-uN5bJvdjc6 .col-link3 {
    padding-left: 70px;
  }
}
@media (max-width: 768px) {
  .cid-uN5bJvdjc6 .col-link3 {
    padding-left: 0;
  }
}
.cid-uN5bJvdjc6 .list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
  color: #ffb18a;
}
.cid-uN5bJvdjc6 .list li {
  display: flex;
  align-items: center;
  line-height: 1.44;
}
.cid-uN5bJvdjc6 .list a {
  display: flex;
  align-items: center;
  line-height: 1.44;
}
.cid-uN5bJvdjc6 .footer-copyright {
  position: relative;
  z-index: 4;
  width: 100%;
  margin-top: -40px;
  background-color: #000000;
}
.cid-uN5bJvdjc6 .col-copyright {
  padding: 85px 0 60px 0 !important;
}
@media (max-width: 991px) {
  .cid-uN5bJvdjc6 .col-copyright {
    padding: 85px 10px 60px 10px !important;
  }
}
.cid-uN5bJvdjc6 .copyright {
  color: #ffffff;
  text-align: center;
}
@media (max-width: 991px) {
  .cid-uN5bJvdjc6 .copyright {
    text-align: center !important;
  }
}
