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: 1.05rem;
  line-height: 1.5;
}
.display-4 > .mbr-iconfont {
  font-size: 1.68rem;
}
.display-5 {
  font-family: 'Nunito', sans-serif;
  font-size: 1.5rem;
  line-height: 1.1;
}
.display-5 > .mbr-iconfont {
  font-size: 2.4rem;
}
.display-7 {
  font-family: 'Nunito', sans-serif;
  font-size: 1.2rem;
  line-height: 1.4;
}
.display-7 > .mbr-iconfont {
  font-size: 1.92rem;
}
/* ---- 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.84rem;
    font-size: calc( 1.0175rem + (1.05 - 1.0175) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.0175rem + (1.05 - 1.0175) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 1.2rem;
    font-size: calc( 1.175rem + (1.5 - 1.175) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.175rem + (1.5 - 1.175) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-7 {
    font-size: 0.96rem;
    font-size: calc( 1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* Buttons */
.btn {
  padding: 1rem 3rem;
  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: #a7b068 !important;
}
.bg-success {
  background-color: #9ccd7e !important;
}
.bg-info {
  background-color: #c6c6c6 !important;
}
.bg-warning {
  background-color: #4bafb5 !important;
}
.bg-danger {
  background-color: #ba3434 !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #a7b068 !important;
  border-color: #a7b068 !important;
  color: #ffffff !important;
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #7e8646 !important;
  border-color: #7e8646 !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #3c71d3 !important;
  border-color: #3c71d3 !important;
  color: #ffffff !important;
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #244f9f !important;
  border-color: #244f9f !important;
}
.btn-info,
.btn-info:active {
  background-color: #c6c6c6 !important;
  border-color: #c6c6c6 !important;
  color: #ffffff !important;
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #a0a0a0 !important;
  border-color: #a0a0a0 !important;
}
.btn-success,
.btn-success:active {
  background-color: #9ccd7e !important;
  border-color: #9ccd7e !important;
  color: #ffffff !important;
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #72b747 !important;
  border-color: #72b747 !important;
}
.btn-warning,
.btn-warning:active {
  background-color: #4bafb5 !important;
  border-color: #4bafb5 !important;
  color: #ffffff !important;
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #ffffff !important;
  background-color: #347b7f !important;
  border-color: #347b7f !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #ba3434 !important;
  border-color: #ba3434 !important;
  color: #ffffff !important;
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #7e2323 !important;
  border-color: #7e2323 !important;
}
.btn-white {
  color: #404040 !important;
}
.btn-white,
.btn-white:active {
  background-color: #ffffff !important;
  border-color: #ffffff !important;
  color: #808080 !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;
  color: #ffffff !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: #a7b068;
  color: #a7b068;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #ffffff;
  background-color: #a7b068;
  border-color: #a7b068;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #a7b068 !important;
  border-color: #a7b068 !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background: none;
  border-color: #3c71d3;
  color: #3c71d3;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #ffffff;
  background-color: #3c71d3;
  border-color: #3c71d3;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #3c71d3 !important;
  border-color: #3c71d3 !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background: none;
  border-color: #c6c6c6;
  color: #c6c6c6;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #ffffff;
  background-color: #c6c6c6;
  border-color: #c6c6c6;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #c6c6c6 !important;
  border-color: #c6c6c6 !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background: none;
  border-color: #9ccd7e;
  color: #9ccd7e;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #ffffff;
  background-color: #9ccd7e;
  border-color: #9ccd7e;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #ffffff !important;
  background-color: #9ccd7e !important;
  border-color: #9ccd7e !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background: none;
  border-color: #4bafb5;
  color: #4bafb5;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #ffffff;
  background-color: #4bafb5;
  border-color: #4bafb5;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #ffffff !important;
  background-color: #4bafb5 !important;
  border-color: #4bafb5 !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background: none;
  border-color: #ba3434;
  color: #ba3434;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #ffffff;
  background-color: #ba3434;
  border-color: #ba3434;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #ba3434 !important;
  border-color: #ba3434 !important;
}
.btn-black-outline,
.btn-black-outline:active {
  background: none;
  border-color: #333333;
  color: #333333;
}
.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: #a7b068 !important;
}
.text-secondary {
  color: #3c71d3 !important;
}
.text-success {
  color: #9ccd7e !important;
}
.text-info {
  color: #c6c6c6 !important;
}
.text-warning {
  color: #4bafb5 !important;
}
.text-danger {
  color: #ba3434 !important;
}
.text-white {
  color: #ffffff !important;
}
.text-black {
  color: #000000 !important;
}
a.text-primary:hover,
a.text-primary:focus {
  color: #ced3ab !important;
}
a.text-secondary:hover,
a.text-secondary:focus {
  color: #8faee6 !important;
}
a.text-success:hover,
a.text-success:focus {
  color: #d4e9c8 !important;
}
a.text-info:hover,
a.text-info:focus {
  color: #f9f9f9 !important;
}
a.text-warning:hover,
a.text-warning:focus {
  color: #93cfd3 !important;
}
a.text-danger:hover,
a.text-danger:focus {
  color: #da7a7a !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: #c6c6c6;
}
.alert-warning {
  background-color: #4bafb5;
}
.alert-danger {
  background-color: #ba3434;
}
.mbr-section-btn a.btn:not(.btn-form) {
  border-radius: 100px;
}
.mbr-section-btn a.btn:not(.btn-form):hover,
.mbr-section-btn a.btn:not(.btn-form):focus {
  box-shadow: 0 0 0 5px rgba(132, 138, 189, 0.5) !important;
  -webkit-box-shadow: 0 0 0 5px rgba(132, 138, 189, 0.5) !important;
}
.mbr-gallery-filter li a {
  border-radius: 100px !important;
}
.mbr-gallery-filter li.active .btn {
  background-color: #a7b068;
  border-color: #a7b068;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
.nav-tabs .nav-link {
  border-radius: 100px !important;
}
a,
a:hover {
  color: #a7b068;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #d8dcbc;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #a5d7da;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #df8e8e;
}
/* Scroll to top button*/
.scrollToTop_wraper {
  display: none;
}
.form-control {
  font-family: 'Nunito', sans-serif;
  font-size: 1.05rem;
  line-height: 1.5;
}
.form-control > .mbr-iconfont {
  font-size: 1.68rem;
}
blockquote {
  border-color: #a7b068;
}
/* Forms */
.mbr-form .btn {
  margin: 0.4rem 0;
}
.mbr-form .input-group-btn a.btn {
  border-radius: 100px !important;
}
.mbr-form .input-group-btn a.btn:hover {
  box-shadow: 0 0 0 5px rgba(132, 138, 189, 0.5);
}
.mbr-form .input-group-btn button[type="submit"] {
  border-radius: 100px !important;
  padding: 1rem 3rem;
}
.mbr-form .input-group-btn button[type="submit"]:hover {
  box-shadow: 0 0 0 5px rgba(132, 138, 189, 0.5);
}
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #a7b068;
  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: #a7b068;
  border-bottom-color: #a7b068;
}
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_default,
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_current,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div.xdsoft_current {
  color: #000000 !important;
  background-color: #a7b068 !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: #3c71d3 !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='%23a7b068' %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-u925Ylsgom .navbar-dropdown {
  position: relative !important;
}
.cid-u925Ylsgom .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-u925Ylsgom .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-u925Ylsgom .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-u925Ylsgom .dropdown-item:hover,
.cid-u925Ylsgom .dropdown-item:focus {
  background: #a7b068 !important;
  color: white !important;
}
.cid-u925Ylsgom .dropdown-item:hover span {
  color: white;
}
.cid-u925Ylsgom .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-u925Ylsgom .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-u925Ylsgom .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-u925Ylsgom .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-u925Ylsgom .nav-link {
  position: relative;
}
.cid-u925Ylsgom .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-u925Ylsgom .container {
    flex-wrap: wrap;
  }
}
.cid-u925Ylsgom .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-u925Ylsgom .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-u925Ylsgom .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-u925Ylsgom .dropdown-menu,
.cid-u925Ylsgom .navbar.opened {
  background: #000000 !important;
}
.cid-u925Ylsgom .nav-item:focus,
.cid-u925Ylsgom .nav-link:focus {
  outline: none;
}
.cid-u925Ylsgom .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-u925Ylsgom .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-u925Ylsgom .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-u925Ylsgom .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-u925Ylsgom .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-u925Ylsgom .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-u925Ylsgom .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: #000000;
}
.cid-u925Ylsgom .navbar.opened {
  transition: all 0.3s;
}
.cid-u925Ylsgom .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-u925Ylsgom .navbar .navbar-logo img {
  width: auto;
}
.cid-u925Ylsgom .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-u925Ylsgom .navbar.collapsed {
  justify-content: center;
}
.cid-u925Ylsgom .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-u925Ylsgom .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-u925Ylsgom .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-u925Ylsgom .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-u925Ylsgom .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-u925Ylsgom .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-u925Ylsgom .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-u925Ylsgom .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-u925Ylsgom .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-u925Ylsgom .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-u925Ylsgom .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-u925Ylsgom .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-u925Ylsgom .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-u925Ylsgom .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-u925Ylsgom .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-u925Ylsgom .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-u925Ylsgom .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-u925Ylsgom .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-u925Ylsgom .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-u925Ylsgom .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-u925Ylsgom .navbar.navbar-short {
  min-height: 60px;
}
.cid-u925Ylsgom .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-u925Ylsgom .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-u925Ylsgom .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-u925Ylsgom .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-u925Ylsgom .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-u925Ylsgom .dropdown-item.active,
.cid-u925Ylsgom .dropdown-item:active {
  background-color: transparent;
}
.cid-u925Ylsgom .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-u925Ylsgom .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-u925Ylsgom .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-u925Ylsgom .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-u925Ylsgom .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-u925Ylsgom .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-u925Ylsgom ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-u925Ylsgom .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-u925Ylsgom button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-u925Ylsgom button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #999999;
}
.cid-u925Ylsgom button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-u925Ylsgom button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u925Ylsgom button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u925Ylsgom button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-u925Ylsgom nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u925Ylsgom nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-u925Ylsgom nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-u925Ylsgom nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u925Ylsgom .navbar-dropdown {
  padding: 0 1rem;
}
.cid-u925Ylsgom a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-u925Ylsgom .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-u925Ylsgom .navbar {
    height: 70px;
  }
  .cid-u925Ylsgom .navbar.opened {
    height: auto;
  }
  .cid-u925Ylsgom .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-rVs6BwK6TX {
  background-image: url("../../../assets/images/sugar-daddy-india.webp");
}
.cid-rVs6BwK6TX .mbr-iconfont {
  display: block;
  font-size: 6rem;
  color: #848abd;
  margin-bottom: 2rem;
}
.cid-rVs6BwK6TX .btn.display-4 {
  font-size: 14px;
  line-height: 1;
}
.cid-u938Jj7DwD {
  padding-top: 105px;
  padding-bottom: 90px;
  background-color: #000000;
}
.cid-u938Jj7DwD .row {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-u938Jj7DwD img {
  width: 100%;
}
.cid-u938Jj7DwD .badge {
  display: inline-block;
  border-radius: 10rem;
  padding: 8px 14px 6px 14px;
  color: #a7b068;
  background-color: rgba(132, 138, 189, 0.15);
  margin-bottom: 26px;
}
.cid-u938Jj7DwD .badge.display-4 {
  font-size: 11px;
  line-height: 1.81;
  letter-spacing: 0.5px;
}
.cid-u938Jj7DwD .mbr-section-subtitle {
  color: #999999;
  font-weight: 600;
  margin-bottom: 21px;
}
.cid-u938Jj7DwD .contents {
  margin-top: 36px;
}
.cid-u938Jj7DwD .contents .content-text {
  color: #606060;
  font-weight: 300;
}
.cid-u938Jj7DwD .mbr-section-btn {
  margin-top: 8px;
}
.cid-u938Jj7DwD .mbr-section-btn .btn {
  padding: 18px 26px;
}
.cid-u938Jj7DwD .mbr-section-btn .btn.display-4 {
  font-size: 13px;
  line-height: 1;
}
.cid-u938Jj7DwD .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-u938Jj7DwD .main-title {
  color: #f3f4f7;
}
.cid-u938Jj7DwD .contents .mbr-text,
.cid-u938Jj7DwD .mbr-section-btn {
  color: #f3f4f7;
}
.cid-u92FH945vG {
  padding-top: 9rem;
  padding-bottom: 9rem;
  background-image: url("../../../assets/images/sugardaddy-banner.webp");
}
.cid-u92FH945vG .mbr-fallback-image.disabled {
  display: none;
}
.cid-u92FH945vG .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u92FH945vG .mbr-text,
.cid-u92FH945vG .mbr-section-btn {
  color: #232323;
}
.cid-u92FH945vG .card-title,
.cid-u92FH945vG .card-box {
  color: #611750;
}
.cid-u92FH945vG .mbr-text,
.cid-u92FH945vG .link-wrap {
  color: #ffffff;
}
.cid-u942uKYiA9 {
  padding-top: 105px;
  padding-bottom: 60px;
  background-color: #000000;
}
.cid-u942uKYiA9 .row {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-u942uKYiA9 img {
  width: 100%;
}
.cid-u942uKYiA9 .badge {
  display: inline-block;
  border-radius: 10rem;
  padding: 8px 14px 6px 14px;
  color: #a7b068;
  background-color: rgba(132, 138, 189, 0.15);
  margin-bottom: 26px;
}
.cid-u942uKYiA9 .badge.display-4 {
  font-size: 11px;
  line-height: 1.81;
  letter-spacing: 0.5px;
}
.cid-u942uKYiA9 .mbr-section-subtitle {
  color: #999999;
  font-weight: 600;
  margin-bottom: 21px;
}
.cid-u942uKYiA9 .contents {
  margin-top: 36px;
}
.cid-u942uKYiA9 .contents .content-text {
  color: #606060;
  font-weight: 300;
}
.cid-u942uKYiA9 .mbr-section-btn {
  margin-top: 8px;
}
.cid-u942uKYiA9 .mbr-section-btn .btn {
  padding: 18px 26px;
}
.cid-u942uKYiA9 .mbr-section-btn .btn.display-4 {
  font-size: 13px;
  line-height: 1;
}
.cid-u942uKYiA9 .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-u942uKYiA9 .contents .mbr-text,
.cid-u942uKYiA9 .mbr-section-btn {
  color: #eff1f5;
  text-align: left;
}
.cid-u942uKYiA9 .main-title {
  color: #ecedee;
  text-align: left;
}
.cid-u936R4QjQu {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-u936R4QjQu .mbr-fallback-image.disabled {
  display: none;
}
.cid-u936R4QjQu .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u936R4QjQu .col-title {
  margin-bottom: 2.5rem;
}
.cid-u936R4QjQu .mbr-section-title {
  color: #ecedee;
}
.cid-u936R4QjQu .mbr-section-subtitle {
  color: #ecedee;
  margin-top: 1rem;
}
.cid-u936R4QjQu .cards-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
@media (max-width: 639px) {
  .cid-u936R4QjQu .cards-container {
    grid-template-columns: repeat(1, 1fr);
  }
}
.cid-u936R4QjQu .card-box {
  width: 100%;
}
.cid-u936R4QjQu .image-wrapper {
  display: flex;
  justify-content: center;
  overflow: hidden;
  margin-top: 32px;
  margin-right: auto;
  margin-left: auto;
  width: 192px;
  aspect-ratio: 1;
  border-radius: 50%;
}
.cid-u936R4QjQu .image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-u936R4QjQu .card-container {
  width: 100%;
  padding: 32px;
}
.cid-u936R4QjQu .card-title {
  color: #ecedee;
  margin-bottom: 0;
}
.cid-u936R4QjQu .card-text {
  color: #FEF9EE;
  margin-bottom: 0;
  margin-top: 0.5rem;
}
.cid-u936R4QjQu .mbr-section-btn {
  margin-top: 0.5rem;
}
.cid-u936R4QjQu .card-text,
.cid-u936R4QjQu .mbr-section-btn {
  color: #ecedee;
}
.cid-u935pZXyLV {
  padding-top: 120px;
  padding-bottom: 60px;
  background-color: #000000;
}
.cid-u935pZXyLV .counter-container ul {
  margin-bottom: 0;
  padding-left: 1.2rem;
}
.cid-u935pZXyLV .counter-container ul li {
  margin-bottom: 0.2rem;
  list-style: none;
  position: relative;
}
.cid-u935pZXyLV .counter-container ul li:before {
  position: absolute;
  left: -2.2rem;
  padding-top: 3px;
  content: '';
  display: inline-block;
  text-align: center;
  margin: 11px 16px;
  line-height: 20px;
  transition: all 0.2s;
  color: #ffffff;
  background: #767676;
  width: 6px;
  height: 6px;
  border-radius: 50%;
}
.cid-u935pZXyLV .mbr-text {
  color: #767676;
}
@media (min-width: 992px) {
  .cid-u935pZXyLV img {
    width: 90%;
  }
}
.cid-u935pZXyLV .mbr-text,
.cid-u935pZXyLV .mbr-section-btn {
  text-align: left;
  color: #ecedee;
}
.cid-u935pZXyLV .mbr-text,
.cid-u935pZXyLV .mbr-section-btn UL {
  text-align: left;
}
.cid-u935pZXyLV .card-title {
  color: #ecedee;
}
.cid-u935AqwvxS {
  padding-top: 90px;
  padding-bottom: 75px;
  background-color: #000000;
}
.cid-u935AqwvxS .mbr-text {
  color: #767676;
}
.cid-u935AqwvxS .sig-img img {
  width: auto;
  display: inline-block;
}
.cid-u935AqwvxS .mbr-text,
.cid-u935AqwvxS .sig-img {
  text-align: left;
  color: #ecedee;
}
.cid-u935AqwvxS .card-title {
  text-align: left;
  color: #ecedee;
}
.cid-rVs6CwMrCW {
  padding-top: 120px;
  padding-bottom: 120px;
  background-color: #f3f4f7;
}
.cid-rVs6CwMrCW img {
  width: 100%;
}
.cid-rVs6CwMrCW .badge {
  display: inline-block;
  border-radius: 10rem;
  padding: 8px 14px 6px 14px;
  color: #a7b068;
  background-color: rgba(132, 138, 189, 0.15);
  margin-bottom: 26px;
}
.cid-rVs6CwMrCW .badge.display-4 {
  font-size: 11px;
  line-height: 1.81;
  letter-spacing: 0.5px;
}
.cid-rVs6CwMrCW .mbr-section-subtitle {
  color: #999999;
  font-weight: 600;
  margin-bottom: 21px;
}
.cid-rVs6CwMrCW .card-title span {
  color: #848abd;
}
@media (max-width: 992px) {
  .cid-rVs6CwMrCW .card {
    margin-bottom: 2rem !important;
  }
}
@media (max-width: 768px) {
  .cid-rVs6CwMrCW * {
    text-align: left;
  }
}
.cid-rVs6CwMrCW .cards .mbr-text,
.cid-rVs6CwMrCW .mbr-section-btn {
  color: #606060;
}
.cid-uasjJcuqU6 {
  padding-top: 105px;
  padding-bottom: 60px;
  background-color: #f3f4f7;
}
.cid-uasjJcuqU6 .row {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-uasjJcuqU6 img {
  width: 100%;
}
.cid-uasjJcuqU6 .badge {
  display: inline-block;
  border-radius: 10rem;
  padding: 8px 14px 6px 14px;
  color: #a7b068;
  background-color: rgba(132, 138, 189, 0.15);
  margin-bottom: 26px;
}
.cid-uasjJcuqU6 .badge.display-4 {
  font-size: 11px;
  line-height: 1.81;
  letter-spacing: 0.5px;
}
.cid-uasjJcuqU6 .mbr-section-subtitle {
  color: #999999;
  font-weight: 600;
  margin-bottom: 21px;
}
.cid-uasjJcuqU6 .contents {
  margin-top: 36px;
}
.cid-uasjJcuqU6 .contents .content-text {
  color: #606060;
  font-weight: 300;
}
.cid-uasjJcuqU6 .mbr-section-btn {
  margin-top: 8px;
}
.cid-uasjJcuqU6 .mbr-section-btn .btn {
  padding: 18px 26px;
}
.cid-uasjJcuqU6 .mbr-section-btn .btn.display-4 {
  font-size: 13px;
  line-height: 1;
}
.cid-uasjJcuqU6 .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-uvj3v6so9V {
  padding-top: 60px;
  padding-bottom: 90px;
  background-color: #f9fafb;
}
.cid-uvj3v6so9V .mbr-section-subtitle {
  color: #999999;
  font-weight: 600;
}
.cid-uvj3v6so9V .mbr-section-subtitle.display-4 {
  line-height: 1.375;
}
.cid-uvj3v6so9V .badge {
  display: inline-block;
  border-radius: 10rem;
  padding: 8px 14px 6px 14px;
  color: #a7b068;
  background-color: rgba(132, 138, 189, 0.15);
}
.cid-uvj3v6so9V .badge.display-4 {
  font-size: 11px;
  line-height: 1.81;
  letter-spacing: 0.5px;
}
.cid-uvj3v6so9V .mbr-section-title {
  margin-top: 30px;
  font-weight: 500;
  margin-bottom: 36px;
}
.cid-uvj3v6so9V .mbr-section-title.display-2 {
  line-height: 1.375;
}
.cid-uvj3v6so9V .box {
  padding: 40px 40px 20px;
  margin-bottom: 20px;
  background: #ffffff;
  box-shadow: 0px 5px 20px rgba(0, 0, 0, 0.04);
}
.cid-uvj3v6so9V .mbr-text {
  margin-bottom: 20px;
}
.cid-uvj3v6so9V .mbr-text.display-7 {
  font-size: 18px;
  color: #707070;
  line-height: 1.6;
}
.cid-uvj3v6so9V .blockquote-details {
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  text-align: left;
  margin-bottom: 20px;
}
.cid-uvj3v6so9V .blockquote-details .img-blob img {
  width: 70px;
  max-width: 100%;
  border-radius: 100%;
}
.cid-uvj3v6so9V .blockquote-details .info {
  padding-left: 20px;
}
.cid-uvj3v6so9V .blockquote-details .info .signature {
  color: #404040;
  margin-bottom: 0;
}
.cid-uvj3v6so9V .blockquote-details .info .signature.display-7 {
  line-height: 1.3;
  font-size: 18px;
}
.cid-uvj3v6so9V .blockquote-details .info .desk {
  color: #999;
}
.cid-uvj3v6so9V .blockquote-details .info .desk.display-4 {
  line-height: 1.3125;
}
.cid-uvj3v6so9V .carousel-item {
  -webkit-box-pack: center;
  justify-content: center;
}
.cid-uvj3v6so9V .carousel-item > div {
  width: 100%;
}
.cid-uvj3v6so9V .carousel-item.active,
.cid-uvj3v6so9V .carousel-item-next,
.cid-uvj3v6so9V .carousel-item-prev {
  display: flex;
}
.cid-uvj3v6so9V .carousel-indicators li {
  height: 10px;
  width: 10px;
  border-radius: 50%;
  -webkit-transition: opacity 0.5s;
  transition: opacity 0.5s;
  background-color: rgba(153, 153, 153, 0.8);
  font-size: 2rem;
  border-width: 0px;
  -webkit-transform: scale(0.6);
  transform: scale(0.6);
  margin: 6px;
}
.cid-uvj3v6so9V .carousel-indicators li:hover {
  opacity: 1;
}
.cid-uvj3v6so9V .carousel-indicators .active {
  -webkit-transform: scale(1);
  transform: scale(1);
  border: 0;
  background-color: rgba(153, 153, 153, 0.8);
  -webkit-transition: all 200ms ease-in-out;
  transition: all 200ms ease-in-out;
}
.cid-uvj3v6so9V .carousel-indicators {
  margin: 20px 0 0 0.1rem;
  -webkit-box-pack: center !important;
  justify-content: center !important;
  bottom: -30px;
}
@media (max-width: 767px) {
  .cid-uvj3v6so9V .carousel-indicators {
    margin: auto;
    -webkit-box-pack: center !important;
    justify-content: center !important;
  }
  .cid-uvj3v6so9V .blockquote-details {
    justify-content: center;
  }
}
.cid-uvj3v6so9V .mbr-fallback-image.disabled {
  display: none;
}
.cid-uvj3v6so9V .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u9390pJqhG {
  padding-top: 7rem;
  padding-bottom: 7rem;
  background-color: #f3f4f7;
}
.cid-u9390pJqhG .card-title {
  padding-bottom: 18px;
  margin: 0;
  color: #14142b;
}
.cid-u9390pJqhG .align-left {
  max-width: 547px;
}
.cid-u9390pJqhG .mbr-text,
.cid-u9390pJqhG .mbr-section-btn {
  color: #606060;
}
.cid-u9390pJqhG .left-side {
  margin-right: 20px;
}
.cid-u9390pJqhG .right-side {
  margin-left: 20px;
}
@media (max-width: 768px) {
  .cid-u9390pJqhG .left-side {
    margin-right: 0px;
  }
  .cid-u9390pJqhG .right-side {
    padding-top: 20px;
    margin-left: 0px;
  }
}
.cid-urPxT1rS4j {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #232323;
}
.cid-urPxT1rS4j .mbr-fallback-image.disabled {
  display: none;
}
.cid-urPxT1rS4j .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-urPxT1rS4j .list {
  list-style: none;
  padding-left: 0;
  color: #bbbbbb;
}
@media (max-width: 991px) {
  .cid-urPxT1rS4j .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-urPxT1rS4j .list {
    margin-bottom: 0rem;
  }
}
@media (max-width: 767px) {
  .cid-urPxT1rS4j .row {
    text-align: center;
  }
}
@media (max-width: 991px) {
  .cid-urPxT1rS4j div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-urPxT1rS4j .copyright {
  color: #bbbbbb;
}
.cid-u925Ylsgom .navbar-dropdown {
  position: relative !important;
}
.cid-u925Ylsgom .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-u925Ylsgom .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-u925Ylsgom .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-u925Ylsgom .dropdown-item:hover,
.cid-u925Ylsgom .dropdown-item:focus {
  background: #a7b068 !important;
  color: white !important;
}
.cid-u925Ylsgom .dropdown-item:hover span {
  color: white;
}
.cid-u925Ylsgom .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-u925Ylsgom .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-u925Ylsgom .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-u925Ylsgom .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-u925Ylsgom .nav-link {
  position: relative;
}
.cid-u925Ylsgom .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-u925Ylsgom .container {
    flex-wrap: wrap;
  }
}
.cid-u925Ylsgom .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-u925Ylsgom .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-u925Ylsgom .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-u925Ylsgom .dropdown-menu,
.cid-u925Ylsgom .navbar.opened {
  background: #000000 !important;
}
.cid-u925Ylsgom .nav-item:focus,
.cid-u925Ylsgom .nav-link:focus {
  outline: none;
}
.cid-u925Ylsgom .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-u925Ylsgom .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-u925Ylsgom .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-u925Ylsgom .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-u925Ylsgom .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-u925Ylsgom .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-u925Ylsgom .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: #000000;
}
.cid-u925Ylsgom .navbar.opened {
  transition: all 0.3s;
}
.cid-u925Ylsgom .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-u925Ylsgom .navbar .navbar-logo img {
  width: auto;
}
.cid-u925Ylsgom .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-u925Ylsgom .navbar.collapsed {
  justify-content: center;
}
.cid-u925Ylsgom .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-u925Ylsgom .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-u925Ylsgom .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-u925Ylsgom .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-u925Ylsgom .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-u925Ylsgom .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-u925Ylsgom .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-u925Ylsgom .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-u925Ylsgom .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-u925Ylsgom .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-u925Ylsgom .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-u925Ylsgom .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-u925Ylsgom .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-u925Ylsgom .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-u925Ylsgom .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-u925Ylsgom .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-u925Ylsgom .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-u925Ylsgom .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-u925Ylsgom .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-u925Ylsgom .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-u925Ylsgom .navbar.navbar-short {
  min-height: 60px;
}
.cid-u925Ylsgom .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-u925Ylsgom .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-u925Ylsgom .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-u925Ylsgom .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-u925Ylsgom .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-u925Ylsgom .dropdown-item.active,
.cid-u925Ylsgom .dropdown-item:active {
  background-color: transparent;
}
.cid-u925Ylsgom .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-u925Ylsgom .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-u925Ylsgom .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-u925Ylsgom .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-u925Ylsgom .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-u925Ylsgom .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-u925Ylsgom ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-u925Ylsgom .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-u925Ylsgom button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-u925Ylsgom button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #999999;
}
.cid-u925Ylsgom button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-u925Ylsgom button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u925Ylsgom button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u925Ylsgom button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-u925Ylsgom nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u925Ylsgom nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-u925Ylsgom nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-u925Ylsgom nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u925Ylsgom .navbar-dropdown {
  padding: 0 1rem;
}
.cid-u925Ylsgom a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-u925Ylsgom .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-u925Ylsgom .navbar {
    height: 70px;
  }
  .cid-u925Ylsgom .navbar.opened {
    height: auto;
  }
  .cid-u925Ylsgom .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uaSkQNS9PM {
  padding-top: 105px;
  padding-bottom: 90px;
  background-color: #6f3f7c;
}
.cid-uaSkQNS9PM .mbr-iconfont {
  display: block;
  font-size: 6rem;
  color: #848abd;
  margin-bottom: 2rem;
}
.cid-uaSkQNS9PM .btn.display-4 {
  font-size: 14px;
  line-height: 1;
}
.cid-uaSleolkXc {
  padding-top: 90px;
  padding-bottom: 60px;
  background-color: #1e1e1e;
}
.cid-uaSleolkXc .row {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-uaSleolkXc img {
  width: 100%;
}
.cid-uaSleolkXc .badge {
  display: inline-block;
  border-radius: 10rem;
  padding: 8px 14px 6px 14px;
  color: #a7b068;
  background-color: rgba(132, 138, 189, 0.15);
  margin-bottom: 26px;
}
.cid-uaSleolkXc .badge.display-4 {
  font-size: 11px;
  line-height: 1.81;
  letter-spacing: 0.5px;
}
.cid-uaSleolkXc .mbr-section-subtitle {
  color: #999999;
  font-weight: 600;
  margin-bottom: 21px;
}
.cid-uaSleolkXc .contents {
  margin-top: 36px;
}
.cid-uaSleolkXc .contents .content-text {
  color: #606060;
  font-weight: 300;
}
.cid-uaSleolkXc .mbr-section-btn {
  margin-top: 8px;
}
.cid-uaSleolkXc .mbr-section-btn .btn {
  padding: 18px 26px;
}
.cid-uaSleolkXc .mbr-section-btn .btn.display-4 {
  font-size: 13px;
  line-height: 1;
}
.cid-uaSleolkXc .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-uaSleolkXc .contents .mbr-text,
.cid-uaSleolkXc .mbr-section-btn {
  color: #f9fafb;
  text-align: left;
}
.cid-uaSleolkXc .main-title {
  color: #f9fafb;
}
.cid-uaSluekVun {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #1e1e1e;
}
.cid-uaSluekVun img {
  width: 100%;
}
.cid-uaSluekVun .badge {
  display: inline-block;
  border-radius: 10rem;
  padding: 8px 14px 6px 14px;
  color: #a7b068;
  background-color: rgba(132, 138, 189, 0.15);
  margin-bottom: 26px;
}
.cid-uaSluekVun .badge.display-4 {
  font-size: 11px;
  line-height: 1.81;
  letter-spacing: 0.5px;
}
.cid-uaSluekVun .mbr-section-subtitle {
  color: #999999;
  font-weight: 600;
  margin-bottom: 21px;
}
.cid-uaSluekVun .contents {
  margin-top: 36px;
}
.cid-uaSluekVun .contents .content-text {
  color: #606060;
  font-weight: 300;
}
.cid-uaSluekVun .mbr-section-btn {
  margin-top: 8px;
}
.cid-uaSluekVun .mbr-section-btn .btn {
  padding: 18px 26px;
}
.cid-uaSluekVun .mbr-section-btn .btn.display-4 {
  font-size: 13px;
  line-height: 1;
}
.cid-uaSluekVun .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-uaSluekVun .contents .mbr-text,
.cid-uaSluekVun .mbr-section-btn {
  color: #f9fafb;
  text-align: left;
}
.cid-uaSluekVun .main-title {
  color: #f9fafb;
}
.cid-uaSmFS26wT {
  padding-top: 5rem;
  padding-bottom: 6rem;
  background-color: #1e1e1e;
}
.cid-uaSmFS26wT .mbr-text {
  color: #f3f4f7;
}
.cid-uaSmFS26wT .mbr-section-subtitle {
  color: #f3f4f7;
  text-align: center;
}
.cid-ulLIHg4Szd {
  padding-top: 90px;
  padding-bottom: 30px;
  background-color: #f3f4f7;
}
.cid-ulLIHg4Szd .mbr-section-subtitle {
  color: #999999;
  text-align: center;
  font-weight: 600;
  margin-bottom: 21px;
}
.cid-ulLIHg4Szd .badge {
  display: inline-block;
  border-radius: 10rem;
  padding: 8px 14px 6px 14px;
  color: #a7b068;
  background-color: rgba(132, 138, 189, 0.15);
  margin-bottom: 26px;
}
.cid-ulLIHg4Szd .badge.display-4 {
  font-size: 11px;
  line-height: 1.81;
  letter-spacing: 0.5px;
}
.cid-ulLIHg4Szd .mbr-section-title {
  margin: 0;
  font-weight: 500;
}
.cid-ulLIHg4Szd .mbr-section-title.display-2 {
  line-height: 1.375;
}
.cid-ulLIHg4Szd .main-wrapper {
  padding: 56px 0 0 0;
}
.cid-ulLIHg4Szd .main-wrapper .icon-main {
  margin: 1rem 0;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  text-align: center;
  padding: 0;
  transition: all 0.3s ease-in-out 0s;
}
.cid-ulLIHg4Szd .main-wrapper .icon-main .process-icon,
.cid-ulLIHg4Szd .main-wrapper .icon-main .process-icon-without-before {
  width: 100%;
  padding-bottom: 2rem;
}
.cid-ulLIHg4Szd .main-wrapper .icon-main .process-icon .wrapper,
.cid-ulLIHg4Szd .main-wrapper .icon-main .process-icon-without-before .wrapper,
.cid-ulLIHg4Szd .main-wrapper .icon-main .process-icon .wrapper-without-before,
.cid-ulLIHg4Szd .main-wrapper .icon-main .process-icon-without-before .wrapper-without-before {
  position: relative;
  margin-bottom: 20px;
}
.cid-ulLIHg4Szd .main-wrapper .icon-main .process-icon .wrapper .icon-container,
.cid-ulLIHg4Szd .main-wrapper .icon-main .process-icon-without-before .wrapper .icon-container,
.cid-ulLIHg4Szd .main-wrapper .icon-main .process-icon .wrapper-without-before .icon-container,
.cid-ulLIHg4Szd .main-wrapper .icon-main .process-icon-without-before .wrapper-without-before .icon-container {
  display: inline-flex;
  position: relative;
}
.cid-ulLIHg4Szd .main-wrapper .icon-main .process-icon .wrapper .icon-container a,
.cid-ulLIHg4Szd .main-wrapper .icon-main .process-icon-without-before .wrapper .icon-container a,
.cid-ulLIHg4Szd .main-wrapper .icon-main .process-icon .wrapper-without-before .icon-container a,
.cid-ulLIHg4Szd .main-wrapper .icon-main .process-icon-without-before .wrapper-without-before .icon-container a {
  display: inherit;
}
.cid-ulLIHg4Szd .main-wrapper .icon-main .process-icon .wrapper .icon-container a .icon-wrapper,
.cid-ulLIHg4Szd .main-wrapper .icon-main .process-icon-without-before .wrapper .icon-container a .icon-wrapper,
.cid-ulLIHg4Szd .main-wrapper .icon-main .process-icon .wrapper-without-before .icon-container a .icon-wrapper,
.cid-ulLIHg4Szd .main-wrapper .icon-main .process-icon-without-before .wrapper-without-before .icon-container a .icon-wrapper {
  position: relative;
  z-index: 1;
  padding: 24px;
  height: 80px;
  margin: 0 auto;
  transition: all 0.3s ease-in-out 0s;
  border-radius: 50%;
  font-size: 32px;
  line-height: 1;
  color: #ffffff;
  font-weight: normal;
  width: 80px;
}
.cid-ulLIHg4Szd .main-wrapper .icon-main .process-icon .wrapper .icon-container a .icon-wrapper.icon1,
.cid-ulLIHg4Szd .main-wrapper .icon-main .process-icon-without-before .wrapper .icon-container a .icon-wrapper.icon1,
.cid-ulLIHg4Szd .main-wrapper .icon-main .process-icon .wrapper-without-before .icon-container a .icon-wrapper.icon1,
.cid-ulLIHg4Szd .main-wrapper .icon-main .process-icon-without-before .wrapper-without-before .icon-container a .icon-wrapper.icon1 {
  background-color: rgba(209, 107, 134, 0.3);
  color: #d16b86;
}
.cid-ulLIHg4Szd .main-wrapper .icon-main .process-icon .wrapper .icon-container a .icon-wrapper.icon2,
.cid-ulLIHg4Szd .main-wrapper .icon-main .process-icon-without-before .wrapper .icon-container a .icon-wrapper.icon2,
.cid-ulLIHg4Szd .main-wrapper .icon-main .process-icon .wrapper-without-before .icon-container a .icon-wrapper.icon2,
.cid-ulLIHg4Szd .main-wrapper .icon-main .process-icon-without-before .wrapper-without-before .icon-container a .icon-wrapper.icon2 {
  background-color: rgba(92, 167, 219, 0.3);
  color: #5ca7db;
}
.cid-ulLIHg4Szd .main-wrapper .icon-main .process-icon .wrapper .icon-container a .icon-wrapper.icon3,
.cid-ulLIHg4Szd .main-wrapper .icon-main .process-icon-without-before .wrapper .icon-container a .icon-wrapper.icon3,
.cid-ulLIHg4Szd .main-wrapper .icon-main .process-icon .wrapper-without-before .icon-container a .icon-wrapper.icon3,
.cid-ulLIHg4Szd .main-wrapper .icon-main .process-icon-without-before .wrapper-without-before .icon-container a .icon-wrapper.icon3 {
  background-color: rgba(156, 205, 126, 0.3);
  color: #9ccd7e;
}
.cid-ulLIHg4Szd .main-wrapper .icon-main .process-icon .wrapper .icon-container a .icon-wrapper.icon4,
.cid-ulLIHg4Szd .main-wrapper .icon-main .process-icon-without-before .wrapper .icon-container a .icon-wrapper.icon4,
.cid-ulLIHg4Szd .main-wrapper .icon-main .process-icon .wrapper-without-before .icon-container a .icon-wrapper.icon4,
.cid-ulLIHg4Szd .main-wrapper .icon-main .process-icon-without-before .wrapper-without-before .icon-container a .icon-wrapper.icon4 {
  background-color: rgba(132, 138, 189, 0.3);
  color: #848abd;
}
.cid-ulLIHg4Szd .main-wrapper .icon-main .process-icon .wrapper .icon-container .step,
.cid-ulLIHg4Szd .main-wrapper .icon-main .process-icon-without-before .wrapper .icon-container .step,
.cid-ulLIHg4Szd .main-wrapper .icon-main .process-icon .wrapper-without-before .icon-container .step,
.cid-ulLIHg4Szd .main-wrapper .icon-main .process-icon-without-before .wrapper-without-before .icon-container .step {
  position: absolute;
  bottom: -3px;
  left: 11px;
  width: 20px;
  height: 20px;
  border-radius: 100%;
  font-size: 11px;
  line-height: normal;
  font-weight: 500;
  z-index: 2;
  display: flex;
  -webkit-box-pack: center;
  justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
  text-align: center;
  color: #ffffff;
}
.cid-ulLIHg4Szd .main-wrapper .icon-main .process-icon .wrapper .icon-container .step_1,
.cid-ulLIHg4Szd .main-wrapper .icon-main .process-icon-without-before .wrapper .icon-container .step_1,
.cid-ulLIHg4Szd .main-wrapper .icon-main .process-icon .wrapper-without-before .icon-container .step_1,
.cid-ulLIHg4Szd .main-wrapper .icon-main .process-icon-without-before .wrapper-without-before .icon-container .step_1 {
  background: #d16b86;
}
.cid-ulLIHg4Szd .main-wrapper .icon-main .process-icon .wrapper .icon-container .step_2,
.cid-ulLIHg4Szd .main-wrapper .icon-main .process-icon-without-before .wrapper .icon-container .step_2,
.cid-ulLIHg4Szd .main-wrapper .icon-main .process-icon .wrapper-without-before .icon-container .step_2,
.cid-ulLIHg4Szd .main-wrapper .icon-main .process-icon-without-before .wrapper-without-before .icon-container .step_2 {
  background: #5ca7db;
}
.cid-ulLIHg4Szd .main-wrapper .icon-main .process-icon .wrapper .icon-container .step_3,
.cid-ulLIHg4Szd .main-wrapper .icon-main .process-icon-without-before .wrapper .icon-container .step_3,
.cid-ulLIHg4Szd .main-wrapper .icon-main .process-icon .wrapper-without-before .icon-container .step_3,
.cid-ulLIHg4Szd .main-wrapper .icon-main .process-icon-without-before .wrapper-without-before .icon-container .step_3 {
  background: #9ccd7e;
}
.cid-ulLIHg4Szd .main-wrapper .icon-main .process-icon .wrapper .icon-container .step_4,
.cid-ulLIHg4Szd .main-wrapper .icon-main .process-icon-without-before .wrapper .icon-container .step_4,
.cid-ulLIHg4Szd .main-wrapper .icon-main .process-icon .wrapper-without-before .icon-container .step_4,
.cid-ulLIHg4Szd .main-wrapper .icon-main .process-icon-without-before .wrapper-without-before .icon-container .step_4 {
  background: #848abd;
}
.cid-ulLIHg4Szd .main-wrapper .icon-main .process-icon .subicon-title,
.cid-ulLIHg4Szd .main-wrapper .icon-main .process-icon-without-before .subicon-title {
  color: #404040;
  text-align: center;
  padding-left: 1rem;
  padding-right: 1rem;
  font-weight: 600;
  margin-bottom: 12px;
}
.cid-ulLIHg4Szd .main-wrapper .icon-main .process-icon .subicon-text,
.cid-ulLIHg4Szd .main-wrapper .icon-main .process-icon-without-before .subicon-text {
  padding-left: 1rem;
  padding-right: 1rem;
  color: #606060;
  font-weight: 600;
}
@media (max-width: 767px) {
  .cid-ulLIHg4Szd .wrapper::before {
    display: none;
  }
}
@media (max-width: 991px) {
  .cid-ulLIHg4Szd .third-elem .wrapper:before {
    display: none;
  }
}
.cid-ulLIHg4Szd .main-wrapper .icon-main .process-icon .subicon-title {
  color: #606060;
}
.cid-ulLKHcokfR {
  padding-top: 4rem;
  padding-bottom: 6rem;
  background-color: #f3f4f7;
}
.cid-ulLKHcokfR .card-title {
  padding-bottom: 18px;
  margin: 0;
  color: #14142b;
}
.cid-ulLKHcokfR .align-left {
  max-width: 547px;
}
.cid-ulLKHcokfR .mbr-text,
.cid-ulLKHcokfR .mbr-section-btn {
  color: #606060;
}
.cid-ulLKHcokfR .left-side {
  margin-right: 20px;
}
.cid-ulLKHcokfR .right-side {
  margin-left: 20px;
}
@media (max-width: 768px) {
  .cid-ulLKHcokfR .left-side {
    margin-right: 0px;
  }
  .cid-ulLKHcokfR .right-side {
    padding-top: 20px;
    margin-left: 0px;
  }
}
.cid-urPxT1rS4j {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #232323;
}
.cid-urPxT1rS4j .mbr-fallback-image.disabled {
  display: none;
}
.cid-urPxT1rS4j .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-urPxT1rS4j .list {
  list-style: none;
  padding-left: 0;
  color: #bbbbbb;
}
@media (max-width: 991px) {
  .cid-urPxT1rS4j .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-urPxT1rS4j .list {
    margin-bottom: 0rem;
  }
}
@media (max-width: 767px) {
  .cid-urPxT1rS4j .row {
    text-align: center;
  }
}
@media (max-width: 991px) {
  .cid-urPxT1rS4j div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-urPxT1rS4j .copyright {
  color: #bbbbbb;
}
.cid-u925Ylsgom .navbar-dropdown {
  position: relative !important;
}
.cid-u925Ylsgom .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-u925Ylsgom .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-u925Ylsgom .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-u925Ylsgom .dropdown-item:hover,
.cid-u925Ylsgom .dropdown-item:focus {
  background: #a7b068 !important;
  color: white !important;
}
.cid-u925Ylsgom .dropdown-item:hover span {
  color: white;
}
.cid-u925Ylsgom .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-u925Ylsgom .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-u925Ylsgom .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-u925Ylsgom .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-u925Ylsgom .nav-link {
  position: relative;
}
.cid-u925Ylsgom .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-u925Ylsgom .container {
    flex-wrap: wrap;
  }
}
.cid-u925Ylsgom .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-u925Ylsgom .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-u925Ylsgom .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-u925Ylsgom .dropdown-menu,
.cid-u925Ylsgom .navbar.opened {
  background: #000000 !important;
}
.cid-u925Ylsgom .nav-item:focus,
.cid-u925Ylsgom .nav-link:focus {
  outline: none;
}
.cid-u925Ylsgom .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-u925Ylsgom .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-u925Ylsgom .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-u925Ylsgom .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-u925Ylsgom .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-u925Ylsgom .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-u925Ylsgom .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: #000000;
}
.cid-u925Ylsgom .navbar.opened {
  transition: all 0.3s;
}
.cid-u925Ylsgom .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-u925Ylsgom .navbar .navbar-logo img {
  width: auto;
}
.cid-u925Ylsgom .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-u925Ylsgom .navbar.collapsed {
  justify-content: center;
}
.cid-u925Ylsgom .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-u925Ylsgom .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-u925Ylsgom .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-u925Ylsgom .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-u925Ylsgom .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-u925Ylsgom .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-u925Ylsgom .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-u925Ylsgom .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-u925Ylsgom .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-u925Ylsgom .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-u925Ylsgom .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-u925Ylsgom .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-u925Ylsgom .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-u925Ylsgom .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-u925Ylsgom .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-u925Ylsgom .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-u925Ylsgom .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-u925Ylsgom .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-u925Ylsgom .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-u925Ylsgom .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-u925Ylsgom .navbar.navbar-short {
  min-height: 60px;
}
.cid-u925Ylsgom .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-u925Ylsgom .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-u925Ylsgom .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-u925Ylsgom .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-u925Ylsgom .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-u925Ylsgom .dropdown-item.active,
.cid-u925Ylsgom .dropdown-item:active {
  background-color: transparent;
}
.cid-u925Ylsgom .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-u925Ylsgom .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-u925Ylsgom .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-u925Ylsgom .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-u925Ylsgom .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-u925Ylsgom .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-u925Ylsgom ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-u925Ylsgom .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-u925Ylsgom button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-u925Ylsgom button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #999999;
}
.cid-u925Ylsgom button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-u925Ylsgom button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u925Ylsgom button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u925Ylsgom button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-u925Ylsgom nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u925Ylsgom nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-u925Ylsgom nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-u925Ylsgom nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u925Ylsgom .navbar-dropdown {
  padding: 0 1rem;
}
.cid-u925Ylsgom a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-u925Ylsgom .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-u925Ylsgom .navbar {
    height: 70px;
  }
  .cid-u925Ylsgom .navbar.opened {
    height: auto;
  }
  .cid-u925Ylsgom .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-ulLWEN65GY {
  padding-top: 6rem;
  padding-bottom: 2rem;
  background-color: #f3f4f7;
}
.cid-ulLWEN65GY .mbr-fallback-image.disabled {
  display: none;
}
.cid-ulLWEN65GY .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ulLWEN65GY .mbr-section-title {
  color: #111111;
}
.cid-ulLWEN65GY .mbr-text,
.cid-ulLWEN65GY .mbr-section-btn {
  color: #111111;
}
.cid-ulLXr4iyjZ {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #f3f4f7;
}
.cid-ulLXr4iyjZ .mbr-fallback-image.disabled {
  display: none;
}
.cid-ulLXr4iyjZ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-ulLXr4iyjZ .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-ulLXr4iyjZ .row {
  flex-direction: row-reverse;
}
.cid-ulLXr4iyjZ img {
  width: 100%;
}
.cid-ulMk5kalFC {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #f3f4f7;
}
.cid-ulMk4W20pd {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #f3f4f7;
}
.cid-ulMkBQNNyn {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #f3f4f7;
}
.cid-ulMkBQNNyn .counter-container ul {
  margin: 0;
  list-style: none;
  padding-left: 2.5rem;
}
.cid-ulMkBQNNyn .counter-container ul li {
  margin-bottom: 1rem;
  list-style: none;
  position: relative;
  padding-left: 1rem;
}
.cid-ulMkBQNNyn .counter-container ul li:before {
  position: absolute;
  left: -40px;
  content: "";
  display: flex;
  justify-content: center;
  align-items: center;
  color: #ffffff;
  background-color: #d65d5d;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-top: 5px;
  content: "✓";
}
.cid-ulMlfs3jyI {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #f3f4f7;
}
.cid-ulMwyPX5jz {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #f3f4f7;
}
.cid-ulMlBb9tnn {
  padding-top: 1rem;
  padding-bottom: 2rem;
  background-color: #f3f4f7;
}
.cid-ulMlBb9tnn .counter-container ol {
  margin-bottom: 0;
  counter-reset: myCounter;
}
.cid-ulMlBb9tnn .counter-container ol li {
  margin-bottom: 1rem;
}
.cid-ulMlBb9tnn .counter-container ol li {
  list-style: none;
  padding-left: 1rem;
  position: relative;
}
.cid-ulMlBb9tnn .counter-container ol li:before {
  position: absolute;
  left: -40px;
  margin-top: 5px;
  counter-increment: myCounter;
  content: counter(myCounter);
  line-height: 40px;
  transition: all .2s;
  color: #000000;
  background: #f5c463;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-ulMlf0uYKF {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #f3f4f7;
}
.cid-ulMk4BcgN6 {
  padding-top: 0rem;
  padding-bottom: 2rem;
  background-color: #f3f4f7;
}
.cid-ulMqB2Tg25 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #f3f4f7;
}
.cid-ulMqAzMhcz {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #f3f4f7;
}
.cid-ulMr4eFG5l {
  padding-top: 1rem;
  padding-bottom: 6rem;
  background-color: #f3f4f7;
}
.cid-ulMr4eFG5l .counter-container ul {
  margin: 0;
  list-style: none;
  padding-left: 2.5rem;
}
.cid-ulMr4eFG5l .counter-container ul li {
  margin-bottom: 1rem;
  position: relative;
}
.cid-ulMr4eFG5l .counter-container ul li:before {
  position: absolute;
  left: -1.6rem;
  content: "\2022";
  color: #b97ecd;
  font-weight: bold;
  font-size: 2rem;
  width: 1.6rem;
  line-height: 1.2;
}
.cid-urPxT1rS4j {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #232323;
}
.cid-urPxT1rS4j .mbr-fallback-image.disabled {
  display: none;
}
.cid-urPxT1rS4j .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-urPxT1rS4j .list {
  list-style: none;
  padding-left: 0;
  color: #bbbbbb;
}
@media (max-width: 991px) {
  .cid-urPxT1rS4j .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-urPxT1rS4j .list {
    margin-bottom: 0rem;
  }
}
@media (max-width: 767px) {
  .cid-urPxT1rS4j .row {
    text-align: center;
  }
}
@media (max-width: 991px) {
  .cid-urPxT1rS4j div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-urPxT1rS4j .copyright {
  color: #bbbbbb;
}
.cid-u925Ylsgom .navbar-dropdown {
  position: relative !important;
}
.cid-u925Ylsgom .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-u925Ylsgom .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-u925Ylsgom .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-u925Ylsgom .dropdown-item:hover,
.cid-u925Ylsgom .dropdown-item:focus {
  background: #a7b068 !important;
  color: white !important;
}
.cid-u925Ylsgom .dropdown-item:hover span {
  color: white;
}
.cid-u925Ylsgom .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-u925Ylsgom .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-u925Ylsgom .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-u925Ylsgom .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-u925Ylsgom .nav-link {
  position: relative;
}
.cid-u925Ylsgom .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-u925Ylsgom .container {
    flex-wrap: wrap;
  }
}
.cid-u925Ylsgom .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-u925Ylsgom .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-u925Ylsgom .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-u925Ylsgom .dropdown-menu,
.cid-u925Ylsgom .navbar.opened {
  background: #000000 !important;
}
.cid-u925Ylsgom .nav-item:focus,
.cid-u925Ylsgom .nav-link:focus {
  outline: none;
}
.cid-u925Ylsgom .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-u925Ylsgom .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-u925Ylsgom .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-u925Ylsgom .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-u925Ylsgom .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-u925Ylsgom .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-u925Ylsgom .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: #000000;
}
.cid-u925Ylsgom .navbar.opened {
  transition: all 0.3s;
}
.cid-u925Ylsgom .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-u925Ylsgom .navbar .navbar-logo img {
  width: auto;
}
.cid-u925Ylsgom .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-u925Ylsgom .navbar.collapsed {
  justify-content: center;
}
.cid-u925Ylsgom .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-u925Ylsgom .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-u925Ylsgom .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-u925Ylsgom .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-u925Ylsgom .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-u925Ylsgom .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-u925Ylsgom .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-u925Ylsgom .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-u925Ylsgom .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-u925Ylsgom .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-u925Ylsgom .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-u925Ylsgom .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-u925Ylsgom .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-u925Ylsgom .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-u925Ylsgom .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-u925Ylsgom .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-u925Ylsgom .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-u925Ylsgom .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-u925Ylsgom .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-u925Ylsgom .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-u925Ylsgom .navbar.navbar-short {
  min-height: 60px;
}
.cid-u925Ylsgom .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-u925Ylsgom .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-u925Ylsgom .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-u925Ylsgom .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-u925Ylsgom .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-u925Ylsgom .dropdown-item.active,
.cid-u925Ylsgom .dropdown-item:active {
  background-color: transparent;
}
.cid-u925Ylsgom .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-u925Ylsgom .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-u925Ylsgom .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-u925Ylsgom .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-u925Ylsgom .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-u925Ylsgom .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-u925Ylsgom ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-u925Ylsgom .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-u925Ylsgom button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-u925Ylsgom button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #999999;
}
.cid-u925Ylsgom button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-u925Ylsgom button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u925Ylsgom button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u925Ylsgom button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-u925Ylsgom nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u925Ylsgom nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-u925Ylsgom nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-u925Ylsgom nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u925Ylsgom .navbar-dropdown {
  padding: 0 1rem;
}
.cid-u925Ylsgom a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-u925Ylsgom .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-u925Ylsgom .navbar {
    height: 70px;
  }
  .cid-u925Ylsgom .navbar.opened {
    height: auto;
  }
  .cid-u925Ylsgom .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-umfF7EB3De {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #6f3f7c;
}
.cid-umfF7EB3De .mbr-fallback-image.disabled {
  display: none;
}
.cid-umfF7EB3De .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-umfHJw0fmX {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #0e0e10;
}
.cid-umfHJw0fmX .mbr-fallback-image.disabled {
  display: none;
}
.cid-umfHJw0fmX .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-umfHJw0fmX .container {
    padding: 0 20px;
  }
}
.cid-umfHJw0fmX .row {
  padding: 0 8px;
  margin: 0;
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-umfHJw0fmX .row {
    padding: 0;
  }
}
.cid-umfHJw0fmX .mbr-section-title {
  margin-bottom: 50px;
  color: #ffffff;
  text-align: center;
}
@media (max-width: 992px) {
  .cid-umfHJw0fmX .mbr-section-title {
    margin-bottom: 32px;
  }
}
.cid-umfHJw0fmX .item {
  padding: 0 8px;
  overflow: visible;
  margin-bottom: 16px;
}
@media (max-width: 992px) {
  .cid-umfHJw0fmX .item {
    padding: 0 12px;
  }
}
.cid-umfHJw0fmX .item .item-wrapper {
  position: relative;
  border-radius: 50px;
  padding: 32px;
  height: 100%;
}
@media (max-width: 992px) {
  .cid-umfHJw0fmX .item .item-wrapper {
    padding: 32px 16px;
  }
}
.cid-umfHJw0fmX .item .item-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50px;
  background-color: #ffffff;
  opacity: 1;
}
.cid-umfHJw0fmX .item .item-wrapper .item-img {
  display: flex;
  position: relative;
  z-index: 1;
  margin-bottom: 32px;
}
@media (max-width: 992px) {
  .cid-umfHJw0fmX .item .item-wrapper .item-img {
    display: block;
  }
}
.cid-umfHJw0fmX .item .item-wrapper .item-img img {
  width: 90px;
  height: 90px;
  border-radius: 15px;
  object-fit: cover;
  margin-right: 16px;
}
@media (max-width: 992px) {
  .cid-umfHJw0fmX .item .item-wrapper .item-img img {
    margin: 0 auto 32px;
  }
}
.cid-umfHJw0fmX .item .item-wrapper .item-img .name-wrapper {
  width: 100%;
}
.cid-umfHJw0fmX .item .item-wrapper .item-img .name-wrapper .name-wrap .mbr-name {
  margin-bottom: 0;
}
.cid-umfHJw0fmX .item .item-wrapper .item-img .name-wrapper .name-wrap .mbr-desc {
  opacity: .5;
  margin-bottom: 0;
}
.cid-umfHJw0fmX .item .item-wrapper .item-content {
  position: relative;
  z-index: 1;
}
.cid-umfHJw0fmX .item .item-wrapper .item-content .mbr-text {
  margin-bottom: 0;
}
.cid-umfHJw0fmX .item .item-wrapper .item-content .link-wrap {
  margin-top: 16px;
  display: block;
}
.cid-umfHJw0fmX .item .item-wrapper .item-content .link-wrap:hover .mbr-iconfont {
  transform: scale(1.1);
}
.cid-umfHJw0fmX .item .item-wrapper .item-content .link-wrap .mbr-iconfont {
  font-size: 18px;
  height: 22px;
  width: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  background-color: #d75959;
  border-radius: 4px;
  transition: all 0.3s ease-out;
}
.cid-umfHJw0fmX .mbr-name {
  color: #000000;
}
.cid-umfHJw0fmX .mbr-desc {
  color: #000000;
}
.cid-umfHJw0fmX .mbr-text {
  color: #000000;
}
.cid-umfTu8WMlx {
  padding-top: 5rem;
  padding-bottom: 3rem;
  background-color: #f3f4f7;
}
.cid-umfTu8WMlx .right {
  display: flex;
  flex-direction: column;
}
.cid-umfTu8WMlx .card-heading {
  padding-bottom: 15px;
  color: #3c71d3;
  font-weight: 600;
}
.cid-umfTu8WMlx .row {
  justify-content: center;
}
.cid-umfTu8WMlx ul {
  padding-inline-start: 20px;
  margin-bottom: 0;
}
.cid-umfTu8WMlx .list {
  color: #3c71d3;
}
.cid-umfJMPOHfJ {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #f3f4f7;
}
.cid-umfJNwm2B2 {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #f3f4f7;
}
.cid-umfXE3dTgt {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #f3f4f7;
}
.cid-umfXE3dTgt .counter-container ul {
  margin: 0;
  list-style: none;
  padding-left: 2.5rem;
}
.cid-umfXE3dTgt .counter-container ul li {
  margin-bottom: 1rem;
  list-style: none;
  position: relative;
  padding-left: 1rem;
}
.cid-umfXE3dTgt .counter-container ul li:before {
  position: absolute;
  left: -40px;
  content: "";
  display: flex;
  justify-content: center;
  align-items: center;
  color: #ffffff;
  background-color: #b97ecd;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-top: 5px;
  content: "✓";
}
.cid-umfKLPKKrq {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #f3f4f7;
}
.cid-umfKAHavYz {
  padding-top: 1rem;
  padding-bottom: 6rem;
  background-color: #f3f4f7;
}
.cid-umfKAHavYz img,
.cid-umfKAHavYz .item-img {
  width: 100%;
}
.cid-umfKAHavYz .item:focus,
.cid-umfKAHavYz span:focus {
  outline: none;
}
.cid-umfKAHavYz .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-umfKAHavYz .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-umfKAHavYz .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-umfKAHavYz .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-umfKAHavYz .mbr-section-btn {
  margin-top: auto !important;
}
.cid-umfKAHavYz .mbr-section-title {
  color: #232323;
}
.cid-umfKAHavYz .mbr-text,
.cid-umfKAHavYz .mbr-section-btn {
  text-align: left;
  color: #111111;
}
.cid-umfKAHavYz .item-title {
  text-align: left;
}
.cid-umfKAHavYz .item-subtitle {
  text-align: center;
}
.cid-umgzBo4wqi {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #6f3f7c;
}
.cid-umgzBo4wqi .mbr-fallback-image.disabled {
  display: none;
}
.cid-umgzBo4wqi .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-umgzBo4wqi .mbr-text,
.cid-umgzBo4wqi .mbr-section-btn {
  color: #232323;
}
.cid-umgzBo4wqi .card-title,
.cid-umgzBo4wqi .card-box {
  color: #ffffff;
}
.cid-umgzBo4wqi .mbr-text,
.cid-umgzBo4wqi .link-wrap {
  color: #ffffff;
}
.cid-urPxT1rS4j {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #232323;
}
.cid-urPxT1rS4j .mbr-fallback-image.disabled {
  display: none;
}
.cid-urPxT1rS4j .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-urPxT1rS4j .list {
  list-style: none;
  padding-left: 0;
  color: #bbbbbb;
}
@media (max-width: 991px) {
  .cid-urPxT1rS4j .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-urPxT1rS4j .list {
    margin-bottom: 0rem;
  }
}
@media (max-width: 767px) {
  .cid-urPxT1rS4j .row {
    text-align: center;
  }
}
@media (max-width: 991px) {
  .cid-urPxT1rS4j div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-urPxT1rS4j .copyright {
  color: #bbbbbb;
}
.cid-u925Ylsgom .navbar-dropdown {
  position: relative !important;
}
.cid-u925Ylsgom .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-u925Ylsgom .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-u925Ylsgom .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-u925Ylsgom .dropdown-item:hover,
.cid-u925Ylsgom .dropdown-item:focus {
  background: #a7b068 !important;
  color: white !important;
}
.cid-u925Ylsgom .dropdown-item:hover span {
  color: white;
}
.cid-u925Ylsgom .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-u925Ylsgom .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-u925Ylsgom .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-u925Ylsgom .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-u925Ylsgom .nav-link {
  position: relative;
}
.cid-u925Ylsgom .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-u925Ylsgom .container {
    flex-wrap: wrap;
  }
}
.cid-u925Ylsgom .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-u925Ylsgom .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-u925Ylsgom .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-u925Ylsgom .dropdown-menu,
.cid-u925Ylsgom .navbar.opened {
  background: #000000 !important;
}
.cid-u925Ylsgom .nav-item:focus,
.cid-u925Ylsgom .nav-link:focus {
  outline: none;
}
.cid-u925Ylsgom .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-u925Ylsgom .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-u925Ylsgom .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-u925Ylsgom .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-u925Ylsgom .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-u925Ylsgom .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-u925Ylsgom .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: #000000;
}
.cid-u925Ylsgom .navbar.opened {
  transition: all 0.3s;
}
.cid-u925Ylsgom .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-u925Ylsgom .navbar .navbar-logo img {
  width: auto;
}
.cid-u925Ylsgom .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-u925Ylsgom .navbar.collapsed {
  justify-content: center;
}
.cid-u925Ylsgom .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-u925Ylsgom .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-u925Ylsgom .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-u925Ylsgom .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-u925Ylsgom .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-u925Ylsgom .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-u925Ylsgom .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-u925Ylsgom .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-u925Ylsgom .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-u925Ylsgom .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-u925Ylsgom .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-u925Ylsgom .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-u925Ylsgom .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-u925Ylsgom .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-u925Ylsgom .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-u925Ylsgom .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-u925Ylsgom .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-u925Ylsgom .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-u925Ylsgom .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-u925Ylsgom .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-u925Ylsgom .navbar.navbar-short {
  min-height: 60px;
}
.cid-u925Ylsgom .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-u925Ylsgom .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-u925Ylsgom .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-u925Ylsgom .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-u925Ylsgom .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-u925Ylsgom .dropdown-item.active,
.cid-u925Ylsgom .dropdown-item:active {
  background-color: transparent;
}
.cid-u925Ylsgom .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-u925Ylsgom .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-u925Ylsgom .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-u925Ylsgom .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-u925Ylsgom .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-u925Ylsgom .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-u925Ylsgom ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-u925Ylsgom .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-u925Ylsgom button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-u925Ylsgom button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #999999;
}
.cid-u925Ylsgom button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-u925Ylsgom button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u925Ylsgom button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u925Ylsgom button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-u925Ylsgom nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u925Ylsgom nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-u925Ylsgom nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-u925Ylsgom nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u925Ylsgom .navbar-dropdown {
  padding: 0 1rem;
}
.cid-u925Ylsgom a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-u925Ylsgom .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-u925Ylsgom .navbar {
    height: 70px;
  }
  .cid-u925Ylsgom .navbar.opened {
    height: auto;
  }
  .cid-u925Ylsgom .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uphOhE4jWA {
  padding-top: 6rem;
  padding-bottom: 0rem;
  background-color: #f3f4f7;
}
.cid-uphOhE4jWA .mbr-fallback-image.disabled {
  display: none;
}
.cid-uphOhE4jWA .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uphOhE4jWA .mbr-iconfont {
  font-size: 1.4rem !important;
  font-family: 'Moririse2' !important;
  color: #a7b068;
  margin-left: 1rem;
}
.cid-uphOhE4jWA .panel-group {
  border: none;
}
.cid-uphOhE4jWA .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-uphOhE4jWA .panel-body,
.cid-uphOhE4jWA .card-header {
  padding: 1rem 0;
}
.cid-uphOhE4jWA .panel-title-edit {
  color: #000000;
}
.cid-uphOhE4jWA .card .card-header {
  background-color: transparent;
  margin-bottom: 0;
}
.cid-uphP2AbYeW {
  padding-top: 0rem;
  padding-bottom: 6rem;
  background-color: #f3f4f7;
}
.cid-uphP2AbYeW .mbr-fallback-image.disabled {
  display: none;
}
.cid-uphP2AbYeW .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uphP2AbYeW .mbr-iconfont {
  font-size: 1.4rem !important;
  font-family: 'Moririse2' !important;
  color: #a7b068;
  margin-left: 1rem;
}
.cid-uphP2AbYeW .panel-group {
  border: none;
}
.cid-uphP2AbYeW .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-uphP2AbYeW .panel-body,
.cid-uphP2AbYeW .card-header {
  padding: 1rem 0;
}
.cid-uphP2AbYeW .panel-title-edit {
  color: #000000;
}
.cid-uphP2AbYeW .card .card-header {
  background-color: transparent;
  margin-bottom: 0;
}
.cid-urPxT1rS4j {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #232323;
}
.cid-urPxT1rS4j .mbr-fallback-image.disabled {
  display: none;
}
.cid-urPxT1rS4j .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-urPxT1rS4j .list {
  list-style: none;
  padding-left: 0;
  color: #bbbbbb;
}
@media (max-width: 991px) {
  .cid-urPxT1rS4j .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-urPxT1rS4j .list {
    margin-bottom: 0rem;
  }
}
@media (max-width: 767px) {
  .cid-urPxT1rS4j .row {
    text-align: center;
  }
}
@media (max-width: 991px) {
  .cid-urPxT1rS4j div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-urPxT1rS4j .copyright {
  color: #bbbbbb;
}
.cid-u925Ylsgom .navbar-dropdown {
  position: relative !important;
}
.cid-u925Ylsgom .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-u925Ylsgom .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-u925Ylsgom .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-u925Ylsgom .dropdown-item:hover,
.cid-u925Ylsgom .dropdown-item:focus {
  background: #a7b068 !important;
  color: white !important;
}
.cid-u925Ylsgom .dropdown-item:hover span {
  color: white;
}
.cid-u925Ylsgom .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-u925Ylsgom .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-u925Ylsgom .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-u925Ylsgom .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-u925Ylsgom .nav-link {
  position: relative;
}
.cid-u925Ylsgom .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-u925Ylsgom .container {
    flex-wrap: wrap;
  }
}
.cid-u925Ylsgom .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-u925Ylsgom .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-u925Ylsgom .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-u925Ylsgom .dropdown-menu,
.cid-u925Ylsgom .navbar.opened {
  background: #000000 !important;
}
.cid-u925Ylsgom .nav-item:focus,
.cid-u925Ylsgom .nav-link:focus {
  outline: none;
}
.cid-u925Ylsgom .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-u925Ylsgom .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-u925Ylsgom .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-u925Ylsgom .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-u925Ylsgom .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-u925Ylsgom .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-u925Ylsgom .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: #000000;
}
.cid-u925Ylsgom .navbar.opened {
  transition: all 0.3s;
}
.cid-u925Ylsgom .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-u925Ylsgom .navbar .navbar-logo img {
  width: auto;
}
.cid-u925Ylsgom .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-u925Ylsgom .navbar.collapsed {
  justify-content: center;
}
.cid-u925Ylsgom .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-u925Ylsgom .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-u925Ylsgom .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-u925Ylsgom .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-u925Ylsgom .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-u925Ylsgom .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-u925Ylsgom .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-u925Ylsgom .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-u925Ylsgom .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-u925Ylsgom .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-u925Ylsgom .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-u925Ylsgom .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-u925Ylsgom .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-u925Ylsgom .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-u925Ylsgom .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-u925Ylsgom .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-u925Ylsgom .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-u925Ylsgom .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-u925Ylsgom .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-u925Ylsgom .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-u925Ylsgom .navbar.navbar-short {
  min-height: 60px;
}
.cid-u925Ylsgom .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-u925Ylsgom .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-u925Ylsgom .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-u925Ylsgom .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-u925Ylsgom .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-u925Ylsgom .dropdown-item.active,
.cid-u925Ylsgom .dropdown-item:active {
  background-color: transparent;
}
.cid-u925Ylsgom .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-u925Ylsgom .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-u925Ylsgom .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-u925Ylsgom .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-u925Ylsgom .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-u925Ylsgom .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-u925Ylsgom ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-u925Ylsgom .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-u925Ylsgom button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-u925Ylsgom button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #999999;
}
.cid-u925Ylsgom button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-u925Ylsgom button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u925Ylsgom button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u925Ylsgom button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-u925Ylsgom nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u925Ylsgom nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-u925Ylsgom nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-u925Ylsgom nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u925Ylsgom .navbar-dropdown {
  padding: 0 1rem;
}
.cid-u925Ylsgom a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-u925Ylsgom .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-u925Ylsgom .navbar {
    height: 70px;
  }
  .cid-u925Ylsgom .navbar.opened {
    height: auto;
  }
  .cid-u925Ylsgom .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-urPyHTKFvL {
  padding-top: 5rem;
  padding-bottom: 2rem;
  background-color: #ecedee;
}
.cid-urPyHTKFvL .mbr-fallback-image.disabled {
  display: none;
}
.cid-urPyHTKFvL .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-urPyM3NfRm {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ecedee;
}
.cid-urPyM3NfRm .mbr-fallback-image.disabled {
  display: none;
}
.cid-urPyM3NfRm .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-urPyM3NfRm .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-urPyM3NfRm .row {
  flex-direction: row-reverse;
}
.cid-urPyM3NfRm img {
  width: 100%;
}
.cid-urPyIu8ija {
  padding-top: 3rem;
  padding-bottom: 1rem;
  background-color: #ecedee;
}
.cid-urPyJ5Cb7t {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ecedee;
}
.cid-urPyJmNkLe {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ecedee;
}
.cid-urPDZSBMtt {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ecedee;
}
.cid-urPDZSBMtt .mbr-fallback-image.disabled {
  display: none;
}
.cid-urPDZSBMtt .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-urPDZSBMtt .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-urPDZSBMtt .row {
  flex-direction: row-reverse;
}
.cid-urPDZSBMtt img {
  width: 100%;
}
.cid-urPyIMXydf {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ecedee;
}
.cid-urPKAVARio {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ecedee;
}
.cid-urPKAVARio .mbr-fallback-image.disabled {
  display: none;
}
.cid-urPKAVARio .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-urPKAVARio .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-urPKAVARio .row {
  flex-direction: row-reverse;
}
.cid-urPKAVARio img {
  width: 100%;
}
.cid-urPAdMFwoW {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ecedee;
}
.cid-urPE0XE5R2 {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ecedee;
}
.cid-urPE0XE5R2 .mbr-fallback-image.disabled {
  display: none;
}
.cid-urPE0XE5R2 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-urPE0XE5R2 .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-urPE0XE5R2 .row {
  flex-direction: row-reverse;
}
.cid-urPE0XE5R2 img {
  width: 100%;
}
.cid-urPAeLLIVk {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ecedee;
}
.cid-urPAggYzWh {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ecedee;
}
.cid-urPAgyYQXo {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ecedee;
}
.cid-urPAg08lLD {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ecedee;
}
.cid-urPAeqZNme {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ecedee;
}
.cid-urPAe75zmk {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ecedee;
}
.cid-urPAdcdUBy {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ecedee;
}
.cid-urPC5xhWDh {
  padding-top: 2rem;
  padding-bottom: 6rem;
  background-color: #ecedee;
}
.cid-urPxT1rS4j {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #232323;
}
.cid-urPxT1rS4j .mbr-fallback-image.disabled {
  display: none;
}
.cid-urPxT1rS4j .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-urPxT1rS4j .list {
  list-style: none;
  padding-left: 0;
  color: #bbbbbb;
}
@media (max-width: 991px) {
  .cid-urPxT1rS4j .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-urPxT1rS4j .list {
    margin-bottom: 0rem;
  }
}
@media (max-width: 767px) {
  .cid-urPxT1rS4j .row {
    text-align: center;
  }
}
@media (max-width: 991px) {
  .cid-urPxT1rS4j div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-urPxT1rS4j .copyright {
  color: #bbbbbb;
}
.cid-u925Ylsgom .navbar-dropdown {
  position: relative !important;
}
.cid-u925Ylsgom .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-u925Ylsgom .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-u925Ylsgom .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-u925Ylsgom .dropdown-item:hover,
.cid-u925Ylsgom .dropdown-item:focus {
  background: #a7b068 !important;
  color: white !important;
}
.cid-u925Ylsgom .dropdown-item:hover span {
  color: white;
}
.cid-u925Ylsgom .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-u925Ylsgom .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-u925Ylsgom .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-u925Ylsgom .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-u925Ylsgom .nav-link {
  position: relative;
}
.cid-u925Ylsgom .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-u925Ylsgom .container {
    flex-wrap: wrap;
  }
}
.cid-u925Ylsgom .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-u925Ylsgom .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-u925Ylsgom .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-u925Ylsgom .dropdown-menu,
.cid-u925Ylsgom .navbar.opened {
  background: #000000 !important;
}
.cid-u925Ylsgom .nav-item:focus,
.cid-u925Ylsgom .nav-link:focus {
  outline: none;
}
.cid-u925Ylsgom .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-u925Ylsgom .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-u925Ylsgom .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-u925Ylsgom .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-u925Ylsgom .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-u925Ylsgom .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-u925Ylsgom .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: #000000;
}
.cid-u925Ylsgom .navbar.opened {
  transition: all 0.3s;
}
.cid-u925Ylsgom .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-u925Ylsgom .navbar .navbar-logo img {
  width: auto;
}
.cid-u925Ylsgom .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-u925Ylsgom .navbar.collapsed {
  justify-content: center;
}
.cid-u925Ylsgom .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-u925Ylsgom .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-u925Ylsgom .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-u925Ylsgom .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-u925Ylsgom .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-u925Ylsgom .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-u925Ylsgom .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-u925Ylsgom .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-u925Ylsgom .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-u925Ylsgom .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-u925Ylsgom .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-u925Ylsgom .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-u925Ylsgom .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-u925Ylsgom .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-u925Ylsgom .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-u925Ylsgom .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-u925Ylsgom .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-u925Ylsgom .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-u925Ylsgom .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-u925Ylsgom .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-u925Ylsgom .navbar.navbar-short {
  min-height: 60px;
}
.cid-u925Ylsgom .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-u925Ylsgom .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-u925Ylsgom .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-u925Ylsgom .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-u925Ylsgom .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-u925Ylsgom .dropdown-item.active,
.cid-u925Ylsgom .dropdown-item:active {
  background-color: transparent;
}
.cid-u925Ylsgom .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-u925Ylsgom .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-u925Ylsgom .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-u925Ylsgom .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-u925Ylsgom .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-u925Ylsgom .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-u925Ylsgom ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-u925Ylsgom .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-u925Ylsgom button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-u925Ylsgom button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #999999;
}
.cid-u925Ylsgom button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-u925Ylsgom button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u925Ylsgom button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u925Ylsgom button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-u925Ylsgom nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u925Ylsgom nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-u925Ylsgom nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-u925Ylsgom nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u925Ylsgom .navbar-dropdown {
  padding: 0 1rem;
}
.cid-u925Ylsgom a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-u925Ylsgom .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-u925Ylsgom .navbar {
    height: 70px;
  }
  .cid-u925Ylsgom .navbar.opened {
    height: auto;
  }
  .cid-u925Ylsgom .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uvj4Q3QibU {
  padding-top: 75px;
  padding-bottom: 75px;
  background-image: url("../../../assets/images/background3.jpg");
}
.cid-uvj4Q3QibU .mbr-overlay {
  background-color: #000000;
  opacity: 0.4;
}
.cid-uvj4Q3QibU .form-control,
.cid-uvj4Q3QibU .field-input {
  padding: 0px 20px;
  min-height: auto;
  background-color: #e7e8ea;
  border-color: #e7e8ea;
  color: #000000;
  transition: 0.4s;
  box-shadow: none;
  outline: none;
  border-radius: 25px;
  height: 50px;
  display: flex;
  align-items: center;
}
.cid-uvj4Q3QibU .form-control::-webkit-input-placeholder,
.cid-uvj4Q3QibU .field-input::-webkit-input-placeholder,
.cid-uvj4Q3QibU .form-control::-webkit-input-placeholder,
.cid-uvj4Q3QibU .field-input::-webkit-input-placeholder {
  color: #606060;
}
.cid-uvj4Q3QibU .form-control:-moz-placeholder,
.cid-uvj4Q3QibU .field-input:-moz-placeholder,
.cid-uvj4Q3QibU .form-control:-moz-placeholder,
.cid-uvj4Q3QibU .field-input:-moz-placeholder {
  color: #606060;
}
.cid-uvj4Q3QibU .form-control:hover,
.cid-uvj4Q3QibU .field-input:hover,
.cid-uvj4Q3QibU .form-control:focus,
.cid-uvj4Q3QibU .field-input:focus {
  background-color: #e7e8ea;
  border-color: #e7e8ea;
  color: #000000;
  box-shadow: none;
  outline: none;
}
.cid-uvj4Q3QibU .form-control:hover::-webkit-input-placeholder,
.cid-uvj4Q3QibU .field-input:hover::-webkit-input-placeholder,
.cid-uvj4Q3QibU .form-control:focus::-webkit-input-placeholder,
.cid-uvj4Q3QibU .field-input:focus::-webkit-input-placeholder,
.cid-uvj4Q3QibU .form-control:hover::-webkit-input-placeholder,
.cid-uvj4Q3QibU .field-input:hover::-webkit-input-placeholder,
.cid-uvj4Q3QibU .form-control:focus::-webkit-input-placeholder,
.cid-uvj4Q3QibU .field-input:focus::-webkit-input-placeholder {
  color: #606060;
}
.cid-uvj4Q3QibU .form-control:hover:-moz-placeholder,
.cid-uvj4Q3QibU .field-input:hover:-moz-placeholder,
.cid-uvj4Q3QibU .form-control:focus:-moz-placeholder,
.cid-uvj4Q3QibU .field-input:focus:-moz-placeholder,
.cid-uvj4Q3QibU .form-control:hover:-moz-placeholder,
.cid-uvj4Q3QibU .field-input:hover:-moz-placeholder,
.cid-uvj4Q3QibU .form-control:focus:-moz-placeholder,
.cid-uvj4Q3QibU .field-input:focus:-moz-placeholder {
  color: #606060;
}
.cid-uvj4Q3QibU textarea {
  padding-top: 1rem !important;
  height: 160px !important;
}
.cid-uvj4Q3QibU .jq-number__spin:hover,
.cid-uvj4Q3QibU .jq-number__spin:focus {
  background-color: #e7e8ea;
  border-color: #e7e8ea;
  color: #ffffff;
  box-shadow: none;
  outline: none;
}
.cid-uvj4Q3QibU .jq-number__spin {
  background-color: #e7e8ea;
  border-color: #e7e8ea;
  color: #000000;
  transition: 0.4s;
  box-shadow: none;
  outline: none;
}
.cid-uvj4Q3QibU .jq-selectbox li,
.cid-uvj4Q3QibU .jq-selectbox li {
  background-color: #e7e8ea;
  color: #000000;
}
.cid-uvj4Q3QibU .jq-selectbox li:hover,
.cid-uvj4Q3QibU .jq-selectbox li.selected {
  background-color: #e7e8ea;
  color: #000000;
}
.cid-uvj4Q3QibU .jq-selectbox:hover .jq-selectbox__trigger-arrow,
.cid-uvj4Q3QibU .jq-number__spin.minus:hover:after,
.cid-uvj4Q3QibU .jq-number__spin.plus:hover:after {
  border-top-color: #e7e8ea;
  border-bottom-color: #e7e8ea;
}
.cid-uvj4Q3QibU .jq-selectbox .jq-selectbox__trigger-arrow,
.cid-uvj4Q3QibU .jq-number__spin.minus:after,
.cid-uvj4Q3QibU .jq-number__spin.plus:after {
  border-top-color: #e7e8ea;
  border-bottom-color: #e7e8ea;
}
.cid-uvj4Q3QibU input::-webkit-clear-button {
  display: none;
}
.cid-uvj4Q3QibU input::-webkit-inner-spin-button {
  display: none;
}
.cid-uvj4Q3QibU input::-webkit-outer-spin-button {
  display: none;
}
.cid-uvj4Q3QibU input::-webkit-calendar-picker-indicator {
  display: none;
}
.cid-uvj4Q3QibU .badge {
  display: inline-block;
  border-radius: 10rem;
  padding: 8px 14px 6px 14px;
  color: #a7b068;
  background-color: rgba(132, 138, 189, 0.15);
  margin-bottom: 26px;
}
.cid-uvj4Q3QibU .badge.display-4 {
  font-size: 11px;
  line-height: 1.81;
  letter-spacing: 0.5px;
}
.cid-uvj4Q3QibU .mbr-section-title {
  color: #404040;
}
.cid-uvj4Q3QibU .mbr-section-title.display-2 {
  line-height: 1.2;
  font-size: 30px;
}
.cid-uvj4Q3QibU .mbr-section-subtitle {
  color: #999999;
  font-weight: 600;
  margin-bottom: 21px;
}
.cid-uvj4Q3QibU .mbr-section-subtitle.display-7 {
  line-height: 1.5;
}
.cid-uvj4Q3QibU .mbr-text {
  color: #606060;
}
.cid-uvj4Q3QibU .btn {
  padding: 18px 26px;
  border-radius: 30px;
}
.cid-uvj4Q3QibU .btn.display-4 {
  font-size: 13px;
  line-height: 1;
  letter-spacing: 0.5px;
}
.cid-uvj4Q3QibU .box {
  padding: 60px;
  background-color: rgba(255, 255, 255, 0.88);
  border-radius: 4px;
}
.cid-uvj4Q3QibU .jq-selectbox__select {
  position: relative;
  padding: 0;
  display: flex;
  align-items: center;
  height: 50px;
}
.cid-uvj4Q3QibU .form-control-label,
.cid-uvj4Q3QibU .form-check {
  margin-left: 20px;
}
.cid-urPxT1rS4j {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #232323;
}
.cid-urPxT1rS4j .mbr-fallback-image.disabled {
  display: none;
}
.cid-urPxT1rS4j .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-urPxT1rS4j .list {
  list-style: none;
  padding-left: 0;
  color: #bbbbbb;
}
@media (max-width: 991px) {
  .cid-urPxT1rS4j .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-urPxT1rS4j .list {
    margin-bottom: 0rem;
  }
}
@media (max-width: 767px) {
  .cid-urPxT1rS4j .row {
    text-align: center;
  }
}
@media (max-width: 991px) {
  .cid-urPxT1rS4j div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-urPxT1rS4j .copyright {
  color: #bbbbbb;
}
.cid-uwwhTWAv8i .navbar-dropdown {
  position: relative !important;
}
.cid-uwwhTWAv8i .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-uwwhTWAv8i .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uwwhTWAv8i .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uwwhTWAv8i .dropdown-item:hover,
.cid-uwwhTWAv8i .dropdown-item:focus {
  background: #a7b068 !important;
  color: white !important;
}
.cid-uwwhTWAv8i .dropdown-item:hover span {
  color: white;
}
.cid-uwwhTWAv8i .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uwwhTWAv8i .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uwwhTWAv8i .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uwwhTWAv8i .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uwwhTWAv8i .nav-link {
  position: relative;
}
.cid-uwwhTWAv8i .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uwwhTWAv8i .container {
    flex-wrap: wrap;
  }
}
.cid-uwwhTWAv8i .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uwwhTWAv8i .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-uwwhTWAv8i .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uwwhTWAv8i .dropdown-menu,
.cid-uwwhTWAv8i .navbar.opened {
  background: #000000 !important;
}
.cid-uwwhTWAv8i .nav-item:focus,
.cid-uwwhTWAv8i .nav-link:focus {
  outline: none;
}
.cid-uwwhTWAv8i .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uwwhTWAv8i .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uwwhTWAv8i .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uwwhTWAv8i .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uwwhTWAv8i .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uwwhTWAv8i .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uwwhTWAv8i .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: #000000;
}
.cid-uwwhTWAv8i .navbar.opened {
  transition: all 0.3s;
}
.cid-uwwhTWAv8i .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uwwhTWAv8i .navbar .navbar-logo img {
  width: auto;
}
.cid-uwwhTWAv8i .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uwwhTWAv8i .navbar.collapsed {
  justify-content: center;
}
.cid-uwwhTWAv8i .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uwwhTWAv8i .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-uwwhTWAv8i .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uwwhTWAv8i .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uwwhTWAv8i .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-uwwhTWAv8i .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uwwhTWAv8i .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uwwhTWAv8i .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uwwhTWAv8i .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uwwhTWAv8i .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uwwhTWAv8i .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uwwhTWAv8i .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uwwhTWAv8i .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-uwwhTWAv8i .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uwwhTWAv8i .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uwwhTWAv8i .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uwwhTWAv8i .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uwwhTWAv8i .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uwwhTWAv8i .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uwwhTWAv8i .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uwwhTWAv8i .navbar.navbar-short {
  min-height: 60px;
}
.cid-uwwhTWAv8i .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uwwhTWAv8i .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uwwhTWAv8i .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-uwwhTWAv8i .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uwwhTWAv8i .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uwwhTWAv8i .dropdown-item.active,
.cid-uwwhTWAv8i .dropdown-item:active {
  background-color: transparent;
}
.cid-uwwhTWAv8i .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uwwhTWAv8i .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uwwhTWAv8i .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uwwhTWAv8i .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-uwwhTWAv8i .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uwwhTWAv8i .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uwwhTWAv8i ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uwwhTWAv8i .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uwwhTWAv8i button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uwwhTWAv8i button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #999999;
}
.cid-uwwhTWAv8i button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uwwhTWAv8i button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uwwhTWAv8i button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uwwhTWAv8i button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uwwhTWAv8i nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uwwhTWAv8i nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uwwhTWAv8i nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uwwhTWAv8i nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uwwhTWAv8i .navbar-dropdown {
  padding: 0 1rem;
}
.cid-uwwhTWAv8i a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uwwhTWAv8i .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-uwwhTWAv8i .navbar {
    height: 70px;
  }
  .cid-uwwhTWAv8i .navbar.opened {
    height: auto;
  }
  .cid-uwwhTWAv8i .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uwwhTYqFw9 {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #6f3f7c;
}
.cid-uwwhTYqFw9 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uwwhTYqFw9 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uwwhU0HYX9 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #0e0e10;
}
.cid-uwwhU0HYX9 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uwwhU0HYX9 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-uwwhU0HYX9 .container {
    padding: 0 20px;
  }
}
.cid-uwwhU0HYX9 .row {
  padding: 0 8px;
  margin: 0;
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-uwwhU0HYX9 .row {
    padding: 0;
  }
}
.cid-uwwhU0HYX9 .mbr-section-title {
  margin-bottom: 50px;
  color: #ffffff;
  text-align: center;
}
@media (max-width: 992px) {
  .cid-uwwhU0HYX9 .mbr-section-title {
    margin-bottom: 32px;
  }
}
.cid-uwwhU0HYX9 .item {
  padding: 0 8px;
  overflow: visible;
  margin-bottom: 16px;
}
@media (max-width: 992px) {
  .cid-uwwhU0HYX9 .item {
    padding: 0 12px;
  }
}
.cid-uwwhU0HYX9 .item .item-wrapper {
  position: relative;
  border-radius: 50px;
  padding: 32px;
  height: 100%;
}
@media (max-width: 992px) {
  .cid-uwwhU0HYX9 .item .item-wrapper {
    padding: 32px 16px;
  }
}
.cid-uwwhU0HYX9 .item .item-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50px;
  background-color: #ffffff;
  opacity: 1;
}
.cid-uwwhU0HYX9 .item .item-wrapper .item-img {
  display: flex;
  position: relative;
  z-index: 1;
  margin-bottom: 32px;
}
@media (max-width: 992px) {
  .cid-uwwhU0HYX9 .item .item-wrapper .item-img {
    display: block;
  }
}
.cid-uwwhU0HYX9 .item .item-wrapper .item-img img {
  width: 90px;
  height: 90px;
  border-radius: 15px;
  object-fit: cover;
  margin-right: 16px;
}
@media (max-width: 992px) {
  .cid-uwwhU0HYX9 .item .item-wrapper .item-img img {
    margin: 0 auto 32px;
  }
}
.cid-uwwhU0HYX9 .item .item-wrapper .item-img .name-wrapper {
  width: 100%;
}
.cid-uwwhU0HYX9 .item .item-wrapper .item-img .name-wrapper .name-wrap .mbr-name {
  margin-bottom: 0;
}
.cid-uwwhU0HYX9 .item .item-wrapper .item-img .name-wrapper .name-wrap .mbr-desc {
  opacity: .5;
  margin-bottom: 0;
}
.cid-uwwhU0HYX9 .item .item-wrapper .item-content {
  position: relative;
  z-index: 1;
}
.cid-uwwhU0HYX9 .item .item-wrapper .item-content .mbr-text {
  margin-bottom: 0;
}
.cid-uwwhU0HYX9 .item .item-wrapper .item-content .link-wrap {
  margin-top: 16px;
  display: block;
}
.cid-uwwhU0HYX9 .item .item-wrapper .item-content .link-wrap:hover .mbr-iconfont {
  transform: scale(1.1);
}
.cid-uwwhU0HYX9 .item .item-wrapper .item-content .link-wrap .mbr-iconfont {
  font-size: 18px;
  height: 22px;
  width: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  background-color: #d75959;
  border-radius: 4px;
  transition: all 0.3s ease-out;
}
.cid-uwwhU0HYX9 .mbr-name {
  color: #000000;
}
.cid-uwwhU0HYX9 .mbr-desc {
  color: #000000;
}
.cid-uwwhU0HYX9 .mbr-text {
  color: #000000;
}
.cid-uwwhU3aTQ2 {
  padding-top: 5rem;
  padding-bottom: 3rem;
  background-color: #f3f4f7;
}
.cid-uwwhU3aTQ2 .right {
  display: flex;
  flex-direction: column;
}
.cid-uwwhU3aTQ2 .card-heading {
  padding-bottom: 15px;
  color: #3c71d3;
  font-weight: 600;
}
.cid-uwwhU3aTQ2 .row {
  justify-content: center;
}
.cid-uwwhU3aTQ2 ul {
  padding-inline-start: 20px;
  margin-bottom: 0;
}
.cid-uwwhU3aTQ2 .list {
  color: #3c71d3;
}
.cid-uwwhU5XmIa {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #f3f4f7;
}
.cid-uwwWApJeDB {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #f3f4f7;
}
.cid-uwwWApJeDB .mbr-fallback-image.disabled {
  display: none;
}
.cid-uwwWApJeDB .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-uwwWApJeDB .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uwwWApJeDB .row {
  flex-direction: row-reverse;
}
.cid-uwwWApJeDB img {
  width: 100%;
}
.cid-uwwjmvfSYp {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #f3f4f7;
}
.cid-uwwjmvfSYp .mbr-section-title {
  text-align: left;
}
.cid-uwwWwiEstA {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #f3f4f7;
}
.cid-uwwWwiEstA .mbr-fallback-image.disabled {
  display: none;
}
.cid-uwwWwiEstA .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-uwwWwiEstA .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uwwWwiEstA .row {
  flex-direction: row-reverse;
}
.cid-uwwWwiEstA img {
  width: 100%;
}
.cid-uwwUrFCvds {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #f3f4f7;
}
.cid-uwwUVWI7Rl {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #f3f4f7;
}
.cid-uwwV8OH9t4 {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #f3f4f7;
}
.cid-uwwWG0ZS4F {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #f3f4f7;
}
.cid-uwwWG0ZS4F .mbr-fallback-image.disabled {
  display: none;
}
.cid-uwwWG0ZS4F .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-uwwWG0ZS4F .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uwwWG0ZS4F .row {
  flex-direction: row-reverse;
}
.cid-uwwWG0ZS4F img {
  width: 100%;
}
.cid-uwwhUbFoPz {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #f3f4f7;
}
.cid-uwwhUbFoPz .counter-container ul {
  margin: 0;
  list-style: none;
  padding-left: 2.5rem;
}
.cid-uwwhUbFoPz .counter-container ul li {
  margin-bottom: 1rem;
  position: relative;
}
.cid-uwwhUbFoPz .counter-container ul li:before {
  position: absolute;
  left: -1.6rem;
  content: "\2022";
  color: #b97ecd;
  font-weight: bold;
  font-size: 2rem;
  width: 1.6rem;
  line-height: 1.2;
}
.cid-uwwhUbFoPz .mbr-section-title {
  text-align: left;
}
.cid-uwwhUhDpQW {
  padding-top: 1rem;
  padding-bottom: 6rem;
  background-color: #f3f4f7;
}
.cid-uwwhUhDpQW img,
.cid-uwwhUhDpQW .item-img {
  width: 100%;
}
.cid-uwwhUhDpQW .item:focus,
.cid-uwwhUhDpQW span:focus {
  outline: none;
}
.cid-uwwhUhDpQW .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-uwwhUhDpQW .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uwwhUhDpQW .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uwwhUhDpQW .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-uwwhUhDpQW .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uwwhUhDpQW .mbr-section-title {
  color: #232323;
}
.cid-uwwhUhDpQW .mbr-text,
.cid-uwwhUhDpQW .mbr-section-btn {
  text-align: left;
  color: #111111;
}
.cid-uwwhUhDpQW .item-title {
  text-align: left;
}
.cid-uwwhUhDpQW .item-subtitle {
  text-align: center;
}
.cid-uwwhUkfgfD {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #6f3f7c;
}
.cid-uwwhUkfgfD .mbr-fallback-image.disabled {
  display: none;
}
.cid-uwwhUkfgfD .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uwwhUkfgfD .mbr-text,
.cid-uwwhUkfgfD .mbr-section-btn {
  color: #232323;
}
.cid-uwwhUkfgfD .card-title,
.cid-uwwhUkfgfD .card-box {
  color: #ffffff;
}
.cid-uwwhUkfgfD .mbr-text,
.cid-uwwhUkfgfD .link-wrap {
  color: #ffffff;
}
.cid-uwwhUn3csl {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #232323;
}
.cid-uwwhUn3csl .mbr-fallback-image.disabled {
  display: none;
}
.cid-uwwhUn3csl .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uwwhUn3csl .list {
  list-style: none;
  padding-left: 0;
  color: #bbbbbb;
}
@media (max-width: 991px) {
  .cid-uwwhUn3csl .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uwwhUn3csl .list {
    margin-bottom: 0rem;
  }
}
@media (max-width: 767px) {
  .cid-uwwhUn3csl .row {
    text-align: center;
  }
}
@media (max-width: 991px) {
  .cid-uwwhUn3csl div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-uwwhUn3csl .copyright {
  color: #bbbbbb;
}
