body {
  font-family: Nunito;
}
.display-1 {
  font-family: 'Nunito', sans-serif;
  font-size: 3.125rem;
  line-height: 1.1;
}
.display-1 > .mbr-iconfont {
  font-size: 5rem;
}
.display-2 {
  font-family: 'Nunito', sans-serif;
  font-size: 2rem;
  line-height: 1.1;
}
.display-2 > .mbr-iconfont {
  font-size: 3.2rem;
}
.display-4 {
  font-family: 'Nunito', sans-serif;
  font-size: 1rem;
  line-height: 1.5;
}
.display-4 > .mbr-iconfont {
  font-size: 1.6rem;
}
.display-5 {
  font-family: 'Nunito', sans-serif;
  font-size: 1.375rem;
  line-height: 1.1;
}
.display-5 > .mbr-iconfont {
  font-size: 2.2rem;
}
.display-7 {
  font-family: 'Nunito', sans-serif;
  font-size: 1.1rem;
  line-height: 1.4;
}
.display-7 > .mbr-iconfont {
  font-size: 1.76rem;
}
/* ---- Fluid typography for mobile devices ---- */
/* 1.4 - font scale ratio ( bootstrap == 1.42857 ) */
/* 100vw - current viewport width */
/* (48 - 20)  48 == 48rem == 768px, 20 == 20rem == 320px(minimal supported viewport) */
/* 0.65 - min scale variable, may vary */
@media (max-width: 992px) {
  .display-1 {
    font-size: 2.5rem;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 2.1875rem;
    font-size: calc( 1.74375rem + (3.125 - 1.74375) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (1.74375rem + (3.125 - 1.74375) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 1.6rem;
    font-size: calc( 1.35rem + (2 - 1.35) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.3 * (1.35rem + (2 - 1.35) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 0.8rem;
    font-size: calc( 1rem + (1 - 1) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1rem + (1 - 1) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 1.1rem;
    font-size: calc( 1.13125rem + (1.375 - 1.13125) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.13125rem + (1.375 - 1.13125) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-7 {
    font-size: 0.88rem;
    font-size: calc( 1.0350000000000001rem + (1.1 - 1.0350000000000001) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.0350000000000001rem + (1.1 - 1.0350000000000001) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* Buttons */
.btn {
  padding: 0.5rem 1rem;
  border-radius: 4px;
}
.btn-sm {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-md {
  padding: 1rem 2.6rem;
  border-radius: 8px;
}
.btn-lg {
  padding: 20px 30px;
  border-radius: 8px;
}
.bg-primary {
  background-color: #101840 !important;
}
.bg-success {
  background-color: #ffe700 !important;
}
.bg-info {
  background-color: #00ebd9 !important;
}
.bg-warning {
  background-color: #8a61ff !important;
}
.bg-danger {
  background-color: #d75959 !important;
}
.btn-primary {
  color: #ffffff !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #101840 !important;
  border-color: #101840 !important;
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #010103 !important;
  border-color: #010103 !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #101840 !important;
  border-color: #101840 !important;
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #010103 !important;
  border-color: #010103 !important;
}
.btn-info,
.btn-info:active {
  background-color: #00ebd9 !important;
  border-color: #00ebd9 !important;
}
.btn-info.disabled,
.btn-info:disabled {
  color: #000000 !important;
  background-color: #009f92 !important;
  border-color: #009f92 !important;
}
.btn-success,
.btn-success:active {
  background-color: #ffe700 !important;
  border-color: #ffe700 !important;
}
.btn-success.disabled,
.btn-success:disabled {
  color: #000000 !important;
  background-color: #b3a200 !important;
  border-color: #b3a200 !important;
}
.btn-warning,
.btn-warning:active {
  background-color: #8a61ff !important;
  border-color: #8a61ff !important;
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #ffffff !important;
  background-color: #5115ff !important;
  border-color: #5115ff !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #d75959 !important;
  border-color: #d75959 !important;
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #b72c2c !important;
  border-color: #b72c2c !important;
}
.btn-white {
  color: #101840 !important;
}
.btn-white,
.btn-white:active {
  background-color: #ffffff !important;
  border-color: #ffffff !important;
}
.btn-white.disabled,
.btn-white:disabled {
  color: #808080 !important;
  background-color: #d9d9d9 !important;
  border-color: #d9d9d9 !important;
}
.btn-black,
.btn-black:active {
  background-color: #333333 !important;
  border-color: #333333 !important;
}
.btn-black.disabled,
.btn-black:disabled {
  color: #ffffff !important;
  background-color: #0d0d0d !important;
  border-color: #0d0d0d !important;
}
.btn-primary-outline,
.btn-primary-outline:active {
  background: none;
  border-color: #101840;
  color: #101840 !important;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #ffffff;
  background-color: #101840;
  border-color: #101840;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #101840 !important;
  border-color: #101840 !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background: none;
  border-color: #101840;
  color: #101840 !important;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #ffffff;
  background-color: #101840;
  border-color: #101840;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #101840 !important;
  border-color: #101840 !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background: none;
  border-color: #00ebd9;
  color: #101840 !important;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #000000;
  background-color: #00ebd9;
  border-color: #00ebd9;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #000000 !important;
  background-color: #00ebd9 !important;
  border-color: #00ebd9 !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background: none;
  border-color: #ffe700;
  color: #101840 !important;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #000000;
  background-color: #ffe700;
  border-color: #ffe700;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #000000 !important;
  background-color: #ffe700 !important;
  border-color: #ffe700 !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background: none;
  border-color: #8a61ff;
  color: #101840 !important;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #ffffff;
  background-color: #8a61ff;
  border-color: #8a61ff;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #ffffff !important;
  background-color: #8a61ff !important;
  border-color: #8a61ff !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background: none;
  border-color: #d75959;
  color: #101840 !important;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #ffffff;
  background-color: #d75959;
  border-color: #d75959;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #d75959 !important;
  border-color: #d75959 !important;
}
.btn-black-outline,
.btn-black-outline:active {
  background: none;
  border-color: #333333;
  color: #101840 !important;
}
.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.focus,
.btn-black-outline.active {
  color: #ffffff;
  background-color: #333333;
  border-color: #333333;
}
.btn-black-outline.disabled,
.btn-black-outline:disabled {
  color: #ffffff !important;
  background-color: #333333 !important;
  border-color: #333333 !important;
}
.btn-white-outline,
.btn-white-outline:active,
.btn-white-outline.active {
  background: none;
  border-color: #ffffff;
  color: #ffffff;
}
.btn-white-outline:hover,
.btn-white-outline:focus,
.btn-white-outline.focus {
  color: #333333;
  background-color: #ffffff;
  border-color: #ffffff;
}
.text-primary {
  color: #101840 !important;
}
.text-secondary {
  color: #101840 !important;
}
.text-success {
  color: #ffe700 !important;
}
.text-info {
  color: #00ebd9 !important;
}
.text-warning {
  color: #8a61ff !important;
}
.text-danger {
  color: #d75959 !important;
}
.text-white {
  color: #ffffff !important;
}
.text-black {
  color: #000000 !important;
}
a.text-primary:hover,
a.text-primary:focus {
  color: #243792 !important;
}
a.text-secondary:hover,
a.text-secondary:focus {
  color: #243792 !important;
}
a.text-success:hover,
a.text-success:focus {
  color: #fff166 !important;
}
a.text-info:hover,
a.text-info:focus {
  color: #52fff2 !important;
}
a.text-warning:hover,
a.text-warning:focus {
  color: #d6c7ff !important;
}
a.text-danger:hover,
a.text-danger:focus {
  color: #ebabab !important;
}
a.text-white:hover,
a.text-white:focus {
  color: #ffffff !important;
}
a.text-black:hover,
a.text-black:focus {
  color: #4d4d4d !important;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #00ebd9;
}
.alert-warning {
  background-color: #8a61ff;
}
.alert-danger {
  background-color: #d75959;
}
.mbr-gallery-filter li.active .btn {
  background-color: #101840;
  border-color: #101840;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
a,
a:hover {
  color: #101840;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #5f73d7;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #fffacc;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #b8fffa;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #fffdfd;
}
/* Scroll to top button*/
.form-control {
  font-family: 'Nunito', sans-serif;
  font-size: 1rem;
  line-height: 1.5;
}
.form-control > .mbr-iconfont {
  font-size: 1.6rem;
}
blockquote {
  border-color: #101840;
}
/* Forms */
.mbr-form .btn {
  margin: 0.4rem 0;
}
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #101840;
  color: #ffffff;
}
.jq-selectbox .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:after,
.jq-number__spin.plus:after {
  transition: 0.4s;
  border-top-color: gray !important;
  border-bottom-color: gray !important;
}
.jq-selectbox:hover .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:hover:after,
.jq-number__spin.plus:hover:after {
  border-top-color: #101840;
  border-bottom-color: #101840;
}
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_default,
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_current,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div.xdsoft_current {
  color: #ffffff !important;
  background-color: #101840 !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: #101840 !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='%23101840' %3e%3cg fill='none' fill-rule='evenodd'%3e%3cg transform='translate(16 16)' stroke-width='2'%3e%3ccircle stroke-opacity='.5' cx='16' cy='16' r='16'/%3e%3cpath d='M32 16c0-9.94-8.06-16-16-16'%3e%3canimateTransform attributeName='transform' type='rotate' from='0 16 16' to='360 16 16' dur='1s' repeatCount='indefinite'/%3e%3c/path%3e%3c/g%3e%3c/g%3e%3c/svg%3e");
}
section.lazy-placeholder:after {
  opacity: 0.5;
}
body {
  overflow-x: hidden;
}
a {
  transition: color 0.6s;
}
.cid-uFNwMh06PY {
  padding-top: 45px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-uFNwMh06PY .mbr-iconfont {
  display: block;
  font-size: 6rem;
  color: #848abd;
  margin-bottom: 2rem;
}
.cid-uFNwMh06PY .btn.display-4 {
  font-size: 14px;
  line-height: 1;
}
.cid-uFNwMh06PY .mbr-section-title,
.cid-uFNwMh06PY .icon-wrap,
.cid-uFNwMh06PY .mbr-section-btn {
  color: #101840;
}
.cid-uFNwgkM5iQ {
  padding-top: 45px;
  padding-bottom: 45px;
  background: #ffffff;
}
.cid-uFNwgkM5iQ .badge {
  display: inline-block;
  border-radius: 10rem;
  padding: 8px 14px 6px 14px;
  color: #101840;
  background-color: rgba(60, 113, 211, 0.15);
  margin-bottom: 26px;
}
.cid-uFNwgkM5iQ .badge.display-4 {
  font-size: 11px;
  line-height: 1.81;
  letter-spacing: 0.5px;
}
.cid-uFNwgkM5iQ .mbr-section-subtitle {
  color: #999999;
}
.cid-uFNwgkM5iQ img {
  width: 120px;
  margin: auto;
}
.cid-uFNwgkM5iQ .card {
  transition: all 200ms ease-in-out;
  height: fit-content;
  padding: 1rem 0;
  opacity: 0.8;
  margin-bottom: 1rem;
}
.cid-uFNwgkM5iQ .card:hover {
  opacity: 1;
}
@media (min-width: 992px) {
  .cid-uFNwgkM5iQ .card {
    max-width: 14.28%;
  }
}
.cid-tlco6sIa1t {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tlco6sIa1t nav.navbar {
  position: fixed;
}
.cid-tlco6sIa1t .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-tlco6sIa1t .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tlco6sIa1t .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tlco6sIa1t .dropdown-item:hover,
.cid-tlco6sIa1t .dropdown-item:focus {
  background: #101840 !important;
  color: white !important;
}
.cid-tlco6sIa1t .dropdown-item:hover span {
  color: white;
}
.cid-tlco6sIa1t .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tlco6sIa1t .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tlco6sIa1t .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tlco6sIa1t .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tlco6sIa1t .nav-link {
  position: relative;
}
.cid-tlco6sIa1t .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-tlco6sIa1t .container {
    flex-wrap: nowrap;
  }
}
.cid-tlco6sIa1t .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tlco6sIa1t .dropdown-menu,
.cid-tlco6sIa1t .navbar.opened {
  background: #101840 !important;
}
.cid-tlco6sIa1t .nav-item:focus,
.cid-tlco6sIa1t .nav-link:focus {
  outline: none;
}
.cid-tlco6sIa1t .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tlco6sIa1t .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tlco6sIa1t .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tlco6sIa1t .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tlco6sIa1t .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tlco6sIa1t .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tlco6sIa1t .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: #101840;
}
.cid-tlco6sIa1t .navbar.opened {
  transition: all 0.3s;
}
.cid-tlco6sIa1t .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tlco6sIa1t .navbar .navbar-logo img {
  width: auto;
}
.cid-tlco6sIa1t .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tlco6sIa1t .navbar.collapsed {
  justify-content: center;
}
.cid-tlco6sIa1t .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tlco6sIa1t .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-tlco6sIa1t .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tlco6sIa1t .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tlco6sIa1t .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-tlco6sIa1t .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tlco6sIa1t .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tlco6sIa1t .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tlco6sIa1t .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tlco6sIa1t .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tlco6sIa1t .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tlco6sIa1t .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tlco6sIa1t .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-tlco6sIa1t .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tlco6sIa1t .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tlco6sIa1t .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tlco6sIa1t .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tlco6sIa1t .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tlco6sIa1t .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-tlco6sIa1t .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-tlco6sIa1t .navbar.navbar-short {
  min-height: 60px;
}
.cid-tlco6sIa1t .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tlco6sIa1t .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tlco6sIa1t .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-tlco6sIa1t .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tlco6sIa1t .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tlco6sIa1t .dropdown-item.active,
.cid-tlco6sIa1t .dropdown-item:active {
  background-color: transparent;
}
.cid-tlco6sIa1t .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tlco6sIa1t .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tlco6sIa1t .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tlco6sIa1t .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #101840;
}
.cid-tlco6sIa1t .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tlco6sIa1t .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tlco6sIa1t ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tlco6sIa1t .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tlco6sIa1t button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tlco6sIa1t button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tlco6sIa1t button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tlco6sIa1t button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tlco6sIa1t button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tlco6sIa1t button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tlco6sIa1t nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tlco6sIa1t nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tlco6sIa1t nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tlco6sIa1t nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tlco6sIa1t .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tlco6sIa1t a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tlco6sIa1t .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-tlco6sIa1t .navbar {
    height: 70px;
  }
  .cid-tlco6sIa1t .navbar.opened {
    height: auto;
  }
  .cid-tlco6sIa1t .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uFNwzUXTZt {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #101840;
}
.cid-uFNwzUXTZt .badge {
  display: inline-block;
  border-radius: 10rem;
  padding: 8px 14px 6px 14px;
  color: #101840;
  background-color: rgba(132, 138, 189, 0.15);
}
.cid-uFNwzUXTZt .badge.display-4 {
  font-size: 11px;
  line-height: 1.81;
  letter-spacing: 0.5px;
}
.cid-uFNwzUXTZt .mbr-section-subtitle {
  color: #c6d400;
  font-weight: 600;
  margin-bottom: 21px;
}
.cid-uFNwzUXTZt .mbr-iconfont {
  font-size: 48px;
  padding-right: 1rem;
}
.cid-uFNwzUXTZt a:not([href]):not([tabindex]) {
  color: contrast(currentColor);
  border-radius: 25px;
  margin-left: 10px;
}
@media (min-width: 501px) {
  .cid-uFNwzUXTZt .col + .mbr-section-btn .btn,
  .cid-uFNwzUXTZt .col-auto + .mbr-section-btn .btn {
    height: 100%;
    padding-top: 0;
    padding-bottom: 0;
    margin: 0 !important;
  }
  .cid-uFNwzUXTZt .dragArea > *:nth-last-child(2).col,
  .cid-uFNwzUXTZt .dragArea > *:nth-last-child(2).col-auto,
  .cid-uFNwzUXTZt .col + .mbr-section-btn,
  .cid-uFNwzUXTZt .col-auto + .mbr-section-btn {
    margin: 0;
  }
}
.cid-uFNwzUXTZt .input-form {
  margin-top: 1.5rem;
  margin-bottom: 1rem;
}
.cid-uFNwzUXTZt .mbr-form {
  margin-top: 0.5rem;
  clear: both;
  text-align: center;
}
.cid-uFNwzUXTZt .form-control {
  font-size: 16px;
  height: 50px;
  border: 0px solid;
  border-radius: 25px;
  margin-right: 0.6rem;
  padding: 0 20px;
  background-color: #ffffff;
  box-shadow: 0px 5px 20px rgba(0, 0, 0, 0.04);
}
.cid-uFNwzUXTZt .form-text {
  color: #ffffff;
  text-align: center;
}
.cid-uFNwzUXTZt .form-group {
  max-width: 400px;
}
.cid-uFNwzUXTZt .mbr-section-btn {
  padding: 5px;
}
.cid-uFNwzUXTZt .mbr-section-btn .btn {
  border-radius: 25px;
  font-weight: 700;
  padding: 18px 26px 16px !important;
  height: 50px;
}
.cid-uFNwzUXTZt .mbr-section-btn .btn.display-4 {
  font-size: 13px;
  line-height: 1;
}
.cid-uFNwzUXTZt H4 {
  color: #f9fafb;
}
.cid-tlobZkzjOp {
  padding-top: 165px;
  padding-bottom: 60px;
  background-color: #101840;
}
.cid-tlobZkzjOp ul {
  padding: 0;
  margin: 0;
}
.cid-tlobZkzjOp ul li {
  list-style: none;
}
.cid-tlobZkzjOp ul li h4 {
  margin: 0;
}
.cid-tlobZkzjOp ul li h4.display-4 {
  line-height: 1.75;
}
.cid-tlobZkzjOp .item {
  color: #ffffff;
  text-align: center;
}
.cid-tlobZkzjOp .col-title {
  color: #ffffff;
  text-align: center;
}
.cid-tlobZkzjOp .col-title.display-2 {
  font-size: 2.1rem;
}
.cid-tlobZkzjOp .col-title1 {
  margin-bottom: 40px;
}
.cid-tlobZkzjOp .form-group,
.cid-tlobZkzjOp .mbr-section-btn {
  margin: 0;
  padding: 0;
  display: -webkit-flex;
}
.cid-tlobZkzjOp .form-control {
  display: inline-block;
  border: none;
  border-radius: 25px;
  width: 100%;
  padding: 0 25px;
  background: rgba(255, 255, 255, 0.07);
  color: #ffffff;
  margin-right: 10px;
  height: 50px;
  line-height: 50px;
}
.cid-tlobZkzjOp .form-control::-webkit-input-placeholder {
  color: #ffffff;
}
.cid-tlobZkzjOp .form-control::-moz-placeholder {
  color: #ffffff;
}
.cid-tlobZkzjOp .form-control:-moz-placeholder {
  color: #ffffff;
}
.cid-tlobZkzjOp .form-control:-ms-input-placeholder {
  color: #ffffff;
}
.cid-tlobZkzjOp .col + .mbr-section-btn .btn,
.cid-tlobZkzjOp .col-auto + .mbr-section-btn .btn {
  margin: 0 !important;
  height: 100%;
  border-radius: 30px !important;
  padding: 14.5px 26px 14.5px !important;
}
.cid-tlobZkzjOp .col + .mbr-section-btn .btn.display-4,
.cid-tlobZkzjOp .col-auto + .mbr-section-btn .btn.display-4 {
  font-size: 13px;
}
.cid-tlobZkzjOp .col + .mbr-section-btn .btn:hover,
.cid-tlobZkzjOp .col-auto + .mbr-section-btn .btn:hover {
  box-shadow: 0 0 0 5px rgba(132, 138, 189, 0.2);
}
.cid-tlobZkzjOp .dragArea > *:nth-last-child(2).col,
.cid-tlobZkzjOp .dragArea > *:nth-last-child(2).col-auto,
.cid-tlobZkzjOp .col + .mbr-section-btn,
.cid-tlobZkzjOp .col-auto + .mbr-section-btn {
  padding-left: 0;
  padding-right: 0;
  margin: 0;
}
.cid-tlobZkzjOp .form1 {
  margin-top: 30px;
}
.cid-tlobZkzjOp .fill-light-wrapper {
  fill: #ffffff;
  z-index: 2 !important;
  top: 0;
}
@media (max-width: 768px) {
  .cid-tlobZkzjOp .md-pb {
    margin-bottom: 30px;
  }
}
.cid-tlo3NqYUmd {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-tlo3NqYUmd .badge {
  display: inline-block;
  border-radius: 10rem;
  padding: 8px 14px 6px 14px;
  color: #101840;
  background-color: rgba(132, 138, 189, 0.15);
  margin-bottom: 16px;
}
.cid-tlo3NqYUmd .badge.display-4 {
  font-size: 11px;
  line-height: 1.81;
  letter-spacing: 0.5px;
}
.cid-tlo3NqYUmd .main-title {
  color: #404040;
  margin-bottom: 26px;
}
.cid-tlo3NqYUmd .main-title.display-2 {
  line-height: 1.375;
}
.cid-tlo3NqYUmd .mbr-section-subtitle {
  color: #5f86be;
  font-weight: 600;
  margin-bottom: 21px;
}
.cid-tlo3NqYUmd .mbr-text {
  color: #606060;
}
.cid-tlo3NqYUmd .mbr-text.display-4 {
  line-height: 1.75;
}
.cid-tlo3NqYUmd .mbr-section-btn {
  margin-top: 24px;
}
.cid-tlo3NqYUmd .mbr-section-btn .btn {
  margin-left: 14.1px;
  padding: 18px 26px;
}
.cid-tlo3NqYUmd .mbr-section-btn .btn.display-4 {
  font-size: 13px;
  line-height: 1;
}
.cid-tlo3NqYUmd .mbr-section-btn .btn:hover {
  box-shadow: 0 0 0 5px rgba(60, 113, 211, 0.2) !important;
  -webkit-box-shadow: 0 0 0 5px rgba(60, 113, 211, 0.2) !important;
}
.cid-tlo3NqYUmd .mbr-section-subtitle,
.cid-tlo3NqYUmd .mbr-section-btn {
  color: #4d30b0;
}
.cid-tlo3NqYUmd .main-title,
.cid-tlo3NqYUmd .mbr-section-btn {
  color: #4d30b0;
}
.cid-tovht4yZjk {
  padding-top: 165px;
  padding-bottom: 60px;
  background-color: #101840;
}
.cid-tovht4yZjk ul {
  padding: 0;
  margin: 0;
}
.cid-tovht4yZjk ul li {
  list-style: none;
}
.cid-tovht4yZjk ul li h4 {
  margin: 0;
}
.cid-tovht4yZjk ul li h4.display-4 {
  line-height: 1.75;
}
.cid-tovht4yZjk .item {
  color: #ffffff;
  text-align: center;
}
.cid-tovht4yZjk .col-title {
  color: #ffffff;
  text-align: center;
}
.cid-tovht4yZjk .col-title.display-2 {
  font-size: 2.1rem;
}
.cid-tovht4yZjk .col-title1 {
  margin-bottom: 40px;
}
.cid-tovht4yZjk .form-group,
.cid-tovht4yZjk .mbr-section-btn {
  margin: 0;
  padding: 0;
  display: -webkit-flex;
}
.cid-tovht4yZjk .form-control {
  display: inline-block;
  border: none;
  border-radius: 25px;
  width: 100%;
  padding: 0 25px;
  background: rgba(255, 255, 255, 0.07);
  color: #ffffff;
  margin-right: 10px;
  height: 50px;
  line-height: 50px;
}
.cid-tovht4yZjk .form-control::-webkit-input-placeholder {
  color: #ffffff;
}
.cid-tovht4yZjk .form-control::-moz-placeholder {
  color: #ffffff;
}
.cid-tovht4yZjk .form-control:-moz-placeholder {
  color: #ffffff;
}
.cid-tovht4yZjk .form-control:-ms-input-placeholder {
  color: #ffffff;
}
.cid-tovht4yZjk .col + .mbr-section-btn .btn,
.cid-tovht4yZjk .col-auto + .mbr-section-btn .btn {
  margin: 0 !important;
  height: 100%;
  border-radius: 30px !important;
  padding: 14.5px 26px 14.5px !important;
}
.cid-tovht4yZjk .col + .mbr-section-btn .btn.display-4,
.cid-tovht4yZjk .col-auto + .mbr-section-btn .btn.display-4 {
  font-size: 13px;
}
.cid-tovht4yZjk .col + .mbr-section-btn .btn:hover,
.cid-tovht4yZjk .col-auto + .mbr-section-btn .btn:hover {
  box-shadow: 0 0 0 5px rgba(132, 138, 189, 0.2);
}
.cid-tovht4yZjk .dragArea > *:nth-last-child(2).col,
.cid-tovht4yZjk .dragArea > *:nth-last-child(2).col-auto,
.cid-tovht4yZjk .col + .mbr-section-btn,
.cid-tovht4yZjk .col-auto + .mbr-section-btn {
  padding-left: 0;
  padding-right: 0;
  margin: 0;
}
.cid-tovht4yZjk .form1 {
  margin-top: 30px;
}
.cid-tovht4yZjk .fill-light-wrapper {
  fill: #ffffff;
  z-index: 2 !important;
  top: 0;
}
@media (max-width: 768px) {
  .cid-tovht4yZjk .md-pb {
    margin-bottom: 30px;
  }
}
.cid-tlo2PbbnBF {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tlo2PbbnBF nav.navbar {
  position: fixed;
}
.cid-tlo2PbbnBF .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-tlo2PbbnBF .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tlo2PbbnBF .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tlo2PbbnBF .dropdown-item:hover,
.cid-tlo2PbbnBF .dropdown-item:focus {
  background: #101840 !important;
  color: white !important;
}
.cid-tlo2PbbnBF .dropdown-item:hover span {
  color: white;
}
.cid-tlo2PbbnBF .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tlo2PbbnBF .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tlo2PbbnBF .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tlo2PbbnBF .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tlo2PbbnBF .nav-link {
  position: relative;
}
.cid-tlo2PbbnBF .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-tlo2PbbnBF .container {
    flex-wrap: nowrap;
  }
}
.cid-tlo2PbbnBF .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tlo2PbbnBF .dropdown-menu,
.cid-tlo2PbbnBF .navbar.opened {
  background: #101840 !important;
}
.cid-tlo2PbbnBF .nav-item:focus,
.cid-tlo2PbbnBF .nav-link:focus {
  outline: none;
}
.cid-tlo2PbbnBF .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tlo2PbbnBF .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tlo2PbbnBF .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tlo2PbbnBF .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tlo2PbbnBF .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tlo2PbbnBF .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tlo2PbbnBF .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: #101840;
}
.cid-tlo2PbbnBF .navbar.opened {
  transition: all 0.3s;
}
.cid-tlo2PbbnBF .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tlo2PbbnBF .navbar .navbar-logo img {
  width: auto;
}
.cid-tlo2PbbnBF .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tlo2PbbnBF .navbar.collapsed {
  justify-content: center;
}
.cid-tlo2PbbnBF .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tlo2PbbnBF .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-tlo2PbbnBF .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tlo2PbbnBF .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tlo2PbbnBF .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-tlo2PbbnBF .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tlo2PbbnBF .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tlo2PbbnBF .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tlo2PbbnBF .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tlo2PbbnBF .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tlo2PbbnBF .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tlo2PbbnBF .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tlo2PbbnBF .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-tlo2PbbnBF .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tlo2PbbnBF .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tlo2PbbnBF .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tlo2PbbnBF .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tlo2PbbnBF .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tlo2PbbnBF .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-tlo2PbbnBF .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-tlo2PbbnBF .navbar.navbar-short {
  min-height: 60px;
}
.cid-tlo2PbbnBF .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tlo2PbbnBF .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tlo2PbbnBF .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-tlo2PbbnBF .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tlo2PbbnBF .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tlo2PbbnBF .dropdown-item.active,
.cid-tlo2PbbnBF .dropdown-item:active {
  background-color: transparent;
}
.cid-tlo2PbbnBF .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tlo2PbbnBF .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tlo2PbbnBF .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tlo2PbbnBF .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #101840;
}
.cid-tlo2PbbnBF .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tlo2PbbnBF .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tlo2PbbnBF ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tlo2PbbnBF .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tlo2PbbnBF button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tlo2PbbnBF button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tlo2PbbnBF button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tlo2PbbnBF button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tlo2PbbnBF button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tlo2PbbnBF button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tlo2PbbnBF nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tlo2PbbnBF nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tlo2PbbnBF nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tlo2PbbnBF nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tlo2PbbnBF .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tlo2PbbnBF a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tlo2PbbnBF .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-tlo2PbbnBF .navbar {
    height: 70px;
  }
  .cid-tlo2PbbnBF .navbar.opened {
    height: auto;
  }
  .cid-tlo2PbbnBF .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tlo6sebKg3 {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-tlo6sebKg3 .badge {
  display: inline-block;
  border-radius: 10rem;
  padding: 8px 14px 6px 14px;
  color: #101840;
  background-color: rgba(132, 138, 189, 0.15);
  margin-bottom: 16px;
}
.cid-tlo6sebKg3 .badge.display-4 {
  font-size: 11px;
  line-height: 1.81;
  letter-spacing: 0.5px;
}
.cid-tlo6sebKg3 .main-title {
  color: #404040;
  margin-bottom: 26px;
}
.cid-tlo6sebKg3 .main-title.display-2 {
  line-height: 1.375;
}
.cid-tlo6sebKg3 .mbr-section-subtitle {
  color: #5f86be;
  font-weight: 600;
  margin-bottom: 21px;
}
.cid-tlo6sebKg3 .mbr-text {
  color: #606060;
}
.cid-tlo6sebKg3 .mbr-text.display-4 {
  line-height: 1.75;
}
.cid-tlo6sebKg3 .mbr-section-btn {
  margin-top: 24px;
}
.cid-tlo6sebKg3 .mbr-section-btn .btn {
  margin-left: 14.1px;
  padding: 18px 26px;
}
.cid-tlo6sebKg3 .mbr-section-btn .btn.display-4 {
  font-size: 13px;
  line-height: 1;
}
.cid-tlo6sebKg3 .mbr-section-btn .btn:hover {
  box-shadow: 0 0 0 5px rgba(60, 113, 211, 0.2) !important;
  -webkit-box-shadow: 0 0 0 5px rgba(60, 113, 211, 0.2) !important;
}
.cid-tlo6sebKg3 .mbr-section-subtitle,
.cid-tlo6sebKg3 .mbr-section-btn {
  color: #4d30b0;
}
.cid-tlo6sebKg3 .main-title,
.cid-tlo6sebKg3 .mbr-section-btn {
  color: #4d30b0;
}
.cid-tovhwvXShC {
  padding-top: 165px;
  padding-bottom: 60px;
  background-color: #101840;
}
.cid-tovhwvXShC ul {
  padding: 0;
  margin: 0;
}
.cid-tovhwvXShC ul li {
  list-style: none;
}
.cid-tovhwvXShC ul li h4 {
  margin: 0;
}
.cid-tovhwvXShC ul li h4.display-4 {
  line-height: 1.75;
}
.cid-tovhwvXShC .item {
  color: #ffffff;
  text-align: center;
}
.cid-tovhwvXShC .col-title {
  color: #ffffff;
  text-align: center;
}
.cid-tovhwvXShC .col-title.display-2 {
  font-size: 2.1rem;
}
.cid-tovhwvXShC .col-title1 {
  margin-bottom: 40px;
}
.cid-tovhwvXShC .form-group,
.cid-tovhwvXShC .mbr-section-btn {
  margin: 0;
  padding: 0;
  display: -webkit-flex;
}
.cid-tovhwvXShC .form-control {
  display: inline-block;
  border: none;
  border-radius: 25px;
  width: 100%;
  padding: 0 25px;
  background: rgba(255, 255, 255, 0.07);
  color: #ffffff;
  margin-right: 10px;
  height: 50px;
  line-height: 50px;
}
.cid-tovhwvXShC .form-control::-webkit-input-placeholder {
  color: #ffffff;
}
.cid-tovhwvXShC .form-control::-moz-placeholder {
  color: #ffffff;
}
.cid-tovhwvXShC .form-control:-moz-placeholder {
  color: #ffffff;
}
.cid-tovhwvXShC .form-control:-ms-input-placeholder {
  color: #ffffff;
}
.cid-tovhwvXShC .col + .mbr-section-btn .btn,
.cid-tovhwvXShC .col-auto + .mbr-section-btn .btn {
  margin: 0 !important;
  height: 100%;
  border-radius: 30px !important;
  padding: 14.5px 26px 14.5px !important;
}
.cid-tovhwvXShC .col + .mbr-section-btn .btn.display-4,
.cid-tovhwvXShC .col-auto + .mbr-section-btn .btn.display-4 {
  font-size: 13px;
}
.cid-tovhwvXShC .col + .mbr-section-btn .btn:hover,
.cid-tovhwvXShC .col-auto + .mbr-section-btn .btn:hover {
  box-shadow: 0 0 0 5px rgba(132, 138, 189, 0.2);
}
.cid-tovhwvXShC .dragArea > *:nth-last-child(2).col,
.cid-tovhwvXShC .dragArea > *:nth-last-child(2).col-auto,
.cid-tovhwvXShC .col + .mbr-section-btn,
.cid-tovhwvXShC .col-auto + .mbr-section-btn {
  padding-left: 0;
  padding-right: 0;
  margin: 0;
}
.cid-tovhwvXShC .form1 {
  margin-top: 30px;
}
.cid-tovhwvXShC .fill-light-wrapper {
  fill: #ffffff;
  z-index: 2 !important;
  top: 0;
}
@media (max-width: 768px) {
  .cid-tovhwvXShC .md-pb {
    margin-bottom: 30px;
  }
}
.cid-tlo6sfpoFU {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tlo6sfpoFU nav.navbar {
  position: fixed;
}
.cid-tlo6sfpoFU .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-tlo6sfpoFU .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tlo6sfpoFU .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tlo6sfpoFU .dropdown-item:hover,
.cid-tlo6sfpoFU .dropdown-item:focus {
  background: #101840 !important;
  color: white !important;
}
.cid-tlo6sfpoFU .dropdown-item:hover span {
  color: white;
}
.cid-tlo6sfpoFU .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tlo6sfpoFU .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tlo6sfpoFU .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tlo6sfpoFU .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tlo6sfpoFU .nav-link {
  position: relative;
}
.cid-tlo6sfpoFU .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-tlo6sfpoFU .container {
    flex-wrap: nowrap;
  }
}
.cid-tlo6sfpoFU .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tlo6sfpoFU .dropdown-menu,
.cid-tlo6sfpoFU .navbar.opened {
  background: #101840 !important;
}
.cid-tlo6sfpoFU .nav-item:focus,
.cid-tlo6sfpoFU .nav-link:focus {
  outline: none;
}
.cid-tlo6sfpoFU .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tlo6sfpoFU .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tlo6sfpoFU .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tlo6sfpoFU .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tlo6sfpoFU .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tlo6sfpoFU .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tlo6sfpoFU .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: #101840;
}
.cid-tlo6sfpoFU .navbar.opened {
  transition: all 0.3s;
}
.cid-tlo6sfpoFU .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tlo6sfpoFU .navbar .navbar-logo img {
  width: auto;
}
.cid-tlo6sfpoFU .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tlo6sfpoFU .navbar.collapsed {
  justify-content: center;
}
.cid-tlo6sfpoFU .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tlo6sfpoFU .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-tlo6sfpoFU .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tlo6sfpoFU .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tlo6sfpoFU .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-tlo6sfpoFU .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tlo6sfpoFU .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tlo6sfpoFU .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tlo6sfpoFU .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tlo6sfpoFU .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tlo6sfpoFU .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tlo6sfpoFU .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tlo6sfpoFU .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-tlo6sfpoFU .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tlo6sfpoFU .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tlo6sfpoFU .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tlo6sfpoFU .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tlo6sfpoFU .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tlo6sfpoFU .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-tlo6sfpoFU .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-tlo6sfpoFU .navbar.navbar-short {
  min-height: 60px;
}
.cid-tlo6sfpoFU .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tlo6sfpoFU .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tlo6sfpoFU .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-tlo6sfpoFU .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tlo6sfpoFU .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tlo6sfpoFU .dropdown-item.active,
.cid-tlo6sfpoFU .dropdown-item:active {
  background-color: transparent;
}
.cid-tlo6sfpoFU .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tlo6sfpoFU .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tlo6sfpoFU .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tlo6sfpoFU .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #101840;
}
.cid-tlo6sfpoFU .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tlo6sfpoFU .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tlo6sfpoFU ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tlo6sfpoFU .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tlo6sfpoFU button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tlo6sfpoFU button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tlo6sfpoFU button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tlo6sfpoFU button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tlo6sfpoFU button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tlo6sfpoFU button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tlo6sfpoFU nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tlo6sfpoFU nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tlo6sfpoFU nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tlo6sfpoFU nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tlo6sfpoFU .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tlo6sfpoFU a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tlo6sfpoFU .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-tlo6sfpoFU .navbar {
    height: 70px;
  }
  .cid-tlo6sfpoFU .navbar.opened {
    height: auto;
  }
  .cid-tlo6sfpoFU .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tlo7TNgwyx {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-tlo7TNgwyx .badge {
  display: inline-block;
  border-radius: 10rem;
  padding: 8px 14px 6px 14px;
  color: #101840;
  background-color: rgba(132, 138, 189, 0.15);
  margin-bottom: 16px;
}
.cid-tlo7TNgwyx .badge.display-4 {
  font-size: 11px;
  line-height: 1.81;
  letter-spacing: 0.5px;
}
.cid-tlo7TNgwyx .main-title {
  color: #404040;
  margin-bottom: 26px;
}
.cid-tlo7TNgwyx .main-title.display-2 {
  line-height: 1.375;
}
.cid-tlo7TNgwyx .mbr-section-subtitle {
  color: #5f86be;
  font-weight: 600;
  margin-bottom: 21px;
}
.cid-tlo7TNgwyx .mbr-text {
  color: #606060;
}
.cid-tlo7TNgwyx .mbr-text.display-4 {
  line-height: 1.75;
}
.cid-tlo7TNgwyx .mbr-section-btn {
  margin-top: 24px;
}
.cid-tlo7TNgwyx .mbr-section-btn .btn {
  margin-left: 14.1px;
  padding: 18px 26px;
}
.cid-tlo7TNgwyx .mbr-section-btn .btn.display-4 {
  font-size: 13px;
  line-height: 1;
}
.cid-tlo7TNgwyx .mbr-section-btn .btn:hover {
  box-shadow: 0 0 0 5px rgba(60, 113, 211, 0.2) !important;
  -webkit-box-shadow: 0 0 0 5px rgba(60, 113, 211, 0.2) !important;
}
.cid-tlo7TNgwyx .mbr-section-subtitle,
.cid-tlo7TNgwyx .mbr-section-btn {
  color: #4d30b0;
}
.cid-tlo7TNgwyx .main-title,
.cid-tlo7TNgwyx .mbr-section-btn {
  color: #4d30b0;
}
.cid-tovhEtXFRw {
  padding-top: 165px;
  padding-bottom: 60px;
  background-color: #101840;
}
.cid-tovhEtXFRw ul {
  padding: 0;
  margin: 0;
}
.cid-tovhEtXFRw ul li {
  list-style: none;
}
.cid-tovhEtXFRw ul li h4 {
  margin: 0;
}
.cid-tovhEtXFRw ul li h4.display-4 {
  line-height: 1.75;
}
.cid-tovhEtXFRw .item {
  color: #ffffff;
  text-align: center;
}
.cid-tovhEtXFRw .col-title {
  color: #ffffff;
  text-align: center;
}
.cid-tovhEtXFRw .col-title.display-2 {
  font-size: 2.1rem;
}
.cid-tovhEtXFRw .col-title1 {
  margin-bottom: 40px;
}
.cid-tovhEtXFRw .form-group,
.cid-tovhEtXFRw .mbr-section-btn {
  margin: 0;
  padding: 0;
  display: -webkit-flex;
}
.cid-tovhEtXFRw .form-control {
  display: inline-block;
  border: none;
  border-radius: 25px;
  width: 100%;
  padding: 0 25px;
  background: rgba(255, 255, 255, 0.07);
  color: #ffffff;
  margin-right: 10px;
  height: 50px;
  line-height: 50px;
}
.cid-tovhEtXFRw .form-control::-webkit-input-placeholder {
  color: #ffffff;
}
.cid-tovhEtXFRw .form-control::-moz-placeholder {
  color: #ffffff;
}
.cid-tovhEtXFRw .form-control:-moz-placeholder {
  color: #ffffff;
}
.cid-tovhEtXFRw .form-control:-ms-input-placeholder {
  color: #ffffff;
}
.cid-tovhEtXFRw .col + .mbr-section-btn .btn,
.cid-tovhEtXFRw .col-auto + .mbr-section-btn .btn {
  margin: 0 !important;
  height: 100%;
  border-radius: 30px !important;
  padding: 14.5px 26px 14.5px !important;
}
.cid-tovhEtXFRw .col + .mbr-section-btn .btn.display-4,
.cid-tovhEtXFRw .col-auto + .mbr-section-btn .btn.display-4 {
  font-size: 13px;
}
.cid-tovhEtXFRw .col + .mbr-section-btn .btn:hover,
.cid-tovhEtXFRw .col-auto + .mbr-section-btn .btn:hover {
  box-shadow: 0 0 0 5px rgba(132, 138, 189, 0.2);
}
.cid-tovhEtXFRw .dragArea > *:nth-last-child(2).col,
.cid-tovhEtXFRw .dragArea > *:nth-last-child(2).col-auto,
.cid-tovhEtXFRw .col + .mbr-section-btn,
.cid-tovhEtXFRw .col-auto + .mbr-section-btn {
  padding-left: 0;
  padding-right: 0;
  margin: 0;
}
.cid-tovhEtXFRw .form1 {
  margin-top: 30px;
}
.cid-tovhEtXFRw .fill-light-wrapper {
  fill: #ffffff;
  z-index: 2 !important;
  top: 0;
}
@media (max-width: 768px) {
  .cid-tovhEtXFRw .md-pb {
    margin-bottom: 30px;
  }
}
.cid-tlo7TOBZ2s {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tlo7TOBZ2s nav.navbar {
  position: fixed;
}
.cid-tlo7TOBZ2s .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-tlo7TOBZ2s .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tlo7TOBZ2s .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tlo7TOBZ2s .dropdown-item:hover,
.cid-tlo7TOBZ2s .dropdown-item:focus {
  background: #101840 !important;
  color: white !important;
}
.cid-tlo7TOBZ2s .dropdown-item:hover span {
  color: white;
}
.cid-tlo7TOBZ2s .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tlo7TOBZ2s .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tlo7TOBZ2s .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tlo7TOBZ2s .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tlo7TOBZ2s .nav-link {
  position: relative;
}
.cid-tlo7TOBZ2s .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-tlo7TOBZ2s .container {
    flex-wrap: nowrap;
  }
}
.cid-tlo7TOBZ2s .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tlo7TOBZ2s .dropdown-menu,
.cid-tlo7TOBZ2s .navbar.opened {
  background: #101840 !important;
}
.cid-tlo7TOBZ2s .nav-item:focus,
.cid-tlo7TOBZ2s .nav-link:focus {
  outline: none;
}
.cid-tlo7TOBZ2s .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tlo7TOBZ2s .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tlo7TOBZ2s .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tlo7TOBZ2s .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tlo7TOBZ2s .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tlo7TOBZ2s .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tlo7TOBZ2s .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: #101840;
}
.cid-tlo7TOBZ2s .navbar.opened {
  transition: all 0.3s;
}
.cid-tlo7TOBZ2s .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tlo7TOBZ2s .navbar .navbar-logo img {
  width: auto;
}
.cid-tlo7TOBZ2s .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tlo7TOBZ2s .navbar.collapsed {
  justify-content: center;
}
.cid-tlo7TOBZ2s .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tlo7TOBZ2s .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-tlo7TOBZ2s .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tlo7TOBZ2s .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tlo7TOBZ2s .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-tlo7TOBZ2s .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tlo7TOBZ2s .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tlo7TOBZ2s .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tlo7TOBZ2s .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tlo7TOBZ2s .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tlo7TOBZ2s .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tlo7TOBZ2s .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tlo7TOBZ2s .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-tlo7TOBZ2s .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tlo7TOBZ2s .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tlo7TOBZ2s .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tlo7TOBZ2s .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tlo7TOBZ2s .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tlo7TOBZ2s .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-tlo7TOBZ2s .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-tlo7TOBZ2s .navbar.navbar-short {
  min-height: 60px;
}
.cid-tlo7TOBZ2s .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tlo7TOBZ2s .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tlo7TOBZ2s .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-tlo7TOBZ2s .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tlo7TOBZ2s .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tlo7TOBZ2s .dropdown-item.active,
.cid-tlo7TOBZ2s .dropdown-item:active {
  background-color: transparent;
}
.cid-tlo7TOBZ2s .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tlo7TOBZ2s .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tlo7TOBZ2s .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tlo7TOBZ2s .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #101840;
}
.cid-tlo7TOBZ2s .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tlo7TOBZ2s .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tlo7TOBZ2s ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tlo7TOBZ2s .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tlo7TOBZ2s button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tlo7TOBZ2s button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tlo7TOBZ2s button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tlo7TOBZ2s button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tlo7TOBZ2s button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tlo7TOBZ2s button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tlo7TOBZ2s nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tlo7TOBZ2s nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tlo7TOBZ2s nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tlo7TOBZ2s nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tlo7TOBZ2s .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tlo7TOBZ2s a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tlo7TOBZ2s .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-tlo7TOBZ2s .navbar {
    height: 70px;
  }
  .cid-tlo7TOBZ2s .navbar.opened {
    height: auto;
  }
  .cid-tlo7TOBZ2s .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tlo998zWGq {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-tlo998zWGq .badge {
  display: inline-block;
  border-radius: 10rem;
  padding: 8px 14px 6px 14px;
  color: #101840;
  background-color: rgba(132, 138, 189, 0.15);
  margin-bottom: 16px;
}
.cid-tlo998zWGq .badge.display-4 {
  font-size: 11px;
  line-height: 1.81;
  letter-spacing: 0.5px;
}
.cid-tlo998zWGq .main-title {
  color: #404040;
  margin-bottom: 26px;
}
.cid-tlo998zWGq .main-title.display-2 {
  line-height: 1.375;
}
.cid-tlo998zWGq .mbr-section-subtitle {
  color: #5f86be;
  font-weight: 600;
  margin-bottom: 21px;
}
.cid-tlo998zWGq .mbr-text {
  color: #606060;
}
.cid-tlo998zWGq .mbr-text.display-4 {
  line-height: 1.75;
}
.cid-tlo998zWGq .mbr-section-btn {
  margin-top: 24px;
}
.cid-tlo998zWGq .mbr-section-btn .btn {
  margin-left: 14.1px;
  padding: 18px 26px;
}
.cid-tlo998zWGq .mbr-section-btn .btn.display-4 {
  font-size: 13px;
  line-height: 1;
}
.cid-tlo998zWGq .mbr-section-btn .btn:hover {
  box-shadow: 0 0 0 5px rgba(60, 113, 211, 0.2) !important;
  -webkit-box-shadow: 0 0 0 5px rgba(60, 113, 211, 0.2) !important;
}
.cid-tlo998zWGq .mbr-section-subtitle,
.cid-tlo998zWGq .mbr-section-btn {
  color: #4d30b0;
}
.cid-tlo998zWGq .main-title,
.cid-tlo998zWGq .mbr-section-btn {
  color: #4d30b0;
}
.cid-tovhAviW7l {
  padding-top: 165px;
  padding-bottom: 60px;
  background-color: #101840;
}
.cid-tovhAviW7l ul {
  padding: 0;
  margin: 0;
}
.cid-tovhAviW7l ul li {
  list-style: none;
}
.cid-tovhAviW7l ul li h4 {
  margin: 0;
}
.cid-tovhAviW7l ul li h4.display-4 {
  line-height: 1.75;
}
.cid-tovhAviW7l .item {
  color: #ffffff;
  text-align: center;
}
.cid-tovhAviW7l .col-title {
  color: #ffffff;
  text-align: center;
}
.cid-tovhAviW7l .col-title.display-2 {
  font-size: 2.1rem;
}
.cid-tovhAviW7l .col-title1 {
  margin-bottom: 40px;
}
.cid-tovhAviW7l .form-group,
.cid-tovhAviW7l .mbr-section-btn {
  margin: 0;
  padding: 0;
  display: -webkit-flex;
}
.cid-tovhAviW7l .form-control {
  display: inline-block;
  border: none;
  border-radius: 25px;
  width: 100%;
  padding: 0 25px;
  background: rgba(255, 255, 255, 0.07);
  color: #ffffff;
  margin-right: 10px;
  height: 50px;
  line-height: 50px;
}
.cid-tovhAviW7l .form-control::-webkit-input-placeholder {
  color: #ffffff;
}
.cid-tovhAviW7l .form-control::-moz-placeholder {
  color: #ffffff;
}
.cid-tovhAviW7l .form-control:-moz-placeholder {
  color: #ffffff;
}
.cid-tovhAviW7l .form-control:-ms-input-placeholder {
  color: #ffffff;
}
.cid-tovhAviW7l .col + .mbr-section-btn .btn,
.cid-tovhAviW7l .col-auto + .mbr-section-btn .btn {
  margin: 0 !important;
  height: 100%;
  border-radius: 30px !important;
  padding: 14.5px 26px 14.5px !important;
}
.cid-tovhAviW7l .col + .mbr-section-btn .btn.display-4,
.cid-tovhAviW7l .col-auto + .mbr-section-btn .btn.display-4 {
  font-size: 13px;
}
.cid-tovhAviW7l .col + .mbr-section-btn .btn:hover,
.cid-tovhAviW7l .col-auto + .mbr-section-btn .btn:hover {
  box-shadow: 0 0 0 5px rgba(132, 138, 189, 0.2);
}
.cid-tovhAviW7l .dragArea > *:nth-last-child(2).col,
.cid-tovhAviW7l .dragArea > *:nth-last-child(2).col-auto,
.cid-tovhAviW7l .col + .mbr-section-btn,
.cid-tovhAviW7l .col-auto + .mbr-section-btn {
  padding-left: 0;
  padding-right: 0;
  margin: 0;
}
.cid-tovhAviW7l .form1 {
  margin-top: 30px;
}
.cid-tovhAviW7l .fill-light-wrapper {
  fill: #ffffff;
  z-index: 2 !important;
  top: 0;
}
@media (max-width: 768px) {
  .cid-tovhAviW7l .md-pb {
    margin-bottom: 30px;
  }
}
.cid-tlo999N2GE {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tlo999N2GE nav.navbar {
  position: fixed;
}
.cid-tlo999N2GE .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-tlo999N2GE .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tlo999N2GE .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tlo999N2GE .dropdown-item:hover,
.cid-tlo999N2GE .dropdown-item:focus {
  background: #101840 !important;
  color: white !important;
}
.cid-tlo999N2GE .dropdown-item:hover span {
  color: white;
}
.cid-tlo999N2GE .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tlo999N2GE .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tlo999N2GE .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tlo999N2GE .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tlo999N2GE .nav-link {
  position: relative;
}
.cid-tlo999N2GE .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-tlo999N2GE .container {
    flex-wrap: nowrap;
  }
}
.cid-tlo999N2GE .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tlo999N2GE .dropdown-menu,
.cid-tlo999N2GE .navbar.opened {
  background: #101840 !important;
}
.cid-tlo999N2GE .nav-item:focus,
.cid-tlo999N2GE .nav-link:focus {
  outline: none;
}
.cid-tlo999N2GE .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tlo999N2GE .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tlo999N2GE .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tlo999N2GE .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tlo999N2GE .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tlo999N2GE .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tlo999N2GE .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: #101840;
}
.cid-tlo999N2GE .navbar.opened {
  transition: all 0.3s;
}
.cid-tlo999N2GE .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tlo999N2GE .navbar .navbar-logo img {
  width: auto;
}
.cid-tlo999N2GE .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tlo999N2GE .navbar.collapsed {
  justify-content: center;
}
.cid-tlo999N2GE .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tlo999N2GE .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-tlo999N2GE .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tlo999N2GE .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tlo999N2GE .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-tlo999N2GE .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tlo999N2GE .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tlo999N2GE .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tlo999N2GE .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tlo999N2GE .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tlo999N2GE .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tlo999N2GE .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tlo999N2GE .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-tlo999N2GE .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tlo999N2GE .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tlo999N2GE .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tlo999N2GE .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tlo999N2GE .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tlo999N2GE .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-tlo999N2GE .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-tlo999N2GE .navbar.navbar-short {
  min-height: 60px;
}
.cid-tlo999N2GE .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tlo999N2GE .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tlo999N2GE .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-tlo999N2GE .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tlo999N2GE .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tlo999N2GE .dropdown-item.active,
.cid-tlo999N2GE .dropdown-item:active {
  background-color: transparent;
}
.cid-tlo999N2GE .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tlo999N2GE .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tlo999N2GE .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tlo999N2GE .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #101840;
}
.cid-tlo999N2GE .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tlo999N2GE .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tlo999N2GE ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tlo999N2GE .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tlo999N2GE button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tlo999N2GE button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tlo999N2GE button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tlo999N2GE button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tlo999N2GE button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tlo999N2GE button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tlo999N2GE nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tlo999N2GE nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tlo999N2GE nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tlo999N2GE nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tlo999N2GE .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tlo999N2GE a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tlo999N2GE .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-tlo999N2GE .navbar {
    height: 70px;
  }
  .cid-tlo999N2GE .navbar.opened {
    height: auto;
  }
  .cid-tlo999N2GE .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tpTMO3d8I6 {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-tpTMO3d8I6 .badge {
  display: inline-block;
  border-radius: 10rem;
  padding: 8px 14px 6px 14px;
  color: #101840;
  background-color: rgba(132, 138, 189, 0.15);
  margin-bottom: 26px;
}
.cid-tpTMO3d8I6 .badge.display-4 {
  font-size: 11px;
  line-height: 1.81;
  letter-spacing: 0.5px;
}
.cid-tpTMO3d8I6 .minibadge {
  display: inline-block;
  border-radius: 10rem;
  padding: 7px 14px;
  color: #ffffff;
  background-color: #848abd;
  text-align: center;
  margin-bottom: 26px;
  font-weight: 600;
}
.cid-tpTMO3d8I6 .minibadge.display-4 {
  font-size: 12px;
  line-height: 1;
  letter-spacing: 0.5px;
}
.cid-tpTMO3d8I6 .meta {
  color: #999999;
  text-align: left;
  margin-top: 20px;
}
.cid-tpTMO3d8I6 .meta .date .clock {
  margin-right: 4px;
}
.cid-tpTMO3d8I6 .meta .comments .comment {
  margin-right: 4px;
}
.cid-tpTMO3d8I6 .meta .comments:before {
  content: "";
  display: inline-block;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  margin: 0 0.6rem 0 0.6rem;
  vertical-align: 3px;
  background: rgba(48, 48, 48, 0.35);
}
.cid-tpTMO3d8I6 .meta.display-4 {
  font-size: 13px;
}
.cid-tpTMO3d8I6 .mbr-section-subtitle {
  color: #999999;
  font-weight: 600;
  margin-bottom: 21px;
}
.cid-tpTMO3d8I6 .main-text {
  color: #606060;
}
.cid-tpTMO3d8I6 .carousel {
  margin-top: 56px;
}
.cid-tpTMO3d8I6 .wrapper {
  position: relative;
  padding: 2rem;
  border-radius: 4px;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: flex-end;
  align-items: flex-end;
  height: 17rem;
  margin-bottom: 30px;
}
.cid-tpTMO3d8I6 .wrapper .mbr-overlay {
  background: #1e1e1e;
  opacity: 0;
  z-index: 1;
  transition: all 0.4s ease;
  border-radius: 4px;
}
.cid-tpTMO3d8I6 .wrapper img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  border-radius: 4px;
}
.cid-tpTMO3d8I6 .wrapper .content-block {
  position: absolute;
  width: 100%;
  z-index: 1;
  top: 50%;
  left: 0;
  transform: translateY(-80%);
  opacity: 0;
  padding: 0.75rem 1rem;
  transition: all 0.4s ease;
}
.cid-tpTMO3d8I6 .wrapper:hover .mbr-overlay {
  background: #1e1e1e;
  opacity: 0.6;
  z-index: 1;
}
.cid-tpTMO3d8I6 .wrapper:hover .content-block {
  opacity: 1;
  transform: translateY(-50%);
}
.cid-tpTMO3d8I6 .carousel-item {
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-tpTMO3d8I6 .carousel-item.active,
.cid-tpTMO3d8I6 .carousel-item-next,
.cid-tpTMO3d8I6 .carousel-item-prev {
  display: flex;
}
.cid-tpTMO3d8I6 .carousel-indicators {
  margin: 20px auto 0;
  align-items: center;
  bottom: -40px;
}
.cid-tpTMO3d8I6 .carousel-indicators .active {
  transform: scale(1);
  border: 0;
  background-color: rgba(153, 153, 153, 0.8);
  transition: all 200ms ease-in-out;
}
.cid-tpTMO3d8I6 .carousel-indicators li {
  height: 10px;
  width: 10px;
  border-radius: 50%;
  transition: opacity 0.5s;
  background-color: rgba(153, 153, 153, 0.8);
  font-size: 2rem;
  border-width: 0px;
  transform: scale(0.6);
}
.cid-tpTMO3d8I6 .carousel-indicators li:hover {
  opacity: 1;
}
.cid-tpTMO3d8I6 .carousel-controls {
  display: none;
}
@media (max-width: 991px) {
  .cid-tpTMO3d8I6 .carousel-controls {
    display: block;
  }
  .cid-tpTMO3d8I6 .carousel-controls a {
    transition: opacity 0.5s;
    font-size: 2rem;
  }
  .cid-tpTMO3d8I6 .carousel-controls a span {
    padding: 10px;
    border-radius: 50%;
    color: #ffffff;
    background: #444444;
    opacity: 0.9;
  }
  .cid-tpTMO3d8I6 .carousel-controls a:hover span {
    opacity: 1;
  }
  .cid-tpTMO3d8I6 .carousel-indicators {
    display: none;
  }
}
@media (max-width: 540px) {
  .cid-tpTMO3d8I6 .text-element {
    padding: 1rem;
  }
  .cid-tpTMO3d8I6 .carousel-controls {
    display: none;
  }
  .cid-tpTMO3d8I6 .carousel-indicators {
    display: flex;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tpTMO3d8I6 .image-element {
    min-width: 50%;
  }
  .cid-tpTMO3d8I6 .media-container-row {
    width: 100%;
  }
}
.cid-tpTMO3d8I6 .carousel-control-prev {
  left: -50px;
}
.cid-tpTMO3d8I6 .carousel-control-next {
  right: -50px;
}
.cid-tpTMO3d8I6 .carousel-item.active {
  flex-wrap: wrap;
}
.cid-tpTMO3d8I6 .caption {
  color: #101840;
}
.cid-tpTLhTxgEJ {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tpTLhTxgEJ nav.navbar {
  position: fixed;
}
.cid-tpTLhTxgEJ .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-tpTLhTxgEJ .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tpTLhTxgEJ .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tpTLhTxgEJ .dropdown-item:hover,
.cid-tpTLhTxgEJ .dropdown-item:focus {
  background: #101840 !important;
  color: white !important;
}
.cid-tpTLhTxgEJ .dropdown-item:hover span {
  color: white;
}
.cid-tpTLhTxgEJ .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tpTLhTxgEJ .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tpTLhTxgEJ .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tpTLhTxgEJ .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tpTLhTxgEJ .nav-link {
  position: relative;
}
.cid-tpTLhTxgEJ .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-tpTLhTxgEJ .container {
    flex-wrap: nowrap;
  }
}
.cid-tpTLhTxgEJ .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tpTLhTxgEJ .dropdown-menu,
.cid-tpTLhTxgEJ .navbar.opened {
  background: #101840 !important;
}
.cid-tpTLhTxgEJ .nav-item:focus,
.cid-tpTLhTxgEJ .nav-link:focus {
  outline: none;
}
.cid-tpTLhTxgEJ .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tpTLhTxgEJ .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tpTLhTxgEJ .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tpTLhTxgEJ .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tpTLhTxgEJ .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tpTLhTxgEJ .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tpTLhTxgEJ .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: #101840;
}
.cid-tpTLhTxgEJ .navbar.opened {
  transition: all 0.3s;
}
.cid-tpTLhTxgEJ .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tpTLhTxgEJ .navbar .navbar-logo img {
  width: auto;
}
.cid-tpTLhTxgEJ .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tpTLhTxgEJ .navbar.collapsed {
  justify-content: center;
}
.cid-tpTLhTxgEJ .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tpTLhTxgEJ .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-tpTLhTxgEJ .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tpTLhTxgEJ .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tpTLhTxgEJ .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-tpTLhTxgEJ .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tpTLhTxgEJ .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tpTLhTxgEJ .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tpTLhTxgEJ .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tpTLhTxgEJ .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tpTLhTxgEJ .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tpTLhTxgEJ .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tpTLhTxgEJ .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-tpTLhTxgEJ .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tpTLhTxgEJ .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tpTLhTxgEJ .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tpTLhTxgEJ .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tpTLhTxgEJ .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tpTLhTxgEJ .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-tpTLhTxgEJ .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-tpTLhTxgEJ .navbar.navbar-short {
  min-height: 60px;
}
.cid-tpTLhTxgEJ .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tpTLhTxgEJ .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tpTLhTxgEJ .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-tpTLhTxgEJ .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tpTLhTxgEJ .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tpTLhTxgEJ .dropdown-item.active,
.cid-tpTLhTxgEJ .dropdown-item:active {
  background-color: transparent;
}
.cid-tpTLhTxgEJ .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tpTLhTxgEJ .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tpTLhTxgEJ .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tpTLhTxgEJ .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #101840;
}
.cid-tpTLhTxgEJ .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tpTLhTxgEJ .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tpTLhTxgEJ ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tpTLhTxgEJ .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tpTLhTxgEJ button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tpTLhTxgEJ button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tpTLhTxgEJ button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tpTLhTxgEJ button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tpTLhTxgEJ button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tpTLhTxgEJ button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tpTLhTxgEJ nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tpTLhTxgEJ nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tpTLhTxgEJ nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tpTLhTxgEJ nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tpTLhTxgEJ .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tpTLhTxgEJ a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tpTLhTxgEJ .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-tpTLhTxgEJ .navbar {
    height: 70px;
  }
  .cid-tpTLhTxgEJ .navbar.opened {
    height: auto;
  }
  .cid-tpTLhTxgEJ .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tpTLhUd9qM {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-tpTLhUd9qM .mbr-fallback-image.disabled {
  display: none;
}
.cid-tpTLhUd9qM .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tpTLhUd9qM .container {
  max-width: 1280px;
}
.cid-tpTLhUd9qM .content-wrapper {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  background: #212132;
  padding: 4rem;
  border-radius: 4.17rem;
}
@media (max-width: 991px) {
  .cid-tpTLhUd9qM .content-wrapper {
    flex-wrap: wrap;
    padding: 40px;
  }
}
@media (max-width: 767px) {
  .cid-tpTLhUd9qM .content-wrapper {
    padding: 40px 6vw;
  }
}
.cid-tpTLhUd9qM .text-wrapper {
  display: flex;
  flex-direction: column;
  width: 45%;
}
@media (max-width: 991px) {
  .cid-tpTLhUd9qM .text-wrapper {
    width: 100%;
    margin-bottom: 10px;
  }
}
.cid-tpTLhUd9qM .label-container {
  padding: 4px 12px;
  border-radius: 100vw;
  background-color: #ffffff;
  margin-bottom: 20px;
  width: max-content;
  margin-right: auto;
}
@media (max-width: 991px) {
  .cid-tpTLhUd9qM .label-container {
    margin-bottom: 12px;
  }
}
.cid-tpTLhUd9qM .label-text {
  color: #212132;
}
.cid-tpTLhUd9qM .mbr-section-title {
  color: #ffe700;
  margin-bottom: 1.5rem;
  width: 100%;
}
@media (max-width: 991px) {
  .cid-tpTLhUd9qM .mbr-section-title {
    margin-bottom: 24px;
  }
}
.cid-tpTLhUd9qM .mbr-section-subtitle {
  color: #ffffff;
  margin-top: auto;
  width: 100%;
}
@media (max-width: 991px) {
  .cid-tpTLhUd9qM .mbr-section-subtitle {
    margin-top: 0;
  }
}
.cid-tpTLhUd9qM .card-container {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: stretch;
  width: 60%;
  right: -8rem;
}
@media (max-width: 1599px) {
  .cid-tpTLhUd9qM .card-container {
    right: calc(-4vw - 4rem);
  }
}
@media (max-width: 991px) {
  .cid-tpTLhUd9qM .card-container {
    width: 100%;
    margin-top: 40px;
    left: 0;
    right: 0;
  }
}
.cid-tpTLhUd9qM .card-item {
  position: relative;
  width: 46%;
  margin: 2%;
  transition: .3s all;
  min-height: 290px;
}
@media (max-width: 1599px) {
  .cid-tpTLhUd9qM .card-item {
    min-height: 240px;
  }
}
@media (max-width: 1199px) {
  .cid-tpTLhUd9qM .card-item {
    min-height: 185px;
  }
}
.cid-tpTLhUd9qM .card-item:hover {
  transform: scale(0.96);
}
@media (max-width: 575px) {
  .cid-tpTLhUd9qM .card-item {
    width: 96%;
    margin: 2%;
    min-height: auto;
  }
}
.cid-tpTLhUd9qM .card-bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 5;
  background-image: linear-gradient(135deg, #ffdd65 2.76%, #ffaa5c 29.66%, #ff49c0 61%, #b67dff 99.93%);
  filter: blur(1rem);
}
.cid-tpTLhUd9qM .card-border {
  position: relative;
  z-index: 6;
  width: 100%;
  height: 100%;
  padding: 5px;
  border-radius: 2.08rem;
  background-image: linear-gradient(135deg, #ffdd65 2.76%, #ffaa5c 29.66%, #ff49c0 61%, #b67dff 99.93%);
}
.cid-tpTLhUd9qM .card-box {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  width: 100%;
  height: 100%;
  padding: 60px;
  background-color: #212132;
  border-radius: 1.76rem;
}
@media (max-width: 991px) {
  .cid-tpTLhUd9qM .card-box {
    padding: 16px;
  }
}
.cid-tpTLhUd9qM .iconfont-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 40px;
  padding: 3px;
  min-width: 32px;
  min-height: 32px;
  width: max-content;
  margin-right: auto;
}
@media (max-width: 991px) {
  .cid-tpTLhUd9qM .iconfont-wrapper {
    margin-bottom: 24px;
  }
}
.cid-tpTLhUd9qM .iconfont-wrapper .mbr-iconfont {
  color: #ffe700;
  font-size: 64px;
}
.cid-tpTLhUd9qM .card-title {
  margin-top: auto;
  color: #ffffff;
}
.cid-tpTLhUd9qM P {
  color: #ffffff;
}
.cid-tpTLhUyDZW {
  padding-top: 165px;
  padding-bottom: 60px;
  background-color: #101840;
}
.cid-tpTLhUyDZW ul {
  padding: 0;
  margin: 0;
}
.cid-tpTLhUyDZW ul li {
  list-style: none;
}
.cid-tpTLhUyDZW ul li h4 {
  margin: 0;
}
.cid-tpTLhUyDZW ul li h4.display-4 {
  line-height: 1.75;
}
.cid-tpTLhUyDZW .item {
  color: #ffffff;
  text-align: center;
}
.cid-tpTLhUyDZW .col-title {
  color: #ffffff;
  text-align: center;
}
.cid-tpTLhUyDZW .col-title.display-2 {
  font-size: 2.1rem;
}
.cid-tpTLhUyDZW .col-title1 {
  margin-bottom: 40px;
}
.cid-tpTLhUyDZW .form-group,
.cid-tpTLhUyDZW .mbr-section-btn {
  margin: 0;
  padding: 0;
  display: -webkit-flex;
}
.cid-tpTLhUyDZW .form-control {
  display: inline-block;
  border: none;
  border-radius: 25px;
  width: 100%;
  padding: 0 25px;
  background: rgba(255, 255, 255, 0.07);
  color: #ffffff;
  margin-right: 10px;
  height: 50px;
  line-height: 50px;
}
.cid-tpTLhUyDZW .form-control::-webkit-input-placeholder {
  color: #ffffff;
}
.cid-tpTLhUyDZW .form-control::-moz-placeholder {
  color: #ffffff;
}
.cid-tpTLhUyDZW .form-control:-moz-placeholder {
  color: #ffffff;
}
.cid-tpTLhUyDZW .form-control:-ms-input-placeholder {
  color: #ffffff;
}
.cid-tpTLhUyDZW .col + .mbr-section-btn .btn,
.cid-tpTLhUyDZW .col-auto + .mbr-section-btn .btn {
  margin: 0 !important;
  height: 100%;
  border-radius: 30px !important;
  padding: 14.5px 26px 14.5px !important;
}
.cid-tpTLhUyDZW .col + .mbr-section-btn .btn.display-4,
.cid-tpTLhUyDZW .col-auto + .mbr-section-btn .btn.display-4 {
  font-size: 13px;
}
.cid-tpTLhUyDZW .col + .mbr-section-btn .btn:hover,
.cid-tpTLhUyDZW .col-auto + .mbr-section-btn .btn:hover {
  box-shadow: 0 0 0 5px rgba(132, 138, 189, 0.2);
}
.cid-tpTLhUyDZW .dragArea > *:nth-last-child(2).col,
.cid-tpTLhUyDZW .dragArea > *:nth-last-child(2).col-auto,
.cid-tpTLhUyDZW .col + .mbr-section-btn,
.cid-tpTLhUyDZW .col-auto + .mbr-section-btn {
  padding-left: 0;
  padding-right: 0;
  margin: 0;
}
.cid-tpTLhUyDZW .form1 {
  margin-top: 30px;
}
.cid-tpTLhUyDZW .fill-light-wrapper {
  fill: #ffffff;
  z-index: 2 !important;
  top: 0;
}
@media (max-width: 768px) {
  .cid-tpTLhUyDZW .md-pb {
    margin-bottom: 30px;
  }
}
.cid-tpTPQfQmHg {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tpTPQfQmHg .badge {
  display: inline-block;
  border-radius: 10rem;
  padding: 8px 14px 6px 14px;
  color: #101840;
  background-color: rgba(132, 138, 189, 0.15);
  margin-bottom: 16px;
}
.cid-tpTPQfQmHg .badge.display-4 {
  font-size: 11px;
  line-height: 1.81;
  letter-spacing: 0.5px;
}
.cid-tpTPQfQmHg .main-title {
  color: #404040;
  margin-bottom: 26px;
}
.cid-tpTPQfQmHg .main-title.display-2 {
  line-height: 1.375;
}
.cid-tpTPQfQmHg .mbr-section-subtitle {
  color: #5f86be;
  font-weight: 600;
  margin-bottom: 21px;
}
.cid-tpTPQfQmHg .mbr-text {
  color: #606060;
}
.cid-tpTPQfQmHg .mbr-text.display-4 {
  line-height: 1.75;
}
.cid-tpTPQfQmHg .mbr-section-btn {
  margin-top: 24px;
}
.cid-tpTPQfQmHg .mbr-section-btn .btn {
  margin-left: 14.1px;
  padding: 18px 26px;
}
.cid-tpTPQfQmHg .mbr-section-btn .btn.display-4 {
  font-size: 13px;
  line-height: 1;
}
.cid-tpTPQfQmHg .mbr-section-btn .btn:hover {
  box-shadow: 0 0 0 5px rgba(60, 113, 211, 0.2) !important;
  -webkit-box-shadow: 0 0 0 5px rgba(60, 113, 211, 0.2) !important;
}
.cid-tpTPQfQmHg .mbr-text,
.cid-tpTPQfQmHg .mbr-section-btn P {
  text-align: left;
}
.cid-tpTPQfQmHg .main-title,
.cid-tpTPQfQmHg .mbr-section-btn {
  color: #4d30b0;
}
.cid-tpTPQfQmHg .mbr-section-subtitle,
.cid-tpTPQfQmHg .mbr-section-btn {
  color: #4d30b0;
}
.cid-tpTNJo1sgS {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tpTNJo1sgS nav.navbar {
  position: fixed;
}
.cid-tpTNJo1sgS .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-tpTNJo1sgS .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tpTNJo1sgS .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tpTNJo1sgS .dropdown-item:hover,
.cid-tpTNJo1sgS .dropdown-item:focus {
  background: #101840 !important;
  color: white !important;
}
.cid-tpTNJo1sgS .dropdown-item:hover span {
  color: white;
}
.cid-tpTNJo1sgS .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tpTNJo1sgS .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tpTNJo1sgS .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tpTNJo1sgS .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tpTNJo1sgS .nav-link {
  position: relative;
}
.cid-tpTNJo1sgS .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-tpTNJo1sgS .container {
    flex-wrap: nowrap;
  }
}
.cid-tpTNJo1sgS .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tpTNJo1sgS .dropdown-menu,
.cid-tpTNJo1sgS .navbar.opened {
  background: #101840 !important;
}
.cid-tpTNJo1sgS .nav-item:focus,
.cid-tpTNJo1sgS .nav-link:focus {
  outline: none;
}
.cid-tpTNJo1sgS .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tpTNJo1sgS .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tpTNJo1sgS .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tpTNJo1sgS .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tpTNJo1sgS .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tpTNJo1sgS .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tpTNJo1sgS .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: #101840;
}
.cid-tpTNJo1sgS .navbar.opened {
  transition: all 0.3s;
}
.cid-tpTNJo1sgS .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tpTNJo1sgS .navbar .navbar-logo img {
  width: auto;
}
.cid-tpTNJo1sgS .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tpTNJo1sgS .navbar.collapsed {
  justify-content: center;
}
.cid-tpTNJo1sgS .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tpTNJo1sgS .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-tpTNJo1sgS .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tpTNJo1sgS .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tpTNJo1sgS .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-tpTNJo1sgS .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tpTNJo1sgS .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tpTNJo1sgS .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tpTNJo1sgS .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tpTNJo1sgS .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tpTNJo1sgS .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tpTNJo1sgS .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tpTNJo1sgS .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-tpTNJo1sgS .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tpTNJo1sgS .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tpTNJo1sgS .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tpTNJo1sgS .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tpTNJo1sgS .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tpTNJo1sgS .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-tpTNJo1sgS .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-tpTNJo1sgS .navbar.navbar-short {
  min-height: 60px;
}
.cid-tpTNJo1sgS .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tpTNJo1sgS .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tpTNJo1sgS .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-tpTNJo1sgS .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tpTNJo1sgS .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tpTNJo1sgS .dropdown-item.active,
.cid-tpTNJo1sgS .dropdown-item:active {
  background-color: transparent;
}
.cid-tpTNJo1sgS .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tpTNJo1sgS .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tpTNJo1sgS .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tpTNJo1sgS .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #101840;
}
.cid-tpTNJo1sgS .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tpTNJo1sgS .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tpTNJo1sgS ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tpTNJo1sgS .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tpTNJo1sgS button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tpTNJo1sgS button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tpTNJo1sgS button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tpTNJo1sgS button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tpTNJo1sgS button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tpTNJo1sgS button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tpTNJo1sgS nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tpTNJo1sgS nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tpTNJo1sgS nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tpTNJo1sgS nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tpTNJo1sgS .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tpTNJo1sgS a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tpTNJo1sgS .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-tpTNJo1sgS .navbar {
    height: 70px;
  }
  .cid-tpTNJo1sgS .navbar.opened {
    height: auto;
  }
  .cid-tpTNJo1sgS .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tpZNUCGfKJ {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #f9fafb;
}
.cid-tpZNUCGfKJ .badge {
  display: inline-block;
  border-radius: 10rem;
  padding: 8px 14px 6px 14px;
  color: #101840;
  background-color: rgba(132, 138, 189, 0.15);
  margin-bottom: 16px;
}
.cid-tpZNUCGfKJ .badge.display-4 {
  font-size: 11px;
  line-height: 1.81;
  letter-spacing: 0.5px;
}
.cid-tpZNUCGfKJ .main-title {
  color: #404040;
  margin-bottom: 26px;
}
.cid-tpZNUCGfKJ .main-title.display-2 {
  line-height: 1.375;
}
.cid-tpZNUCGfKJ .mbr-section-subtitle {
  color: #5f86be;
  font-weight: 600;
  margin-bottom: 21px;
}
.cid-tpZNUCGfKJ .mbr-text {
  color: #606060;
}
.cid-tpZNUCGfKJ .mbr-text.display-4 {
  line-height: 1.75;
}
.cid-tpZNUCGfKJ .mbr-section-btn {
  margin-top: 24px;
}
.cid-tpZNUCGfKJ .mbr-section-btn .btn {
  margin-left: 14.1px;
  padding: 18px 26px;
}
.cid-tpZNUCGfKJ .mbr-section-btn .btn.display-4 {
  font-size: 13px;
  line-height: 1;
}
.cid-tpZNUCGfKJ .mbr-section-btn .btn:hover {
  box-shadow: 0 0 0 5px rgba(60, 113, 211, 0.2) !important;
  -webkit-box-shadow: 0 0 0 5px rgba(60, 113, 211, 0.2) !important;
}
.cid-tpTVzvDFbX {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-tpTVzvDFbX .row {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-tpTVzvDFbX img {
  width: 100%;
}
.cid-tpTVzvDFbX .badge {
  display: inline-block;
  border-radius: 10rem;
  padding: 8px 14px 6px 14px;
  color: #101840;
  background-color: rgba(132, 138, 189, 0.15);
  margin-bottom: 26px;
}
.cid-tpTVzvDFbX .badge.display-4 {
  font-size: 11px;
  line-height: 1.81;
  letter-spacing: 0.5px;
}
.cid-tpTVzvDFbX .mbr-section-subtitle {
  color: #999999;
  font-weight: 700;
  margin-bottom: 21px;
}
.cid-tpTVzvDFbX .mbr-section-title {
  margin: 0;
  font-weight: 500;
}
.cid-tpTVzvDFbX .mbr-section-title.display-2 {
  line-height: 1.375;
}
.cid-tpTVzvDFbX .contents {
  margin-top: 36px;
}
.cid-tpTVzvDFbX .contents .content-text {
  color: #606060;
  font-weight: 300;
}
.cid-tpTVzvDFbX .mbr-section-btn {
  margin-top: 8px;
}
.cid-tpTVzvDFbX .mbr-section-btn .btn {
  padding: 18px 26px;
}
.cid-tpTVzvDFbX .mbr-section-btn .btn.display-4 {
  font-size: 13px;
  line-height: 1;
}
.cid-tpTVzvDFbX .mbr-section-btn .btn:hover {
  box-shadow: 0 0 0 5px rgba(60, 113, 211, 0.2) !important;
  -webkit-box-shadow: 0 0 0 5px rgba(60, 113, 211, 0.2) !important;
}
.cid-tpTVzvDFbX .mbr-list {
  margin-top: 20px;
  color: #606060;
}
.cid-tpTVzvDFbX .mbr-list .list {
  list-style-type: none;
  padding-left: 0;
}
.cid-tpTVzvDFbX .mbr-list .list li {
  line-height: 1.75;
}
.cid-tpTVzvDFbX .mbr-list .list li:before {
  font-weight: 900;
  color: #5ca7db;
  display: inline-block;
  content: "✓";
  text-align: center;
  line-height: 1.5em;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  width: 25px;
  height: 25px;
}
.cid-tpTVDcHFBo {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #f9fafb;
}
.cid-tpTVDcHFBo .badge {
  display: inline-block;
  border-radius: 10rem;
  padding: 8px 14px 6px 14px;
  color: #101840;
  background-color: rgba(132, 138, 189, 0.15);
  margin-bottom: 16px;
}
.cid-tpTVDcHFBo .badge.display-4 {
  font-size: 11px;
  line-height: 1.81;
  letter-spacing: 0.5px;
}
.cid-tpTVDcHFBo .main-title {
  color: #404040;
  margin-bottom: 26px;
}
.cid-tpTVDcHFBo .main-title.display-2 {
  line-height: 1.375;
}
.cid-tpTVDcHFBo .mbr-section-subtitle {
  color: #5f86be;
  font-weight: 600;
  margin-bottom: 21px;
}
.cid-tpTVDcHFBo .mbr-text {
  color: #606060;
}
.cid-tpTVDcHFBo .mbr-text.display-4 {
  line-height: 1.75;
}
.cid-tpTVDcHFBo .mbr-section-btn {
  margin-top: 24px;
}
.cid-tpTVDcHFBo .mbr-section-btn .btn {
  margin-left: 14.1px;
  padding: 18px 26px;
}
.cid-tpTVDcHFBo .mbr-section-btn .btn.display-4 {
  font-size: 13px;
  line-height: 1;
}
.cid-tpTVDcHFBo .mbr-section-btn .btn:hover {
  box-shadow: 0 0 0 5px rgba(60, 113, 211, 0.2) !important;
  -webkit-box-shadow: 0 0 0 5px rgba(60, 113, 211, 0.2) !important;
}
.cid-tpU0xk1Dps {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-tpU0xk1Dps img {
  width: 100%;
}
.cid-tpU0xk1Dps .badge {
  display: inline-block;
  border-radius: 10rem;
  padding: 8px 14px 6px 14px;
  color: #101840;
  background-color: rgba(132, 138, 189, 0.15);
  margin-bottom: 26px;
}
.cid-tpU0xk1Dps .badge.display-4 {
  font-size: 11px;
  line-height: 1.81;
  letter-spacing: 0.5px;
}
.cid-tpU0xk1Dps .mbr-section-subtitle {
  color: #999999;
  font-weight: 700;
  margin-bottom: 21px;
}
.cid-tpU0xk1Dps .mbr-section-title {
  margin: 0;
  font-weight: 500;
}
.cid-tpU0xk1Dps .mbr-section-title.display-2 {
  line-height: 1.375;
}
.cid-tpU0xk1Dps .contents {
  margin-top: 36px;
}
.cid-tpU0xk1Dps .contents .content-text {
  color: #606060;
  font-weight: 300;
}
.cid-tpU0xk1Dps .mbr-section-btn {
  margin-top: 8px;
}
.cid-tpU0xk1Dps .mbr-section-btn .btn {
  padding: 18px 26px;
}
.cid-tpU0xk1Dps .mbr-section-btn .btn.display-4 {
  font-size: 13px;
  line-height: 1;
}
.cid-tpU0xk1Dps .mbr-section-btn .btn:hover {
  box-shadow: 0 0 0 5px rgba(60, 113, 211, 0.2) !important;
  -webkit-box-shadow: 0 0 0 5px rgba(60, 113, 211, 0.2) !important;
}
.cid-tpU0xk1Dps .mbr-list {
  margin-top: 20px;
  color: #606060;
}
.cid-tpU0xk1Dps .mbr-list .list {
  list-style-type: none;
  padding-left: 0;
}
.cid-tpU0xk1Dps .mbr-list .list li {
  line-height: 1.75;
}
.cid-tpU0xk1Dps .mbr-list .list li:before {
  font-weight: 900;
  color: #5ca7db;
  display: inline-block;
  content: "✓";
  text-align: center;
  line-height: 1.5em;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  width: 25px;
  height: 25px;
}
.cid-tpZNRz4nkj {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #f9fafb;
}
.cid-tpZNRz4nkj .badge {
  display: inline-block;
  border-radius: 10rem;
  padding: 8px 14px 6px 14px;
  color: #101840;
  background-color: rgba(132, 138, 189, 0.15);
  margin-bottom: 16px;
}
.cid-tpZNRz4nkj .badge.display-4 {
  font-size: 11px;
  line-height: 1.81;
  letter-spacing: 0.5px;
}
.cid-tpZNRz4nkj .main-title {
  color: #404040;
  margin-bottom: 26px;
}
.cid-tpZNRz4nkj .main-title.display-2 {
  line-height: 1.375;
}
.cid-tpZNRz4nkj .mbr-section-subtitle {
  color: #5f86be;
  font-weight: 600;
  margin-bottom: 21px;
}
.cid-tpZNRz4nkj .mbr-text {
  color: #606060;
}
.cid-tpZNRz4nkj .mbr-text.display-4 {
  line-height: 1.75;
}
.cid-tpZNRz4nkj .mbr-section-btn {
  margin-top: 24px;
}
.cid-tpZNRz4nkj .mbr-section-btn .btn {
  margin-left: 14.1px;
  padding: 18px 26px;
}
.cid-tpZNRz4nkj .mbr-section-btn .btn.display-4 {
  font-size: 13px;
  line-height: 1;
}
.cid-tpZNRz4nkj .mbr-section-btn .btn:hover {
  box-shadow: 0 0 0 5px rgba(60, 113, 211, 0.2) !important;
  -webkit-box-shadow: 0 0 0 5px rgba(60, 113, 211, 0.2) !important;
}
.cid-tpZOwhX74l {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tpZOwhX74l .badge {
  display: inline-block;
  border-radius: 10rem;
  padding: 8px 14px 6px 14px;
  color: #101840;
  background-color: rgba(132, 138, 189, 0.15);
  margin-bottom: 16px;
}
.cid-tpZOwhX74l .badge.display-4 {
  font-size: 11px;
  line-height: 1.81;
  letter-spacing: 0.5px;
}
.cid-tpZOwhX74l .main-title {
  color: #404040;
  margin-bottom: 26px;
}
.cid-tpZOwhX74l .main-title.display-2 {
  line-height: 1.375;
}
.cid-tpZOwhX74l .mbr-section-subtitle {
  color: #5f86be;
  font-weight: 600;
  margin-bottom: 21px;
}
.cid-tpZOwhX74l .mbr-text {
  color: #606060;
}
.cid-tpZOwhX74l .mbr-text.display-4 {
  line-height: 1.75;
}
.cid-tpZOwhX74l .mbr-section-btn {
  margin-top: 24px;
}
.cid-tpZOwhX74l .mbr-section-btn .btn {
  margin-left: 14.1px;
  padding: 18px 26px;
}
.cid-tpZOwhX74l .mbr-section-btn .btn.display-4 {
  font-size: 13px;
  line-height: 1;
}
.cid-tpZOwhX74l .mbr-section-btn .btn:hover {
  box-shadow: 0 0 0 5px rgba(60, 113, 211, 0.2) !important;
  -webkit-box-shadow: 0 0 0 5px rgba(60, 113, 211, 0.2) !important;
}
.cid-tpZPu9b9IV {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #f9fafb;
}
.cid-tpZPu9b9IV .badge {
  display: inline-block;
  border-radius: 10rem;
  padding: 8px 14px 6px 14px;
  color: #101840;
  background-color: rgba(132, 138, 189, 0.15);
  margin-bottom: 16px;
}
.cid-tpZPu9b9IV .badge.display-4 {
  font-size: 11px;
  line-height: 1.81;
  letter-spacing: 0.5px;
}
.cid-tpZPu9b9IV .main-title {
  color: #404040;
  margin-bottom: 26px;
}
.cid-tpZPu9b9IV .main-title.display-2 {
  line-height: 1.375;
}
.cid-tpZPu9b9IV .mbr-section-subtitle {
  color: #5f86be;
  font-weight: 600;
  margin-bottom: 21px;
}
.cid-tpZPu9b9IV .mbr-text {
  color: #606060;
}
.cid-tpZPu9b9IV .mbr-text.display-4 {
  line-height: 1.75;
}
.cid-tpZPu9b9IV .mbr-section-btn {
  margin-top: 24px;
}
.cid-tpZPu9b9IV .mbr-section-btn .btn {
  margin-left: 14.1px;
  padding: 18px 26px;
}
.cid-tpZPu9b9IV .mbr-section-btn .btn.display-4 {
  font-size: 13px;
  line-height: 1;
}
.cid-tpZPu9b9IV .mbr-section-btn .btn:hover {
  box-shadow: 0 0 0 5px rgba(60, 113, 211, 0.2) !important;
  -webkit-box-shadow: 0 0 0 5px rgba(60, 113, 211, 0.2) !important;
}
.cid-tpZNSC8g5B {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tpZNSC8g5B .badge {
  display: inline-block;
  border-radius: 10rem;
  padding: 8px 14px 6px 14px;
  color: #101840;
  background-color: rgba(132, 138, 189, 0.15);
  margin-bottom: 16px;
}
.cid-tpZNSC8g5B .badge.display-4 {
  font-size: 11px;
  line-height: 1.81;
  letter-spacing: 0.5px;
}
.cid-tpZNSC8g5B .main-title {
  color: #404040;
  margin-bottom: 26px;
}
.cid-tpZNSC8g5B .main-title.display-2 {
  line-height: 1.375;
}
.cid-tpZNSC8g5B .mbr-section-subtitle {
  color: #5f86be;
  font-weight: 600;
  margin-bottom: 21px;
}
.cid-tpZNSC8g5B .mbr-text {
  color: #606060;
}
.cid-tpZNSC8g5B .mbr-text.display-4 {
  line-height: 1.75;
}
.cid-tpZNSC8g5B .mbr-section-btn {
  margin-top: 24px;
}
.cid-tpZNSC8g5B .mbr-section-btn .btn {
  margin-left: 14.1px;
  padding: 18px 26px;
}
.cid-tpZNSC8g5B .mbr-section-btn .btn.display-4 {
  font-size: 13px;
  line-height: 1;
}
.cid-tpZNSC8g5B .mbr-section-btn .btn:hover {
  box-shadow: 0 0 0 5px rgba(60, 113, 211, 0.2) !important;
  -webkit-box-shadow: 0 0 0 5px rgba(60, 113, 211, 0.2) !important;
}
.cid-tpZNSC8g5B .main-title,
.cid-tpZNSC8g5B .mbr-section-btn {
  color: #4d30b0;
}
.cid-tpTNJoKsn5 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-tpTNJoKsn5 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tpTNJoKsn5 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tpTNJoKsn5 .container {
  max-width: 1280px;
}
.cid-tpTNJoKsn5 .content-wrapper {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  background: #101840;
  padding: 4rem;
  border-radius: 4.17rem;
}
@media (max-width: 991px) {
  .cid-tpTNJoKsn5 .content-wrapper {
    flex-wrap: wrap;
    padding: 40px;
  }
}
@media (max-width: 767px) {
  .cid-tpTNJoKsn5 .content-wrapper {
    padding: 40px 6vw;
  }
}
.cid-tpTNJoKsn5 .text-wrapper {
  display: flex;
  flex-direction: column;
  width: 45%;
}
@media (max-width: 991px) {
  .cid-tpTNJoKsn5 .text-wrapper {
    width: 100%;
    margin-bottom: 10px;
  }
}
.cid-tpTNJoKsn5 .label-container {
  padding: 4px 12px;
  border-radius: 100vw;
  background-color: #ffffff;
  margin-bottom: 20px;
  width: max-content;
  margin-right: auto;
}
@media (max-width: 991px) {
  .cid-tpTNJoKsn5 .label-container {
    margin-bottom: 12px;
  }
}
.cid-tpTNJoKsn5 .label-text {
  color: #212132;
}
.cid-tpTNJoKsn5 .mbr-section-title {
  color: #ffe700;
  margin-bottom: 1.5rem;
  width: 100%;
}
@media (max-width: 991px) {
  .cid-tpTNJoKsn5 .mbr-section-title {
    margin-bottom: 24px;
  }
}
.cid-tpTNJoKsn5 .mbr-section-subtitle {
  color: #ffffff;
  margin-top: auto;
  width: 100%;
}
@media (max-width: 991px) {
  .cid-tpTNJoKsn5 .mbr-section-subtitle {
    margin-top: 0;
  }
}
.cid-tpTNJoKsn5 .card-container {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: stretch;
  width: 60%;
  right: -8rem;
}
@media (max-width: 1599px) {
  .cid-tpTNJoKsn5 .card-container {
    right: calc(-4vw - 4rem);
  }
}
@media (max-width: 991px) {
  .cid-tpTNJoKsn5 .card-container {
    width: 100%;
    margin-top: 40px;
    left: 0;
    right: 0;
  }
}
.cid-tpTNJoKsn5 .card-item {
  position: relative;
  width: 46%;
  margin: 2%;
  transition: .3s all;
  min-height: 290px;
}
@media (max-width: 1599px) {
  .cid-tpTNJoKsn5 .card-item {
    min-height: 240px;
  }
}
@media (max-width: 1199px) {
  .cid-tpTNJoKsn5 .card-item {
    min-height: 185px;
  }
}
.cid-tpTNJoKsn5 .card-item:hover {
  transform: scale(0.96);
}
@media (max-width: 575px) {
  .cid-tpTNJoKsn5 .card-item {
    width: 96%;
    margin: 2%;
    min-height: auto;
  }
}
.cid-tpTNJoKsn5 .card-bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 5;
  background-image: linear-gradient(135deg, #ffdd65 2.76%, #ffaa5c 29.66%, #ff49c0 61%, #b67dff 99.93%);
  filter: blur(1rem);
}
.cid-tpTNJoKsn5 .card-border {
  position: relative;
  z-index: 6;
  width: 100%;
  height: 100%;
  padding: 5px;
  border-radius: 2.08rem;
  background-image: linear-gradient(135deg, #ffdd65 2.76%, #ffaa5c 29.66%, #ff49c0 61%, #b67dff 99.93%);
}
.cid-tpTNJoKsn5 .card-box {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  width: 100%;
  height: 100%;
  padding: 60px;
  background-color: #212132;
  border-radius: 1.76rem;
}
@media (max-width: 991px) {
  .cid-tpTNJoKsn5 .card-box {
    padding: 16px;
  }
}
.cid-tpTNJoKsn5 .iconfont-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 40px;
  padding: 3px;
  min-width: 32px;
  min-height: 32px;
  width: max-content;
  margin-right: auto;
}
@media (max-width: 991px) {
  .cid-tpTNJoKsn5 .iconfont-wrapper {
    margin-bottom: 24px;
  }
}
.cid-tpTNJoKsn5 .iconfont-wrapper .mbr-iconfont {
  color: #ffe700;
  font-size: 64px;
}
.cid-tpTNJoKsn5 .card-title {
  margin-top: auto;
  color: #ffffff;
}
.cid-tpTNJoKsn5 P {
  color: #ffffff;
}
.cid-tpTNJp6Gm5 {
  padding-top: 165px;
  padding-bottom: 60px;
  background-color: #101840;
}
.cid-tpTNJp6Gm5 ul {
  padding: 0;
  margin: 0;
}
.cid-tpTNJp6Gm5 ul li {
  list-style: none;
}
.cid-tpTNJp6Gm5 ul li h4 {
  margin: 0;
}
.cid-tpTNJp6Gm5 ul li h4.display-4 {
  line-height: 1.75;
}
.cid-tpTNJp6Gm5 .item {
  color: #ffffff;
  text-align: center;
}
.cid-tpTNJp6Gm5 .col-title {
  color: #ffffff;
  text-align: center;
}
.cid-tpTNJp6Gm5 .col-title.display-2 {
  font-size: 2.1rem;
}
.cid-tpTNJp6Gm5 .col-title1 {
  margin-bottom: 40px;
}
.cid-tpTNJp6Gm5 .form-group,
.cid-tpTNJp6Gm5 .mbr-section-btn {
  margin: 0;
  padding: 0;
  display: -webkit-flex;
}
.cid-tpTNJp6Gm5 .form-control {
  display: inline-block;
  border: none;
  border-radius: 25px;
  width: 100%;
  padding: 0 25px;
  background: rgba(255, 255, 255, 0.07);
  color: #ffffff;
  margin-right: 10px;
  height: 50px;
  line-height: 50px;
}
.cid-tpTNJp6Gm5 .form-control::-webkit-input-placeholder {
  color: #ffffff;
}
.cid-tpTNJp6Gm5 .form-control::-moz-placeholder {
  color: #ffffff;
}
.cid-tpTNJp6Gm5 .form-control:-moz-placeholder {
  color: #ffffff;
}
.cid-tpTNJp6Gm5 .form-control:-ms-input-placeholder {
  color: #ffffff;
}
.cid-tpTNJp6Gm5 .col + .mbr-section-btn .btn,
.cid-tpTNJp6Gm5 .col-auto + .mbr-section-btn .btn {
  margin: 0 !important;
  height: 100%;
  border-radius: 30px !important;
  padding: 14.5px 26px 14.5px !important;
}
.cid-tpTNJp6Gm5 .col + .mbr-section-btn .btn.display-4,
.cid-tpTNJp6Gm5 .col-auto + .mbr-section-btn .btn.display-4 {
  font-size: 13px;
}
.cid-tpTNJp6Gm5 .col + .mbr-section-btn .btn:hover,
.cid-tpTNJp6Gm5 .col-auto + .mbr-section-btn .btn:hover {
  box-shadow: 0 0 0 5px rgba(132, 138, 189, 0.2);
}
.cid-tpTNJp6Gm5 .dragArea > *:nth-last-child(2).col,
.cid-tpTNJp6Gm5 .dragArea > *:nth-last-child(2).col-auto,
.cid-tpTNJp6Gm5 .col + .mbr-section-btn,
.cid-tpTNJp6Gm5 .col-auto + .mbr-section-btn {
  padding-left: 0;
  padding-right: 0;
  margin: 0;
}
.cid-tpTNJp6Gm5 .form1 {
  margin-top: 30px;
}
.cid-tpTNJp6Gm5 .fill-light-wrapper {
  fill: #ffffff;
  z-index: 2 !important;
  top: 0;
}
@media (max-width: 768px) {
  .cid-tpTNJp6Gm5 .md-pb {
    margin-bottom: 30px;
  }
}
.cid-tqFZZUWdSo {
  padding-top: 3rem;
  padding-bottom: 2rem;
  background-color: #101840;
}
.cid-tqFZZUWdSo .mbr-fallback-image.disabled {
  display: none;
}
.cid-tqFZZUWdSo .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tqFZZUWdSo .container {
  max-width: 1600px;
}
.cid-tqFZZUWdSo .text-wrapper {
  width: 100%;
  margin-bottom: 100px;
}
@media (max-width: 991px) {
  .cid-tqFZZUWdSo .text-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 767px) {
  .cid-tqFZZUWdSo .text-wrapper {
    margin-bottom: 50px;
  }
}
.cid-tqFZZUWdSo .mbr-section-title {
  color: #ffffff;
}
.cid-tqFZZUWdSo .content-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 0.83rem;
}
@media (max-width: 991px) {
  .cid-tqFZZUWdSo .content-wrapper {
    grid-template-columns: 1fr;
  }
}
.cid-tqFZZUWdSo .card-bg-item {
  padding: 3px;
  background-color: #ffffff;
  border-radius: 2.3rem;
}
.cid-tqFZZUWdSo .card-item {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  width: 100%;
  max-width: 100%;
  padding: 40px;
  background-color: #ffffff;
  border-radius: 2.08rem;
  height: 100%;
}
@media (max-width: 767px) {
  .cid-tqFZZUWdSo .card-item {
    padding-right: 6vw;
    padding-left: 6vw;
  }
}
.cid-tqFZZUWdSo .text-container {
  margin-bottom: 40px;
}
@media (max-width: 991px) {
  .cid-tqFZZUWdSo .text-container {
    margin-bottom: 24px;
  }
}
.cid-tqFZZUWdSo .card-title {
  color: #212132;
}
.cid-tqFZZUWdSo .mbr-text {
  color: #212132;
  opacity: 0.6;
  margin-top: 24px;
}
@media (max-width: 991px) {
  .cid-tqFZZUWdSo .mbr-text {
    margin-top: 16px;
  }
}
.cid-tqFZZUWdSo .price-text {
  color: #212132;
  margin-bottom: 12px;
}
@media (max-width: 991px) {
  .cid-tqFZZUWdSo .price-text {
    margin-bottom: 8px;
  }
}
.cid-tqFZZUWdSo .mbr-section-btn {
  margin-top: 24px;
}
@media (max-width: 991px) {
  .cid-tqFZZUWdSo .mbr-section-btn {
    margin-top: 16px;
  }
}
.cid-tqFZZUWdSo .custom-section-btn {
  width: 100%;
  margin-left: 0;
}
.cid-tqFZZUWdSo .custom-section-btn .btn {
  width: 100%;
  min-height: 85px;
}
.cid-tqFZZUWdSo .list {
  margin-top: 40px;
}
@media (max-width: 991px) {
  .cid-tqFZZUWdSo .list {
    margin-top: 24px;
  }
}
.cid-tqFZZUWdSo .list-title {
  color: #212132;
  opacity: 0.6;
  margin-bottom: 12px;
}
.cid-tqFZZUWdSo .item-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 13px;
  border-radius: 0.625rem;
  background-color: #f1f5f7;
  margin-bottom: 0.125rem;
}
@media (max-width: 991px) {
  .cid-tqFZZUWdSo .item-wrap {
    padding: 8px;
  }
}
.cid-tqFZZUWdSo .list-text {
  color: #212132;
}
.cid-tqFZZUWdSo .iconfont-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  min-height: 32px;
  min-width: 32px;
  margin-left: 8px;
  background-color: #ffe700;
}
.cid-tqFZZUWdSo .iconfont-wrapper .mbr-iconfont {
  font-size: 15px;
  color: #212132;
}
.cid-tqFZZUWdSo .card-bg-item:nth-child(2) {
  background-image: linear-gradient(180deg, #ffdd65 2.76%, #ffaa5c 29.66%, #ff49c0 61%, #8a61ff 99.93%);
}
.cid-tqFZZWHyVC {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tqFZZWHyVC nav.navbar {
  position: fixed;
}
.cid-tqFZZWHyVC .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-tqFZZWHyVC .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tqFZZWHyVC .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tqFZZWHyVC .dropdown-item:hover,
.cid-tqFZZWHyVC .dropdown-item:focus {
  background: #101840 !important;
  color: white !important;
}
.cid-tqFZZWHyVC .dropdown-item:hover span {
  color: white;
}
.cid-tqFZZWHyVC .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tqFZZWHyVC .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tqFZZWHyVC .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tqFZZWHyVC .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tqFZZWHyVC .nav-link {
  position: relative;
}
.cid-tqFZZWHyVC .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-tqFZZWHyVC .container {
    flex-wrap: nowrap;
  }
}
.cid-tqFZZWHyVC .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tqFZZWHyVC .dropdown-menu,
.cid-tqFZZWHyVC .navbar.opened {
  background: #101840 !important;
}
.cid-tqFZZWHyVC .nav-item:focus,
.cid-tqFZZWHyVC .nav-link:focus {
  outline: none;
}
.cid-tqFZZWHyVC .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tqFZZWHyVC .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tqFZZWHyVC .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tqFZZWHyVC .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tqFZZWHyVC .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tqFZZWHyVC .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tqFZZWHyVC .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: #101840;
}
.cid-tqFZZWHyVC .navbar.opened {
  transition: all 0.3s;
}
.cid-tqFZZWHyVC .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tqFZZWHyVC .navbar .navbar-logo img {
  width: auto;
}
.cid-tqFZZWHyVC .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tqFZZWHyVC .navbar.collapsed {
  justify-content: center;
}
.cid-tqFZZWHyVC .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tqFZZWHyVC .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-tqFZZWHyVC .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tqFZZWHyVC .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tqFZZWHyVC .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-tqFZZWHyVC .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tqFZZWHyVC .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tqFZZWHyVC .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tqFZZWHyVC .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tqFZZWHyVC .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tqFZZWHyVC .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tqFZZWHyVC .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tqFZZWHyVC .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-tqFZZWHyVC .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tqFZZWHyVC .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tqFZZWHyVC .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tqFZZWHyVC .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tqFZZWHyVC .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tqFZZWHyVC .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-tqFZZWHyVC .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-tqFZZWHyVC .navbar.navbar-short {
  min-height: 60px;
}
.cid-tqFZZWHyVC .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tqFZZWHyVC .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tqFZZWHyVC .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-tqFZZWHyVC .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tqFZZWHyVC .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tqFZZWHyVC .dropdown-item.active,
.cid-tqFZZWHyVC .dropdown-item:active {
  background-color: transparent;
}
.cid-tqFZZWHyVC .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tqFZZWHyVC .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tqFZZWHyVC .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tqFZZWHyVC .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #101840;
}
.cid-tqFZZWHyVC .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tqFZZWHyVC .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tqFZZWHyVC ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tqFZZWHyVC .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tqFZZWHyVC button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tqFZZWHyVC button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tqFZZWHyVC button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tqFZZWHyVC button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tqFZZWHyVC button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tqFZZWHyVC button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tqFZZWHyVC nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tqFZZWHyVC nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tqFZZWHyVC nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tqFZZWHyVC nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tqFZZWHyVC .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tqFZZWHyVC a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tqFZZWHyVC .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-tqFZZWHyVC .navbar {
    height: 70px;
  }
  .cid-tqFZZWHyVC .navbar.opened {
    height: auto;
  }
  .cid-tqFZZWHyVC .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tqFZZXfGrf {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-tqFZZXfGrf .mbr-fallback-image.disabled {
  display: none;
}
.cid-tqFZZXfGrf .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tqFZZXfGrf .container {
  max-width: 1280px;
}
.cid-tqFZZXfGrf .content-wrapper {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  background: #212132;
  padding: 4rem;
  border-radius: 4.17rem;
}
@media (max-width: 991px) {
  .cid-tqFZZXfGrf .content-wrapper {
    flex-wrap: wrap;
    padding: 40px;
  }
}
@media (max-width: 767px) {
  .cid-tqFZZXfGrf .content-wrapper {
    padding: 40px 6vw;
  }
}
.cid-tqFZZXfGrf .text-wrapper {
  display: flex;
  flex-direction: column;
  width: 45%;
}
@media (max-width: 991px) {
  .cid-tqFZZXfGrf .text-wrapper {
    width: 100%;
    margin-bottom: 10px;
  }
}
.cid-tqFZZXfGrf .label-container {
  padding: 4px 12px;
  border-radius: 100vw;
  background-color: #ffffff;
  margin-bottom: 20px;
  width: max-content;
  margin-right: auto;
}
@media (max-width: 991px) {
  .cid-tqFZZXfGrf .label-container {
    margin-bottom: 12px;
  }
}
.cid-tqFZZXfGrf .label-text {
  color: #212132;
}
.cid-tqFZZXfGrf .mbr-section-title {
  color: #ffe700;
  margin-bottom: 1.5rem;
  width: 100%;
}
@media (max-width: 991px) {
  .cid-tqFZZXfGrf .mbr-section-title {
    margin-bottom: 24px;
  }
}
.cid-tqFZZXfGrf .mbr-section-subtitle {
  color: #ffffff;
  margin-top: auto;
  width: 100%;
}
@media (max-width: 991px) {
  .cid-tqFZZXfGrf .mbr-section-subtitle {
    margin-top: 0;
  }
}
.cid-tqFZZXfGrf .card-container {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: stretch;
  width: 60%;
  right: -8rem;
}
@media (max-width: 1599px) {
  .cid-tqFZZXfGrf .card-container {
    right: calc(-4vw - 4rem);
  }
}
@media (max-width: 991px) {
  .cid-tqFZZXfGrf .card-container {
    width: 100%;
    margin-top: 40px;
    left: 0;
    right: 0;
  }
}
.cid-tqFZZXfGrf .card-item {
  position: relative;
  width: 46%;
  margin: 2%;
  transition: .3s all;
  min-height: 290px;
}
@media (max-width: 1599px) {
  .cid-tqFZZXfGrf .card-item {
    min-height: 240px;
  }
}
@media (max-width: 1199px) {
  .cid-tqFZZXfGrf .card-item {
    min-height: 185px;
  }
}
.cid-tqFZZXfGrf .card-item:hover {
  transform: scale(0.96);
}
@media (max-width: 575px) {
  .cid-tqFZZXfGrf .card-item {
    width: 96%;
    margin: 2%;
    min-height: auto;
  }
}
.cid-tqFZZXfGrf .card-bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 5;
  background-image: linear-gradient(135deg, #ffdd65 2.76%, #ffaa5c 29.66%, #ff49c0 61%, #b67dff 99.93%);
  filter: blur(1rem);
}
.cid-tqFZZXfGrf .card-border {
  position: relative;
  z-index: 6;
  width: 100%;
  height: 100%;
  padding: 5px;
  border-radius: 2.08rem;
  background-image: linear-gradient(135deg, #ffdd65 2.76%, #ffaa5c 29.66%, #ff49c0 61%, #b67dff 99.93%);
}
.cid-tqFZZXfGrf .card-box {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  width: 100%;
  height: 100%;
  padding: 60px;
  background-color: #212132;
  border-radius: 1.76rem;
}
@media (max-width: 991px) {
  .cid-tqFZZXfGrf .card-box {
    padding: 16px;
  }
}
.cid-tqFZZXfGrf .iconfont-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 40px;
  padding: 3px;
  min-width: 32px;
  min-height: 32px;
  width: max-content;
  margin-right: auto;
}
@media (max-width: 991px) {
  .cid-tqFZZXfGrf .iconfont-wrapper {
    margin-bottom: 24px;
  }
}
.cid-tqFZZXfGrf .iconfont-wrapper .mbr-iconfont {
  color: #ffe700;
  font-size: 64px;
}
.cid-tqFZZXfGrf .card-title {
  margin-top: auto;
  color: #ffffff;
}
.cid-tqFZZXfGrf P {
  color: #ffffff;
}
.cid-tqFZZXzf2z {
  padding-top: 165px;
  padding-bottom: 60px;
  background-color: #101840;
}
.cid-tqFZZXzf2z ul {
  padding: 0;
  margin: 0;
}
.cid-tqFZZXzf2z ul li {
  list-style: none;
}
.cid-tqFZZXzf2z ul li h4 {
  margin: 0;
}
.cid-tqFZZXzf2z ul li h4.display-4 {
  line-height: 1.75;
}
.cid-tqFZZXzf2z .item {
  color: #ffffff;
  text-align: center;
}
.cid-tqFZZXzf2z .col-title {
  color: #ffffff;
  text-align: center;
}
.cid-tqFZZXzf2z .col-title.display-2 {
  font-size: 2.1rem;
}
.cid-tqFZZXzf2z .col-title1 {
  margin-bottom: 40px;
}
.cid-tqFZZXzf2z .form-group,
.cid-tqFZZXzf2z .mbr-section-btn {
  margin: 0;
  padding: 0;
  display: -webkit-flex;
}
.cid-tqFZZXzf2z .form-control {
  display: inline-block;
  border: none;
  border-radius: 25px;
  width: 100%;
  padding: 0 25px;
  background: rgba(255, 255, 255, 0.07);
  color: #ffffff;
  margin-right: 10px;
  height: 50px;
  line-height: 50px;
}
.cid-tqFZZXzf2z .form-control::-webkit-input-placeholder {
  color: #ffffff;
}
.cid-tqFZZXzf2z .form-control::-moz-placeholder {
  color: #ffffff;
}
.cid-tqFZZXzf2z .form-control:-moz-placeholder {
  color: #ffffff;
}
.cid-tqFZZXzf2z .form-control:-ms-input-placeholder {
  color: #ffffff;
}
.cid-tqFZZXzf2z .col + .mbr-section-btn .btn,
.cid-tqFZZXzf2z .col-auto + .mbr-section-btn .btn {
  margin: 0 !important;
  height: 100%;
  border-radius: 30px !important;
  padding: 14.5px 26px 14.5px !important;
}
.cid-tqFZZXzf2z .col + .mbr-section-btn .btn.display-4,
.cid-tqFZZXzf2z .col-auto + .mbr-section-btn .btn.display-4 {
  font-size: 13px;
}
.cid-tqFZZXzf2z .col + .mbr-section-btn .btn:hover,
.cid-tqFZZXzf2z .col-auto + .mbr-section-btn .btn:hover {
  box-shadow: 0 0 0 5px rgba(132, 138, 189, 0.2);
}
.cid-tqFZZXzf2z .dragArea > *:nth-last-child(2).col,
.cid-tqFZZXzf2z .dragArea > *:nth-last-child(2).col-auto,
.cid-tqFZZXzf2z .col + .mbr-section-btn,
.cid-tqFZZXzf2z .col-auto + .mbr-section-btn {
  padding-left: 0;
  padding-right: 0;
  margin: 0;
}
.cid-tqFZZXzf2z .form1 {
  margin-top: 30px;
}
.cid-tqFZZXzf2z .fill-light-wrapper {
  fill: #ffffff;
  z-index: 2 !important;
  top: 0;
}
@media (max-width: 768px) {
  .cid-tqFZZXzf2z .md-pb {
    margin-bottom: 30px;
  }
}
.cid-trTCL2CZWL {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-trTCL2CZWL .badge {
  display: inline-block;
  border-radius: 10rem;
  padding: 8px 14px 6px 14px;
  color: #101840;
  background-color: rgba(132, 138, 189, 0.15);
  margin-bottom: 16px;
}
.cid-trTCL2CZWL .badge.display-4 {
  font-size: 11px;
  line-height: 1.81;
  letter-spacing: 0.5px;
}
.cid-trTCL2CZWL .main-title {
  color: #404040;
  margin-bottom: 26px;
}
.cid-trTCL2CZWL .main-title.display-2 {
  line-height: 1.375;
}
.cid-trTCL2CZWL .mbr-section-subtitle {
  color: #5f86be;
  font-weight: 600;
  margin-bottom: 21px;
}
.cid-trTCL2CZWL .mbr-text {
  color: #606060;
}
.cid-trTCL2CZWL .mbr-text.display-4 {
  line-height: 1.75;
}
.cid-trTCL2CZWL .mbr-section-btn {
  margin-top: 24px;
}
.cid-trTCL2CZWL .mbr-section-btn .btn {
  margin-left: 14.1px;
  padding: 18px 26px;
}
.cid-trTCL2CZWL .mbr-section-btn .btn.display-4 {
  font-size: 13px;
  line-height: 1;
}
.cid-trTCL2CZWL .mbr-section-btn .btn:hover {
  box-shadow: 0 0 0 5px rgba(60, 113, 211, 0.2) !important;
  -webkit-box-shadow: 0 0 0 5px rgba(60, 113, 211, 0.2) !important;
}
.cid-trTCL2CZWL .mbr-text,
.cid-trTCL2CZWL .mbr-section-btn P {
  text-align: left;
}
.cid-trTCL2CZWL .main-title,
.cid-trTCL2CZWL .mbr-section-btn {
  color: #4d30b0;
}
.cid-trTCL2CZWL .mbr-section-subtitle,
.cid-trTCL2CZWL .mbr-section-btn {
  color: #4d30b0;
}
.cid-trTCL3FLPQ {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-trTCL3FLPQ nav.navbar {
  position: fixed;
}
.cid-trTCL3FLPQ .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-trTCL3FLPQ .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-trTCL3FLPQ .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-trTCL3FLPQ .dropdown-item:hover,
.cid-trTCL3FLPQ .dropdown-item:focus {
  background: #101840 !important;
  color: white !important;
}
.cid-trTCL3FLPQ .dropdown-item:hover span {
  color: white;
}
.cid-trTCL3FLPQ .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-trTCL3FLPQ .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-trTCL3FLPQ .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-trTCL3FLPQ .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-trTCL3FLPQ .nav-link {
  position: relative;
}
.cid-trTCL3FLPQ .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-trTCL3FLPQ .container {
    flex-wrap: nowrap;
  }
}
.cid-trTCL3FLPQ .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-trTCL3FLPQ .dropdown-menu,
.cid-trTCL3FLPQ .navbar.opened {
  background: #101840 !important;
}
.cid-trTCL3FLPQ .nav-item:focus,
.cid-trTCL3FLPQ .nav-link:focus {
  outline: none;
}
.cid-trTCL3FLPQ .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-trTCL3FLPQ .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-trTCL3FLPQ .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-trTCL3FLPQ .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-trTCL3FLPQ .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-trTCL3FLPQ .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-trTCL3FLPQ .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: #101840;
}
.cid-trTCL3FLPQ .navbar.opened {
  transition: all 0.3s;
}
.cid-trTCL3FLPQ .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-trTCL3FLPQ .navbar .navbar-logo img {
  width: auto;
}
.cid-trTCL3FLPQ .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-trTCL3FLPQ .navbar.collapsed {
  justify-content: center;
}
.cid-trTCL3FLPQ .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-trTCL3FLPQ .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-trTCL3FLPQ .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-trTCL3FLPQ .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-trTCL3FLPQ .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-trTCL3FLPQ .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-trTCL3FLPQ .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-trTCL3FLPQ .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-trTCL3FLPQ .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-trTCL3FLPQ .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-trTCL3FLPQ .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-trTCL3FLPQ .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-trTCL3FLPQ .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-trTCL3FLPQ .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-trTCL3FLPQ .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-trTCL3FLPQ .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-trTCL3FLPQ .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-trTCL3FLPQ .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-trTCL3FLPQ .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-trTCL3FLPQ .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-trTCL3FLPQ .navbar.navbar-short {
  min-height: 60px;
}
.cid-trTCL3FLPQ .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-trTCL3FLPQ .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-trTCL3FLPQ .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-trTCL3FLPQ .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-trTCL3FLPQ .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-trTCL3FLPQ .dropdown-item.active,
.cid-trTCL3FLPQ .dropdown-item:active {
  background-color: transparent;
}
.cid-trTCL3FLPQ .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-trTCL3FLPQ .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-trTCL3FLPQ .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-trTCL3FLPQ .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #101840;
}
.cid-trTCL3FLPQ .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-trTCL3FLPQ .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-trTCL3FLPQ ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-trTCL3FLPQ .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-trTCL3FLPQ button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-trTCL3FLPQ button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-trTCL3FLPQ button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-trTCL3FLPQ button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-trTCL3FLPQ button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-trTCL3FLPQ button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-trTCL3FLPQ nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-trTCL3FLPQ nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-trTCL3FLPQ nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-trTCL3FLPQ nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-trTCL3FLPQ .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-trTCL3FLPQ a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-trTCL3FLPQ .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-trTCL3FLPQ .navbar {
    height: 70px;
  }
  .cid-trTCL3FLPQ .navbar.opened {
    height: auto;
  }
  .cid-trTCL3FLPQ .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-trTFaaGB28 {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-trTFaaGB28 .row {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-trTFaaGB28 img {
  width: 100%;
}
.cid-trTFaaGB28 .badge {
  display: inline-block;
  border-radius: 10rem;
  padding: 8px 14px 6px 14px;
  color: #101840;
  background-color: rgba(132, 138, 189, 0.15);
  margin-bottom: 26px;
}
.cid-trTFaaGB28 .badge.display-4 {
  font-size: 11px;
  line-height: 1.81;
  letter-spacing: 0.5px;
}
.cid-trTFaaGB28 .mbr-section-subtitle {
  color: #999999;
  font-weight: 700;
  margin-bottom: 21px;
}
.cid-trTFaaGB28 .mbr-section-title {
  margin: 0;
  font-weight: 500;
}
.cid-trTFaaGB28 .mbr-section-title.display-2 {
  line-height: 1.375;
}
.cid-trTFaaGB28 .contents {
  margin-top: 36px;
}
.cid-trTFaaGB28 .contents .content-text {
  color: #606060;
  font-weight: 300;
}
.cid-trTFaaGB28 .mbr-section-btn {
  margin-top: 8px;
}
.cid-trTFaaGB28 .mbr-section-btn .btn {
  padding: 18px 26px;
}
.cid-trTFaaGB28 .mbr-section-btn .btn.display-4 {
  font-size: 13px;
  line-height: 1;
}
.cid-trTFaaGB28 .mbr-section-btn .btn:hover {
  box-shadow: 0 0 0 5px rgba(60, 113, 211, 0.2) !important;
  -webkit-box-shadow: 0 0 0 5px rgba(60, 113, 211, 0.2) !important;
}
.cid-trTFaaGB28 .mbr-list {
  margin-top: 20px;
  color: #606060;
}
.cid-trTFaaGB28 .mbr-list .list {
  list-style-type: none;
  padding-left: 0;
}
.cid-trTFaaGB28 .mbr-list .list li {
  line-height: 1.75;
}
.cid-trTFaaGB28 .mbr-list .list li:before {
  font-weight: 900;
  color: #5ca7db;
  display: inline-block;
  content: "✓";
  text-align: center;
  line-height: 1.5em;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  width: 25px;
  height: 25px;
}
.cid-trTFaaGB28 .mbr-section-title,
.cid-trTFaaGB28 .mbr-section-btn {
  color: #4d30b0;
}
.cid-trTCL6UX4P {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-trTCL6UX4P .mbr-fallback-image.disabled {
  display: none;
}
.cid-trTCL6UX4P .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-trTCL6UX4P .container {
  max-width: 1280px;
}
.cid-trTCL6UX4P .content-wrapper {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  background: #101840;
  padding: 4rem;
  border-radius: 4.17rem;
}
@media (max-width: 991px) {
  .cid-trTCL6UX4P .content-wrapper {
    flex-wrap: wrap;
    padding: 40px;
  }
}
@media (max-width: 767px) {
  .cid-trTCL6UX4P .content-wrapper {
    padding: 40px 6vw;
  }
}
.cid-trTCL6UX4P .text-wrapper {
  display: flex;
  flex-direction: column;
  width: 45%;
}
@media (max-width: 991px) {
  .cid-trTCL6UX4P .text-wrapper {
    width: 100%;
    margin-bottom: 10px;
  }
}
.cid-trTCL6UX4P .label-container {
  padding: 4px 12px;
  border-radius: 100vw;
  background-color: #ffffff;
  margin-bottom: 20px;
  width: max-content;
  margin-right: auto;
}
@media (max-width: 991px) {
  .cid-trTCL6UX4P .label-container {
    margin-bottom: 12px;
  }
}
.cid-trTCL6UX4P .label-text {
  color: #212132;
}
.cid-trTCL6UX4P .mbr-section-title {
  color: #ffe700;
  margin-bottom: 1.5rem;
  width: 100%;
}
@media (max-width: 991px) {
  .cid-trTCL6UX4P .mbr-section-title {
    margin-bottom: 24px;
  }
}
.cid-trTCL6UX4P .mbr-section-subtitle {
  color: #ffffff;
  margin-top: auto;
  width: 100%;
}
@media (max-width: 991px) {
  .cid-trTCL6UX4P .mbr-section-subtitle {
    margin-top: 0;
  }
}
.cid-trTCL6UX4P .card-container {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: stretch;
  width: 60%;
  right: -8rem;
}
@media (max-width: 1599px) {
  .cid-trTCL6UX4P .card-container {
    right: calc(-4vw - 4rem);
  }
}
@media (max-width: 991px) {
  .cid-trTCL6UX4P .card-container {
    width: 100%;
    margin-top: 40px;
    left: 0;
    right: 0;
  }
}
.cid-trTCL6UX4P .card-item {
  position: relative;
  width: 46%;
  margin: 2%;
  transition: .3s all;
  min-height: 290px;
}
@media (max-width: 1599px) {
  .cid-trTCL6UX4P .card-item {
    min-height: 240px;
  }
}
@media (max-width: 1199px) {
  .cid-trTCL6UX4P .card-item {
    min-height: 185px;
  }
}
.cid-trTCL6UX4P .card-item:hover {
  transform: scale(0.96);
}
@media (max-width: 575px) {
  .cid-trTCL6UX4P .card-item {
    width: 96%;
    margin: 2%;
    min-height: auto;
  }
}
.cid-trTCL6UX4P .card-bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 5;
  background-image: linear-gradient(135deg, #ffdd65 2.76%, #ffaa5c 29.66%, #ff49c0 61%, #b67dff 99.93%);
  filter: blur(1rem);
}
.cid-trTCL6UX4P .card-border {
  position: relative;
  z-index: 6;
  width: 100%;
  height: 100%;
  padding: 5px;
  border-radius: 2.08rem;
  background-image: linear-gradient(135deg, #ffdd65 2.76%, #ffaa5c 29.66%, #ff49c0 61%, #b67dff 99.93%);
}
.cid-trTCL6UX4P .card-box {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  width: 100%;
  height: 100%;
  padding: 60px;
  background-color: #212132;
  border-radius: 1.76rem;
}
@media (max-width: 991px) {
  .cid-trTCL6UX4P .card-box {
    padding: 16px;
  }
}
.cid-trTCL6UX4P .iconfont-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 40px;
  padding: 3px;
  min-width: 32px;
  min-height: 32px;
  width: max-content;
  margin-right: auto;
}
@media (max-width: 991px) {
  .cid-trTCL6UX4P .iconfont-wrapper {
    margin-bottom: 24px;
  }
}
.cid-trTCL6UX4P .iconfont-wrapper .mbr-iconfont {
  color: #ffe700;
  font-size: 64px;
}
.cid-trTCL6UX4P .card-title {
  margin-top: auto;
  color: #ffffff;
}
.cid-trTCL6UX4P P {
  color: #ffffff;
}
.cid-trTCL7gBlD {
  padding-top: 165px;
  padding-bottom: 60px;
  background-color: #101840;
}
.cid-trTCL7gBlD ul {
  padding: 0;
  margin: 0;
}
.cid-trTCL7gBlD ul li {
  list-style: none;
}
.cid-trTCL7gBlD ul li h4 {
  margin: 0;
}
.cid-trTCL7gBlD ul li h4.display-4 {
  line-height: 1.75;
}
.cid-trTCL7gBlD .item {
  color: #ffffff;
  text-align: center;
}
.cid-trTCL7gBlD .col-title {
  color: #ffffff;
  text-align: center;
}
.cid-trTCL7gBlD .col-title.display-2 {
  font-size: 2.1rem;
}
.cid-trTCL7gBlD .col-title1 {
  margin-bottom: 40px;
}
.cid-trTCL7gBlD .form-group,
.cid-trTCL7gBlD .mbr-section-btn {
  margin: 0;
  padding: 0;
  display: -webkit-flex;
}
.cid-trTCL7gBlD .form-control {
  display: inline-block;
  border: none;
  border-radius: 25px;
  width: 100%;
  padding: 0 25px;
  background: rgba(255, 255, 255, 0.07);
  color: #ffffff;
  margin-right: 10px;
  height: 50px;
  line-height: 50px;
}
.cid-trTCL7gBlD .form-control::-webkit-input-placeholder {
  color: #ffffff;
}
.cid-trTCL7gBlD .form-control::-moz-placeholder {
  color: #ffffff;
}
.cid-trTCL7gBlD .form-control:-moz-placeholder {
  color: #ffffff;
}
.cid-trTCL7gBlD .form-control:-ms-input-placeholder {
  color: #ffffff;
}
.cid-trTCL7gBlD .col + .mbr-section-btn .btn,
.cid-trTCL7gBlD .col-auto + .mbr-section-btn .btn {
  margin: 0 !important;
  height: 100%;
  border-radius: 30px !important;
  padding: 14.5px 26px 14.5px !important;
}
.cid-trTCL7gBlD .col + .mbr-section-btn .btn.display-4,
.cid-trTCL7gBlD .col-auto + .mbr-section-btn .btn.display-4 {
  font-size: 13px;
}
.cid-trTCL7gBlD .col + .mbr-section-btn .btn:hover,
.cid-trTCL7gBlD .col-auto + .mbr-section-btn .btn:hover {
  box-shadow: 0 0 0 5px rgba(132, 138, 189, 0.2);
}
.cid-trTCL7gBlD .dragArea > *:nth-last-child(2).col,
.cid-trTCL7gBlD .dragArea > *:nth-last-child(2).col-auto,
.cid-trTCL7gBlD .col + .mbr-section-btn,
.cid-trTCL7gBlD .col-auto + .mbr-section-btn {
  padding-left: 0;
  padding-right: 0;
  margin: 0;
}
.cid-trTCL7gBlD .form1 {
  margin-top: 30px;
}
.cid-trTCL7gBlD .fill-light-wrapper {
  fill: #ffffff;
  z-index: 2 !important;
  top: 0;
}
@media (max-width: 768px) {
  .cid-trTCL7gBlD .md-pb {
    margin-bottom: 30px;
  }
}
.cid-uFNv3KF5Y2 {
  padding-top: 60px;
  padding-bottom: 45px;
  background-color: #ffffff;
  overflow: hidden;
}
.cid-uFNv3KF5Y2 svg {
  position: absolute;
  bottom: 6rem;
  left: 50%;
  transform: translate(-50%) scale(2, 1.6);
}
.cid-uFNv3KF5Y2 #e2_shape {
  fill: #ffffff !important;
}
.cid-uFNv3KF5Y2 .mbr-text.display-5 {
  font-size: 26px;
}
.cid-uFNv3KF5Y2 .btn.display-4 {
  font-size: 14px;
  line-height: 1;
}
.cid-uFNv3KF5Y2 img {
  margin-left: auto;
  margin-right: auto;
}
.cid-uFNv3KF5Y2 .mbr-section-title,
.cid-uFNv3KF5Y2 .icon-wrap {
  color: #101840;
}
.cid-uFNv3KF5Y2 .mbr-text,
.cid-uFNv3KF5Y2 .mbr-section-btn {
  color: #101840;
}
.cid-uFNv3Lhpg5 {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-uFNv3Lhpg5 img {
  width: 100%;
}
.cid-uFNv3Lhpg5 .badge {
  display: inline-block;
  border-radius: 10rem;
  padding: 8px 14px 6px 14px;
  color: #101840;
  background-color: rgba(132, 138, 189, 0.15);
}
.cid-uFNv3Lhpg5 .badge.display-4 {
  font-size: 11px;
  line-height: 1.81;
  letter-spacing: 0.5px;
}
.cid-uFNv3Lhpg5 .main-title {
  color: #101840;
}
.cid-uFNv3Lhpg5 .mbr-section-subtitle {
  color: #101840;
  font-weight: 700;
  margin-bottom: 21px;
}
.cid-uFNv3Lhpg5 .mbr-text {
  color: #606060;
}
.cid-uFNv3Lhpg5 .cards .card {
  margin-bottom: 34px;
}
.cid-uFNv3Lhpg5 .cards .card .card-title {
  font-weight: 600;
  color: #404040;
  margin-bottom: 16px;
}
.cid-uFNv3Lhpg5 .cards .card .mbr-text {
  color: #606060;
}
@media (max-width: 768px) {
  .cid-uFNv3Lhpg5 .card {
    text-align: left;
  }
  .cid-uFNv3Lhpg5 .card .card-title {
    text-align: left;
  }
}
.cid-uFNv3Lhpg5 .mbr-text,
.cid-uFNv3Lhpg5 .mbr-section-btn {
  text-align: left;
}
.cid-uFNv3Lhpg5 .cards .card .card-title {
  color: #101840;
}
.cid-uFNv3LOySs {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-uFNv3LOySs .row {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-uFNv3LOySs img {
  width: 100%;
}
.cid-uFNv3LOySs .badge {
  display: inline-block;
  border-radius: 10rem;
  padding: 8px 14px 6px 14px;
  color: #101840;
  background-color: rgba(132, 138, 189, 0.15);
}
.cid-uFNv3LOySs .badge.display-4 {
  font-size: 11px;
  line-height: 1.81;
  letter-spacing: 0.5px;
}
.cid-uFNv3LOySs .main-title {
  color: #101840;
}
.cid-uFNv3LOySs .mbr-section-subtitle {
  color: #999999;
  font-weight: 700;
  margin-bottom: 21px;
}
.cid-uFNv3LOySs .mbr-text {
  color: #606060;
}
.cid-uFNv3LOySs .cards .card {
  margin-bottom: 34px;
}
.cid-uFNv3LOySs .cards .card .card-title {
  font-weight: 600;
  color: #404040;
  margin-bottom: 16px;
}
.cid-uFNv3LOySs .cards .card .mbr-text {
  color: #606060;
}
@media (max-width: 768px) {
  .cid-uFNv3LOySs .card {
    text-align: left;
  }
  .cid-uFNv3LOySs .card .card-title {
    text-align: left;
  }
}
.cid-uFNv3LOySs .mbr-text,
.cid-uFNv3LOySs .mbr-section-btn {
  text-align: left;
}
.cid-uFNv3LOySs .cards .card .card-title {
  color: #101840;
}
.cid-uFNv3McecA {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-uFNv3McecA img {
  width: 100%;
}
.cid-uFNv3McecA .badge {
  display: inline-block;
  border-radius: 10rem;
  padding: 8px 14px 6px 14px;
  color: #101840;
  background-color: rgba(132, 138, 189, 0.15);
}
.cid-uFNv3McecA .badge.display-4 {
  font-size: 11px;
  line-height: 1.81;
  letter-spacing: 0.5px;
}
.cid-uFNv3McecA .main-title {
  color: #101840;
}
.cid-uFNv3McecA .mbr-section-subtitle {
  color: #999999;
  font-weight: 700;
  margin-bottom: 21px;
}
.cid-uFNv3McecA .mbr-text {
  color: #606060;
}
.cid-uFNv3McecA .cards .card {
  margin-bottom: 34px;
}
.cid-uFNv3McecA .cards .card .card-title {
  font-weight: 600;
  color: #404040;
  margin-bottom: 16px;
}
.cid-uFNv3McecA .cards .card .mbr-text {
  color: #606060;
}
@media (max-width: 768px) {
  .cid-uFNv3McecA .card {
    text-align: left;
  }
  .cid-uFNv3McecA .card .card-title {
    text-align: left;
  }
}
.cid-uFNv3McecA .mbr-text,
.cid-uFNv3McecA .mbr-section-btn {
  text-align: left;
}
.cid-uFNv3McecA .cards .card .card-title {
  color: #101840;
}
.cid-uFNv3Mysk1 {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-uFNv3Mysk1 .row {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-uFNv3Mysk1 img {
  width: 100%;
}
.cid-uFNv3Mysk1 .badge {
  display: inline-block;
  border-radius: 10rem;
  padding: 8px 14px 6px 14px;
  color: #101840;
  background-color: rgba(132, 138, 189, 0.15);
}
.cid-uFNv3Mysk1 .badge.display-4 {
  font-size: 11px;
  line-height: 1.81;
  letter-spacing: 0.5px;
}
.cid-uFNv3Mysk1 .main-title {
  color: #101840;
}
.cid-uFNv3Mysk1 .mbr-section-subtitle {
  color: #999999;
  font-weight: 700;
  margin-bottom: 21px;
}
.cid-uFNv3Mysk1 .mbr-text {
  color: #606060;
}
.cid-uFNv3Mysk1 .cards .card {
  margin-bottom: 34px;
}
.cid-uFNv3Mysk1 .cards .card .card-title {
  font-weight: 600;
  color: #404040;
  margin-bottom: 16px;
}
.cid-uFNv3Mysk1 .cards .card .mbr-text {
  color: #606060;
}
@media (max-width: 768px) {
  .cid-uFNv3Mysk1 .card {
    text-align: left;
  }
  .cid-uFNv3Mysk1 .card .card-title {
    text-align: left;
  }
}
.cid-uFNv3Mysk1 .mbr-text,
.cid-uFNv3Mysk1 .mbr-section-btn {
  text-align: left;
}
.cid-uFNv3Mysk1 .cards .card .card-title {
  color: #101840;
}
.cid-uFNv3MXLck {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uFNv3MXLck nav.navbar {
  position: fixed;
}
.cid-uFNv3MXLck .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-uFNv3MXLck .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uFNv3MXLck .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uFNv3MXLck .dropdown-item:hover,
.cid-uFNv3MXLck .dropdown-item:focus {
  background: #101840 !important;
  color: white !important;
}
.cid-uFNv3MXLck .dropdown-item:hover span {
  color: white;
}
.cid-uFNv3MXLck .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uFNv3MXLck .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uFNv3MXLck .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uFNv3MXLck .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uFNv3MXLck .nav-link {
  position: relative;
}
.cid-uFNv3MXLck .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-uFNv3MXLck .container {
    flex-wrap: nowrap;
  }
}
.cid-uFNv3MXLck .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uFNv3MXLck .dropdown-menu,
.cid-uFNv3MXLck .navbar.opened {
  background: #101840 !important;
}
.cid-uFNv3MXLck .nav-item:focus,
.cid-uFNv3MXLck .nav-link:focus {
  outline: none;
}
.cid-uFNv3MXLck .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uFNv3MXLck .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uFNv3MXLck .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uFNv3MXLck .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uFNv3MXLck .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uFNv3MXLck .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uFNv3MXLck .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: #101840;
}
.cid-uFNv3MXLck .navbar.opened {
  transition: all 0.3s;
}
.cid-uFNv3MXLck .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uFNv3MXLck .navbar .navbar-logo img {
  width: auto;
}
.cid-uFNv3MXLck .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uFNv3MXLck .navbar.collapsed {
  justify-content: center;
}
.cid-uFNv3MXLck .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uFNv3MXLck .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-uFNv3MXLck .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uFNv3MXLck .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uFNv3MXLck .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-uFNv3MXLck .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uFNv3MXLck .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uFNv3MXLck .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uFNv3MXLck .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uFNv3MXLck .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uFNv3MXLck .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uFNv3MXLck .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uFNv3MXLck .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-uFNv3MXLck .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uFNv3MXLck .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uFNv3MXLck .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uFNv3MXLck .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uFNv3MXLck .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uFNv3MXLck .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uFNv3MXLck .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uFNv3MXLck .navbar.navbar-short {
  min-height: 60px;
}
.cid-uFNv3MXLck .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uFNv3MXLck .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uFNv3MXLck .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-uFNv3MXLck .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uFNv3MXLck .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uFNv3MXLck .dropdown-item.active,
.cid-uFNv3MXLck .dropdown-item:active {
  background-color: transparent;
}
.cid-uFNv3MXLck .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uFNv3MXLck .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uFNv3MXLck .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uFNv3MXLck .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #101840;
}
.cid-uFNv3MXLck .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uFNv3MXLck .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uFNv3MXLck ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uFNv3MXLck .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uFNv3MXLck button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uFNv3MXLck button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-uFNv3MXLck button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uFNv3MXLck button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uFNv3MXLck button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uFNv3MXLck button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uFNv3MXLck nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uFNv3MXLck nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uFNv3MXLck nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uFNv3MXLck nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uFNv3MXLck .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uFNv3MXLck a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uFNv3MXLck .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-uFNv3MXLck .navbar {
    height: 70px;
  }
  .cid-uFNv3MXLck .navbar.opened {
    height: auto;
  }
  .cid-uFNv3MXLck .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uFNv3NseLm {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uFNv3NseLm .mbr-fallback-image.disabled {
  display: none;
}
.cid-uFNv3NseLm .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uFNv3NseLm .container {
  max-width: 1280px;
}
.cid-uFNv3NseLm .content-wrapper {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  background: #212132;
  padding: 4rem;
  border-radius: 4.17rem;
}
@media (max-width: 991px) {
  .cid-uFNv3NseLm .content-wrapper {
    flex-wrap: wrap;
    padding: 40px;
  }
}
@media (max-width: 767px) {
  .cid-uFNv3NseLm .content-wrapper {
    padding: 40px 6vw;
  }
}
.cid-uFNv3NseLm .text-wrapper {
  display: flex;
  flex-direction: column;
  width: 45%;
}
@media (max-width: 991px) {
  .cid-uFNv3NseLm .text-wrapper {
    width: 100%;
    margin-bottom: 10px;
  }
}
.cid-uFNv3NseLm .label-container {
  padding: 4px 12px;
  border-radius: 100vw;
  background-color: #ffffff;
  margin-bottom: 20px;
  width: max-content;
  margin-right: auto;
}
@media (max-width: 991px) {
  .cid-uFNv3NseLm .label-container {
    margin-bottom: 12px;
  }
}
.cid-uFNv3NseLm .label-text {
  color: #212132;
}
.cid-uFNv3NseLm .mbr-section-title {
  color: #ffe700;
  margin-bottom: 1.5rem;
  width: 100%;
}
@media (max-width: 991px) {
  .cid-uFNv3NseLm .mbr-section-title {
    margin-bottom: 24px;
  }
}
.cid-uFNv3NseLm .mbr-section-subtitle {
  color: #ffffff;
  margin-top: auto;
  width: 100%;
}
@media (max-width: 991px) {
  .cid-uFNv3NseLm .mbr-section-subtitle {
    margin-top: 0;
  }
}
.cid-uFNv3NseLm .card-container {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: stretch;
  width: 60%;
  right: -8rem;
}
@media (max-width: 1599px) {
  .cid-uFNv3NseLm .card-container {
    right: calc(-4vw - 4rem);
  }
}
@media (max-width: 991px) {
  .cid-uFNv3NseLm .card-container {
    width: 100%;
    margin-top: 40px;
    left: 0;
    right: 0;
  }
}
.cid-uFNv3NseLm .card-item {
  position: relative;
  width: 46%;
  margin: 2%;
  transition: .3s all;
  min-height: 290px;
}
@media (max-width: 1599px) {
  .cid-uFNv3NseLm .card-item {
    min-height: 240px;
  }
}
@media (max-width: 1199px) {
  .cid-uFNv3NseLm .card-item {
    min-height: 185px;
  }
}
.cid-uFNv3NseLm .card-item:hover {
  transform: scale(0.96);
}
@media (max-width: 575px) {
  .cid-uFNv3NseLm .card-item {
    width: 96%;
    margin: 2%;
    min-height: auto;
  }
}
.cid-uFNv3NseLm .card-bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 5;
  background-image: linear-gradient(135deg, #ffdd65 2.76%, #ffaa5c 29.66%, #ff49c0 61%, #b67dff 99.93%);
  filter: blur(1rem);
}
.cid-uFNv3NseLm .card-border {
  position: relative;
  z-index: 6;
  width: 100%;
  height: 100%;
  padding: 5px;
  border-radius: 2.08rem;
  background-image: linear-gradient(135deg, #ffdd65 2.76%, #ffaa5c 29.66%, #ff49c0 61%, #b67dff 99.93%);
}
.cid-uFNv3NseLm .card-box {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  width: 100%;
  height: 100%;
  padding: 60px;
  background-color: #212132;
  border-radius: 1.76rem;
}
@media (max-width: 991px) {
  .cid-uFNv3NseLm .card-box {
    padding: 16px;
  }
}
.cid-uFNv3NseLm .iconfont-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 40px;
  padding: 3px;
  min-width: 32px;
  min-height: 32px;
  width: max-content;
  margin-right: auto;
}
@media (max-width: 991px) {
  .cid-uFNv3NseLm .iconfont-wrapper {
    margin-bottom: 24px;
  }
}
.cid-uFNv3NseLm .iconfont-wrapper .mbr-iconfont {
  color: #ffe700;
  font-size: 64px;
}
.cid-uFNv3NseLm .card-title {
  margin-top: auto;
  color: #ffffff;
}
.cid-uFNv3NseLm P {
  color: #ffffff;
}
.cid-uFNv3NNTBK {
  padding-top: 165px;
  padding-bottom: 60px;
  background-color: #101840;
}
.cid-uFNv3NNTBK ul {
  padding: 0;
  margin: 0;
}
.cid-uFNv3NNTBK ul li {
  list-style: none;
}
.cid-uFNv3NNTBK ul li h4 {
  margin: 0;
}
.cid-uFNv3NNTBK ul li h4.display-4 {
  line-height: 1.75;
}
.cid-uFNv3NNTBK .item {
  color: #ffffff;
  text-align: center;
}
.cid-uFNv3NNTBK .col-title {
  color: #ffffff;
  text-align: center;
}
.cid-uFNv3NNTBK .col-title.display-2 {
  font-size: 2.1rem;
}
.cid-uFNv3NNTBK .col-title1 {
  margin-bottom: 40px;
}
.cid-uFNv3NNTBK .form-group,
.cid-uFNv3NNTBK .mbr-section-btn {
  margin: 0;
  padding: 0;
  display: -webkit-flex;
}
.cid-uFNv3NNTBK .form-control {
  display: inline-block;
  border: none;
  border-radius: 25px;
  width: 100%;
  padding: 0 25px;
  background: rgba(255, 255, 255, 0.07);
  color: #ffffff;
  margin-right: 10px;
  height: 50px;
  line-height: 50px;
}
.cid-uFNv3NNTBK .form-control::-webkit-input-placeholder {
  color: #ffffff;
}
.cid-uFNv3NNTBK .form-control::-moz-placeholder {
  color: #ffffff;
}
.cid-uFNv3NNTBK .form-control:-moz-placeholder {
  color: #ffffff;
}
.cid-uFNv3NNTBK .form-control:-ms-input-placeholder {
  color: #ffffff;
}
.cid-uFNv3NNTBK .col + .mbr-section-btn .btn,
.cid-uFNv3NNTBK .col-auto + .mbr-section-btn .btn {
  margin: 0 !important;
  height: 100%;
  border-radius: 30px !important;
  padding: 14.5px 26px 14.5px !important;
}
.cid-uFNv3NNTBK .col + .mbr-section-btn .btn.display-4,
.cid-uFNv3NNTBK .col-auto + .mbr-section-btn .btn.display-4 {
  font-size: 13px;
}
.cid-uFNv3NNTBK .col + .mbr-section-btn .btn:hover,
.cid-uFNv3NNTBK .col-auto + .mbr-section-btn .btn:hover {
  box-shadow: 0 0 0 5px rgba(132, 138, 189, 0.2);
}
.cid-uFNv3NNTBK .dragArea > *:nth-last-child(2).col,
.cid-uFNv3NNTBK .dragArea > *:nth-last-child(2).col-auto,
.cid-uFNv3NNTBK .col + .mbr-section-btn,
.cid-uFNv3NNTBK .col-auto + .mbr-section-btn {
  padding-left: 0;
  padding-right: 0;
  margin: 0;
}
.cid-uFNv3NNTBK .form1 {
  margin-top: 30px;
}
.cid-uFNv3NNTBK .fill-light-wrapper {
  fill: #ffffff;
  z-index: 2 !important;
  top: 0;
}
@media (max-width: 768px) {
  .cid-uFNv3NNTBK .md-pb {
    margin-bottom: 30px;
  }
}
