.btn {
  border-width: 2px;
}
body {
  font-family: 'IBM Plex Sans', sans-serif;
}
.display-1 {
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 3.7rem;
  line-height: 1.1;
}
.display-1 > .mbr-iconfont {
  font-size: 4.625rem;
}
.display-2 {
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 3rem;
  line-height: 1.1;
}
.display-2 > .mbr-iconfont {
  font-size: 3.75rem;
}
.display-4 {
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 1.1rem;
  line-height: 1.5;
}
.display-4 > .mbr-iconfont {
  font-size: 1.375rem;
}
.display-5 {
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 2rem;
  line-height: 1.5;
}
.display-5 > .mbr-iconfont {
  font-size: 2.5rem;
}
.display-7 {
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 1.2rem;
  line-height: 1.5;
}
.display-7 > .mbr-iconfont {
  font-size: 1.5rem;
}
/* ---- 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.96rem;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 2.59rem;
    font-size: calc( 1.945rem + (3.7 - 1.945) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (1.945rem + (3.7 - 1.945) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 2.4rem;
    font-size: calc( 1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.3 * (1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 0.88rem;
    font-size: calc( 1.0350000000000001rem + (1.1 - 1.0350000000000001) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.0350000000000001rem + (1.1 - 1.0350000000000001) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 1.6rem;
    font-size: calc( 1.35rem + (2 - 1.35) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.35rem + (2 - 1.35) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-7 {
    font-size: 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: 0.6rem 2rem;
  border-radius: 0px;
}
.btn-sm {
  padding: 0.6rem 1.2rem;
  border-radius: 0px;
}
.btn-md {
  padding: 0.6rem 1.2rem;
  border-radius: 0px;
}
.btn-lg {
  padding: 1rem 2.6rem;
  border-radius: 0px;
}
.bg-primary {
  background-color: #8364e2 !important;
}
.bg-success {
  background-color: #40b0bf !important;
}
.bg-info {
  background-color: #47b5ed !important;
}
.bg-warning {
  background-color: #ffe161 !important;
}
.bg-danger {
  background-color: #ff9966 !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #8364e2 !important;
  border-color: #8364e2 !important;
  color: #ffffff !important;
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus,
.btn-primary.active {
  color: #ffffff !important;
  background-color: #8364e2 !important;
  border-color: #8364e2 !important;
  box-shadow: #8364e2 2px 2px 20px 0px;
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #4e26ca !important;
  border-color: #4e26ca !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #8364e2 !important;
  border-color: #8364e2 !important;
  color: #ffffff !important;
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus,
.btn-secondary.active {
  color: #ffffff !important;
  background-color: #8364e2 !important;
  border-color: #8364e2 !important;
  box-shadow: #8364e2 2px 2px 20px 0px;
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #4e26ca !important;
  border-color: #4e26ca !important;
}
.btn-info,
.btn-info:active {
  background-color: #47b5ed !important;
  border-color: #47b5ed !important;
  color: #ffffff !important;
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus,
.btn-info.active {
  color: #ffffff !important;
  background-color: #47b5ed !important;
  border-color: #47b5ed !important;
  box-shadow: #47b5ed 2px 2px 20px 0px;
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #148cca !important;
  border-color: #148cca !important;
}
.btn-success,
.btn-success:active {
  background-color: #40b0bf !important;
  border-color: #40b0bf !important;
  color: #ffffff !important;
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus,
.btn-success.active {
  color: #ffffff !important;
  background-color: #40b0bf !important;
  border-color: #40b0bf !important;
  box-shadow: #40b0bf 2px 2px 20px 0px;
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #2a747e !important;
  border-color: #2a747e !important;
}
.btn-warning,
.btn-warning:active {
  background-color: #ffe161 !important;
  border-color: #ffe161 !important;
  color: #ffffff !important;
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus,
.btn-warning.active {
  color: #ffffff !important;
  background-color: #ffe161 !important;
  border-color: #ffe161 !important;
  box-shadow: #ffe161 2px 2px 20px 0px;
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #ffffff !important;
  background-color: #ffd10a !important;
  border-color: #ffd10a !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #ff9966 !important;
  border-color: #ff9966 !important;
  color: #ffffff !important;
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus,
.btn-danger.active {
  color: #ffffff !important;
  background-color: #ff9966 !important;
  border-color: #ff9966 !important;
  box-shadow: #ff9966 2px 2px 20px 0px;
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #ff5f0f !important;
  border-color: #ff5f0f !important;
}
.btn-white {
  color: #8364e2 !important;
  background-color: white;
}
.btn-white,
.btn-white:active {
  background-color: white !important;
  border-color: white !important;
  color: #000000 !important;
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus,
.btn-white.active {
  color: #000000 !important;
  background-color: white !important;
  border-color: white !important;
  box-shadow: white 2px 2px 20px 0px;
}
.btn-white.disabled,
.btn-white:disabled {
  color: #000000 !important;
  background-color: #d4d4d4 !important;
  border-color: #d4d4d4 !important;
}
.btn-white:hover,
.btn-white:active {
  color: #8364e2 !important;
  box-shadow: #8364e2 2px 2px 20px 0px;
}
.btn-black,
.btn-black:active {
  background-color: #232323 !important;
  border-color: #232323 !important;
  color: #ffffff !important;
}
.btn-black:hover,
.btn-black:focus,
.btn-black.focus,
.btn-black.active {
  color: #ffffff !important;
  background-color: #232323 !important;
  border-color: #232323 !important;
  box-shadow: #232323 2px 2px 20px 0px;
}
.btn-black.disabled,
.btn-black:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-primary-outline,
.btn-primary-outline:active {
  background-color: transparent !important;
  border-color: #8364e2;
  color: #8364e2;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #4e26ca !important;
  background-color: transparent !important;
  border-color: #4e26ca !important;
  box-shadow: none !important;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #8364e2 !important;
  border-color: #8364e2 !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background-color: transparent !important;
  border-color: #8364e2;
  color: #8364e2;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #4e26ca !important;
  background-color: transparent !important;
  border-color: #4e26ca !important;
  box-shadow: none !important;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #8364e2 !important;
  border-color: #8364e2 !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background-color: transparent !important;
  border-color: #47b5ed;
  color: #47b5ed;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #148cca !important;
  background-color: transparent !important;
  border-color: #148cca !important;
  box-shadow: none !important;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #47b5ed !important;
  border-color: #47b5ed !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background-color: transparent !important;
  border-color: #40b0bf;
  color: #40b0bf;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #2a747e !important;
  background-color: transparent !important;
  border-color: #2a747e !important;
  box-shadow: none !important;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #ffffff !important;
  background-color: #40b0bf !important;
  border-color: #40b0bf !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background-color: transparent !important;
  border-color: #ffe161;
  color: #ffe161;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #ffd10a !important;
  background-color: transparent !important;
  border-color: #ffd10a !important;
  box-shadow: none !important;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #614f00 !important;
  background-color: #ffe161 !important;
  border-color: #ffe161 !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background-color: transparent !important;
  border-color: #ff9966;
  color: #ff9966;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #ff5f0f !important;
  background-color: transparent !important;
  border-color: #ff5f0f !important;
  box-shadow: none !important;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #ff9966 !important;
  border-color: #ff9966 !important;
}
.btn-black-outline,
.btn-black-outline:active {
  background-color: transparent !important;
  border-color: #232323;
  color: #232323;
}
.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.focus,
.btn-black-outline.active {
  color: #000000 !important;
  background-color: transparent !important;
  border-color: #000000 !important;
  box-shadow: none !important;
}
.btn-black-outline.disabled,
.btn-black-outline:disabled {
  color: #ffffff !important;
  background-color: #232323 !important;
  border-color: #232323 !important;
}
.btn-white-outline,
.btn-white-outline:active {
  background-color: transparent !important;
  border-color: #fafafa;
  color: #fafafa;
}
.btn-white-outline:hover,
.btn-white-outline:focus,
.btn-white-outline.focus,
.btn-white-outline.active {
  color: #cfcfcf !important;
  background-color: transparent !important;
  border-color: #cfcfcf !important;
  box-shadow: none !important;
}
.btn-white-outline.disabled,
.btn-white-outline:disabled {
  color: #7a7a7a !important;
  background-color: #fafafa !important;
  border-color: #fafafa !important;
}
.text-primary {
  color: #8364e2 !important;
}
.text-secondary {
  color: #8364e2 !important;
}
.text-success {
  color: #40b0bf !important;
}
.text-info {
  color: #47b5ed !important;
}
.text-warning {
  color: #ffe161 !important;
}
.text-danger {
  color: #ff9966 !important;
}
.text-white {
  color: #fafafa !important;
}
.text-black {
  color: #232323 !important;
}
a.text-primary:hover,
a.text-primary:focus,
a.text-primary.active {
  color: #4923bd !important;
}
a.text-secondary:hover,
a.text-secondary:focus,
a.text-secondary.active {
  color: #4923bd !important;
}
a.text-success:hover,
a.text-success:focus,
a.text-success.active {
  color: #266a73 !important;
}
a.text-info:hover,
a.text-info:focus,
a.text-info.active {
  color: #1283bc !important;
}
a.text-warning:hover,
a.text-warning:focus,
a.text-warning.active {
  color: #facb00 !important;
}
a.text-danger:hover,
a.text-danger:focus,
a.text-danger.active {
  color: #ff5500 !important;
}
a.text-white:hover,
a.text-white:focus,
a.text-white.active {
  color: #fafafa !important;
}
a.text-black:hover,
a.text-black:focus,
a.text-black.active {
  color: #000000 !important;
}
a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption) {
  position: relative;
  background-image: transparent;
  background-size: 10000px 2px;
  background-repeat: no-repeat;
  background-position: 0px 1.2em;
  background-position: -10000px 1.2em;
}
.nav-tabs .nav-link.active {
  color: #8364e2;
}
.nav-tabs .nav-link:not(.active) {
  color: #232323;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #47b5ed;
}
.alert-warning {
  background-color: #ffe161;
}
.alert-danger {
  background-color: #ff9966;
}
.mbr-section-btn a.btn:not(.btn-form) {
  border-radius: 100px;
}
.mbr-gallery-filter li a {
  border-radius: 100px !important;
}
.mbr-gallery-filter li.active .btn {
  background-color: #8364e2;
  border-color: #8364e2;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
.nav-tabs .nav-link {
  border-radius: 100px !important;
}
a,
a:hover {
  color: #8364e2;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #a0d8df;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #ffffff;
}
/* Scroll to top button*/
#scrollToTop a {
  border-radius: 100px;
}
.form-control {
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 1.1rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control > .mbr-iconfont {
  font-size: 1.375rem;
}
.form-control:hover,
.form-control:focus {
  box-shadow: rgba(0, 0, 0, 0.07) 0px 1px 1px 0px, rgba(0, 0, 0, 0.07) 0px 1px 3px 0px, rgba(0, 0, 0, 0.03) 0px 0px 0px 1px;
  border-color: #8364e2 !important;
}
.form-control:-webkit-input-placeholder {
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 1.1rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control:-webkit-input-placeholder > .mbr-iconfont {
  font-size: 1.375rem;
}
blockquote {
  border-color: #8364e2;
}
/* Forms */
.mbr-form .input-group-btn a.btn {
  border-radius: 100px !important;
}
.mbr-form .input-group-btn a.btn:hover {
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.mbr-form .input-group-btn button[type="submit"] {
  border-radius: 100px !important;
  padding: 1rem 3rem;
}
.mbr-form .input-group-btn button[type="submit"]:hover {
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #8364e2;
  color: #ffffff;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #8364e2;
}
.jq-selectbox .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:after,
.jq-number__spin.plus:after {
  transition: 0.4s;
  border-top-color: #353535;
  border-bottom-color: #353535;
}
.jq-selectbox:hover .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:hover:after,
.jq-number__spin.plus:hover:after {
  border-top-color: #8364e2;
  border-bottom-color: #8364e2;
}
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_default,
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_current,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div.xdsoft_current {
  color: #ffffff !important;
  background-color: #8364e2 !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: #8364e2 !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='%238364e2' %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-tO3ZaARX6J {
  z-index: 1000;
  width: 100%;
  position: relative;
}
.cid-tO3ZaARX6J .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;
}
@media (max-width: 767px) {
  .cid-tO3ZaARX6J .navbar-toggler {
    transform: scale(0.8);
  }
}
.cid-tO3ZaARX6J .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tO3ZaARX6J .navbar-brand img {
  max-width: 100%;
  max-height: 100%;
  border-radius: 0px !important;
}
.cid-tO3ZaARX6J .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tO3ZaARX6J .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tO3ZaARX6J .navbar-nav {
  margin: auto;
  margin-left: 0;
  margin-left: auto;
}
.cid-tO3ZaARX6J .navbar-nav .nav-item {
  padding: 0 !important;
  transition: .3s all !important;
}
.cid-tO3ZaARX6J .navbar-nav .nav-item .nav-link {
  padding: 16px !important;
  margin: 0 !important;
  border-radius: 1rem !important;
  transition: .3s all !important;
}
.cid-tO3ZaARX6J .navbar-nav .nav-item .nav-link:hover {
  background-color: rgba(27, 31, 10, 0.06);
}
.cid-tO3ZaARX6J .navbar-nav .open .nav-link::after {
  transform: rotate(180deg);
}
@media (min-width: 992px) {
  .cid-tO3ZaARX6J .navbar-nav .open .nav-link::before {
    content: "";
    width: 100%;
    height: 20px;
    top: 100%;
    background: transparent;
    position: absolute;
  }
}
.cid-tO3ZaARX6J .navbar-nav .dropdown-item {
  padding: 12px !important;
  border-radius: 0.5rem !important;
  margin: 0 8px !important;
  transition: .3s all !important;
}
.cid-tO3ZaARX6J .navbar-nav .dropdown-item:hover {
  background-color: rgba(27, 31, 10, 0.06);
}
@media (min-width: 992px) {
  .cid-tO3ZaARX6J .navbar-nav {
    padding-left: 1.5rem;
  }
}
.cid-tO3ZaARX6J .nav-link {
  width: fit-content;
  position: relative;
}
.cid-tO3ZaARX6J .navbar-logo {
  padding-left: 2rem;
  margin: 0 !important;
}
@media (max-width: 767px) {
  .cid-tO3ZaARX6J .navbar-logo {
    padding-left: 1rem;
  }
}
.cid-tO3ZaARX6J .navbar-caption {
  padding-left: 1rem;
  padding-right: .5rem;
}
@media (max-width: 767px) {
  .cid-tO3ZaARX6J .nav-dropdown {
    padding-bottom: 0.5rem;
  }
}
.cid-tO3ZaARX6J .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  transition: .3s all;
}
.cid-tO3ZaARX6J .container {
  display: flex;
  height: 90px;
  padding: 0.5rem 0.6rem;
  flex-wrap: nowrap;
  background: rgba(64, 63, 131, 0.8) !important;
  left: 0;
  right: 0;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: flex-end;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 100vw;
  margin-top: 1rem;
  background-color: #403f83;
  box-shadow: 0 30px 60px 0 rgba(27, 31, 10, 0.08);
}
@media (max-width: 992px) {
  .cid-tO3ZaARX6J .container {
    padding-right: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-tO3ZaARX6J .container {
    width: 95%;
    height: 56px !important;
    padding-right: 1rem;
    margin-top: 0rem;
  }
}
.cid-tO3ZaARX6J .iconfont-wrapper {
  color: #2469ea !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tO3ZaARX6J .dropdown-menu {
  flex-wrap: wrap;
  flex-direction: column;
  max-width: 100%;
  padding: 12px 4px !important;
  border-radius: 1.5rem;
  transition: .3s all !important;
  min-width: auto;
  background: #403f83;
  background: rgba(64, 63, 131, 0.8) !important;
}
.cid-tO3ZaARX6J .nav-item:focus,
.cid-tO3ZaARX6J .nav-link:focus {
  outline: none;
}
.cid-tO3ZaARX6J .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tO3ZaARX6J .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tO3ZaARX6J .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tO3ZaARX6J .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tO3ZaARX6J .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tO3ZaARX6J .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tO3ZaARX6J .navbar {
  min-height: 90px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: transparent !important;
  padding: 0 !important;
  border: none !important;
  box-shadow: none !important;
  border-radius: 0 !important;
}
.cid-tO3ZaARX6J .navbar.opened {
  transition: all 0.3s;
}
.cid-tO3ZaARX6J .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tO3ZaARX6J .navbar .navbar-logo img {
  width: auto;
}
.cid-tO3ZaARX6J .navbar .navbar-collapse {
  z-index: 1;
  justify-content: flex-end;
}
.cid-tO3ZaARX6J .navbar.collapsed {
  justify-content: center;
}
.cid-tO3ZaARX6J .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tO3ZaARX6J .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tO3ZaARX6J .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 2.7rem);
  }
}
.cid-tO3ZaARX6J .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tO3ZaARX6J .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tO3ZaARX6J .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-tO3ZaARX6J .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tO3ZaARX6J .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tO3ZaARX6J .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 767px) {
  .cid-tO3ZaARX6J .navbar {
    min-height: 72px;
  }
  .cid-tO3ZaARX6J .navbar .navbar-logo img {
    height: 2rem !important;
  }
}
@media (max-width: 991px) {
  .cid-tO3ZaARX6J .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tO3ZaARX6J .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tO3ZaARX6J .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tO3ZaARX6J .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tO3ZaARX6J .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-tO3ZaARX6J .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tO3ZaARX6J .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 10px;
  }
  .cid-tO3ZaARX6J .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tO3ZaARX6J .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tO3ZaARX6J .navbar.navbar-short .navbar-logo img {
  height: 2rem;
}
.cid-tO3ZaARX6J .dropdown-item.active,
.cid-tO3ZaARX6J .dropdown-item:active {
  background-color: transparent;
}
.cid-tO3ZaARX6J .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tO3ZaARX6J .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tO3ZaARX6J .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tO3ZaARX6J .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #403f83;
}
.cid-tO3ZaARX6J .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 105%;
  transform: none;
  top: -12px;
}
.cid-tO3ZaARX6J .navbar .dropdown.open > .dropdown-menu {
  display: flex;
}
.cid-tO3ZaARX6J ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tO3ZaARX6J .navbar-buttons {
  text-align: center;
  min-width: 140px;
}
@media (max-width: 992px) {
  .cid-tO3ZaARX6J .navbar-buttons {
    text-align: left;
  }
}
.cid-tO3ZaARX6J button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tO3ZaARX6J button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-tO3ZaARX6J button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tO3ZaARX6J button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tO3ZaARX6J button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tO3ZaARX6J button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tO3ZaARX6J nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tO3ZaARX6J nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tO3ZaARX6J nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tO3ZaARX6J nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tO3ZaARX6J .navbar-dropdown {
  padding: 0 1rem;
}
.cid-tO3ZaARX6J a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tO3ZaARX6J .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media (max-width: 992px) {
  .cid-tO3ZaARX6J .icons-menu {
    justify-content: flex-start;
    margin-bottom: .5rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tO3ZaARX6J .navbar {
    height: 70px;
  }
  .cid-tO3ZaARX6J .navbar.opened {
    height: auto;
  }
  .cid-tO3ZaARX6J .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tO3ZaARX6J .navbar .dropdown > .dropdown-menu {
  display: none;
  width: max-content;
  max-width: 500px !important;
  transform: translateX(-50%);
  top: calc(100% + 20px);
  left: 50%;
}
.cid-tO3ZaARX6J .navbar .dropdown > .dropdown-menu .dropdown-item {
  line-height: 1 !important;
}
.cid-tO3ZaARX6J .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item {
  align-items: center;
  display: flex;
  height: max-content !important;
  min-height: max-content !important;
}
.cid-tO3ZaARX6J .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item::after {
  display: inline-block;
  position: static;
  margin-left: 0.5rem;
  margin-top: 0;
  margin-right: 0;
  margin-bottom: 0;
  transition: .3s all;
  transform: rotate(-90deg);
}
.cid-tO3ZaARX6J .navbar .dropdown > .dropdown-menu .dropdown.open .dropdown-item::after {
  transform: rotate(0deg);
}
.cid-tO3ZaARX6J .mbr-section-btn {
  margin: -0.6rem -0.6rem;
}
.cid-tO3ZaARX6J .navbar-toggler {
  margin-left: 12px;
  margin-right: 8px;
  order: 1000;
}
@media (max-width: 991px) {
  .cid-tO3ZaARX6J .navbar-brand {
    margin-right: auto;
  }
  .cid-tO3ZaARX6J .navbar-collapse {
    z-index: -1 !important;
    position: absolute;
    top: 110%;
    left: 0;
    width: 100%;
    padding: 1rem;
    border-radius: 1.5rem;
    background: #403f83;
    opacity: 1;
    border-color: rgba(64, 63, 131, 0.8) !important;
    background: rgba(64, 63, 131, 0.8) !important;
    backdrop-filter: blur(8px);
  }
  .cid-tO3ZaARX6J .navbar-nav .nav-item .nav-link::after {
    margin-left: 10px;
  }
  .cid-tO3ZaARX6J .navbar-nav .dropdown-item:hover {
    background-color: rgba(27, 31, 10, 0.06);
  }
  .cid-tO3ZaARX6J .navbar .dropdown > .dropdown-menu {
    max-width: 100% !important;
    transform: translateX(0);
    top: 10px;
    left: 0;
    padding: 8px !important;
    border-radius: 1rem;
    background-color: rgba(27, 31, 10, 0.04) !important;
  }
  .cid-tO3ZaARX6J .navbar .dropdown > .dropdown-menu .dropdown-item {
    padding: 8px !important;
    line-height: 1 !important;
    margin-bottom: 4px !important;
  }
  .cid-tO3ZaARX6J .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item {
    align-items: center;
    display: flex;
    height: max-content !important;
    min-height: max-content !important;
  }
  .cid-tO3ZaARX6J .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item::after {
    display: inline-block;
    position: static;
    margin-left: 0.5rem;
    margin-top: 0;
    margin-right: 0;
    margin-bottom: 0;
    transition: .3s all;
    transform: rotate(0deg);
  }
  .cid-tO3ZaARX6J .navbar .dropdown > .dropdown-menu .dropdown.open .dropdown-item::after {
    transform: rotate(180deg);
  }
  .cid-tO3ZaARX6J .navbar .dropdown > .dropdown-menu .dropdown-submenu {
    position: static;
    width: 100%;
    max-width: 100% !important;
    transform: translateX(0) !important;
    top: 0;
    left: 0;
    padding: 8px !important;
    border-radius: 1rem;
    background-color: rgba(27, 31, 10, 0.04) !important;
  }
  .cid-tO3ZaARX6J .navbar .dropdown.open > .dropdown-menu {
    display: flex !important;
    flex-direction: column;
    align-items: flex-start;
  }
}
@media (max-width: 575px) {
  .cid-tO3ZaARX6J .navbar-collapse {
    padding: 1rem;
  }
}
.cid-ts1eLJQxbj {
  background-image: url("../../../assets/images/fundo-1280x640.webp");
}
.cid-ts1eLJQxbj img {
  width: 100%;
  border-radius: 30px;
}
.cid-ts1eLJQxbj .mbr-section-title {
  color: #ffffff;
}
.cid-ts1eLJQxbj .mbr-section-subtitle {
  background-color: #8364e2;
  padding: 0 1rem;
  border-radius: 5px;
  display: inline-block;
  font-family: 'IBM Plex Sans', sans-serif;
  font-weight: 900;
  color: #ffffff;
}
.cid-ts1eLJQxbj .svg-1 {
  position: absolute;
  bottom: 0;
}
.cid-ts1eLJQxbj .svg-1 path {
  fill: #212428;
}
.cid-ts1eLJQxbj .container-fluid {
  max-width: 1200px;
}
.cid-ts1eLJQxbj .mbr-arrow {
  z-index: 1;
}
.cid-ts1eLJQxbj .mbr-section-btn {
  margin-top: 1.5rem;
}
@media (min-width: 768px) {
  .cid-ts1eLJQxbj .container-fluid {
    padding: 0 1.5rem;
  }
}
@media (max-width: 992px) {
  .cid-ts1eLJQxbj .imageContainer {
    margin-top: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-ts1eLJQxbj .container-fluid {
    padding: 0 1rem;
  }
  .cid-ts1eLJQxbj .mbr-section-subtitle {
    margin-bottom: 1.4rem;
  }
}
.cid-trZyEk4LgY {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #212428;
}
.cid-trZyEk4LgY .stats-item {
  padding: 80px 10px;
  background-color: #8364e2;
  display: flex;
  -webkit-box-pack: center;
  justify-content: center;
}
.cid-trZyEk4LgY .stats-item:first-child {
  border-radius: 10px 0 0 10px;
}
.cid-trZyEk4LgY .stats-item:last-child {
  border-radius: 0 10px 10px 0;
}
.cid-trZyEk4LgY .stats-item > span {
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.cid-trZyEk4LgY .mbr-iconfont {
  font-size: 60px;
  align-self: center;
  margin-right: 20px;
}
.cid-trZyEk4LgY .heading {
  color: #ffffff;
  font-weight: 400;
}
.cid-trZyEk4LgY .heading.display-4 {
  font-size: 13px;
  letter-spacing: 1px;
  line-height: 1.23;
}
.cid-trZyEk4LgY .container {
  min-width: 100%;
  padding: 0;
  margin: 0 auto;
}
.cid-trZyEk4LgY .counter {
  text-align: center;
  color: #ffffff;
  font-weight: 900;
}
.cid-trZyEk4LgY .counter.display-2 {
  letter-spacing: -0.5px;
  margin-bottom: 0;
  line-height: 1.15;
}
.cid-trZyEk4LgY .mbr-card-title,
.cid-trZyEk4LgY .mbr-iconfont {
  text-align: center;
  color: #ffffff;
  display: block;
}
@media (max-width: 768px) {
  .cid-trZyEk4LgY .stats-item {
    -webkit-box-pack: start;
    justify-content: flex-start;
    padding: 30px 25px;
  }
  .cid-trZyEk4LgY .stats-item:first-child {
    border-radius: 0;
  }
  .cid-trZyEk4LgY .stats-item:last-child {
    border-radius: 0;
  }
}
.cid-sQko9BkaNl {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #212428;
}
.cid-sQko9BkaNl .row {
  flex-direction: row-reverse;
}
.cid-sQko9BkaNl .mbr-section-title {
  color: #ffffff;
}
.cid-sQko9BkaNl .mbr-text,
.cid-sQko9BkaNl .mbr-section-btn {
  color: #bbbbbb;
}
.cid-sQko9BkaNl .mbr-section-subtitle {
  color: #8364e2;
}
.cid-sQko9BkaNl img {
  border-radius: 2rem;
}
@media (min-width: 992px) {
  .cid-sQko9BkaNl .image-wrapper {
    padding-right: 4rem;
  }
}
.cid-trTEO7UfsD {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #212428;
}
.cid-trTEO7UfsD .mbr-section-title {
  color: #ffffff;
}
.cid-trTEO7UfsD .mbr-text,
.cid-trTEO7UfsD .mbr-section-btn {
  color: #bbbbbb;
}
.cid-trTEO7UfsD .mbr-section-subtitle {
  color: #8364e2;
}
.cid-trTEO7UfsD img {
  border-radius: 2rem;
}
@media (min-width: 992px) {
  .cid-trTEO7UfsD .image-wrapper {
    padding-right: 4rem;
  }
}
.cid-trTFabiGUE {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #212428;
}
.cid-trTFabiGUE .row {
  flex-direction: row-reverse;
}
.cid-trTFabiGUE .mbr-section-title {
  color: #ffffff;
}
.cid-trTFabiGUE .mbr-text,
.cid-trTFabiGUE .mbr-section-btn {
  color: #bbbbbb;
}
.cid-trTFabiGUE .mbr-section-subtitle {
  color: #8364e2;
}
.cid-trTFabiGUE img {
  border-radius: 2rem;
}
@media (min-width: 992px) {
  .cid-trTFabiGUE .image-wrapper {
    padding-right: 4rem;
  }
}
.cid-ts5xqN43Uw {
  overflow: hidden;
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #212428;
}
.cid-ts5xqN43Uw .title_block {
  margin-bottom: 80px;
}
.cid-ts5xqN43Uw .mbr-section-subtitle {
  margin-bottom: 16px;
  color: #8364e2;
  letter-spacing: 1.6px;
  line-height: 1;
  font-weight: 600;
}
.cid-ts5xqN43Uw .mbr-section-title {
  color: #ffffff;
}
.cid-ts5xqN43Uw .card_wrap {
  height: 100%;
  z-index: 1;
  overflow: hidden;
  padding: 40px;
  padding-bottom: 60px;
  position: relative;
  border-radius: 6px;
  background-color: #7f6cc0;
  box-shadow: 0px 6px 20px 0px rgba(0, 33, 121, 0.08);
}
.cid-ts5xqN43Uw .card_wrap:before {
  content: '';
  bottom: 20px;
  right: 15px;
  width: 65px;
  height: 65px;
  position: absolute;
  background-color: rgba(131, 100, 226, 0.15);
  border-radius: 50%;
}
.cid-ts5xqN43Uw .card_wrap:after {
  content: '';
  bottom: -24px;
  right: -20px;
  width: 80px;
  height: 80px;
  position: absolute;
  background-color: rgba(131, 100, 226, 0.15);
  border-radius: 50%;
}
.cid-ts5xqN43Uw .card_header {
  margin-bottom: 25px;
  display: flex;
  justify-content: space-between;
}
.cid-ts5xqN43Uw .user {
  display: flex;
  align-items: center;
}
.cid-ts5xqN43Uw .user_img {
  width: 60px;
  height: 60px;
  overflow: hidden;
  margin-right: 20px;
  border-radius: 50%;
}
.cid-ts5xqN43Uw .user_img img {
  width: 60px;
  height: 60px;
  object-fit: cover;
}
.cid-ts5xqN43Uw .user_name {
  margin-bottom: 2px;
  display: block;
  color: #ffffff;
  text-align: left;
}
.cid-ts5xqN43Uw .desk {
  margin-bottom: 0;
  color: #000000;
}
.cid-ts5xqN43Uw .iconfont-wrapper {
  min-width: 115px;
}
.cid-ts5xqN43Uw .iconfont-wrapper .mbr-iconfont {
  font-size: 16px;
  margin-right: 3px;
}
.cid-ts5xqN43Uw .carousel-item {
  justify-content: center;
  padding: 0 3rem;
}
.cid-ts5xqN43Uw .carousel-item > div {
  width: 100%;
}
.cid-ts5xqN43Uw .carousel-item.active,
.cid-ts5xqN43Uw .carousel-item-next,
.cid-ts5xqN43Uw .carousel-item-prev {
  display: flex;
}
.cid-ts5xqN43Uw .carousel-controls a {
  width: 9%;
}
.cid-ts5xqN43Uw .carousel-controls a span {
  width: 50px;
  height: 50px;
  font-weight: 700;
  line-height: 50px;
  font-size: 18px;
  color: #6a7c92;
  background-color: transparent;
  border-radius: 50%;
  border: 1px solid #6a7c92;
  transition: 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.cid-ts5xqN43Uw .carousel-controls a:hover span {
  background-color: #8364e2;
  color: #ffffff;
}
@media (min-width: 992px) {
  .cid-ts5xqN43Uw .carousel-controls a {
    width: 5%;
  }
}
@media (max-width: 991px) {
  .cid-ts5xqN43Uw .title_block {
    margin-bottom: 40px;
  }
  .cid-ts5xqN43Uw .card_header {
    flex-direction: column;
  }
  .cid-ts5xqN43Uw .rating {
    margin-bottom: 10px;
    align-self: flex-end;
  }
  .cid-ts5xqN43Uw .user {
    order: 1;
  }
}
@media (max-width: 767px) {
  .cid-ts5xqN43Uw .carousel-controls {
    display: none;
  }
  .cid-ts5xqN43Uw .carousel-item {
    padding: 0;
  }
  .cid-ts5xqN43Uw .card_wrap {
    padding: 30px;
    margin-bottom: 50px;
  }
  .cid-ts5xqN43Uw .card_header {
    margin-bottom: 15px;
  }
  .cid-ts5xqN43Uw .user_img {
    width: 50px;
    height: 50px;
    margin-right: 15px;
  }
  .cid-ts5xqN43Uw .user_img img {
    width: 50px;
    height: 50px;
  }
}
.cid-ts5xqN43Uw .mbr-text {
  color: #ffffff;
}
.cid-tugdHmt16V {
  padding-top: 5rem;
  padding-bottom: 5rem;
  overflow: hidden;
  background-color: #212428;
}
.cid-tugdHmt16V .mbr-fallback-image.disabled {
  display: none;
}
.cid-tugdHmt16V .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tugdHmt16V .container {
  max-width: 1200px;
  padding: 0 10px;
}
.cid-tugdHmt16V .mbr-section-head {
  margin-bottom: 10px;
  width: 100%;
}
.cid-tugdHmt16V .mbr-section-title {
  color: #ffffff;
}
.cid-tugdHmt16V .mbr-section-subtitle {
  color: #f4f4f4;
  margin-top: 15px;
}
@media (max-width: 767px) {
  .cid-tugdHmt16V .mbr-section-subtitle {
    margin-top: 10px;
  }
}
.cid-tugdHmt16V .card-row {
  align-items: stretch;
}
.cid-tugdHmt16V .card {
  margin-top: 30px;
}
@media (max-width: 575px) {
  .cid-tugdHmt16V .card {
    flex-basis: 80% !important;
  }
}
.cid-tugdHmt16V .card-wrapper {
  position: relative;
  height: 100%;
  width: 100%;
  border-radius: 10px;
  overflow: hidden;
  background: linear-gradient(145deg, #1e2024, #23272b);
  box-shadow: 10px 10px 19px #191b1f, -10px -10px 19px #23272b;
}
.cid-tugdHmt16V .card-wrapper:hover .card-bg {
  opacity: 1;
}
.cid-tugdHmt16V .card-bg {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 4;
  width: 100%;
  height: 100%;
  border-radius: 10px;
  background: linear-gradient(to right bottom, #212428, #16181c);
  opacity: 0;
  transition: .5s all;
}
.cid-tugdHmt16V .card-box {
  position: relative;
  z-index: 5;
  height: 100%;
}
.cid-tugdHmt16V .item-img {
  height: 150px;
  align-items: center;
  display: flex;
  justify-content: center;
  padding: 30px;
  width: 100%;
}
.cid-tugdHmt16V .item-img img {
  width: auto;
  max-height: 85px;
  max-width: 100%;
  object-fit: contain;
}
.cid-tugdHmt16V .text-item {
  padding: 16px;
  width: 100%;
  border-top: 1px solid #16181c;
}
.cid-tugdHmt16V .card-title {
  color: #878e99;
  margin-bottom: 0;
  text-align: center;
}
.cid-tugdHmt16V .card-title a {
  transition: 0.4s all;
}
.cid-tugdHmt16V .card-title a:hover {
  color: #8364e2 !important;
}
.cid-tv20JXf5Ez {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #282b2f;
}
.cid-tv20JXf5Ez svg {
  width: 100%;
  position: absolute;
  left: 0;
  top: -48px;
  height: 50px;
  transform-origin: bottom;
  animation: 1.5s ease-in-out infinite alternate svg2;
}
.cid-tv20JXf5Ez svg .st0 {
  fill: #282b2f;
}
@media (max-width: 992px) {
  .cid-tv20JXf5Ez svg {
    width: 1000px;
  }
}
@keyframes svg2 {
  from {
    transform: scaleX(1) scaleY(1.1) rotate(0deg);
  }
  to {
    transform: scaleX(1) scaleY(1.6) rotate(0deg);
  }
}
.cid-tv20JXf5Ez .list {
  list-style: none;
  padding-left: 0;
  color: #ffffff;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-tv20JXf5Ez .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tv20JXf5Ez .list {
    margin-bottom: 0rem;
  }
}
@media (max-width: 767px) {
  .cid-tv20JXf5Ez .row {
    text-align: center;
  }
}
@media (max-width: 991px) {
  .cid-tv20JXf5Ez div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-tv20JXf5Ez .copyright {
  color: #ffffff;
  text-align: center;
}
.cid-tO3ZaARX6J {
  z-index: 1000;
  width: 100%;
  position: relative;
}
.cid-tO3ZaARX6J .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;
}
@media (max-width: 767px) {
  .cid-tO3ZaARX6J .navbar-toggler {
    transform: scale(0.8);
  }
}
.cid-tO3ZaARX6J .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tO3ZaARX6J .navbar-brand img {
  max-width: 100%;
  max-height: 100%;
  border-radius: 0px !important;
}
.cid-tO3ZaARX6J .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tO3ZaARX6J .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tO3ZaARX6J .navbar-nav {
  margin: auto;
  margin-left: 0;
  margin-left: auto;
}
.cid-tO3ZaARX6J .navbar-nav .nav-item {
  padding: 0 !important;
  transition: .3s all !important;
}
.cid-tO3ZaARX6J .navbar-nav .nav-item .nav-link {
  padding: 16px !important;
  margin: 0 !important;
  border-radius: 1rem !important;
  transition: .3s all !important;
}
.cid-tO3ZaARX6J .navbar-nav .nav-item .nav-link:hover {
  background-color: rgba(27, 31, 10, 0.06);
}
.cid-tO3ZaARX6J .navbar-nav .open .nav-link::after {
  transform: rotate(180deg);
}
@media (min-width: 992px) {
  .cid-tO3ZaARX6J .navbar-nav .open .nav-link::before {
    content: "";
    width: 100%;
    height: 20px;
    top: 100%;
    background: transparent;
    position: absolute;
  }
}
.cid-tO3ZaARX6J .navbar-nav .dropdown-item {
  padding: 12px !important;
  border-radius: 0.5rem !important;
  margin: 0 8px !important;
  transition: .3s all !important;
}
.cid-tO3ZaARX6J .navbar-nav .dropdown-item:hover {
  background-color: rgba(27, 31, 10, 0.06);
}
@media (min-width: 992px) {
  .cid-tO3ZaARX6J .navbar-nav {
    padding-left: 1.5rem;
  }
}
.cid-tO3ZaARX6J .nav-link {
  width: fit-content;
  position: relative;
}
.cid-tO3ZaARX6J .navbar-logo {
  padding-left: 2rem;
  margin: 0 !important;
}
@media (max-width: 767px) {
  .cid-tO3ZaARX6J .navbar-logo {
    padding-left: 1rem;
  }
}
.cid-tO3ZaARX6J .navbar-caption {
  padding-left: 1rem;
  padding-right: .5rem;
}
@media (max-width: 767px) {
  .cid-tO3ZaARX6J .nav-dropdown {
    padding-bottom: 0.5rem;
  }
}
.cid-tO3ZaARX6J .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  transition: .3s all;
}
.cid-tO3ZaARX6J .container {
  display: flex;
  height: 90px;
  padding: 0.5rem 0.6rem;
  flex-wrap: nowrap;
  background: rgba(64, 63, 131, 0.8) !important;
  left: 0;
  right: 0;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: flex-end;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 100vw;
  margin-top: 1rem;
  background-color: #403f83;
  box-shadow: 0 30px 60px 0 rgba(27, 31, 10, 0.08);
}
@media (max-width: 992px) {
  .cid-tO3ZaARX6J .container {
    padding-right: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-tO3ZaARX6J .container {
    width: 95%;
    height: 56px !important;
    padding-right: 1rem;
    margin-top: 0rem;
  }
}
.cid-tO3ZaARX6J .iconfont-wrapper {
  color: #2469ea !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tO3ZaARX6J .dropdown-menu {
  flex-wrap: wrap;
  flex-direction: column;
  max-width: 100%;
  padding: 12px 4px !important;
  border-radius: 1.5rem;
  transition: .3s all !important;
  min-width: auto;
  background: #403f83;
  background: rgba(64, 63, 131, 0.8) !important;
}
.cid-tO3ZaARX6J .nav-item:focus,
.cid-tO3ZaARX6J .nav-link:focus {
  outline: none;
}
.cid-tO3ZaARX6J .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tO3ZaARX6J .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tO3ZaARX6J .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tO3ZaARX6J .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tO3ZaARX6J .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tO3ZaARX6J .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tO3ZaARX6J .navbar {
  min-height: 90px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: transparent !important;
  padding: 0 !important;
  border: none !important;
  box-shadow: none !important;
  border-radius: 0 !important;
}
.cid-tO3ZaARX6J .navbar.opened {
  transition: all 0.3s;
}
.cid-tO3ZaARX6J .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tO3ZaARX6J .navbar .navbar-logo img {
  width: auto;
}
.cid-tO3ZaARX6J .navbar .navbar-collapse {
  z-index: 1;
  justify-content: flex-end;
}
.cid-tO3ZaARX6J .navbar.collapsed {
  justify-content: center;
}
.cid-tO3ZaARX6J .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tO3ZaARX6J .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tO3ZaARX6J .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 2.7rem);
  }
}
.cid-tO3ZaARX6J .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tO3ZaARX6J .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tO3ZaARX6J .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-tO3ZaARX6J .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tO3ZaARX6J .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tO3ZaARX6J .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 767px) {
  .cid-tO3ZaARX6J .navbar {
    min-height: 72px;
  }
  .cid-tO3ZaARX6J .navbar .navbar-logo img {
    height: 2rem !important;
  }
}
@media (max-width: 991px) {
  .cid-tO3ZaARX6J .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tO3ZaARX6J .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tO3ZaARX6J .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tO3ZaARX6J .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tO3ZaARX6J .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-tO3ZaARX6J .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tO3ZaARX6J .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 10px;
  }
  .cid-tO3ZaARX6J .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tO3ZaARX6J .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tO3ZaARX6J .navbar.navbar-short .navbar-logo img {
  height: 2rem;
}
.cid-tO3ZaARX6J .dropdown-item.active,
.cid-tO3ZaARX6J .dropdown-item:active {
  background-color: transparent;
}
.cid-tO3ZaARX6J .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tO3ZaARX6J .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tO3ZaARX6J .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tO3ZaARX6J .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #403f83;
}
.cid-tO3ZaARX6J .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 105%;
  transform: none;
  top: -12px;
}
.cid-tO3ZaARX6J .navbar .dropdown.open > .dropdown-menu {
  display: flex;
}
.cid-tO3ZaARX6J ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tO3ZaARX6J .navbar-buttons {
  text-align: center;
  min-width: 140px;
}
@media (max-width: 992px) {
  .cid-tO3ZaARX6J .navbar-buttons {
    text-align: left;
  }
}
.cid-tO3ZaARX6J button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tO3ZaARX6J button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-tO3ZaARX6J button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tO3ZaARX6J button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tO3ZaARX6J button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tO3ZaARX6J button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tO3ZaARX6J nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tO3ZaARX6J nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tO3ZaARX6J nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tO3ZaARX6J nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tO3ZaARX6J .navbar-dropdown {
  padding: 0 1rem;
}
.cid-tO3ZaARX6J a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tO3ZaARX6J .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media (max-width: 992px) {
  .cid-tO3ZaARX6J .icons-menu {
    justify-content: flex-start;
    margin-bottom: .5rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tO3ZaARX6J .navbar {
    height: 70px;
  }
  .cid-tO3ZaARX6J .navbar.opened {
    height: auto;
  }
  .cid-tO3ZaARX6J .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tO3ZaARX6J .navbar .dropdown > .dropdown-menu {
  display: none;
  width: max-content;
  max-width: 500px !important;
  transform: translateX(-50%);
  top: calc(100% + 20px);
  left: 50%;
}
.cid-tO3ZaARX6J .navbar .dropdown > .dropdown-menu .dropdown-item {
  line-height: 1 !important;
}
.cid-tO3ZaARX6J .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item {
  align-items: center;
  display: flex;
  height: max-content !important;
  min-height: max-content !important;
}
.cid-tO3ZaARX6J .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item::after {
  display: inline-block;
  position: static;
  margin-left: 0.5rem;
  margin-top: 0;
  margin-right: 0;
  margin-bottom: 0;
  transition: .3s all;
  transform: rotate(-90deg);
}
.cid-tO3ZaARX6J .navbar .dropdown > .dropdown-menu .dropdown.open .dropdown-item::after {
  transform: rotate(0deg);
}
.cid-tO3ZaARX6J .mbr-section-btn {
  margin: -0.6rem -0.6rem;
}
.cid-tO3ZaARX6J .navbar-toggler {
  margin-left: 12px;
  margin-right: 8px;
  order: 1000;
}
@media (max-width: 991px) {
  .cid-tO3ZaARX6J .navbar-brand {
    margin-right: auto;
  }
  .cid-tO3ZaARX6J .navbar-collapse {
    z-index: -1 !important;
    position: absolute;
    top: 110%;
    left: 0;
    width: 100%;
    padding: 1rem;
    border-radius: 1.5rem;
    background: #403f83;
    opacity: 1;
    border-color: rgba(64, 63, 131, 0.8) !important;
    background: rgba(64, 63, 131, 0.8) !important;
    backdrop-filter: blur(8px);
  }
  .cid-tO3ZaARX6J .navbar-nav .nav-item .nav-link::after {
    margin-left: 10px;
  }
  .cid-tO3ZaARX6J .navbar-nav .dropdown-item:hover {
    background-color: rgba(27, 31, 10, 0.06);
  }
  .cid-tO3ZaARX6J .navbar .dropdown > .dropdown-menu {
    max-width: 100% !important;
    transform: translateX(0);
    top: 10px;
    left: 0;
    padding: 8px !important;
    border-radius: 1rem;
    background-color: rgba(27, 31, 10, 0.04) !important;
  }
  .cid-tO3ZaARX6J .navbar .dropdown > .dropdown-menu .dropdown-item {
    padding: 8px !important;
    line-height: 1 !important;
    margin-bottom: 4px !important;
  }
  .cid-tO3ZaARX6J .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item {
    align-items: center;
    display: flex;
    height: max-content !important;
    min-height: max-content !important;
  }
  .cid-tO3ZaARX6J .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item::after {
    display: inline-block;
    position: static;
    margin-left: 0.5rem;
    margin-top: 0;
    margin-right: 0;
    margin-bottom: 0;
    transition: .3s all;
    transform: rotate(0deg);
  }
  .cid-tO3ZaARX6J .navbar .dropdown > .dropdown-menu .dropdown.open .dropdown-item::after {
    transform: rotate(180deg);
  }
  .cid-tO3ZaARX6J .navbar .dropdown > .dropdown-menu .dropdown-submenu {
    position: static;
    width: 100%;
    max-width: 100% !important;
    transform: translateX(0) !important;
    top: 0;
    left: 0;
    padding: 8px !important;
    border-radius: 1rem;
    background-color: rgba(27, 31, 10, 0.04) !important;
  }
  .cid-tO3ZaARX6J .navbar .dropdown.open > .dropdown-menu {
    display: flex !important;
    flex-direction: column;
    align-items: flex-start;
  }
}
@media (max-width: 575px) {
  .cid-tO3ZaARX6J .navbar-collapse {
    padding: 1rem;
  }
}
.cid-tv27DGEEC5 {
  background-image: url("../../../assets/images/wallhaven-y8epzx-1920x1080-1920x1080.webp");
}
.cid-tv27DGEEC5 img {
  width: 100%;
  border-radius: 30px;
}
.cid-tv27DGEEC5 .mbr-section-title {
  color: #ffffff;
}
.cid-tv27DGEEC5 .mbr-section-subtitle {
  background-color: #8364e2;
  padding: 0 1rem;
  border-radius: 5px;
  display: inline-block;
  font-family: 'IBM Plex Sans', sans-serif;
  font-weight: 900;
  color: #ffffff;
}
.cid-tv27DGEEC5 .svg-1 {
  position: absolute;
  bottom: 0;
}
.cid-tv27DGEEC5 .svg-1 path {
  fill: #212428;
}
.cid-tv27DGEEC5 .container-fluid {
  max-width: 1200px;
}
.cid-tv27DGEEC5 .mbr-arrow {
  z-index: 1;
}
.cid-tv27DGEEC5 .mbr-section-btn {
  margin-top: 1.5rem;
}
@media (min-width: 768px) {
  .cid-tv27DGEEC5 .container-fluid {
    padding: 0 1.5rem;
  }
}
@media (max-width: 992px) {
  .cid-tv27DGEEC5 .imageContainer {
    margin-top: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-tv27DGEEC5 .container-fluid {
    padding: 0 1rem;
  }
  .cid-tv27DGEEC5 .mbr-section-subtitle {
    margin-bottom: 1.4rem;
  }
}
.cid-tv23LsjNOU {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #212428;
}
.cid-tv23LsjNOU .item-img {
  margin-bottom: 1rem;
}
.cid-tv23LsjNOU .item-img img {
  border-radius: 20px;
}
.cid-tv23LsjNOU .item-wrapper {
  position: relative;
  background: #1e2024;
  border-radius: 20px;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
  padding: 1.5rem;
  box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.3);
  padding-top: 2rem;
  padding-bottom: 3rem;
}
.cid-tv23LsjNOU .face-wrap {
  position: absolute;
  left: 1.5rem;
  top: 1rem;
  width: 70px;
  height: 70px;
  border-radius: 50%;
}
.cid-tv23LsjNOU .face-wrap:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #8364e2;
  border-radius: 50%;
  z-index: 1;
  transition: all 0.3s;
  transform: scale(0.99);
}
.cid-tv23LsjNOU .face-wrap .mbr-iconfont {
  position: absolute;
  right: 0;
  bottom: 0;
  font-size: 0.8rem;
  color: #ffffff;
  background: #8364e2;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 3;
}
.cid-tv23LsjNOU .face-wrap:hover .face {
  transform: scale(0.9);
}
.cid-tv23LsjNOU .face-wrap:hover:before {
  transform: scale(1.1);
}
.cid-tv23LsjNOU .face {
  object-fit: cover;
  position: relative;
  transition: all 0.3s;
  border-radius: 50%;
  z-index: 2;
}
.cid-tv23LsjNOU .item-img img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}
.cid-tv23LsjNOU .item:focus,
.cid-tv23LsjNOU span:focus {
  outline: none;
}
.cid-tv23LsjNOU .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-tv23LsjNOU .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tv23LsjNOU .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-tv23LsjNOU .mbr-text,
.cid-tv23LsjNOU .mbr-section-btn {
  text-align: center;
  color: #ffffff;
}
.cid-tv23LsjNOU .item-title {
  text-align: center;
  color: #ffffff;
}
.cid-tv23LsjNOU .item-subtitle {
  text-align: left;
  color: #ffffff;
}
.cid-tv23LsjNOU .mbr-link {
  color: #8364e2;
}
.cid-tv23LsjNOU .mbr-section-subtitle {
  color: #ffffff;
  text-align: center;
}
.cid-tzI1AuwjSJ {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #212428;
}
.cid-tzI1AuwjSJ .mbr-iconfont {
  display: block;
  font-size: 3rem;
  color: #8364e2;
  margin-bottom: 1rem;
}
.cid-tzI1AuwjSJ .main-title {
  position: relative;
  width: fit-content;
  display: inline-block;
  color: #160830;
}
.cid-tzI1AuwjSJ .main-title:before {
  content: "";
  bottom: -1rem;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 2px;
  background: currentColor;
  position: absolute;
}
.cid-tzI1AuwjSJ .card-wrapper {
  transition: all 0.3s;
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 2.5rem 2rem;
  background: #282b2f;
  border-radius: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 2rem;
  box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.3);
}
.cid-tzI1AuwjSJ .card-wrapper:hover {
  background: transparent;
}
.cid-tzI1AuwjSJ .card-title,
.cid-tzI1AuwjSJ .card-box {
  color: #ffffff;
}
.cid-tzI1AuwjSJ .main-title,
.cid-tzI1AuwjSJ .title-col {
  text-align: center;
  color: #ffffff;
}
.cid-tzI1AuwjSJ .card-text {
  color: #bbbbbb;
}
.cid-tzI1AuwjSJ .mbr-fallback-image.disabled {
  display: none;
}
.cid-tzI1AuwjSJ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tv27K539hI {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #212428;
}
.cid-tv27K539hI .progress {
  width: 100%;
}
.cid-tv27K539hI p {
  margin-bottom: 0.4rem;
}
.cid-tv27K539hI .progressbar-title {
  padding-bottom: 1rem;
}
.cid-tv27K539hI .title-wrap {
  display: flex;
  justify-content: space-between;
  -webkit-justify-content: space-between;
}
.cid-tv27K539hI progress {
  height: 10px;
}
.cid-tv27K539hI .progressbar-number {
  display: inline-block;
  width: 50px;
}
.cid-tv27K539hI .progress-primary {
  background: rgba(206, 206, 206, 0.9);
  border: none;
  outline: none;
}
.cid-tv27K539hI .progress-primary::-webkit-progress-bar {
  background: rgba(206, 206, 206, 0.9);
}
.cid-tv27K539hI .progress_value {
  position: relative;
}
.cid-tv27K539hI .progress1 .progressbar-number:before,
.cid-tv27K539hI .progress2 .progressbar-number:before,
.cid-tv27K539hI .progress3 .progressbar-number:before,
.cid-tv27K539hI .progress4 .progressbar-number:before,
.cid-tv27K539hI .progress5 .progressbar-number:before {
  position: absolute;
  right: 15px;
  top: 0;
}
.cid-tv27K539hI progress[value]::-webkit-progress-bar {
  background: rgba(206, 206, 206, 0.4);
  margin: 0;
}
.cid-tv27K539hI progress::-webkit-progress-value {
  background: #6917c7;
}
.cid-tv27K539hI progress[value]::-moz-progress-bar {
  background: #6917c7;
}
.cid-tv27K539hI progress::-ms-fill {
  background: #6917c7;
}
.cid-tv27K539hI .progress1 .progressbar-number:before {
  content: "100";
}
.cid-tv27K539hI .progress2 .progressbar-number:before {
  content: "71";
}
.cid-tv27K539hI .progress3 .progressbar-number:before {
  content: "53";
}
.cid-tv27K539hI .progress4 .progressbar-number:before {
  content: "70";
}
.cid-tv27K539hI .progress5 .progressbar-number:before {
  content: "81";
}
.cid-tv27K539hI .section-content-text {
  color: #454545;
}
.cid-tv27K539hI .progressbar-title p,
.cid-tv27K539hI .progress_value {
  color: #ffffff;
  text-align: center;
}
.cid-tv27K539hI .mbr-section-subtitle {
  color: #454545;
}
.cid-tv27K539hI .section-content-title {
  text-align: center;
  color: #ffffff;
}
.cid-tv27K539hI .mbr-fallback-image.disabled {
  display: none;
}
.cid-tv27K539hI .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tEtnvENJTT {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #212428;
}
.cid-tEtnvENJTT .main-title {
  position: relative;
  width: fit-content;
  display: inline-block;
  color: #160830;
}
.cid-tEtnvENJTT .main-title:before {
  content: "";
  bottom: -1rem;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 2px;
  background: currentColor;
  position: absolute;
}
.cid-tEtnvENJTT img {
  width: 80px;
  margin: auto;
}
.cid-tEtnvENJTT .card-wrapper {
  transition: all 0.3s;
  border: 2px solid #5b3486;
  padding: 2rem 0;
  background: #5b3486;
  border-radius: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 2rem;
}
.cid-tEtnvENJTT .card-wrapper:hover {
  background: transparent;
}
.cid-tEtnvENJTT .card-title,
.cid-tEtnvENJTT .card-box {
  color: #ffffff;
  text-align: center;
}
.cid-tEtnvENJTT .main-title,
.cid-tEtnvENJTT .title-col {
  text-align: center;
  color: #ffffff;
}
.cid-tEtnvENJTT .card-text {
  color: #bbbbbb;
}
.cid-tEtnvENJTT .mbr-fallback-image.disabled {
  display: none;
}
.cid-tEtnvENJTT .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tv27KV4s3c {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #212428;
}
.cid-tv27KV4s3c .progress {
  width: 100%;
}
.cid-tv27KV4s3c p {
  margin-bottom: 0.4rem;
}
.cid-tv27KV4s3c .progressbar-title {
  padding-bottom: 1rem;
}
.cid-tv27KV4s3c .title-wrap {
  display: flex;
  justify-content: space-between;
  -webkit-justify-content: space-between;
}
.cid-tv27KV4s3c progress {
  height: 10px;
}
.cid-tv27KV4s3c .progressbar-number {
  display: inline-block;
  width: 50px;
}
.cid-tv27KV4s3c .progress-primary {
  background: rgba(206, 206, 206, 0.9);
  border: none;
  outline: none;
}
.cid-tv27KV4s3c .progress-primary::-webkit-progress-bar {
  background: rgba(206, 206, 206, 0.9);
}
.cid-tv27KV4s3c .progress_value {
  position: relative;
}
.cid-tv27KV4s3c .progress1 .progressbar-number:before,
.cid-tv27KV4s3c .progress2 .progressbar-number:before,
.cid-tv27KV4s3c .progress3 .progressbar-number:before,
.cid-tv27KV4s3c .progress4 .progressbar-number:before,
.cid-tv27KV4s3c .progress5 .progressbar-number:before {
  position: absolute;
  right: 15px;
  top: 0;
}
.cid-tv27KV4s3c progress[value]::-webkit-progress-bar {
  background: rgba(206, 206, 206, 0.4);
  margin: 0;
}
.cid-tv27KV4s3c progress::-webkit-progress-value {
  background: #6917c7;
}
.cid-tv27KV4s3c progress[value]::-moz-progress-bar {
  background: #6917c7;
}
.cid-tv27KV4s3c progress::-ms-fill {
  background: #6917c7;
}
.cid-tv27KV4s3c .progress1 .progressbar-number:before {
  content: "100";
}
.cid-tv27KV4s3c .progress2 .progressbar-number:before {
  content: "71";
}
.cid-tv27KV4s3c .progress3 .progressbar-number:before {
  content: "53";
}
.cid-tv27KV4s3c .progress4 .progressbar-number:before {
  content: "70";
}
.cid-tv27KV4s3c .progress5 .progressbar-number:before {
  content: "81";
}
.cid-tv27KV4s3c .section-content-text {
  color: #454545;
}
.cid-tv27KV4s3c .progressbar-title p,
.cid-tv27KV4s3c .progress_value {
  color: #ffffff;
  text-align: center;
}
.cid-tv27KV4s3c .mbr-section-subtitle {
  color: #454545;
}
.cid-tv27KV4s3c .section-content-title {
  text-align: center;
  color: #ffffff;
}
.cid-tv27KV4s3c .mbr-fallback-image.disabled {
  display: none;
}
.cid-tv27KV4s3c .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tv27MfC1qP {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #212428;
}
.cid-tv27MfC1qP .title-section {
  padding: 0px;
  margin-bottom: 20px;
}
@media (min-width: 992px) {
  .cid-tv27MfC1qP .title-section {
    padding: 0 90px;
    margin-bottom: 40px;
  }
}
.cid-tv27MfC1qP .btn {
  display: flex;
}
.cid-tv27MfC1qP .card {
  background-color: transparent;
  border: 2px solid #8364e2;
  border-radius: 20px;
}
.cid-tv27MfC1qP .card-body {
  padding: 40px 55px 30px 55px;
}
.cid-tv27MfC1qP .col-img {
  width: 35px;
  height: 35px;
  flex: 0 0 35px;
  margin-right: 22px;
}
.cid-tv27MfC1qP .card-title {
  flex: 1 1 auto;
  width: auto;
}
.cid-tv27MfC1qP .price {
  text-align: center;
  color: #7f6cc0;
}
.cid-tv27MfC1qP .title-section .mbr-section-subtitle {
  text-align: left;
}
.cid-tv27MfC1qP .mbr-fallback-image.disabled {
  display: none;
}
.cid-tv27MfC1qP .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tv27MfC1qP .text1 {
  text-align: left;
  color: #ffffff;
}
.cid-tv27MfC1qP .mbr-section-subtitle {
  color: #ffffff;
  text-align: left;
}
.cid-tv27MfC1qP .title-section .mbr-section-title {
  color: #ffffff;
  text-align: right;
}
.cid-tv27LqGaL0 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #212428;
}
.cid-tv27LqGaL0 .title-section {
  padding: 0px;
  margin-bottom: 20px;
}
@media (min-width: 992px) {
  .cid-tv27LqGaL0 .title-section {
    padding: 0 90px;
    margin-bottom: 40px;
  }
}
.cid-tv27LqGaL0 .btn {
  display: flex;
}
.cid-tv27LqGaL0 .card {
  background-color: transparent;
  border: 2px solid #8364e2;
  border-radius: 20px;
}
.cid-tv27LqGaL0 .card-body {
  padding: 40px 55px 30px 55px;
}
.cid-tv27LqGaL0 .col-img {
  width: 35px;
  height: 35px;
  flex: 0 0 35px;
  margin-right: 22px;
}
.cid-tv27LqGaL0 .card-title {
  flex: 1 1 auto;
  width: auto;
}
.cid-tv27LqGaL0 .price {
  text-align: center;
  color: #7f6cc0;
}
.cid-tv27LqGaL0 .title-section .mbr-section-subtitle {
  text-align: left;
}
.cid-tv27LqGaL0 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tv27LqGaL0 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tv27LqGaL0 .text1 {
  text-align: left;
  color: #ffffff;
}
.cid-tv27LqGaL0 .mbr-section-subtitle {
  color: #ffffff;
  text-align: left;
}
.cid-tv27LqGaL0 .title-section .mbr-section-title {
  color: #ffffff;
  text-align: right;
}
.cid-tv27N2M6az {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #212428;
}
.cid-tv27N2M6az .progress {
  width: 100%;
}
.cid-tv27N2M6az p {
  margin-bottom: 0.4rem;
}
.cid-tv27N2M6az .progressbar-title {
  padding-bottom: 1rem;
}
.cid-tv27N2M6az .title-wrap {
  display: flex;
  justify-content: space-between;
  -webkit-justify-content: space-between;
}
.cid-tv27N2M6az progress {
  height: 10px;
}
.cid-tv27N2M6az .progressbar-number {
  display: inline-block;
  width: 50px;
}
.cid-tv27N2M6az .progress-primary {
  background: rgba(206, 206, 206, 0.9);
  border: none;
  outline: none;
}
.cid-tv27N2M6az .progress-primary::-webkit-progress-bar {
  background: rgba(206, 206, 206, 0.9);
}
.cid-tv27N2M6az .progress_value {
  position: relative;
}
.cid-tv27N2M6az .progress1 .progressbar-number:before,
.cid-tv27N2M6az .progress2 .progressbar-number:before,
.cid-tv27N2M6az .progress3 .progressbar-number:before,
.cid-tv27N2M6az .progress4 .progressbar-number:before,
.cid-tv27N2M6az .progress5 .progressbar-number:before {
  position: absolute;
  right: 15px;
  top: 0;
}
.cid-tv27N2M6az progress[value]::-webkit-progress-bar {
  background: rgba(206, 206, 206, 0.4);
  margin: 0;
}
.cid-tv27N2M6az progress::-webkit-progress-value {
  background: #6917c7;
}
.cid-tv27N2M6az progress[value]::-moz-progress-bar {
  background: #6917c7;
}
.cid-tv27N2M6az progress::-ms-fill {
  background: #6917c7;
}
.cid-tv27N2M6az .progress1 .progressbar-number:before {
  content: "100";
}
.cid-tv27N2M6az .progress2 .progressbar-number:before {
  content: "71";
}
.cid-tv27N2M6az .progress3 .progressbar-number:before {
  content: "53";
}
.cid-tv27N2M6az .progress4 .progressbar-number:before {
  content: "70";
}
.cid-tv27N2M6az .progress5 .progressbar-number:before {
  content: "81";
}
.cid-tv27N2M6az .section-content-text {
  color: #454545;
}
.cid-tv27N2M6az .progressbar-title p,
.cid-tv27N2M6az .progress_value {
  color: #ffffff;
  text-align: center;
}
.cid-tv27N2M6az .mbr-section-subtitle {
  color: #454545;
}
.cid-tv27N2M6az .section-content-title {
  text-align: center;
  color: #ffffff;
}
.cid-tv27N2M6az .mbr-fallback-image.disabled {
  display: none;
}
.cid-tv27N2M6az .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tv27NnDIyf {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #212428;
}
.cid-tv27NnDIyf .title-section {
  padding: 0px;
  margin-bottom: 20px;
}
@media (min-width: 992px) {
  .cid-tv27NnDIyf .title-section {
    padding: 0 90px;
    margin-bottom: 40px;
  }
}
.cid-tv27NnDIyf .btn {
  display: flex;
}
.cid-tv27NnDIyf .card {
  background-color: transparent;
  border: 2px solid #db3eb1;
  border-radius: 20px;
  box-shadow: 0px 10px 20px 0px rgba(29, 29, 27, 0.2);
}
.cid-tv27NnDIyf .card-body {
  padding: 40px 55px 30px 55px;
}
.cid-tv27NnDIyf .col-img {
  width: 35px;
  height: 35px;
  flex: 0 0 35px;
  margin-right: 22px;
}
.cid-tv27NnDIyf .card-title {
  flex: 1 1 auto;
  width: auto;
}
.cid-tv27NnDIyf .price {
  text-align: center;
  color: #7f6cc0;
}
.cid-tv27NnDIyf .title-section .mbr-section-subtitle {
  text-align: center;
}
.cid-tv27NnDIyf .mbr-fallback-image.disabled {
  display: none;
}
.cid-tv27NnDIyf .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tv27NnDIyf .text1 {
  text-align: left;
  color: #ffffff;
}
.cid-tv27NnDIyf .mbr-section-subtitle {
  color: #ffffff;
  text-align: center;
}
.cid-tv27NnDIyf .title-section .mbr-section-title {
  color: #ffffff;
  text-align: left;
}
.cid-tv27O0ZVJq {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #212428;
}
.cid-tv27O0ZVJq .progress {
  width: 100%;
}
.cid-tv27O0ZVJq p {
  margin-bottom: 0.4rem;
}
.cid-tv27O0ZVJq .progressbar-title {
  padding-bottom: 1rem;
}
.cid-tv27O0ZVJq .title-wrap {
  display: flex;
  justify-content: space-between;
  -webkit-justify-content: space-between;
}
.cid-tv27O0ZVJq progress {
  height: 10px;
}
.cid-tv27O0ZVJq .progressbar-number {
  display: inline-block;
  width: 50px;
}
.cid-tv27O0ZVJq .progress-primary {
  background: rgba(206, 206, 206, 0.9);
  border: none;
  outline: none;
}
.cid-tv27O0ZVJq .progress-primary::-webkit-progress-bar {
  background: rgba(206, 206, 206, 0.9);
}
.cid-tv27O0ZVJq .progress_value {
  position: relative;
}
.cid-tv27O0ZVJq .progress1 .progressbar-number:before,
.cid-tv27O0ZVJq .progress2 .progressbar-number:before,
.cid-tv27O0ZVJq .progress3 .progressbar-number:before,
.cid-tv27O0ZVJq .progress4 .progressbar-number:before,
.cid-tv27O0ZVJq .progress5 .progressbar-number:before {
  position: absolute;
  right: 15px;
  top: 0;
}
.cid-tv27O0ZVJq progress[value]::-webkit-progress-bar {
  background: rgba(206, 206, 206, 0.4);
  margin: 0;
}
.cid-tv27O0ZVJq progress::-webkit-progress-value {
  background: #6917c7;
}
.cid-tv27O0ZVJq progress[value]::-moz-progress-bar {
  background: #6917c7;
}
.cid-tv27O0ZVJq progress::-ms-fill {
  background: #6917c7;
}
.cid-tv27O0ZVJq .progress1 .progressbar-number:before {
  content: "100";
}
.cid-tv27O0ZVJq .progress2 .progressbar-number:before {
  content: "71";
}
.cid-tv27O0ZVJq .progress3 .progressbar-number:before {
  content: "53";
}
.cid-tv27O0ZVJq .progress4 .progressbar-number:before {
  content: "70";
}
.cid-tv27O0ZVJq .progress5 .progressbar-number:before {
  content: "81";
}
.cid-tv27O0ZVJq .section-content-text {
  color: #454545;
}
.cid-tv27O0ZVJq .progressbar-title p,
.cid-tv27O0ZVJq .progress_value {
  color: #ffffff;
  text-align: center;
}
.cid-tv27O0ZVJq .mbr-section-subtitle {
  color: #454545;
}
.cid-tv27O0ZVJq .section-content-title {
  text-align: center;
  color: #ffffff;
}
.cid-tv27O0ZVJq .mbr-fallback-image.disabled {
  display: none;
}
.cid-tv27O0ZVJq .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tEtmTYCI8t {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #212428;
  overflow: hidden;
}
.cid-tEtmTYCI8t .mbr-fallback-image.disabled {
  display: none;
}
.cid-tEtmTYCI8t .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tEtmTYCI8t .card-row {
  align-items: stretch;
}
.cid-tEtmTYCI8t .item-wrap {
  position: relative;
  height: 100%;
  width: 100%;
  padding: 55px;
  border-radius: 10px;
  overflow: hidden;
  background: linear-gradient(145deg, #1e2024, #000000);
  box-shadow: 10px 10px 19px #7f6cc0, -10px -10px 19px #7f6cc0;
}
@media (max-width: 767px) {
  .cid-tEtmTYCI8t .item-wrap {
    padding: 40px;
  }
}
@media (max-width: 575px) {
  .cid-tEtmTYCI8t .item-wrap {
    padding: 35px 25px 35px 25px;
  }
}
.cid-tEtmTYCI8t .carousel {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 100%;
  width: 100%;
  margin: 0;
}
.cid-tEtmTYCI8t .carousel-inner {
  display: flex;
  align-items: center;
  margin-bottom: 0;
  border-radius: 10px;
}
.cid-tEtmTYCI8t .carousel-item-wrapper {
  display: flex;
  width: 100%;
  overflow: visible;
  padding: 0;
}
.cid-tEtmTYCI8t .carousel-item-wrapper img {
  aspect-ratio: 1.77842566;
  object-fit: cover;
}
.cid-tEtmTYCI8t .carousel-control {
  top: 50%;
  transform: translateY(-50%);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(to right bottom, #212428, #16181c) !important;
  box-shadow: 10px 10px 19px #191b1f, -10px -10px 19px #23272b;
  border: none;
  transition: all 0.4s;
  opacity: 1;
  color: #C4CFDE;
  font-size: 18px;
}
.cid-tEtmTYCI8t .carousel-control.carousel-control-prev {
  left: -30px;
  margin-left: 0;
}
@media (max-width: 575px) {
  .cid-tEtmTYCI8t .carousel-control.carousel-control-prev {
    left: -25px;
  }
}
.cid-tEtmTYCI8t .carousel-control.carousel-control-next {
  right: -30px;
  margin-right: 0;
}
@media (max-width: 575px) {
  .cid-tEtmTYCI8t .carousel-control.carousel-control-next {
    right: -25px;
  }
}
.cid-tEtmTYCI8t .carousel-control:hover {
  color: #FFFFFF !important;
  opacity: 1;
}
.cid-tEtmTYCI8t .mobi-mbri-arrow-next {
  margin-left: 5px;
}
.cid-tEtmTYCI8t .mobi-mbri-arrow-prev {
  margin-right: 5px;
}
.cid-tEtmTYCI8t .container .carousel-indicators {
  margin-bottom: 3px;
  display: none !important;
}
.cid-tEtmTYCI8t .item-menu-overlay {
  opacity: 0 !important;
}
.cid-tEtmTYCI8t .text-row {
  padding-top: 50px;
}
@media (max-width: 991px) {
  .cid-tEtmTYCI8t .text-row {
    padding-top: 30px;
  }
}
.cid-tEtmTYCI8t .card-title {
  color: #C4CFDE;
  margin-bottom: 20px;
}
.cid-tEtmTYCI8t .card-subtitle {
  color: #878e99;
  margin-bottom: 0;
}
.cid-tEtmTYCI8t .card-text-container {
  display: flex;
  align-items: flex-start;
  padding-top: 24px;
  padding-bottom: 8px;
  margin: 0 -30px;
}
@media (max-width: 767px) {
  .cid-tEtmTYCI8t .card-text-container {
    margin: 0 -10px;
  }
}
@media (max-width: 575px) {
  .cid-tEtmTYCI8t .card-text-container {
    flex-wrap: wrap;
  }
}
.cid-tEtmTYCI8t .card-text {
  color: #878e99;
  margin-bottom: 8px;
  margin-top: 8px;
  flex-basis: 50%;
  flex-grow: 1;
  padding-left: 30px;
  padding-right: 30px;
}
@media (max-width: 767px) {
  .cid-tEtmTYCI8t .card-text {
    padding-left: 10px;
    padding-right: 10px;
  }
}
@media (max-width: 575px) {
  .cid-tEtmTYCI8t .card-text {
    flex-basis: 100%;
  }
}
.cid-tEtmTYCI8t .mbr-section-btn {
  display: flex;
  flex-direction: column;
  align-items: stretch;
}
@media (max-width: 991px) {
  .cid-tEtmTYCI8t .mbr-section-btn {
    margin-top: 10px;
  }
}
.cid-tzI1IFGZUz {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #212428;
}
.cid-tzI1IFGZUz .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-tzI1IFGZUz .card-title {
  margin-bottom: 26px;
  color: #8364e2;
}
.cid-tzI1IFGZUz .mbr-text {
  margin-bottom: 30px;
}
.cid-tzI1IFGZUz .iconfont-wrapper {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  border-top-right-radius: 0;
  display: inline-block;
  text-align: center;
  margin-bottom: 30px;
  position: relative;
  z-index: 1;
  box-shadow: 0px 14px 30px 0px rgba(23, 148, 10, 0.4);
  background-image: linear-gradient(125deg, #17940a 0%, #29ef15 100%);
}
.cid-tzI1IFGZUz .iconfont-wrapper .mbr-iconfont {
  color: #ffffff;
  font-size: 36px;
  line-height: 70px;
}
.cid-tzI1IFGZUz .btn_link {
  display: block;
  margin-bottom: 0;
  position: relative;
  font-weight: 700;
}
.cid-tzI1IFGZUz .btn_link span {
  display: inline-block;
  margin-left: .25rem;
  font-size: 16px;
  vertical-align: middle;
  transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.cid-tzI1IFGZUz .btn_link:hover {
  cursor: pointer;
}
.cid-tzI1IFGZUz .btn_link:hover a {
  color: #8364e2 !important;
}
.cid-tzI1IFGZUz .btn_link:hover span {
  transform: translatex(5px);
}
@media (min-width: 992px) {
  .cid-tzI1IFGZUz .text-wrapper {
    padding-right: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tzI1IFGZUz .text-wrapper {
    text-align: center;
  }
  .cid-tzI1IFGZUz .image-wrapper {
    margin-bottom: 40px;
  }
  .cid-tzI1IFGZUz .mbr-text {
    margin-bottom: 20px;
  }
  .cid-tzI1IFGZUz .iconfont-wrapper {
    margin-bottom: 20px;
  }
}
.cid-tzI1IFGZUz .mbr-text,
.cid-tzI1IFGZUz .btn_link {
  color: #ffffff;
}
.cid-tEtn44VCwI {
  padding-top: 5rem;
  padding-bottom: 5rem;
  overflow: hidden;
  background-color: #212428;
}
.cid-tEtn44VCwI .mbr-fallback-image.disabled {
  display: none;
}
.cid-tEtn44VCwI .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tEtn44VCwI .container {
  max-width: 1200px;
  padding: 0 10px;
}
.cid-tEtn44VCwI .mbr-section-head {
  margin-bottom: 10px;
  width: 100%;
}
.cid-tEtn44VCwI .mbr-section-title {
  color: #ffffff;
}
.cid-tEtn44VCwI .mbr-section-subtitle {
  color: #f4f4f4;
  margin-top: 15px;
}
@media (max-width: 767px) {
  .cid-tEtn44VCwI .mbr-section-subtitle {
    margin-top: 10px;
  }
}
.cid-tEtn44VCwI .card-row {
  align-items: stretch;
}
.cid-tEtn44VCwI .card {
  margin-top: 30px;
}
@media (max-width: 575px) {
  .cid-tEtn44VCwI .card {
    flex-basis: 80% !important;
  }
}
.cid-tEtn44VCwI .card-wrapper {
  position: relative;
  height: 100%;
  width: 100%;
  border-radius: 10px;
  overflow: hidden;
  background: linear-gradient(145deg, #1e2024, #23272b);
  box-shadow: 10px 10px 19px #191b1f, -10px -10px 19px #23272b;
}
.cid-tEtn44VCwI .card-wrapper:hover .card-bg {
  opacity: 1;
}
.cid-tEtn44VCwI .card-bg {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 4;
  width: 100%;
  height: 100%;
  border-radius: 10px;
  background: linear-gradient(to right bottom, #212428, #16181c);
  opacity: 0;
  transition: .5s all;
}
.cid-tEtn44VCwI .card-box {
  position: relative;
  z-index: 5;
  height: 100%;
}
.cid-tEtn44VCwI .item-img {
  height: 150px;
  align-items: center;
  display: flex;
  justify-content: center;
  padding: 30px;
  width: 100%;
}
.cid-tEtn44VCwI .item-img img {
  width: auto;
  max-height: 85px;
  max-width: 100%;
  object-fit: contain;
}
.cid-tEtn44VCwI .text-item {
  padding: 16px;
  width: 100%;
  border-top: 1px solid #16181c;
}
.cid-tEtn44VCwI .card-title {
  color: #878e99;
  margin-bottom: 0;
  text-align: center;
}
.cid-tEtn44VCwI .card-title a {
  transition: 0.4s all;
}
.cid-tEtn44VCwI .card-title a:hover {
  color: #8364e2 !important;
}
.cid-tv20JXf5Ez {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #282b2f;
}
.cid-tv20JXf5Ez svg {
  width: 100%;
  position: absolute;
  left: 0;
  top: -48px;
  height: 50px;
  transform-origin: bottom;
  animation: 1.5s ease-in-out infinite alternate svg2;
}
.cid-tv20JXf5Ez svg .st0 {
  fill: #282b2f;
}
@media (max-width: 992px) {
  .cid-tv20JXf5Ez svg {
    width: 1000px;
  }
}
@keyframes svg2 {
  from {
    transform: scaleX(1) scaleY(1.1) rotate(0deg);
  }
  to {
    transform: scaleX(1) scaleY(1.6) rotate(0deg);
  }
}
.cid-tv20JXf5Ez .list {
  list-style: none;
  padding-left: 0;
  color: #ffffff;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-tv20JXf5Ez .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tv20JXf5Ez .list {
    margin-bottom: 0rem;
  }
}
@media (max-width: 767px) {
  .cid-tv20JXf5Ez .row {
    text-align: center;
  }
}
@media (max-width: 991px) {
  .cid-tv20JXf5Ez div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-tv20JXf5Ez .copyright {
  color: #ffffff;
  text-align: center;
}
.cid-tO3ZaARX6J {
  z-index: 1000;
  width: 100%;
  position: relative;
}
.cid-tO3ZaARX6J .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;
}
@media (max-width: 767px) {
  .cid-tO3ZaARX6J .navbar-toggler {
    transform: scale(0.8);
  }
}
.cid-tO3ZaARX6J .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tO3ZaARX6J .navbar-brand img {
  max-width: 100%;
  max-height: 100%;
  border-radius: 0px !important;
}
.cid-tO3ZaARX6J .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tO3ZaARX6J .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tO3ZaARX6J .navbar-nav {
  margin: auto;
  margin-left: 0;
  margin-left: auto;
}
.cid-tO3ZaARX6J .navbar-nav .nav-item {
  padding: 0 !important;
  transition: .3s all !important;
}
.cid-tO3ZaARX6J .navbar-nav .nav-item .nav-link {
  padding: 16px !important;
  margin: 0 !important;
  border-radius: 1rem !important;
  transition: .3s all !important;
}
.cid-tO3ZaARX6J .navbar-nav .nav-item .nav-link:hover {
  background-color: rgba(27, 31, 10, 0.06);
}
.cid-tO3ZaARX6J .navbar-nav .open .nav-link::after {
  transform: rotate(180deg);
}
@media (min-width: 992px) {
  .cid-tO3ZaARX6J .navbar-nav .open .nav-link::before {
    content: "";
    width: 100%;
    height: 20px;
    top: 100%;
    background: transparent;
    position: absolute;
  }
}
.cid-tO3ZaARX6J .navbar-nav .dropdown-item {
  padding: 12px !important;
  border-radius: 0.5rem !important;
  margin: 0 8px !important;
  transition: .3s all !important;
}
.cid-tO3ZaARX6J .navbar-nav .dropdown-item:hover {
  background-color: rgba(27, 31, 10, 0.06);
}
@media (min-width: 992px) {
  .cid-tO3ZaARX6J .navbar-nav {
    padding-left: 1.5rem;
  }
}
.cid-tO3ZaARX6J .nav-link {
  width: fit-content;
  position: relative;
}
.cid-tO3ZaARX6J .navbar-logo {
  padding-left: 2rem;
  margin: 0 !important;
}
@media (max-width: 767px) {
  .cid-tO3ZaARX6J .navbar-logo {
    padding-left: 1rem;
  }
}
.cid-tO3ZaARX6J .navbar-caption {
  padding-left: 1rem;
  padding-right: .5rem;
}
@media (max-width: 767px) {
  .cid-tO3ZaARX6J .nav-dropdown {
    padding-bottom: 0.5rem;
  }
}
.cid-tO3ZaARX6J .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  transition: .3s all;
}
.cid-tO3ZaARX6J .container {
  display: flex;
  height: 90px;
  padding: 0.5rem 0.6rem;
  flex-wrap: nowrap;
  background: rgba(64, 63, 131, 0.8) !important;
  left: 0;
  right: 0;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: flex-end;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 100vw;
  margin-top: 1rem;
  background-color: #403f83;
  box-shadow: 0 30px 60px 0 rgba(27, 31, 10, 0.08);
}
@media (max-width: 992px) {
  .cid-tO3ZaARX6J .container {
    padding-right: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-tO3ZaARX6J .container {
    width: 95%;
    height: 56px !important;
    padding-right: 1rem;
    margin-top: 0rem;
  }
}
.cid-tO3ZaARX6J .iconfont-wrapper {
  color: #2469ea !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tO3ZaARX6J .dropdown-menu {
  flex-wrap: wrap;
  flex-direction: column;
  max-width: 100%;
  padding: 12px 4px !important;
  border-radius: 1.5rem;
  transition: .3s all !important;
  min-width: auto;
  background: #403f83;
  background: rgba(64, 63, 131, 0.8) !important;
}
.cid-tO3ZaARX6J .nav-item:focus,
.cid-tO3ZaARX6J .nav-link:focus {
  outline: none;
}
.cid-tO3ZaARX6J .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tO3ZaARX6J .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tO3ZaARX6J .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tO3ZaARX6J .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tO3ZaARX6J .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tO3ZaARX6J .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tO3ZaARX6J .navbar {
  min-height: 90px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: transparent !important;
  padding: 0 !important;
  border: none !important;
  box-shadow: none !important;
  border-radius: 0 !important;
}
.cid-tO3ZaARX6J .navbar.opened {
  transition: all 0.3s;
}
.cid-tO3ZaARX6J .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tO3ZaARX6J .navbar .navbar-logo img {
  width: auto;
}
.cid-tO3ZaARX6J .navbar .navbar-collapse {
  z-index: 1;
  justify-content: flex-end;
}
.cid-tO3ZaARX6J .navbar.collapsed {
  justify-content: center;
}
.cid-tO3ZaARX6J .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tO3ZaARX6J .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tO3ZaARX6J .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 2.7rem);
  }
}
.cid-tO3ZaARX6J .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tO3ZaARX6J .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tO3ZaARX6J .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-tO3ZaARX6J .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tO3ZaARX6J .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tO3ZaARX6J .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 767px) {
  .cid-tO3ZaARX6J .navbar {
    min-height: 72px;
  }
  .cid-tO3ZaARX6J .navbar .navbar-logo img {
    height: 2rem !important;
  }
}
@media (max-width: 991px) {
  .cid-tO3ZaARX6J .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tO3ZaARX6J .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tO3ZaARX6J .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tO3ZaARX6J .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tO3ZaARX6J .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-tO3ZaARX6J .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tO3ZaARX6J .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 10px;
  }
  .cid-tO3ZaARX6J .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tO3ZaARX6J .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tO3ZaARX6J .navbar.navbar-short .navbar-logo img {
  height: 2rem;
}
.cid-tO3ZaARX6J .dropdown-item.active,
.cid-tO3ZaARX6J .dropdown-item:active {
  background-color: transparent;
}
.cid-tO3ZaARX6J .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tO3ZaARX6J .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tO3ZaARX6J .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tO3ZaARX6J .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #403f83;
}
.cid-tO3ZaARX6J .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 105%;
  transform: none;
  top: -12px;
}
.cid-tO3ZaARX6J .navbar .dropdown.open > .dropdown-menu {
  display: flex;
}
.cid-tO3ZaARX6J ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tO3ZaARX6J .navbar-buttons {
  text-align: center;
  min-width: 140px;
}
@media (max-width: 992px) {
  .cid-tO3ZaARX6J .navbar-buttons {
    text-align: left;
  }
}
.cid-tO3ZaARX6J button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tO3ZaARX6J button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-tO3ZaARX6J button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tO3ZaARX6J button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tO3ZaARX6J button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tO3ZaARX6J button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tO3ZaARX6J nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tO3ZaARX6J nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tO3ZaARX6J nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tO3ZaARX6J nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tO3ZaARX6J .navbar-dropdown {
  padding: 0 1rem;
}
.cid-tO3ZaARX6J a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tO3ZaARX6J .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media (max-width: 992px) {
  .cid-tO3ZaARX6J .icons-menu {
    justify-content: flex-start;
    margin-bottom: .5rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tO3ZaARX6J .navbar {
    height: 70px;
  }
  .cid-tO3ZaARX6J .navbar.opened {
    height: auto;
  }
  .cid-tO3ZaARX6J .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tO3ZaARX6J .navbar .dropdown > .dropdown-menu {
  display: none;
  width: max-content;
  max-width: 500px !important;
  transform: translateX(-50%);
  top: calc(100% + 20px);
  left: 50%;
}
.cid-tO3ZaARX6J .navbar .dropdown > .dropdown-menu .dropdown-item {
  line-height: 1 !important;
}
.cid-tO3ZaARX6J .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item {
  align-items: center;
  display: flex;
  height: max-content !important;
  min-height: max-content !important;
}
.cid-tO3ZaARX6J .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item::after {
  display: inline-block;
  position: static;
  margin-left: 0.5rem;
  margin-top: 0;
  margin-right: 0;
  margin-bottom: 0;
  transition: .3s all;
  transform: rotate(-90deg);
}
.cid-tO3ZaARX6J .navbar .dropdown > .dropdown-menu .dropdown.open .dropdown-item::after {
  transform: rotate(0deg);
}
.cid-tO3ZaARX6J .mbr-section-btn {
  margin: -0.6rem -0.6rem;
}
.cid-tO3ZaARX6J .navbar-toggler {
  margin-left: 12px;
  margin-right: 8px;
  order: 1000;
}
@media (max-width: 991px) {
  .cid-tO3ZaARX6J .navbar-brand {
    margin-right: auto;
  }
  .cid-tO3ZaARX6J .navbar-collapse {
    z-index: -1 !important;
    position: absolute;
    top: 110%;
    left: 0;
    width: 100%;
    padding: 1rem;
    border-radius: 1.5rem;
    background: #403f83;
    opacity: 1;
    border-color: rgba(64, 63, 131, 0.8) !important;
    background: rgba(64, 63, 131, 0.8) !important;
    backdrop-filter: blur(8px);
  }
  .cid-tO3ZaARX6J .navbar-nav .nav-item .nav-link::after {
    margin-left: 10px;
  }
  .cid-tO3ZaARX6J .navbar-nav .dropdown-item:hover {
    background-color: rgba(27, 31, 10, 0.06);
  }
  .cid-tO3ZaARX6J .navbar .dropdown > .dropdown-menu {
    max-width: 100% !important;
    transform: translateX(0);
    top: 10px;
    left: 0;
    padding: 8px !important;
    border-radius: 1rem;
    background-color: rgba(27, 31, 10, 0.04) !important;
  }
  .cid-tO3ZaARX6J .navbar .dropdown > .dropdown-menu .dropdown-item {
    padding: 8px !important;
    line-height: 1 !important;
    margin-bottom: 4px !important;
  }
  .cid-tO3ZaARX6J .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item {
    align-items: center;
    display: flex;
    height: max-content !important;
    min-height: max-content !important;
  }
  .cid-tO3ZaARX6J .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item::after {
    display: inline-block;
    position: static;
    margin-left: 0.5rem;
    margin-top: 0;
    margin-right: 0;
    margin-bottom: 0;
    transition: .3s all;
    transform: rotate(0deg);
  }
  .cid-tO3ZaARX6J .navbar .dropdown > .dropdown-menu .dropdown.open .dropdown-item::after {
    transform: rotate(180deg);
  }
  .cid-tO3ZaARX6J .navbar .dropdown > .dropdown-menu .dropdown-submenu {
    position: static;
    width: 100%;
    max-width: 100% !important;
    transform: translateX(0) !important;
    top: 0;
    left: 0;
    padding: 8px !important;
    border-radius: 1rem;
    background-color: rgba(27, 31, 10, 0.04) !important;
  }
  .cid-tO3ZaARX6J .navbar .dropdown.open > .dropdown-menu {
    display: flex !important;
    flex-direction: column;
    align-items: flex-start;
  }
}
@media (max-width: 575px) {
  .cid-tO3ZaARX6J .navbar-collapse {
    padding: 1rem;
  }
}
.cid-tv23sxtBFh {
  background-image: url("../../../assets/images/wallhaven-y8epzx-1920x1080-1920x1080.webp");
}
.cid-tv23sxtBFh img {
  width: 100%;
  border-radius: 30px;
}
.cid-tv23sxtBFh .mbr-section-title {
  color: #ffffff;
}
.cid-tv23sxtBFh .mbr-section-subtitle {
  background-color: #8364e2;
  padding: 0 1rem;
  border-radius: 5px;
  display: inline-block;
  font-family: 'IBM Plex Sans', sans-serif;
  font-weight: 900;
  color: #ffffff;
}
.cid-tv23sxtBFh .svg-1 {
  position: absolute;
  bottom: 0;
}
.cid-tv23sxtBFh .svg-1 path {
  fill: #212428;
}
.cid-tv23sxtBFh .container-fluid {
  max-width: 1200px;
}
.cid-tv23sxtBFh .mbr-arrow {
  z-index: 1;
}
.cid-tv23sxtBFh .mbr-section-btn {
  margin-top: 1.5rem;
}
@media (min-width: 768px) {
  .cid-tv23sxtBFh .container-fluid {
    padding: 0 1.5rem;
  }
}
@media (max-width: 992px) {
  .cid-tv23sxtBFh .imageContainer {
    margin-top: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-tv23sxtBFh .container-fluid {
    padding: 0 1rem;
  }
  .cid-tv23sxtBFh .mbr-section-subtitle {
    margin-bottom: 1.4rem;
  }
}
.cid-tv23wBsLj9 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #212428;
}
.cid-tv23wBsLj9 .item-img {
  margin-bottom: 1rem;
}
.cid-tv23wBsLj9 .item-img img {
  border-radius: 20px;
}
.cid-tv23wBsLj9 .item-wrapper {
  position: relative;
  background: #1e2024;
  border-radius: 20px;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
  padding: 1.5rem;
  box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.3);
  padding-top: 2rem;
  padding-bottom: 3rem;
}
.cid-tv23wBsLj9 .face-wrap {
  position: absolute;
  left: 1.5rem;
  top: 1rem;
  width: 70px;
  height: 70px;
  border-radius: 50%;
}
.cid-tv23wBsLj9 .face-wrap:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #8364e2;
  border-radius: 50%;
  z-index: 1;
  transition: all 0.3s;
  transform: scale(0.99);
}
.cid-tv23wBsLj9 .face-wrap .mbr-iconfont {
  position: absolute;
  right: 0;
  bottom: 0;
  font-size: 0.8rem;
  color: #ffffff;
  background: #8364e2;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 3;
}
.cid-tv23wBsLj9 .face-wrap:hover .face {
  transform: scale(0.9);
}
.cid-tv23wBsLj9 .face-wrap:hover:before {
  transform: scale(1.1);
}
.cid-tv23wBsLj9 .face {
  object-fit: cover;
  position: relative;
  transition: all 0.3s;
  border-radius: 50%;
  z-index: 2;
}
.cid-tv23wBsLj9 .item-img img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}
.cid-tv23wBsLj9 .item:focus,
.cid-tv23wBsLj9 span:focus {
  outline: none;
}
.cid-tv23wBsLj9 .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-tv23wBsLj9 .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tv23wBsLj9 .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-tv23wBsLj9 .mbr-text,
.cid-tv23wBsLj9 .mbr-section-btn {
  text-align: center;
  color: #ffffff;
}
.cid-tv23wBsLj9 .item-title {
  text-align: center;
  color: #ffffff;
}
.cid-tv23wBsLj9 .item-subtitle {
  text-align: left;
  color: #ffffff;
}
.cid-tv23wBsLj9 .mbr-link {
  color: #8364e2;
}
.cid-tv23wBsLj9 .mbr-section-subtitle {
  color: #ffffff;
  text-align: center;
}
.cid-tzI3BwzHfl {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #212428;
}
.cid-tzI3BwzHfl .mbr-iconfont {
  display: block;
  font-size: 3rem;
  color: #8364e2;
  margin-bottom: 1rem;
}
.cid-tzI3BwzHfl .main-title {
  position: relative;
  width: fit-content;
  display: inline-block;
  color: #160830;
}
.cid-tzI3BwzHfl .main-title:before {
  content: "";
  bottom: -1rem;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 2px;
  background: currentColor;
  position: absolute;
}
.cid-tzI3BwzHfl .card-wrapper {
  transition: all 0.3s;
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 2.5rem 2rem;
  background: #282b2f;
  border-radius: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 2rem;
  box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.3);
}
.cid-tzI3BwzHfl .card-wrapper:hover {
  background: transparent;
}
.cid-tzI3BwzHfl .card-title,
.cid-tzI3BwzHfl .card-box {
  color: #ffffff;
}
.cid-tzI3BwzHfl .main-title,
.cid-tzI3BwzHfl .title-col {
  text-align: center;
  color: #ffffff;
}
.cid-tzI3BwzHfl .card-text {
  color: #bbbbbb;
}
.cid-tzI3BwzHfl .mbr-fallback-image.disabled {
  display: none;
}
.cid-tzI3BwzHfl .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tv23x9gsNY {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #212428;
}
.cid-tv23x9gsNY .progress {
  width: 100%;
}
.cid-tv23x9gsNY p {
  margin-bottom: 0.4rem;
}
.cid-tv23x9gsNY .progressbar-title {
  padding-bottom: 1rem;
}
.cid-tv23x9gsNY .title-wrap {
  display: flex;
  justify-content: space-between;
  -webkit-justify-content: space-between;
}
.cid-tv23x9gsNY progress {
  height: 10px;
}
.cid-tv23x9gsNY .progressbar-number {
  display: inline-block;
  width: 50px;
}
.cid-tv23x9gsNY .progress-primary {
  background: rgba(206, 206, 206, 0.9);
  border: none;
  outline: none;
}
.cid-tv23x9gsNY .progress-primary::-webkit-progress-bar {
  background: rgba(206, 206, 206, 0.9);
}
.cid-tv23x9gsNY .progress_value {
  position: relative;
}
.cid-tv23x9gsNY .progress1 .progressbar-number:before,
.cid-tv23x9gsNY .progress2 .progressbar-number:before,
.cid-tv23x9gsNY .progress3 .progressbar-number:before,
.cid-tv23x9gsNY .progress4 .progressbar-number:before,
.cid-tv23x9gsNY .progress5 .progressbar-number:before {
  position: absolute;
  right: 15px;
  top: 0;
}
.cid-tv23x9gsNY progress[value]::-webkit-progress-bar {
  background: rgba(206, 206, 206, 0.4);
  margin: 0;
}
.cid-tv23x9gsNY progress::-webkit-progress-value {
  background: #6917c7;
}
.cid-tv23x9gsNY progress[value]::-moz-progress-bar {
  background: #6917c7;
}
.cid-tv23x9gsNY progress::-ms-fill {
  background: #6917c7;
}
.cid-tv23x9gsNY .progress1 .progressbar-number:before {
  content: "100";
}
.cid-tv23x9gsNY .progress2 .progressbar-number:before {
  content: "71";
}
.cid-tv23x9gsNY .progress3 .progressbar-number:before {
  content: "53";
}
.cid-tv23x9gsNY .progress4 .progressbar-number:before {
  content: "70";
}
.cid-tv23x9gsNY .progress5 .progressbar-number:before {
  content: "81";
}
.cid-tv23x9gsNY .section-content-text {
  color: #454545;
}
.cid-tv23x9gsNY .progressbar-title p,
.cid-tv23x9gsNY .progress_value {
  color: #ffffff;
  text-align: center;
}
.cid-tv23x9gsNY .mbr-section-subtitle {
  color: #454545;
}
.cid-tv23x9gsNY .section-content-title {
  text-align: center;
  color: #ffffff;
}
.cid-tv23x9gsNY .mbr-fallback-image.disabled {
  display: none;
}
.cid-tv23x9gsNY .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tEtnITCwLf {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #212428;
}
.cid-tEtnITCwLf .main-title {
  position: relative;
  width: fit-content;
  display: inline-block;
  color: #160830;
}
.cid-tEtnITCwLf .main-title:before {
  content: "";
  bottom: -1rem;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 2px;
  background: currentColor;
  position: absolute;
}
.cid-tEtnITCwLf img {
  width: 80px;
  margin: auto;
}
.cid-tEtnITCwLf .card-wrapper {
  transition: all 0.3s;
  border: 2px solid #5b3486;
  padding: 2rem 0;
  background: #5b3486;
  border-radius: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 2rem;
}
.cid-tEtnITCwLf .card-wrapper:hover {
  background: transparent;
}
.cid-tEtnITCwLf .card-title,
.cid-tEtnITCwLf .card-box {
  color: #ffffff;
  text-align: center;
}
.cid-tEtnITCwLf .main-title,
.cid-tEtnITCwLf .title-col {
  text-align: center;
  color: #ffffff;
}
.cid-tEtnITCwLf .card-text {
  color: #bbbbbb;
}
.cid-tEtnITCwLf .mbr-fallback-image.disabled {
  display: none;
}
.cid-tEtnITCwLf .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tv23yl0JRj {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #212428;
}
.cid-tv23yl0JRj .progress {
  width: 100%;
}
.cid-tv23yl0JRj p {
  margin-bottom: 0.4rem;
}
.cid-tv23yl0JRj .progressbar-title {
  padding-bottom: 1rem;
}
.cid-tv23yl0JRj .title-wrap {
  display: flex;
  justify-content: space-between;
  -webkit-justify-content: space-between;
}
.cid-tv23yl0JRj progress {
  height: 10px;
}
.cid-tv23yl0JRj .progressbar-number {
  display: inline-block;
  width: 50px;
}
.cid-tv23yl0JRj .progress-primary {
  background: rgba(206, 206, 206, 0.9);
  border: none;
  outline: none;
}
.cid-tv23yl0JRj .progress-primary::-webkit-progress-bar {
  background: rgba(206, 206, 206, 0.9);
}
.cid-tv23yl0JRj .progress_value {
  position: relative;
}
.cid-tv23yl0JRj .progress1 .progressbar-number:before,
.cid-tv23yl0JRj .progress2 .progressbar-number:before,
.cid-tv23yl0JRj .progress3 .progressbar-number:before,
.cid-tv23yl0JRj .progress4 .progressbar-number:before,
.cid-tv23yl0JRj .progress5 .progressbar-number:before {
  position: absolute;
  right: 15px;
  top: 0;
}
.cid-tv23yl0JRj progress[value]::-webkit-progress-bar {
  background: rgba(206, 206, 206, 0.4);
  margin: 0;
}
.cid-tv23yl0JRj progress::-webkit-progress-value {
  background: #6917c7;
}
.cid-tv23yl0JRj progress[value]::-moz-progress-bar {
  background: #6917c7;
}
.cid-tv23yl0JRj progress::-ms-fill {
  background: #6917c7;
}
.cid-tv23yl0JRj .progress1 .progressbar-number:before {
  content: "100";
}
.cid-tv23yl0JRj .progress2 .progressbar-number:before {
  content: "71";
}
.cid-tv23yl0JRj .progress3 .progressbar-number:before {
  content: "53";
}
.cid-tv23yl0JRj .progress4 .progressbar-number:before {
  content: "70";
}
.cid-tv23yl0JRj .progress5 .progressbar-number:before {
  content: "81";
}
.cid-tv23yl0JRj .section-content-text {
  color: #454545;
}
.cid-tv23yl0JRj .progressbar-title p,
.cid-tv23yl0JRj .progress_value {
  color: #ffffff;
  text-align: center;
}
.cid-tv23yl0JRj .mbr-section-subtitle {
  color: #454545;
}
.cid-tv23yl0JRj .section-content-title {
  text-align: center;
  color: #ffffff;
}
.cid-tv23yl0JRj .mbr-fallback-image.disabled {
  display: none;
}
.cid-tv23yl0JRj .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tv23yXa5nC {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #212428;
}
.cid-tv23yXa5nC .title-section {
  padding: 0px;
  margin-bottom: 20px;
}
@media (min-width: 992px) {
  .cid-tv23yXa5nC .title-section {
    padding: 0 90px;
    margin-bottom: 40px;
  }
}
.cid-tv23yXa5nC .btn {
  display: flex;
}
.cid-tv23yXa5nC .card {
  background-color: transparent;
  border: 2px solid #8364e2;
  border-radius: 20px;
}
.cid-tv23yXa5nC .card-body {
  padding: 40px 55px 30px 55px;
}
.cid-tv23yXa5nC .col-img {
  width: 35px;
  height: 35px;
  flex: 0 0 35px;
  margin-right: 22px;
}
.cid-tv23yXa5nC .card-title {
  flex: 1 1 auto;
  width: auto;
}
.cid-tv23yXa5nC .price {
  text-align: center;
  color: #7f6cc0;
}
.cid-tv23yXa5nC .title-section .mbr-section-subtitle {
  text-align: left;
}
.cid-tv23yXa5nC .mbr-fallback-image.disabled {
  display: none;
}
.cid-tv23yXa5nC .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tv23yXa5nC .text1 {
  text-align: left;
  color: #ffffff;
}
.cid-tv23yXa5nC .mbr-section-subtitle {
  color: #ffffff;
  text-align: left;
}
.cid-tv23yXa5nC .title-section .mbr-section-title {
  color: #ffffff;
  text-align: right;
}
.cid-tv23zj3v6x {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #212428;
}
.cid-tv23zj3v6x .title-section {
  padding: 0px;
  margin-bottom: 20px;
}
@media (min-width: 992px) {
  .cid-tv23zj3v6x .title-section {
    padding: 0 90px;
    margin-bottom: 40px;
  }
}
.cid-tv23zj3v6x .btn {
  display: flex;
}
.cid-tv23zj3v6x .card {
  background-color: transparent;
  border: 2px solid #8364e2;
  border-radius: 20px;
}
.cid-tv23zj3v6x .card-body {
  padding: 40px 55px 30px 55px;
}
.cid-tv23zj3v6x .col-img {
  width: 35px;
  height: 35px;
  flex: 0 0 35px;
  margin-right: 22px;
}
.cid-tv23zj3v6x .card-title {
  flex: 1 1 auto;
  width: auto;
}
.cid-tv23zj3v6x .price {
  text-align: center;
  color: #7f6cc0;
}
.cid-tv23zj3v6x .title-section .mbr-section-subtitle {
  text-align: left;
}
.cid-tv23zj3v6x .mbr-fallback-image.disabled {
  display: none;
}
.cid-tv23zj3v6x .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tv23zj3v6x .text1 {
  text-align: left;
  color: #ffffff;
}
.cid-tv23zj3v6x .mbr-section-subtitle {
  color: #ffffff;
  text-align: left;
}
.cid-tv23zj3v6x .title-section .mbr-section-title {
  color: #ffffff;
  text-align: right;
}
.cid-tv23AqjXyg {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #212428;
}
.cid-tv23AqjXyg .progress {
  width: 100%;
}
.cid-tv23AqjXyg p {
  margin-bottom: 0.4rem;
}
.cid-tv23AqjXyg .progressbar-title {
  padding-bottom: 1rem;
}
.cid-tv23AqjXyg .title-wrap {
  display: flex;
  justify-content: space-between;
  -webkit-justify-content: space-between;
}
.cid-tv23AqjXyg progress {
  height: 10px;
}
.cid-tv23AqjXyg .progressbar-number {
  display: inline-block;
  width: 50px;
}
.cid-tv23AqjXyg .progress-primary {
  background: rgba(206, 206, 206, 0.9);
  border: none;
  outline: none;
}
.cid-tv23AqjXyg .progress-primary::-webkit-progress-bar {
  background: rgba(206, 206, 206, 0.9);
}
.cid-tv23AqjXyg .progress_value {
  position: relative;
}
.cid-tv23AqjXyg .progress1 .progressbar-number:before,
.cid-tv23AqjXyg .progress2 .progressbar-number:before,
.cid-tv23AqjXyg .progress3 .progressbar-number:before,
.cid-tv23AqjXyg .progress4 .progressbar-number:before,
.cid-tv23AqjXyg .progress5 .progressbar-number:before {
  position: absolute;
  right: 15px;
  top: 0;
}
.cid-tv23AqjXyg progress[value]::-webkit-progress-bar {
  background: rgba(206, 206, 206, 0.4);
  margin: 0;
}
.cid-tv23AqjXyg progress::-webkit-progress-value {
  background: #6917c7;
}
.cid-tv23AqjXyg progress[value]::-moz-progress-bar {
  background: #6917c7;
}
.cid-tv23AqjXyg progress::-ms-fill {
  background: #6917c7;
}
.cid-tv23AqjXyg .progress1 .progressbar-number:before {
  content: "100";
}
.cid-tv23AqjXyg .progress2 .progressbar-number:before {
  content: "71";
}
.cid-tv23AqjXyg .progress3 .progressbar-number:before {
  content: "53";
}
.cid-tv23AqjXyg .progress4 .progressbar-number:before {
  content: "70";
}
.cid-tv23AqjXyg .progress5 .progressbar-number:before {
  content: "81";
}
.cid-tv23AqjXyg .section-content-text {
  color: #454545;
}
.cid-tv23AqjXyg .progressbar-title p,
.cid-tv23AqjXyg .progress_value {
  color: #ffffff;
  text-align: center;
}
.cid-tv23AqjXyg .mbr-section-subtitle {
  color: #454545;
}
.cid-tv23AqjXyg .section-content-title {
  text-align: center;
  color: #ffffff;
}
.cid-tv23AqjXyg .mbr-fallback-image.disabled {
  display: none;
}
.cid-tv23AqjXyg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tAA4cBRdZP {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #212428;
}
.cid-tAA4cBRdZP .title-section {
  padding: 0px;
  margin-bottom: 20px;
}
@media (min-width: 992px) {
  .cid-tAA4cBRdZP .title-section {
    padding: 0 90px;
    margin-bottom: 40px;
  }
}
.cid-tAA4cBRdZP .btn {
  display: flex;
}
.cid-tAA4cBRdZP .card {
  background-color: transparent;
  border: 2px solid #db3eb1;
  border-radius: 20px;
  box-shadow: 0px 10px 20px 0px rgba(29, 29, 27, 0.2);
}
.cid-tAA4cBRdZP .card-body {
  padding: 40px 55px 30px 55px;
}
.cid-tAA4cBRdZP .col-img {
  width: 35px;
  height: 35px;
  flex: 0 0 35px;
  margin-right: 22px;
}
.cid-tAA4cBRdZP .card-title {
  flex: 1 1 auto;
  width: auto;
}
.cid-tAA4cBRdZP .price {
  text-align: center;
  color: #7f6cc0;
}
.cid-tAA4cBRdZP .title-section .mbr-section-subtitle {
  text-align: center;
}
.cid-tAA4cBRdZP .mbr-fallback-image.disabled {
  display: none;
}
.cid-tAA4cBRdZP .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tAA4cBRdZP .text1 {
  text-align: left;
  color: #ffffff;
}
.cid-tAA4cBRdZP .mbr-section-subtitle {
  color: #ffffff;
  text-align: center;
}
.cid-tAA4cBRdZP .title-section .mbr-section-title {
  color: #ffffff;
  text-align: left;
}
.cid-tv23BrlATA {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #212428;
}
.cid-tv23BrlATA .progress {
  width: 100%;
}
.cid-tv23BrlATA p {
  margin-bottom: 0.4rem;
}
.cid-tv23BrlATA .progressbar-title {
  padding-bottom: 1rem;
}
.cid-tv23BrlATA .title-wrap {
  display: flex;
  justify-content: space-between;
  -webkit-justify-content: space-between;
}
.cid-tv23BrlATA progress {
  height: 10px;
}
.cid-tv23BrlATA .progressbar-number {
  display: inline-block;
  width: 50px;
}
.cid-tv23BrlATA .progress-primary {
  background: rgba(206, 206, 206, 0.9);
  border: none;
  outline: none;
}
.cid-tv23BrlATA .progress-primary::-webkit-progress-bar {
  background: rgba(206, 206, 206, 0.9);
}
.cid-tv23BrlATA .progress_value {
  position: relative;
}
.cid-tv23BrlATA .progress1 .progressbar-number:before,
.cid-tv23BrlATA .progress2 .progressbar-number:before,
.cid-tv23BrlATA .progress3 .progressbar-number:before,
.cid-tv23BrlATA .progress4 .progressbar-number:before,
.cid-tv23BrlATA .progress5 .progressbar-number:before {
  position: absolute;
  right: 15px;
  top: 0;
}
.cid-tv23BrlATA progress[value]::-webkit-progress-bar {
  background: rgba(206, 206, 206, 0.4);
  margin: 0;
}
.cid-tv23BrlATA progress::-webkit-progress-value {
  background: #6917c7;
}
.cid-tv23BrlATA progress[value]::-moz-progress-bar {
  background: #6917c7;
}
.cid-tv23BrlATA progress::-ms-fill {
  background: #6917c7;
}
.cid-tv23BrlATA .progress1 .progressbar-number:before {
  content: "100";
}
.cid-tv23BrlATA .progress2 .progressbar-number:before {
  content: "71";
}
.cid-tv23BrlATA .progress3 .progressbar-number:before {
  content: "53";
}
.cid-tv23BrlATA .progress4 .progressbar-number:before {
  content: "70";
}
.cid-tv23BrlATA .progress5 .progressbar-number:before {
  content: "81";
}
.cid-tv23BrlATA .section-content-text {
  color: #454545;
}
.cid-tv23BrlATA .progressbar-title p,
.cid-tv23BrlATA .progress_value {
  color: #ffffff;
  text-align: center;
}
.cid-tv23BrlATA .mbr-section-subtitle {
  color: #454545;
}
.cid-tv23BrlATA .section-content-title {
  text-align: center;
  color: #ffffff;
}
.cid-tv23BrlATA .mbr-fallback-image.disabled {
  display: none;
}
.cid-tv23BrlATA .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tEtmY8VRm6 {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #212428;
  overflow: hidden;
}
.cid-tEtmY8VRm6 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tEtmY8VRm6 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tEtmY8VRm6 .card-row {
  align-items: stretch;
}
.cid-tEtmY8VRm6 .item-wrap {
  position: relative;
  height: 100%;
  width: 100%;
  padding: 55px;
  border-radius: 10px;
  overflow: hidden;
  background: linear-gradient(145deg, #1e2024, #000000);
  box-shadow: 10px 10px 19px #7f6cc0, -10px -10px 19px #7f6cc0;
}
@media (max-width: 767px) {
  .cid-tEtmY8VRm6 .item-wrap {
    padding: 40px;
  }
}
@media (max-width: 575px) {
  .cid-tEtmY8VRm6 .item-wrap {
    padding: 35px 25px 35px 25px;
  }
}
.cid-tEtmY8VRm6 .carousel {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 100%;
  width: 100%;
  margin: 0;
}
.cid-tEtmY8VRm6 .carousel-inner {
  display: flex;
  align-items: center;
  margin-bottom: 0;
  border-radius: 10px;
}
.cid-tEtmY8VRm6 .carousel-item-wrapper {
  display: flex;
  width: 100%;
  overflow: visible;
  padding: 0;
}
.cid-tEtmY8VRm6 .carousel-item-wrapper img {
  aspect-ratio: 1.77842566;
  object-fit: cover;
}
.cid-tEtmY8VRm6 .carousel-control {
  top: 50%;
  transform: translateY(-50%);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(to right bottom, #212428, #16181c) !important;
  box-shadow: 10px 10px 19px #191b1f, -10px -10px 19px #23272b;
  border: none;
  transition: all 0.4s;
  opacity: 1;
  color: #C4CFDE;
  font-size: 18px;
}
.cid-tEtmY8VRm6 .carousel-control.carousel-control-prev {
  left: -30px;
  margin-left: 0;
}
@media (max-width: 575px) {
  .cid-tEtmY8VRm6 .carousel-control.carousel-control-prev {
    left: -25px;
  }
}
.cid-tEtmY8VRm6 .carousel-control.carousel-control-next {
  right: -30px;
  margin-right: 0;
}
@media (max-width: 575px) {
  .cid-tEtmY8VRm6 .carousel-control.carousel-control-next {
    right: -25px;
  }
}
.cid-tEtmY8VRm6 .carousel-control:hover {
  color: #FFFFFF !important;
  opacity: 1;
}
.cid-tEtmY8VRm6 .mobi-mbri-arrow-next {
  margin-left: 5px;
}
.cid-tEtmY8VRm6 .mobi-mbri-arrow-prev {
  margin-right: 5px;
}
.cid-tEtmY8VRm6 .container .carousel-indicators {
  margin-bottom: 3px;
  display: none !important;
}
.cid-tEtmY8VRm6 .item-menu-overlay {
  opacity: 0 !important;
}
.cid-tEtmY8VRm6 .text-row {
  padding-top: 50px;
}
@media (max-width: 991px) {
  .cid-tEtmY8VRm6 .text-row {
    padding-top: 30px;
  }
}
.cid-tEtmY8VRm6 .card-title {
  color: #C4CFDE;
  margin-bottom: 20px;
}
.cid-tEtmY8VRm6 .card-subtitle {
  color: #878e99;
  margin-bottom: 0;
}
.cid-tEtmY8VRm6 .card-text-container {
  display: flex;
  align-items: flex-start;
  padding-top: 24px;
  padding-bottom: 8px;
  margin: 0 -30px;
}
@media (max-width: 767px) {
  .cid-tEtmY8VRm6 .card-text-container {
    margin: 0 -10px;
  }
}
@media (max-width: 575px) {
  .cid-tEtmY8VRm6 .card-text-container {
    flex-wrap: wrap;
  }
}
.cid-tEtmY8VRm6 .card-text {
  color: #878e99;
  margin-bottom: 8px;
  margin-top: 8px;
  flex-basis: 50%;
  flex-grow: 1;
  padding-left: 30px;
  padding-right: 30px;
}
@media (max-width: 767px) {
  .cid-tEtmY8VRm6 .card-text {
    padding-left: 10px;
    padding-right: 10px;
  }
}
@media (max-width: 575px) {
  .cid-tEtmY8VRm6 .card-text {
    flex-basis: 100%;
  }
}
.cid-tEtmY8VRm6 .mbr-section-btn {
  display: flex;
  flex-direction: column;
  align-items: stretch;
}
@media (max-width: 991px) {
  .cid-tEtmY8VRm6 .mbr-section-btn {
    margin-top: 10px;
  }
}
.cid-tzI3Crfg4T {
  padding-top: 1rem;
  padding-bottom: 2rem;
  background-color: #212428;
}
.cid-tzI3Crfg4T .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-tzI3Crfg4T .card-title {
  margin-bottom: 26px;
  color: #8364e2;
}
.cid-tzI3Crfg4T .mbr-text {
  margin-bottom: 30px;
}
.cid-tzI3Crfg4T .iconfont-wrapper {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  border-top-right-radius: 0;
  display: inline-block;
  text-align: center;
  margin-bottom: 30px;
  position: relative;
  z-index: 1;
  box-shadow: 0px 14px 30px 0px rgba(148, 10, 36, 0.4);
  background-image: linear-gradient(125deg, #940a24 0%, #ef153e 100%);
}
.cid-tzI3Crfg4T .iconfont-wrapper .mbr-iconfont {
  color: #ffffff;
  font-size: 36px;
  line-height: 70px;
}
.cid-tzI3Crfg4T .btn_link {
  display: block;
  margin-bottom: 0;
  position: relative;
  font-weight: 700;
}
.cid-tzI3Crfg4T .btn_link span {
  display: inline-block;
  margin-left: .25rem;
  font-size: 16px;
  vertical-align: middle;
  transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.cid-tzI3Crfg4T .btn_link:hover {
  cursor: pointer;
}
.cid-tzI3Crfg4T .btn_link:hover a {
  color: #8364e2 !important;
}
.cid-tzI3Crfg4T .btn_link:hover span {
  transform: translatex(5px);
}
@media (min-width: 992px) {
  .cid-tzI3Crfg4T .text-wrapper {
    padding-right: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tzI3Crfg4T .text-wrapper {
    text-align: center;
  }
  .cid-tzI3Crfg4T .image-wrapper {
    margin-bottom: 40px;
  }
  .cid-tzI3Crfg4T .mbr-text {
    margin-bottom: 20px;
  }
  .cid-tzI3Crfg4T .iconfont-wrapper {
    margin-bottom: 20px;
  }
}
.cid-tzI3Crfg4T .mbr-text,
.cid-tzI3Crfg4T .btn_link {
  color: #ffffff;
  text-align: left;
}
.cid-tzI3Crfg4T .card-title,
.cid-tzI3Crfg4T .icon_block {
  text-align: left;
}
.cid-tEtn8uPRRz {
  padding-top: 5rem;
  padding-bottom: 5rem;
  overflow: hidden;
  background-color: #212428;
}
.cid-tEtn8uPRRz .mbr-fallback-image.disabled {
  display: none;
}
.cid-tEtn8uPRRz .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tEtn8uPRRz .container {
  max-width: 1200px;
  padding: 0 10px;
}
.cid-tEtn8uPRRz .mbr-section-head {
  margin-bottom: 10px;
  width: 100%;
}
.cid-tEtn8uPRRz .mbr-section-title {
  color: #ffffff;
}
.cid-tEtn8uPRRz .mbr-section-subtitle {
  color: #f4f4f4;
  margin-top: 15px;
}
@media (max-width: 767px) {
  .cid-tEtn8uPRRz .mbr-section-subtitle {
    margin-top: 10px;
  }
}
.cid-tEtn8uPRRz .card-row {
  align-items: stretch;
}
.cid-tEtn8uPRRz .card {
  margin-top: 30px;
}
@media (max-width: 575px) {
  .cid-tEtn8uPRRz .card {
    flex-basis: 80% !important;
  }
}
.cid-tEtn8uPRRz .card-wrapper {
  position: relative;
  height: 100%;
  width: 100%;
  border-radius: 10px;
  overflow: hidden;
  background: linear-gradient(145deg, #1e2024, #23272b);
  box-shadow: 10px 10px 19px #191b1f, -10px -10px 19px #23272b;
}
.cid-tEtn8uPRRz .card-wrapper:hover .card-bg {
  opacity: 1;
}
.cid-tEtn8uPRRz .card-bg {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 4;
  width: 100%;
  height: 100%;
  border-radius: 10px;
  background: linear-gradient(to right bottom, #212428, #16181c);
  opacity: 0;
  transition: .5s all;
}
.cid-tEtn8uPRRz .card-box {
  position: relative;
  z-index: 5;
  height: 100%;
}
.cid-tEtn8uPRRz .item-img {
  height: 150px;
  align-items: center;
  display: flex;
  justify-content: center;
  padding: 30px;
  width: 100%;
}
.cid-tEtn8uPRRz .item-img img {
  width: auto;
  max-height: 85px;
  max-width: 100%;
  object-fit: contain;
}
.cid-tEtn8uPRRz .text-item {
  padding: 16px;
  width: 100%;
  border-top: 1px solid #16181c;
}
.cid-tEtn8uPRRz .card-title {
  color: #878e99;
  margin-bottom: 0;
  text-align: center;
}
.cid-tEtn8uPRRz .card-title a {
  transition: 0.4s all;
}
.cid-tEtn8uPRRz .card-title a:hover {
  color: #8364e2 !important;
}
.cid-tv20JXf5Ez {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #282b2f;
}
.cid-tv20JXf5Ez svg {
  width: 100%;
  position: absolute;
  left: 0;
  top: -48px;
  height: 50px;
  transform-origin: bottom;
  animation: 1.5s ease-in-out infinite alternate svg2;
}
.cid-tv20JXf5Ez svg .st0 {
  fill: #282b2f;
}
@media (max-width: 992px) {
  .cid-tv20JXf5Ez svg {
    width: 1000px;
  }
}
@keyframes svg2 {
  from {
    transform: scaleX(1) scaleY(1.1) rotate(0deg);
  }
  to {
    transform: scaleX(1) scaleY(1.6) rotate(0deg);
  }
}
.cid-tv20JXf5Ez .list {
  list-style: none;
  padding-left: 0;
  color: #ffffff;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-tv20JXf5Ez .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tv20JXf5Ez .list {
    margin-bottom: 0rem;
  }
}
@media (max-width: 767px) {
  .cid-tv20JXf5Ez .row {
    text-align: center;
  }
}
@media (max-width: 991px) {
  .cid-tv20JXf5Ez div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-tv20JXf5Ez .copyright {
  color: #ffffff;
  text-align: center;
}
.cid-tO3ZaARX6J {
  z-index: 1000;
  width: 100%;
  position: relative;
}
.cid-tO3ZaARX6J .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;
}
@media (max-width: 767px) {
  .cid-tO3ZaARX6J .navbar-toggler {
    transform: scale(0.8);
  }
}
.cid-tO3ZaARX6J .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tO3ZaARX6J .navbar-brand img {
  max-width: 100%;
  max-height: 100%;
  border-radius: 0px !important;
}
.cid-tO3ZaARX6J .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tO3ZaARX6J .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tO3ZaARX6J .navbar-nav {
  margin: auto;
  margin-left: 0;
  margin-left: auto;
}
.cid-tO3ZaARX6J .navbar-nav .nav-item {
  padding: 0 !important;
  transition: .3s all !important;
}
.cid-tO3ZaARX6J .navbar-nav .nav-item .nav-link {
  padding: 16px !important;
  margin: 0 !important;
  border-radius: 1rem !important;
  transition: .3s all !important;
}
.cid-tO3ZaARX6J .navbar-nav .nav-item .nav-link:hover {
  background-color: rgba(27, 31, 10, 0.06);
}
.cid-tO3ZaARX6J .navbar-nav .open .nav-link::after {
  transform: rotate(180deg);
}
@media (min-width: 992px) {
  .cid-tO3ZaARX6J .navbar-nav .open .nav-link::before {
    content: "";
    width: 100%;
    height: 20px;
    top: 100%;
    background: transparent;
    position: absolute;
  }
}
.cid-tO3ZaARX6J .navbar-nav .dropdown-item {
  padding: 12px !important;
  border-radius: 0.5rem !important;
  margin: 0 8px !important;
  transition: .3s all !important;
}
.cid-tO3ZaARX6J .navbar-nav .dropdown-item:hover {
  background-color: rgba(27, 31, 10, 0.06);
}
@media (min-width: 992px) {
  .cid-tO3ZaARX6J .navbar-nav {
    padding-left: 1.5rem;
  }
}
.cid-tO3ZaARX6J .nav-link {
  width: fit-content;
  position: relative;
}
.cid-tO3ZaARX6J .navbar-logo {
  padding-left: 2rem;
  margin: 0 !important;
}
@media (max-width: 767px) {
  .cid-tO3ZaARX6J .navbar-logo {
    padding-left: 1rem;
  }
}
.cid-tO3ZaARX6J .navbar-caption {
  padding-left: 1rem;
  padding-right: .5rem;
}
@media (max-width: 767px) {
  .cid-tO3ZaARX6J .nav-dropdown {
    padding-bottom: 0.5rem;
  }
}
.cid-tO3ZaARX6J .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  transition: .3s all;
}
.cid-tO3ZaARX6J .container {
  display: flex;
  height: 90px;
  padding: 0.5rem 0.6rem;
  flex-wrap: nowrap;
  background: rgba(64, 63, 131, 0.8) !important;
  left: 0;
  right: 0;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: flex-end;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 100vw;
  margin-top: 1rem;
  background-color: #403f83;
  box-shadow: 0 30px 60px 0 rgba(27, 31, 10, 0.08);
}
@media (max-width: 992px) {
  .cid-tO3ZaARX6J .container {
    padding-right: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-tO3ZaARX6J .container {
    width: 95%;
    height: 56px !important;
    padding-right: 1rem;
    margin-top: 0rem;
  }
}
.cid-tO3ZaARX6J .iconfont-wrapper {
  color: #2469ea !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tO3ZaARX6J .dropdown-menu {
  flex-wrap: wrap;
  flex-direction: column;
  max-width: 100%;
  padding: 12px 4px !important;
  border-radius: 1.5rem;
  transition: .3s all !important;
  min-width: auto;
  background: #403f83;
  background: rgba(64, 63, 131, 0.8) !important;
}
.cid-tO3ZaARX6J .nav-item:focus,
.cid-tO3ZaARX6J .nav-link:focus {
  outline: none;
}
.cid-tO3ZaARX6J .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tO3ZaARX6J .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tO3ZaARX6J .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tO3ZaARX6J .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tO3ZaARX6J .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tO3ZaARX6J .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tO3ZaARX6J .navbar {
  min-height: 90px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: transparent !important;
  padding: 0 !important;
  border: none !important;
  box-shadow: none !important;
  border-radius: 0 !important;
}
.cid-tO3ZaARX6J .navbar.opened {
  transition: all 0.3s;
}
.cid-tO3ZaARX6J .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tO3ZaARX6J .navbar .navbar-logo img {
  width: auto;
}
.cid-tO3ZaARX6J .navbar .navbar-collapse {
  z-index: 1;
  justify-content: flex-end;
}
.cid-tO3ZaARX6J .navbar.collapsed {
  justify-content: center;
}
.cid-tO3ZaARX6J .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tO3ZaARX6J .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tO3ZaARX6J .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 2.7rem);
  }
}
.cid-tO3ZaARX6J .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tO3ZaARX6J .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tO3ZaARX6J .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-tO3ZaARX6J .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tO3ZaARX6J .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tO3ZaARX6J .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 767px) {
  .cid-tO3ZaARX6J .navbar {
    min-height: 72px;
  }
  .cid-tO3ZaARX6J .navbar .navbar-logo img {
    height: 2rem !important;
  }
}
@media (max-width: 991px) {
  .cid-tO3ZaARX6J .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tO3ZaARX6J .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tO3ZaARX6J .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tO3ZaARX6J .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tO3ZaARX6J .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-tO3ZaARX6J .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tO3ZaARX6J .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 10px;
  }
  .cid-tO3ZaARX6J .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tO3ZaARX6J .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tO3ZaARX6J .navbar.navbar-short .navbar-logo img {
  height: 2rem;
}
.cid-tO3ZaARX6J .dropdown-item.active,
.cid-tO3ZaARX6J .dropdown-item:active {
  background-color: transparent;
}
.cid-tO3ZaARX6J .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tO3ZaARX6J .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tO3ZaARX6J .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tO3ZaARX6J .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #403f83;
}
.cid-tO3ZaARX6J .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 105%;
  transform: none;
  top: -12px;
}
.cid-tO3ZaARX6J .navbar .dropdown.open > .dropdown-menu {
  display: flex;
}
.cid-tO3ZaARX6J ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tO3ZaARX6J .navbar-buttons {
  text-align: center;
  min-width: 140px;
}
@media (max-width: 992px) {
  .cid-tO3ZaARX6J .navbar-buttons {
    text-align: left;
  }
}
.cid-tO3ZaARX6J button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tO3ZaARX6J button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-tO3ZaARX6J button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tO3ZaARX6J button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tO3ZaARX6J button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tO3ZaARX6J button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tO3ZaARX6J nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tO3ZaARX6J nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tO3ZaARX6J nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tO3ZaARX6J nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tO3ZaARX6J .navbar-dropdown {
  padding: 0 1rem;
}
.cid-tO3ZaARX6J a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tO3ZaARX6J .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media (max-width: 992px) {
  .cid-tO3ZaARX6J .icons-menu {
    justify-content: flex-start;
    margin-bottom: .5rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tO3ZaARX6J .navbar {
    height: 70px;
  }
  .cid-tO3ZaARX6J .navbar.opened {
    height: auto;
  }
  .cid-tO3ZaARX6J .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tO3ZaARX6J .navbar .dropdown > .dropdown-menu {
  display: none;
  width: max-content;
  max-width: 500px !important;
  transform: translateX(-50%);
  top: calc(100% + 20px);
  left: 50%;
}
.cid-tO3ZaARX6J .navbar .dropdown > .dropdown-menu .dropdown-item {
  line-height: 1 !important;
}
.cid-tO3ZaARX6J .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item {
  align-items: center;
  display: flex;
  height: max-content !important;
  min-height: max-content !important;
}
.cid-tO3ZaARX6J .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item::after {
  display: inline-block;
  position: static;
  margin-left: 0.5rem;
  margin-top: 0;
  margin-right: 0;
  margin-bottom: 0;
  transition: .3s all;
  transform: rotate(-90deg);
}
.cid-tO3ZaARX6J .navbar .dropdown > .dropdown-menu .dropdown.open .dropdown-item::after {
  transform: rotate(0deg);
}
.cid-tO3ZaARX6J .mbr-section-btn {
  margin: -0.6rem -0.6rem;
}
.cid-tO3ZaARX6J .navbar-toggler {
  margin-left: 12px;
  margin-right: 8px;
  order: 1000;
}
@media (max-width: 991px) {
  .cid-tO3ZaARX6J .navbar-brand {
    margin-right: auto;
  }
  .cid-tO3ZaARX6J .navbar-collapse {
    z-index: -1 !important;
    position: absolute;
    top: 110%;
    left: 0;
    width: 100%;
    padding: 1rem;
    border-radius: 1.5rem;
    background: #403f83;
    opacity: 1;
    border-color: rgba(64, 63, 131, 0.8) !important;
    background: rgba(64, 63, 131, 0.8) !important;
    backdrop-filter: blur(8px);
  }
  .cid-tO3ZaARX6J .navbar-nav .nav-item .nav-link::after {
    margin-left: 10px;
  }
  .cid-tO3ZaARX6J .navbar-nav .dropdown-item:hover {
    background-color: rgba(27, 31, 10, 0.06);
  }
  .cid-tO3ZaARX6J .navbar .dropdown > .dropdown-menu {
    max-width: 100% !important;
    transform: translateX(0);
    top: 10px;
    left: 0;
    padding: 8px !important;
    border-radius: 1rem;
    background-color: rgba(27, 31, 10, 0.04) !important;
  }
  .cid-tO3ZaARX6J .navbar .dropdown > .dropdown-menu .dropdown-item {
    padding: 8px !important;
    line-height: 1 !important;
    margin-bottom: 4px !important;
  }
  .cid-tO3ZaARX6J .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item {
    align-items: center;
    display: flex;
    height: max-content !important;
    min-height: max-content !important;
  }
  .cid-tO3ZaARX6J .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item::after {
    display: inline-block;
    position: static;
    margin-left: 0.5rem;
    margin-top: 0;
    margin-right: 0;
    margin-bottom: 0;
    transition: .3s all;
    transform: rotate(0deg);
  }
  .cid-tO3ZaARX6J .navbar .dropdown > .dropdown-menu .dropdown.open .dropdown-item::after {
    transform: rotate(180deg);
  }
  .cid-tO3ZaARX6J .navbar .dropdown > .dropdown-menu .dropdown-submenu {
    position: static;
    width: 100%;
    max-width: 100% !important;
    transform: translateX(0) !important;
    top: 0;
    left: 0;
    padding: 8px !important;
    border-radius: 1rem;
    background-color: rgba(27, 31, 10, 0.04) !important;
  }
  .cid-tO3ZaARX6J .navbar .dropdown.open > .dropdown-menu {
    display: flex !important;
    flex-direction: column;
    align-items: flex-start;
  }
}
@media (max-width: 575px) {
  .cid-tO3ZaARX6J .navbar-collapse {
    padding: 1rem;
  }
}
.cid-trZJUJGVQF {
  background-image: url("../../../assets/images/host3-1920x1080.webp");
}
.cid-trZJUJGVQF img {
  width: 100%;
  border-radius: 30px;
}
.cid-trZJUJGVQF .mbr-section-title {
  color: #ffffff;
}
.cid-trZJUJGVQF .mbr-section-subtitle {
  background-color: #8364e2;
  padding: 0 1rem;
  border-radius: 5px;
  display: inline-block;
  font-family: 'IBM Plex Sans', sans-serif;
  font-weight: 900;
  color: #ffffff;
}
.cid-trZJUJGVQF .svg-1 {
  position: absolute;
  bottom: 0;
}
.cid-trZJUJGVQF .svg-1 path {
  fill: #212428;
}
.cid-trZJUJGVQF .container-fluid {
  max-width: 1200px;
}
.cid-trZJUJGVQF .mbr-arrow {
  z-index: 1;
}
.cid-trZJUJGVQF .mbr-section-btn {
  margin-top: 1.5rem;
}
@media (min-width: 768px) {
  .cid-trZJUJGVQF .container-fluid {
    padding: 0 1.5rem;
  }
}
@media (max-width: 992px) {
  .cid-trZJUJGVQF .imageContainer {
    margin-top: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-trZJUJGVQF .container-fluid {
    padding: 0 1rem;
  }
  .cid-trZJUJGVQF .mbr-section-subtitle {
    margin-bottom: 1.4rem;
  }
}
.cid-tzI3HiuiCS {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #212428;
}
.cid-tzI3HiuiCS .mbr-iconfont {
  display: block;
  font-size: 3rem;
  color: #8364e2;
  margin-bottom: 1rem;
}
.cid-tzI3HiuiCS .main-title {
  position: relative;
  width: fit-content;
  display: inline-block;
  color: #160830;
}
.cid-tzI3HiuiCS .main-title:before {
  content: "";
  bottom: -1rem;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 2px;
  background: currentColor;
  position: absolute;
}
.cid-tzI3HiuiCS .card-wrapper {
  transition: all 0.3s;
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 2.5rem 2rem;
  background: #282b2f;
  border-radius: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 2rem;
  box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.3);
}
.cid-tzI3HiuiCS .card-wrapper:hover {
  background: transparent;
}
.cid-tzI3HiuiCS .card-title,
.cid-tzI3HiuiCS .card-box {
  color: #ffffff;
}
.cid-tzI3HiuiCS .main-title,
.cid-tzI3HiuiCS .title-col {
  text-align: center;
  color: #ffffff;
}
.cid-tzI3HiuiCS .card-text {
  color: #bbbbbb;
  text-align: left;
}
.cid-tzI3HiuiCS .mbr-fallback-image.disabled {
  display: none;
}
.cid-tzI3HiuiCS .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tEtnW5aWuQ {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #212428;
}
.cid-tEtnW5aWuQ .progress {
  width: 100%;
}
.cid-tEtnW5aWuQ p {
  margin-bottom: 0.4rem;
}
.cid-tEtnW5aWuQ .progressbar-title {
  padding-bottom: 1rem;
}
.cid-tEtnW5aWuQ .title-wrap {
  display: flex;
  justify-content: space-between;
  -webkit-justify-content: space-between;
}
.cid-tEtnW5aWuQ progress {
  height: 10px;
}
.cid-tEtnW5aWuQ .progressbar-number {
  display: inline-block;
  width: 50px;
}
.cid-tEtnW5aWuQ .progress-primary {
  background: rgba(206, 206, 206, 0.9);
  border: none;
  outline: none;
}
.cid-tEtnW5aWuQ .progress-primary::-webkit-progress-bar {
  background: rgba(206, 206, 206, 0.9);
}
.cid-tEtnW5aWuQ .progress_value {
  position: relative;
}
.cid-tEtnW5aWuQ .progress1 .progressbar-number:before,
.cid-tEtnW5aWuQ .progress2 .progressbar-number:before,
.cid-tEtnW5aWuQ .progress3 .progressbar-number:before,
.cid-tEtnW5aWuQ .progress4 .progressbar-number:before,
.cid-tEtnW5aWuQ .progress5 .progressbar-number:before {
  position: absolute;
  right: 15px;
  top: 0;
}
.cid-tEtnW5aWuQ progress[value]::-webkit-progress-bar {
  background: rgba(206, 206, 206, 0.4);
  margin: 0;
}
.cid-tEtnW5aWuQ progress::-webkit-progress-value {
  background: #6917c7;
}
.cid-tEtnW5aWuQ progress[value]::-moz-progress-bar {
  background: #6917c7;
}
.cid-tEtnW5aWuQ progress::-ms-fill {
  background: #6917c7;
}
.cid-tEtnW5aWuQ .progress1 .progressbar-number:before {
  content: "100";
}
.cid-tEtnW5aWuQ .progress2 .progressbar-number:before {
  content: "71";
}
.cid-tEtnW5aWuQ .progress3 .progressbar-number:before {
  content: "53";
}
.cid-tEtnW5aWuQ .progress4 .progressbar-number:before {
  content: "70";
}
.cid-tEtnW5aWuQ .progress5 .progressbar-number:before {
  content: "81";
}
.cid-tEtnW5aWuQ .section-content-text {
  color: #454545;
}
.cid-tEtnW5aWuQ .progressbar-title p,
.cid-tEtnW5aWuQ .progress_value {
  color: #ffffff;
  text-align: center;
}
.cid-tEtnW5aWuQ .mbr-section-subtitle {
  color: #454545;
}
.cid-tEtnW5aWuQ .section-content-title {
  text-align: center;
  color: #ffffff;
}
.cid-tEtnW5aWuQ .mbr-fallback-image.disabled {
  display: none;
}
.cid-tEtnW5aWuQ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-trZJUQ8LqR {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #212428;
}
.cid-trZJUQ8LqR .title-section {
  padding: 0px;
  margin-bottom: 20px;
}
@media (min-width: 992px) {
  .cid-trZJUQ8LqR .title-section {
    padding: 0 90px;
    margin-bottom: 40px;
  }
}
.cid-trZJUQ8LqR .btn {
  display: flex;
}
.cid-trZJUQ8LqR .card {
  background-color: transparent;
  border: 2px solid #db3eb1;
  border-radius: 20px;
}
.cid-trZJUQ8LqR .card-body {
  padding: 40px 55px 30px 55px;
}
.cid-trZJUQ8LqR .col-img {
  width: 35px;
  height: 35px;
  flex: 0 0 35px;
  margin-right: 22px;
}
.cid-trZJUQ8LqR .card-title {
  flex: 1 1 auto;
  width: auto;
}
.cid-trZJUQ8LqR .price {
  text-align: center;
  color: #7f6cc0;
}
.cid-trZJUQ8LqR .title-section .mbr-section-subtitle {
  text-align: left;
}
.cid-trZJUQ8LqR .mbr-fallback-image.disabled {
  display: none;
}
.cid-trZJUQ8LqR .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-trZJUQ8LqR .text1 {
  text-align: left;
  color: #ffffff;
}
.cid-trZJUQ8LqR .mbr-section-subtitle {
  color: #ffffff;
}
.cid-trZJUQ8LqR .title-section .mbr-section-title {
  color: #ffffff;
  text-align: right;
}
.cid-trZJUS8bAL {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #212428;
}
.cid-trZJUS8bAL .title-section {
  padding: 0px;
  margin-bottom: 20px;
}
@media (min-width: 992px) {
  .cid-trZJUS8bAL .title-section {
    padding: 0 90px;
    margin-bottom: 40px;
  }
}
.cid-trZJUS8bAL .btn {
  display: flex;
}
.cid-trZJUS8bAL .card {
  background-color: transparent;
  border: 2px solid #8364e2;
  border-radius: 20px;
}
.cid-trZJUS8bAL .card-body {
  padding: 40px 55px 30px 55px;
}
.cid-trZJUS8bAL .col-img {
  width: 35px;
  height: 35px;
  flex: 0 0 35px;
  margin-right: 22px;
}
.cid-trZJUS8bAL .card-title {
  flex: 1 1 auto;
  width: auto;
}
.cid-trZJUS8bAL .price {
  text-align: center;
  color: #7f6cc0;
}
.cid-trZJUS8bAL .title-section .mbr-section-subtitle {
  text-align: left;
}
.cid-trZJUS8bAL .mbr-fallback-image.disabled {
  display: none;
}
.cid-trZJUS8bAL .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-trZJUS8bAL .text1 {
  text-align: left;
  color: #ffffff;
}
.cid-trZJUS8bAL .mbr-section-subtitle {
  color: #ffffff;
}
.cid-trZJUS8bAL .title-section .mbr-section-title {
  color: #ffffff;
  text-align: right;
}
.cid-tsYjJ6YxeF {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #212428;
}
.cid-tsYjJ6YxeF .progress {
  width: 100%;
}
.cid-tsYjJ6YxeF p {
  margin-bottom: 0.4rem;
}
.cid-tsYjJ6YxeF .progressbar-title {
  padding-bottom: 1rem;
}
.cid-tsYjJ6YxeF .title-wrap {
  display: flex;
  justify-content: space-between;
  -webkit-justify-content: space-between;
}
.cid-tsYjJ6YxeF progress {
  height: 10px;
}
.cid-tsYjJ6YxeF .progressbar-number {
  display: inline-block;
  width: 50px;
}
.cid-tsYjJ6YxeF .progress-primary {
  background: rgba(206, 206, 206, 0.9);
  border: none;
  outline: none;
}
.cid-tsYjJ6YxeF .progress-primary::-webkit-progress-bar {
  background: rgba(206, 206, 206, 0.9);
}
.cid-tsYjJ6YxeF .progress_value {
  position: relative;
}
.cid-tsYjJ6YxeF .progress1 .progressbar-number:before,
.cid-tsYjJ6YxeF .progress2 .progressbar-number:before,
.cid-tsYjJ6YxeF .progress3 .progressbar-number:before,
.cid-tsYjJ6YxeF .progress4 .progressbar-number:before,
.cid-tsYjJ6YxeF .progress5 .progressbar-number:before {
  position: absolute;
  right: 15px;
  top: 0;
}
.cid-tsYjJ6YxeF progress[value]::-webkit-progress-bar {
  background: rgba(206, 206, 206, 0.4);
  margin: 0;
}
.cid-tsYjJ6YxeF progress::-webkit-progress-value {
  background: #6917c7;
}
.cid-tsYjJ6YxeF progress[value]::-moz-progress-bar {
  background: #6917c7;
}
.cid-tsYjJ6YxeF progress::-ms-fill {
  background: #6917c7;
}
.cid-tsYjJ6YxeF .progress1 .progressbar-number:before {
  content: "100";
}
.cid-tsYjJ6YxeF .progress2 .progressbar-number:before {
  content: "71";
}
.cid-tsYjJ6YxeF .progress3 .progressbar-number:before {
  content: "53";
}
.cid-tsYjJ6YxeF .progress4 .progressbar-number:before {
  content: "70";
}
.cid-tsYjJ6YxeF .progress5 .progressbar-number:before {
  content: "81";
}
.cid-tsYjJ6YxeF .section-content-text {
  color: #454545;
}
.cid-tsYjJ6YxeF .progressbar-title p,
.cid-tsYjJ6YxeF .progress_value {
  color: #ffffff;
  text-align: center;
}
.cid-tsYjJ6YxeF .mbr-section-subtitle {
  color: #454545;
}
.cid-tsYjJ6YxeF .section-content-title {
  text-align: center;
  color: #ffffff;
}
.cid-tsYjJ6YxeF .mbr-fallback-image.disabled {
  display: none;
}
.cid-tsYjJ6YxeF .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-trZM6f0NC3 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #212428;
}
.cid-trZM6f0NC3 .title-section {
  padding: 0px;
  margin-bottom: 20px;
}
@media (min-width: 992px) {
  .cid-trZM6f0NC3 .title-section {
    padding: 0 90px;
    margin-bottom: 40px;
  }
}
.cid-trZM6f0NC3 .btn {
  display: flex;
}
.cid-trZM6f0NC3 .card {
  background-color: transparent;
  border: 2px solid #db3eb1;
  border-radius: 20px;
  box-shadow: 0px 10px 20px 0px rgba(29, 29, 27, 0.2);
}
.cid-trZM6f0NC3 .card-body {
  padding: 40px 55px 30px 55px;
}
.cid-trZM6f0NC3 .col-img {
  width: 35px;
  height: 35px;
  flex: 0 0 35px;
  margin-right: 22px;
}
.cid-trZM6f0NC3 .card-title {
  flex: 1 1 auto;
  width: auto;
}
.cid-trZM6f0NC3 .price {
  text-align: center;
  color: #7f6cc0;
}
.cid-trZM6f0NC3 .title-section .mbr-section-subtitle {
  text-align: center;
}
.cid-trZM6f0NC3 .mbr-fallback-image.disabled {
  display: none;
}
.cid-trZM6f0NC3 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-trZM6f0NC3 .text1 {
  text-align: left;
  color: #ffffff;
}
.cid-trZM6f0NC3 .mbr-section-subtitle {
  color: #ffffff;
}
.cid-trZM6f0NC3 .title-section .mbr-section-title {
  color: #ffffff;
  text-align: left;
}
.cid-tsYjJufBl8 {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #212428;
}
.cid-tsYjJufBl8 .progress {
  width: 100%;
}
.cid-tsYjJufBl8 p {
  margin-bottom: 0.4rem;
}
.cid-tsYjJufBl8 .progressbar-title {
  padding-bottom: 1rem;
}
.cid-tsYjJufBl8 .title-wrap {
  display: flex;
  justify-content: space-between;
  -webkit-justify-content: space-between;
}
.cid-tsYjJufBl8 progress {
  height: 10px;
}
.cid-tsYjJufBl8 .progressbar-number {
  display: inline-block;
  width: 50px;
}
.cid-tsYjJufBl8 .progress-primary {
  background: rgba(206, 206, 206, 0.9);
  border: none;
  outline: none;
}
.cid-tsYjJufBl8 .progress-primary::-webkit-progress-bar {
  background: rgba(206, 206, 206, 0.9);
}
.cid-tsYjJufBl8 .progress_value {
  position: relative;
}
.cid-tsYjJufBl8 .progress1 .progressbar-number:before,
.cid-tsYjJufBl8 .progress2 .progressbar-number:before,
.cid-tsYjJufBl8 .progress3 .progressbar-number:before,
.cid-tsYjJufBl8 .progress4 .progressbar-number:before,
.cid-tsYjJufBl8 .progress5 .progressbar-number:before {
  position: absolute;
  right: 15px;
  top: 0;
}
.cid-tsYjJufBl8 progress[value]::-webkit-progress-bar {
  background: rgba(206, 206, 206, 0.4);
  margin: 0;
}
.cid-tsYjJufBl8 progress::-webkit-progress-value {
  background: #6917c7;
}
.cid-tsYjJufBl8 progress[value]::-moz-progress-bar {
  background: #6917c7;
}
.cid-tsYjJufBl8 progress::-ms-fill {
  background: #6917c7;
}
.cid-tsYjJufBl8 .progress1 .progressbar-number:before {
  content: "100";
}
.cid-tsYjJufBl8 .progress2 .progressbar-number:before {
  content: "71";
}
.cid-tsYjJufBl8 .progress3 .progressbar-number:before {
  content: "53";
}
.cid-tsYjJufBl8 .progress4 .progressbar-number:before {
  content: "70";
}
.cid-tsYjJufBl8 .progress5 .progressbar-number:before {
  content: "81";
}
.cid-tsYjJufBl8 .section-content-text {
  color: #454545;
}
.cid-tsYjJufBl8 .progressbar-title p,
.cid-tsYjJufBl8 .progress_value {
  color: #ffffff;
  text-align: center;
}
.cid-tsYjJufBl8 .mbr-section-subtitle {
  color: #454545;
}
.cid-tsYjJufBl8 .section-content-title {
  text-align: center;
  color: #ffffff;
}
.cid-tsYjJufBl8 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tsYjJufBl8 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tEtooGfEsN {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #212428;
  overflow: hidden;
}
.cid-tEtooGfEsN .mbr-fallback-image.disabled {
  display: none;
}
.cid-tEtooGfEsN .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tEtooGfEsN .card-row {
  align-items: stretch;
}
.cid-tEtooGfEsN .item-wrap {
  position: relative;
  height: 100%;
  width: 100%;
  padding: 55px;
  border-radius: 10px;
  overflow: hidden;
  background: linear-gradient(145deg, #1e2024, #000000);
  box-shadow: 10px 10px 19px #7f6cc0, -10px -10px 19px #7f6cc0;
}
@media (max-width: 767px) {
  .cid-tEtooGfEsN .item-wrap {
    padding: 40px;
  }
}
@media (max-width: 575px) {
  .cid-tEtooGfEsN .item-wrap {
    padding: 35px 25px 35px 25px;
  }
}
.cid-tEtooGfEsN .carousel {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 100%;
  width: 100%;
  margin: 0;
}
.cid-tEtooGfEsN .carousel-inner {
  display: flex;
  align-items: center;
  margin-bottom: 0;
  border-radius: 10px;
}
.cid-tEtooGfEsN .carousel-item-wrapper {
  display: flex;
  width: 100%;
  overflow: visible;
  padding: 0;
}
.cid-tEtooGfEsN .carousel-item-wrapper img {
  aspect-ratio: 1.77842566;
  object-fit: cover;
}
.cid-tEtooGfEsN .carousel-control {
  top: 50%;
  transform: translateY(-50%);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(to right bottom, #212428, #16181c) !important;
  box-shadow: 10px 10px 19px #191b1f, -10px -10px 19px #23272b;
  border: none;
  transition: all 0.4s;
  opacity: 1;
  color: #C4CFDE;
  font-size: 18px;
}
.cid-tEtooGfEsN .carousel-control.carousel-control-prev {
  left: -30px;
  margin-left: 0;
}
@media (max-width: 575px) {
  .cid-tEtooGfEsN .carousel-control.carousel-control-prev {
    left: -25px;
  }
}
.cid-tEtooGfEsN .carousel-control.carousel-control-next {
  right: -30px;
  margin-right: 0;
}
@media (max-width: 575px) {
  .cid-tEtooGfEsN .carousel-control.carousel-control-next {
    right: -25px;
  }
}
.cid-tEtooGfEsN .carousel-control:hover {
  color: #FFFFFF !important;
  opacity: 1;
}
.cid-tEtooGfEsN .mobi-mbri-arrow-next {
  margin-left: 5px;
}
.cid-tEtooGfEsN .mobi-mbri-arrow-prev {
  margin-right: 5px;
}
.cid-tEtooGfEsN .container .carousel-indicators {
  margin-bottom: 3px;
  display: none !important;
}
.cid-tEtooGfEsN .item-menu-overlay {
  opacity: 0 !important;
}
.cid-tEtooGfEsN .text-row {
  padding-top: 50px;
}
@media (max-width: 991px) {
  .cid-tEtooGfEsN .text-row {
    padding-top: 30px;
  }
}
.cid-tEtooGfEsN .card-title {
  color: #C4CFDE;
  margin-bottom: 20px;
}
.cid-tEtooGfEsN .card-subtitle {
  color: #878e99;
  margin-bottom: 0;
}
.cid-tEtooGfEsN .card-text-container {
  display: flex;
  align-items: flex-start;
  padding-top: 24px;
  padding-bottom: 8px;
  margin: 0 -30px;
}
@media (max-width: 767px) {
  .cid-tEtooGfEsN .card-text-container {
    margin: 0 -10px;
  }
}
@media (max-width: 575px) {
  .cid-tEtooGfEsN .card-text-container {
    flex-wrap: wrap;
  }
}
.cid-tEtooGfEsN .card-text {
  color: #878e99;
  margin-bottom: 8px;
  margin-top: 8px;
  flex-basis: 50%;
  flex-grow: 1;
  padding-left: 30px;
  padding-right: 30px;
}
@media (max-width: 767px) {
  .cid-tEtooGfEsN .card-text {
    padding-left: 10px;
    padding-right: 10px;
  }
}
@media (max-width: 575px) {
  .cid-tEtooGfEsN .card-text {
    flex-basis: 100%;
  }
}
.cid-tEtooGfEsN .mbr-section-btn {
  display: flex;
  flex-direction: column;
  align-items: stretch;
}
@media (max-width: 991px) {
  .cid-tEtooGfEsN .mbr-section-btn {
    margin-top: 10px;
  }
}
.cid-tzI3Q4PbvZ {
  padding-top: 1rem;
  padding-bottom: 2rem;
  background-color: #212428;
}
.cid-tzI3Q4PbvZ .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-tzI3Q4PbvZ .card-title {
  margin-bottom: 26px;
  color: #8364e2;
}
.cid-tzI3Q4PbvZ .mbr-text {
  margin-bottom: 30px;
}
.cid-tzI3Q4PbvZ .iconfont-wrapper {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  border-top-right-radius: 0;
  display: inline-block;
  text-align: center;
  margin-bottom: 30px;
  position: relative;
  z-index: 1;
  box-shadow: 0px 14px 30px 0px rgba(148, 10, 36, 0.4);
  background-image: linear-gradient(125deg, #940a24 0%, #ef153e 100%);
}
.cid-tzI3Q4PbvZ .iconfont-wrapper .mbr-iconfont {
  color: #ffffff;
  font-size: 36px;
  line-height: 70px;
}
.cid-tzI3Q4PbvZ .btn_link {
  display: block;
  margin-bottom: 0;
  position: relative;
  font-weight: 700;
}
.cid-tzI3Q4PbvZ .btn_link span {
  display: inline-block;
  margin-left: .25rem;
  font-size: 16px;
  vertical-align: middle;
  transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.cid-tzI3Q4PbvZ .btn_link:hover {
  cursor: pointer;
}
.cid-tzI3Q4PbvZ .btn_link:hover a {
  color: #8364e2 !important;
}
.cid-tzI3Q4PbvZ .btn_link:hover span {
  transform: translatex(5px);
}
@media (min-width: 992px) {
  .cid-tzI3Q4PbvZ .text-wrapper {
    padding-right: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tzI3Q4PbvZ .text-wrapper {
    text-align: center;
  }
  .cid-tzI3Q4PbvZ .image-wrapper {
    margin-bottom: 40px;
  }
  .cid-tzI3Q4PbvZ .mbr-text {
    margin-bottom: 20px;
  }
  .cid-tzI3Q4PbvZ .iconfont-wrapper {
    margin-bottom: 20px;
  }
}
.cid-tzI3Q4PbvZ .mbr-text,
.cid-tzI3Q4PbvZ .btn_link {
  color: #ffffff;
  text-align: left;
}
.cid-tzI3Q4PbvZ .card-title,
.cid-tzI3Q4PbvZ .icon_block {
  text-align: left;
}
.cid-tv20JXf5Ez {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #282b2f;
}
.cid-tv20JXf5Ez svg {
  width: 100%;
  position: absolute;
  left: 0;
  top: -48px;
  height: 50px;
  transform-origin: bottom;
  animation: 1.5s ease-in-out infinite alternate svg2;
}
.cid-tv20JXf5Ez svg .st0 {
  fill: #282b2f;
}
@media (max-width: 992px) {
  .cid-tv20JXf5Ez svg {
    width: 1000px;
  }
}
@keyframes svg2 {
  from {
    transform: scaleX(1) scaleY(1.1) rotate(0deg);
  }
  to {
    transform: scaleX(1) scaleY(1.6) rotate(0deg);
  }
}
.cid-tv20JXf5Ez .list {
  list-style: none;
  padding-left: 0;
  color: #ffffff;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-tv20JXf5Ez .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tv20JXf5Ez .list {
    margin-bottom: 0rem;
  }
}
@media (max-width: 767px) {
  .cid-tv20JXf5Ez .row {
    text-align: center;
  }
}
@media (max-width: 991px) {
  .cid-tv20JXf5Ez div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-tv20JXf5Ez .copyright {
  color: #ffffff;
  text-align: center;
}
.cid-tO3ZaARX6J {
  z-index: 1000;
  width: 100%;
  position: relative;
}
.cid-tO3ZaARX6J .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;
}
@media (max-width: 767px) {
  .cid-tO3ZaARX6J .navbar-toggler {
    transform: scale(0.8);
  }
}
.cid-tO3ZaARX6J .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tO3ZaARX6J .navbar-brand img {
  max-width: 100%;
  max-height: 100%;
  border-radius: 0px !important;
}
.cid-tO3ZaARX6J .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tO3ZaARX6J .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tO3ZaARX6J .navbar-nav {
  margin: auto;
  margin-left: 0;
  margin-left: auto;
}
.cid-tO3ZaARX6J .navbar-nav .nav-item {
  padding: 0 !important;
  transition: .3s all !important;
}
.cid-tO3ZaARX6J .navbar-nav .nav-item .nav-link {
  padding: 16px !important;
  margin: 0 !important;
  border-radius: 1rem !important;
  transition: .3s all !important;
}
.cid-tO3ZaARX6J .navbar-nav .nav-item .nav-link:hover {
  background-color: rgba(27, 31, 10, 0.06);
}
.cid-tO3ZaARX6J .navbar-nav .open .nav-link::after {
  transform: rotate(180deg);
}
@media (min-width: 992px) {
  .cid-tO3ZaARX6J .navbar-nav .open .nav-link::before {
    content: "";
    width: 100%;
    height: 20px;
    top: 100%;
    background: transparent;
    position: absolute;
  }
}
.cid-tO3ZaARX6J .navbar-nav .dropdown-item {
  padding: 12px !important;
  border-radius: 0.5rem !important;
  margin: 0 8px !important;
  transition: .3s all !important;
}
.cid-tO3ZaARX6J .navbar-nav .dropdown-item:hover {
  background-color: rgba(27, 31, 10, 0.06);
}
@media (min-width: 992px) {
  .cid-tO3ZaARX6J .navbar-nav {
    padding-left: 1.5rem;
  }
}
.cid-tO3ZaARX6J .nav-link {
  width: fit-content;
  position: relative;
}
.cid-tO3ZaARX6J .navbar-logo {
  padding-left: 2rem;
  margin: 0 !important;
}
@media (max-width: 767px) {
  .cid-tO3ZaARX6J .navbar-logo {
    padding-left: 1rem;
  }
}
.cid-tO3ZaARX6J .navbar-caption {
  padding-left: 1rem;
  padding-right: .5rem;
}
@media (max-width: 767px) {
  .cid-tO3ZaARX6J .nav-dropdown {
    padding-bottom: 0.5rem;
  }
}
.cid-tO3ZaARX6J .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  transition: .3s all;
}
.cid-tO3ZaARX6J .container {
  display: flex;
  height: 90px;
  padding: 0.5rem 0.6rem;
  flex-wrap: nowrap;
  background: rgba(64, 63, 131, 0.8) !important;
  left: 0;
  right: 0;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: flex-end;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 100vw;
  margin-top: 1rem;
  background-color: #403f83;
  box-shadow: 0 30px 60px 0 rgba(27, 31, 10, 0.08);
}
@media (max-width: 992px) {
  .cid-tO3ZaARX6J .container {
    padding-right: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-tO3ZaARX6J .container {
    width: 95%;
    height: 56px !important;
    padding-right: 1rem;
    margin-top: 0rem;
  }
}
.cid-tO3ZaARX6J .iconfont-wrapper {
  color: #2469ea !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tO3ZaARX6J .dropdown-menu {
  flex-wrap: wrap;
  flex-direction: column;
  max-width: 100%;
  padding: 12px 4px !important;
  border-radius: 1.5rem;
  transition: .3s all !important;
  min-width: auto;
  background: #403f83;
  background: rgba(64, 63, 131, 0.8) !important;
}
.cid-tO3ZaARX6J .nav-item:focus,
.cid-tO3ZaARX6J .nav-link:focus {
  outline: none;
}
.cid-tO3ZaARX6J .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tO3ZaARX6J .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tO3ZaARX6J .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tO3ZaARX6J .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tO3ZaARX6J .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tO3ZaARX6J .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tO3ZaARX6J .navbar {
  min-height: 90px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: transparent !important;
  padding: 0 !important;
  border: none !important;
  box-shadow: none !important;
  border-radius: 0 !important;
}
.cid-tO3ZaARX6J .navbar.opened {
  transition: all 0.3s;
}
.cid-tO3ZaARX6J .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tO3ZaARX6J .navbar .navbar-logo img {
  width: auto;
}
.cid-tO3ZaARX6J .navbar .navbar-collapse {
  z-index: 1;
  justify-content: flex-end;
}
.cid-tO3ZaARX6J .navbar.collapsed {
  justify-content: center;
}
.cid-tO3ZaARX6J .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tO3ZaARX6J .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tO3ZaARX6J .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 2.7rem);
  }
}
.cid-tO3ZaARX6J .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tO3ZaARX6J .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tO3ZaARX6J .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-tO3ZaARX6J .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tO3ZaARX6J .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tO3ZaARX6J .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 767px) {
  .cid-tO3ZaARX6J .navbar {
    min-height: 72px;
  }
  .cid-tO3ZaARX6J .navbar .navbar-logo img {
    height: 2rem !important;
  }
}
@media (max-width: 991px) {
  .cid-tO3ZaARX6J .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tO3ZaARX6J .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tO3ZaARX6J .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tO3ZaARX6J .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tO3ZaARX6J .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-tO3ZaARX6J .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tO3ZaARX6J .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 10px;
  }
  .cid-tO3ZaARX6J .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tO3ZaARX6J .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tO3ZaARX6J .navbar.navbar-short .navbar-logo img {
  height: 2rem;
}
.cid-tO3ZaARX6J .dropdown-item.active,
.cid-tO3ZaARX6J .dropdown-item:active {
  background-color: transparent;
}
.cid-tO3ZaARX6J .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tO3ZaARX6J .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tO3ZaARX6J .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tO3ZaARX6J .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #403f83;
}
.cid-tO3ZaARX6J .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 105%;
  transform: none;
  top: -12px;
}
.cid-tO3ZaARX6J .navbar .dropdown.open > .dropdown-menu {
  display: flex;
}
.cid-tO3ZaARX6J ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tO3ZaARX6J .navbar-buttons {
  text-align: center;
  min-width: 140px;
}
@media (max-width: 992px) {
  .cid-tO3ZaARX6J .navbar-buttons {
    text-align: left;
  }
}
.cid-tO3ZaARX6J button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tO3ZaARX6J button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-tO3ZaARX6J button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tO3ZaARX6J button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tO3ZaARX6J button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tO3ZaARX6J button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tO3ZaARX6J nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tO3ZaARX6J nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tO3ZaARX6J nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tO3ZaARX6J nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tO3ZaARX6J .navbar-dropdown {
  padding: 0 1rem;
}
.cid-tO3ZaARX6J a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tO3ZaARX6J .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media (max-width: 992px) {
  .cid-tO3ZaARX6J .icons-menu {
    justify-content: flex-start;
    margin-bottom: .5rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tO3ZaARX6J .navbar {
    height: 70px;
  }
  .cid-tO3ZaARX6J .navbar.opened {
    height: auto;
  }
  .cid-tO3ZaARX6J .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tO3ZaARX6J .navbar .dropdown > .dropdown-menu {
  display: none;
  width: max-content;
  max-width: 500px !important;
  transform: translateX(-50%);
  top: calc(100% + 20px);
  left: 50%;
}
.cid-tO3ZaARX6J .navbar .dropdown > .dropdown-menu .dropdown-item {
  line-height: 1 !important;
}
.cid-tO3ZaARX6J .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item {
  align-items: center;
  display: flex;
  height: max-content !important;
  min-height: max-content !important;
}
.cid-tO3ZaARX6J .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item::after {
  display: inline-block;
  position: static;
  margin-left: 0.5rem;
  margin-top: 0;
  margin-right: 0;
  margin-bottom: 0;
  transition: .3s all;
  transform: rotate(-90deg);
}
.cid-tO3ZaARX6J .navbar .dropdown > .dropdown-menu .dropdown.open .dropdown-item::after {
  transform: rotate(0deg);
}
.cid-tO3ZaARX6J .mbr-section-btn {
  margin: -0.6rem -0.6rem;
}
.cid-tO3ZaARX6J .navbar-toggler {
  margin-left: 12px;
  margin-right: 8px;
  order: 1000;
}
@media (max-width: 991px) {
  .cid-tO3ZaARX6J .navbar-brand {
    margin-right: auto;
  }
  .cid-tO3ZaARX6J .navbar-collapse {
    z-index: -1 !important;
    position: absolute;
    top: 110%;
    left: 0;
    width: 100%;
    padding: 1rem;
    border-radius: 1.5rem;
    background: #403f83;
    opacity: 1;
    border-color: rgba(64, 63, 131, 0.8) !important;
    background: rgba(64, 63, 131, 0.8) !important;
    backdrop-filter: blur(8px);
  }
  .cid-tO3ZaARX6J .navbar-nav .nav-item .nav-link::after {
    margin-left: 10px;
  }
  .cid-tO3ZaARX6J .navbar-nav .dropdown-item:hover {
    background-color: rgba(27, 31, 10, 0.06);
  }
  .cid-tO3ZaARX6J .navbar .dropdown > .dropdown-menu {
    max-width: 100% !important;
    transform: translateX(0);
    top: 10px;
    left: 0;
    padding: 8px !important;
    border-radius: 1rem;
    background-color: rgba(27, 31, 10, 0.04) !important;
  }
  .cid-tO3ZaARX6J .navbar .dropdown > .dropdown-menu .dropdown-item {
    padding: 8px !important;
    line-height: 1 !important;
    margin-bottom: 4px !important;
  }
  .cid-tO3ZaARX6J .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item {
    align-items: center;
    display: flex;
    height: max-content !important;
    min-height: max-content !important;
  }
  .cid-tO3ZaARX6J .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item::after {
    display: inline-block;
    position: static;
    margin-left: 0.5rem;
    margin-top: 0;
    margin-right: 0;
    margin-bottom: 0;
    transition: .3s all;
    transform: rotate(0deg);
  }
  .cid-tO3ZaARX6J .navbar .dropdown > .dropdown-menu .dropdown.open .dropdown-item::after {
    transform: rotate(180deg);
  }
  .cid-tO3ZaARX6J .navbar .dropdown > .dropdown-menu .dropdown-submenu {
    position: static;
    width: 100%;
    max-width: 100% !important;
    transform: translateX(0) !important;
    top: 0;
    left: 0;
    padding: 8px !important;
    border-radius: 1rem;
    background-color: rgba(27, 31, 10, 0.04) !important;
  }
  .cid-tO3ZaARX6J .navbar .dropdown.open > .dropdown-menu {
    display: flex !important;
    flex-direction: column;
    align-items: flex-start;
  }
}
@media (max-width: 575px) {
  .cid-tO3ZaARX6J .navbar-collapse {
    padding: 1rem;
  }
}
.cid-trZX2jWRcZ {
  background-image: url("../../../assets/images/host3-1920x1080.webp");
}
.cid-trZX2jWRcZ img {
  width: 100%;
  border-radius: 30px;
}
.cid-trZX2jWRcZ .mbr-section-title {
  color: #ffffff;
}
.cid-trZX2jWRcZ .mbr-section-subtitle {
  background-color: #8364e2;
  padding: 0 1rem;
  border-radius: 5px;
  display: inline-block;
  font-family: 'IBM Plex Sans', sans-serif;
  font-weight: 900;
  color: #ffffff;
}
.cid-trZX2jWRcZ .svg-1 {
  position: absolute;
  bottom: 0;
}
.cid-trZX2jWRcZ .svg-1 path {
  fill: #212428;
}
.cid-trZX2jWRcZ .container-fluid {
  max-width: 1200px;
}
.cid-trZX2jWRcZ .mbr-arrow {
  z-index: 1;
}
.cid-trZX2jWRcZ .mbr-section-btn {
  margin-top: 1.5rem;
}
@media (min-width: 768px) {
  .cid-trZX2jWRcZ .container-fluid {
    padding: 0 1.5rem;
  }
}
@media (max-width: 992px) {
  .cid-trZX2jWRcZ .imageContainer {
    margin-top: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-trZX2jWRcZ .container-fluid {
    padding: 0 1rem;
  }
  .cid-trZX2jWRcZ .mbr-section-subtitle {
    margin-bottom: 1.4rem;
  }
}
.cid-tzZpn9xd32 {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #212428;
}
.cid-tzZpn9xd32 .mbr-iconfont {
  display: block;
  font-size: 3rem;
  color: #8364e2;
  margin-bottom: 1rem;
}
.cid-tzZpn9xd32 .main-title {
  position: relative;
  width: fit-content;
  display: inline-block;
  color: #160830;
}
.cid-tzZpn9xd32 .main-title:before {
  content: "";
  bottom: -1rem;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 2px;
  background: currentColor;
  position: absolute;
}
.cid-tzZpn9xd32 .card-wrapper {
  transition: all 0.3s;
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 2.5rem 2rem;
  background: #282b2f;
  border-radius: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 2rem;
  box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.3);
}
.cid-tzZpn9xd32 .card-wrapper:hover {
  background: transparent;
}
.cid-tzZpn9xd32 .card-title,
.cid-tzZpn9xd32 .card-box {
  color: #ffffff;
}
.cid-tzZpn9xd32 .main-title,
.cid-tzZpn9xd32 .title-col {
  text-align: center;
  color: #ffffff;
}
.cid-tzZpn9xd32 .card-text {
  color: #bbbbbb;
  text-align: left;
}
.cid-tzZpn9xd32 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tzZpn9xd32 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tEtnYdDNhs {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #212428;
}
.cid-tEtnYdDNhs .progress {
  width: 100%;
}
.cid-tEtnYdDNhs p {
  margin-bottom: 0.4rem;
}
.cid-tEtnYdDNhs .progressbar-title {
  padding-bottom: 1rem;
}
.cid-tEtnYdDNhs .title-wrap {
  display: flex;
  justify-content: space-between;
  -webkit-justify-content: space-between;
}
.cid-tEtnYdDNhs progress {
  height: 10px;
}
.cid-tEtnYdDNhs .progressbar-number {
  display: inline-block;
  width: 50px;
}
.cid-tEtnYdDNhs .progress-primary {
  background: rgba(206, 206, 206, 0.9);
  border: none;
  outline: none;
}
.cid-tEtnYdDNhs .progress-primary::-webkit-progress-bar {
  background: rgba(206, 206, 206, 0.9);
}
.cid-tEtnYdDNhs .progress_value {
  position: relative;
}
.cid-tEtnYdDNhs .progress1 .progressbar-number:before,
.cid-tEtnYdDNhs .progress2 .progressbar-number:before,
.cid-tEtnYdDNhs .progress3 .progressbar-number:before,
.cid-tEtnYdDNhs .progress4 .progressbar-number:before,
.cid-tEtnYdDNhs .progress5 .progressbar-number:before {
  position: absolute;
  right: 15px;
  top: 0;
}
.cid-tEtnYdDNhs progress[value]::-webkit-progress-bar {
  background: rgba(206, 206, 206, 0.4);
  margin: 0;
}
.cid-tEtnYdDNhs progress::-webkit-progress-value {
  background: #6917c7;
}
.cid-tEtnYdDNhs progress[value]::-moz-progress-bar {
  background: #6917c7;
}
.cid-tEtnYdDNhs progress::-ms-fill {
  background: #6917c7;
}
.cid-tEtnYdDNhs .progress1 .progressbar-number:before {
  content: "100";
}
.cid-tEtnYdDNhs .progress2 .progressbar-number:before {
  content: "71";
}
.cid-tEtnYdDNhs .progress3 .progressbar-number:before {
  content: "53";
}
.cid-tEtnYdDNhs .progress4 .progressbar-number:before {
  content: "70";
}
.cid-tEtnYdDNhs .progress5 .progressbar-number:before {
  content: "81";
}
.cid-tEtnYdDNhs .section-content-text {
  color: #454545;
}
.cid-tEtnYdDNhs .progressbar-title p,
.cid-tEtnYdDNhs .progress_value {
  color: #ffffff;
  text-align: center;
}
.cid-tEtnYdDNhs .mbr-section-subtitle {
  color: #454545;
}
.cid-tEtnYdDNhs .section-content-title {
  text-align: center;
  color: #ffffff;
}
.cid-tEtnYdDNhs .mbr-fallback-image.disabled {
  display: none;
}
.cid-tEtnYdDNhs .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-trZX2lPwZA {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #212428;
}
.cid-trZX2lPwZA .title-section {
  padding: 0px;
  margin-bottom: 20px;
}
@media (min-width: 992px) {
  .cid-trZX2lPwZA .title-section {
    padding: 0 90px;
    margin-bottom: 40px;
  }
}
.cid-trZX2lPwZA .btn {
  display: flex;
}
.cid-trZX2lPwZA .card {
  background-color: transparent;
  border: 2px solid #db3eb1;
  border-radius: 20px;
}
.cid-trZX2lPwZA .card-body {
  padding: 40px 55px 30px 55px;
}
.cid-trZX2lPwZA .col-img {
  width: 35px;
  height: 35px;
  flex: 0 0 35px;
  margin-right: 22px;
}
.cid-trZX2lPwZA .card-title {
  flex: 1 1 auto;
  width: auto;
}
.cid-trZX2lPwZA .price {
  text-align: center;
  color: #7f6cc0;
}
.cid-trZX2lPwZA .title-section .mbr-section-subtitle {
  text-align: left;
}
.cid-trZX2lPwZA .mbr-fallback-image.disabled {
  display: none;
}
.cid-trZX2lPwZA .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-trZX2lPwZA .text1 {
  text-align: left;
  color: #ffffff;
}
.cid-trZX2lPwZA .mbr-section-subtitle {
  color: #ffffff;
}
.cid-trZX2lPwZA .title-section .mbr-section-title {
  color: #ffffff;
  text-align: right;
}
.cid-trZX2mFqac {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #212428;
}
.cid-trZX2mFqac .title-section {
  padding: 0px;
  margin-bottom: 20px;
}
@media (min-width: 992px) {
  .cid-trZX2mFqac .title-section {
    padding: 0 90px;
    margin-bottom: 40px;
  }
}
.cid-trZX2mFqac .btn {
  display: flex;
}
.cid-trZX2mFqac .card {
  background-color: transparent;
  border: 2px solid #8364e2;
  border-radius: 20px;
}
.cid-trZX2mFqac .card-body {
  padding: 40px 55px 30px 55px;
}
.cid-trZX2mFqac .col-img {
  width: 35px;
  height: 35px;
  flex: 0 0 35px;
  margin-right: 22px;
}
.cid-trZX2mFqac .card-title {
  flex: 1 1 auto;
  width: auto;
}
.cid-trZX2mFqac .price {
  text-align: center;
  color: #7f6cc0;
}
.cid-trZX2mFqac .title-section .mbr-section-subtitle {
  text-align: left;
}
.cid-trZX2mFqac .mbr-fallback-image.disabled {
  display: none;
}
.cid-trZX2mFqac .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-trZX2mFqac .text1 {
  text-align: left;
  color: #ffffff;
}
.cid-trZX2mFqac .mbr-section-subtitle {
  color: #ffffff;
}
.cid-trZX2mFqac .title-section .mbr-section-title {
  color: #ffffff;
  text-align: right;
}
.cid-tsYjRjUCYj {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #212428;
}
.cid-tsYjRjUCYj .progress {
  width: 100%;
}
.cid-tsYjRjUCYj p {
  margin-bottom: 0.4rem;
}
.cid-tsYjRjUCYj .progressbar-title {
  padding-bottom: 1rem;
}
.cid-tsYjRjUCYj .title-wrap {
  display: flex;
  justify-content: space-between;
  -webkit-justify-content: space-between;
}
.cid-tsYjRjUCYj progress {
  height: 10px;
}
.cid-tsYjRjUCYj .progressbar-number {
  display: inline-block;
  width: 50px;
}
.cid-tsYjRjUCYj .progress-primary {
  background: rgba(206, 206, 206, 0.9);
  border: none;
  outline: none;
}
.cid-tsYjRjUCYj .progress-primary::-webkit-progress-bar {
  background: rgba(206, 206, 206, 0.9);
}
.cid-tsYjRjUCYj .progress_value {
  position: relative;
}
.cid-tsYjRjUCYj .progress1 .progressbar-number:before,
.cid-tsYjRjUCYj .progress2 .progressbar-number:before,
.cid-tsYjRjUCYj .progress3 .progressbar-number:before,
.cid-tsYjRjUCYj .progress4 .progressbar-number:before,
.cid-tsYjRjUCYj .progress5 .progressbar-number:before {
  position: absolute;
  right: 15px;
  top: 0;
}
.cid-tsYjRjUCYj progress[value]::-webkit-progress-bar {
  background: rgba(206, 206, 206, 0.4);
  margin: 0;
}
.cid-tsYjRjUCYj progress::-webkit-progress-value {
  background: #6917c7;
}
.cid-tsYjRjUCYj progress[value]::-moz-progress-bar {
  background: #6917c7;
}
.cid-tsYjRjUCYj progress::-ms-fill {
  background: #6917c7;
}
.cid-tsYjRjUCYj .progress1 .progressbar-number:before {
  content: "100";
}
.cid-tsYjRjUCYj .progress2 .progressbar-number:before {
  content: "71";
}
.cid-tsYjRjUCYj .progress3 .progressbar-number:before {
  content: "53";
}
.cid-tsYjRjUCYj .progress4 .progressbar-number:before {
  content: "70";
}
.cid-tsYjRjUCYj .progress5 .progressbar-number:before {
  content: "81";
}
.cid-tsYjRjUCYj .section-content-text {
  color: #454545;
}
.cid-tsYjRjUCYj .progressbar-title p,
.cid-tsYjRjUCYj .progress_value {
  color: #ffffff;
  text-align: center;
}
.cid-tsYjRjUCYj .mbr-section-subtitle {
  color: #454545;
}
.cid-tsYjRjUCYj .section-content-title {
  text-align: center;
  color: #ffffff;
}
.cid-tsYjRjUCYj .mbr-fallback-image.disabled {
  display: none;
}
.cid-tsYjRjUCYj .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-trZX2o8QHK {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #212428;
}
.cid-trZX2o8QHK .title-section {
  padding: 0px;
  margin-bottom: 20px;
}
@media (min-width: 992px) {
  .cid-trZX2o8QHK .title-section {
    padding: 0 90px;
    margin-bottom: 40px;
  }
}
.cid-trZX2o8QHK .btn {
  display: flex;
}
.cid-trZX2o8QHK .card {
  background-color: transparent;
  border: 2px solid #db3eb1;
  border-radius: 20px;
  box-shadow: 0px 10px 20px 0px rgba(29, 29, 27, 0.2);
}
.cid-trZX2o8QHK .card-body {
  padding: 40px 55px 30px 55px;
}
.cid-trZX2o8QHK .col-img {
  width: 35px;
  height: 35px;
  flex: 0 0 35px;
  margin-right: 22px;
}
.cid-trZX2o8QHK .card-title {
  flex: 1 1 auto;
  width: auto;
}
.cid-trZX2o8QHK .price {
  text-align: center;
  color: #7f6cc0;
}
.cid-trZX2o8QHK .title-section .mbr-section-subtitle {
  text-align: center;
}
.cid-trZX2o8QHK .mbr-fallback-image.disabled {
  display: none;
}
.cid-trZX2o8QHK .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-trZX2o8QHK .text1 {
  text-align: left;
  color: #ffffff;
}
.cid-trZX2o8QHK .mbr-section-subtitle {
  color: #ffffff;
}
.cid-trZX2o8QHK .title-section .mbr-section-title {
  color: #ffffff;
  text-align: left;
}
.cid-tsYjRJC487 {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #212428;
}
.cid-tsYjRJC487 .progress {
  width: 100%;
}
.cid-tsYjRJC487 p {
  margin-bottom: 0.4rem;
}
.cid-tsYjRJC487 .progressbar-title {
  padding-bottom: 1rem;
}
.cid-tsYjRJC487 .title-wrap {
  display: flex;
  justify-content: space-between;
  -webkit-justify-content: space-between;
}
.cid-tsYjRJC487 progress {
  height: 10px;
}
.cid-tsYjRJC487 .progressbar-number {
  display: inline-block;
  width: 50px;
}
.cid-tsYjRJC487 .progress-primary {
  background: rgba(206, 206, 206, 0.9);
  border: none;
  outline: none;
}
.cid-tsYjRJC487 .progress-primary::-webkit-progress-bar {
  background: rgba(206, 206, 206, 0.9);
}
.cid-tsYjRJC487 .progress_value {
  position: relative;
}
.cid-tsYjRJC487 .progress1 .progressbar-number:before,
.cid-tsYjRJC487 .progress2 .progressbar-number:before,
.cid-tsYjRJC487 .progress3 .progressbar-number:before,
.cid-tsYjRJC487 .progress4 .progressbar-number:before,
.cid-tsYjRJC487 .progress5 .progressbar-number:before {
  position: absolute;
  right: 15px;
  top: 0;
}
.cid-tsYjRJC487 progress[value]::-webkit-progress-bar {
  background: rgba(206, 206, 206, 0.4);
  margin: 0;
}
.cid-tsYjRJC487 progress::-webkit-progress-value {
  background: #6917c7;
}
.cid-tsYjRJC487 progress[value]::-moz-progress-bar {
  background: #6917c7;
}
.cid-tsYjRJC487 progress::-ms-fill {
  background: #6917c7;
}
.cid-tsYjRJC487 .progress1 .progressbar-number:before {
  content: "100";
}
.cid-tsYjRJC487 .progress2 .progressbar-number:before {
  content: "71";
}
.cid-tsYjRJC487 .progress3 .progressbar-number:before {
  content: "53";
}
.cid-tsYjRJC487 .progress4 .progressbar-number:before {
  content: "70";
}
.cid-tsYjRJC487 .progress5 .progressbar-number:before {
  content: "81";
}
.cid-tsYjRJC487 .section-content-text {
  color: #454545;
}
.cid-tsYjRJC487 .progressbar-title p,
.cid-tsYjRJC487 .progress_value {
  color: #ffffff;
  text-align: center;
}
.cid-tsYjRJC487 .mbr-section-subtitle {
  color: #454545;
}
.cid-tsYjRJC487 .section-content-title {
  text-align: center;
  color: #ffffff;
}
.cid-tsYjRJC487 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tsYjRJC487 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tEtoqDPldu {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #212428;
  overflow: hidden;
}
.cid-tEtoqDPldu .mbr-fallback-image.disabled {
  display: none;
}
.cid-tEtoqDPldu .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tEtoqDPldu .card-row {
  align-items: stretch;
}
.cid-tEtoqDPldu .item-wrap {
  position: relative;
  height: 100%;
  width: 100%;
  padding: 55px;
  border-radius: 10px;
  overflow: hidden;
  background: linear-gradient(145deg, #1e2024, #000000);
  box-shadow: 10px 10px 19px #7f6cc0, -10px -10px 19px #7f6cc0;
}
@media (max-width: 767px) {
  .cid-tEtoqDPldu .item-wrap {
    padding: 40px;
  }
}
@media (max-width: 575px) {
  .cid-tEtoqDPldu .item-wrap {
    padding: 35px 25px 35px 25px;
  }
}
.cid-tEtoqDPldu .carousel {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 100%;
  width: 100%;
  margin: 0;
}
.cid-tEtoqDPldu .carousel-inner {
  display: flex;
  align-items: center;
  margin-bottom: 0;
  border-radius: 10px;
}
.cid-tEtoqDPldu .carousel-item-wrapper {
  display: flex;
  width: 100%;
  overflow: visible;
  padding: 0;
}
.cid-tEtoqDPldu .carousel-item-wrapper img {
  aspect-ratio: 1.77842566;
  object-fit: cover;
}
.cid-tEtoqDPldu .carousel-control {
  top: 50%;
  transform: translateY(-50%);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(to right bottom, #212428, #16181c) !important;
  box-shadow: 10px 10px 19px #191b1f, -10px -10px 19px #23272b;
  border: none;
  transition: all 0.4s;
  opacity: 1;
  color: #C4CFDE;
  font-size: 18px;
}
.cid-tEtoqDPldu .carousel-control.carousel-control-prev {
  left: -30px;
  margin-left: 0;
}
@media (max-width: 575px) {
  .cid-tEtoqDPldu .carousel-control.carousel-control-prev {
    left: -25px;
  }
}
.cid-tEtoqDPldu .carousel-control.carousel-control-next {
  right: -30px;
  margin-right: 0;
}
@media (max-width: 575px) {
  .cid-tEtoqDPldu .carousel-control.carousel-control-next {
    right: -25px;
  }
}
.cid-tEtoqDPldu .carousel-control:hover {
  color: #FFFFFF !important;
  opacity: 1;
}
.cid-tEtoqDPldu .mobi-mbri-arrow-next {
  margin-left: 5px;
}
.cid-tEtoqDPldu .mobi-mbri-arrow-prev {
  margin-right: 5px;
}
.cid-tEtoqDPldu .container .carousel-indicators {
  margin-bottom: 3px;
  display: none !important;
}
.cid-tEtoqDPldu .item-menu-overlay {
  opacity: 0 !important;
}
.cid-tEtoqDPldu .text-row {
  padding-top: 50px;
}
@media (max-width: 991px) {
  .cid-tEtoqDPldu .text-row {
    padding-top: 30px;
  }
}
.cid-tEtoqDPldu .card-title {
  color: #C4CFDE;
  margin-bottom: 20px;
}
.cid-tEtoqDPldu .card-subtitle {
  color: #878e99;
  margin-bottom: 0;
}
.cid-tEtoqDPldu .card-text-container {
  display: flex;
  align-items: flex-start;
  padding-top: 24px;
  padding-bottom: 8px;
  margin: 0 -30px;
}
@media (max-width: 767px) {
  .cid-tEtoqDPldu .card-text-container {
    margin: 0 -10px;
  }
}
@media (max-width: 575px) {
  .cid-tEtoqDPldu .card-text-container {
    flex-wrap: wrap;
  }
}
.cid-tEtoqDPldu .card-text {
  color: #878e99;
  margin-bottom: 8px;
  margin-top: 8px;
  flex-basis: 50%;
  flex-grow: 1;
  padding-left: 30px;
  padding-right: 30px;
}
@media (max-width: 767px) {
  .cid-tEtoqDPldu .card-text {
    padding-left: 10px;
    padding-right: 10px;
  }
}
@media (max-width: 575px) {
  .cid-tEtoqDPldu .card-text {
    flex-basis: 100%;
  }
}
.cid-tEtoqDPldu .mbr-section-btn {
  display: flex;
  flex-direction: column;
  align-items: stretch;
}
@media (max-width: 991px) {
  .cid-tEtoqDPldu .mbr-section-btn {
    margin-top: 10px;
  }
}
.cid-tzIf0f4t9Y {
  padding-top: 1rem;
  padding-bottom: 2rem;
  background-color: #212428;
}
.cid-tzIf0f4t9Y .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-tzIf0f4t9Y .card-title {
  margin-bottom: 26px;
  color: #8364e2;
}
.cid-tzIf0f4t9Y .mbr-text {
  margin-bottom: 30px;
}
.cid-tzIf0f4t9Y .iconfont-wrapper {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  border-top-right-radius: 0;
  display: inline-block;
  text-align: center;
  margin-bottom: 30px;
  position: relative;
  z-index: 1;
  box-shadow: 0px 14px 30px 0px rgba(148, 10, 36, 0.4);
  background-image: linear-gradient(125deg, #940a24 0%, #ef153e 100%);
}
.cid-tzIf0f4t9Y .iconfont-wrapper .mbr-iconfont {
  color: #ffffff;
  font-size: 36px;
  line-height: 70px;
}
.cid-tzIf0f4t9Y .btn_link {
  display: block;
  margin-bottom: 0;
  position: relative;
  font-weight: 700;
}
.cid-tzIf0f4t9Y .btn_link span {
  display: inline-block;
  margin-left: .25rem;
  font-size: 16px;
  vertical-align: middle;
  transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.cid-tzIf0f4t9Y .btn_link:hover {
  cursor: pointer;
}
.cid-tzIf0f4t9Y .btn_link:hover a {
  color: #8364e2 !important;
}
.cid-tzIf0f4t9Y .btn_link:hover span {
  transform: translatex(5px);
}
@media (min-width: 992px) {
  .cid-tzIf0f4t9Y .text-wrapper {
    padding-right: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tzIf0f4t9Y .text-wrapper {
    text-align: center;
  }
  .cid-tzIf0f4t9Y .image-wrapper {
    margin-bottom: 40px;
  }
  .cid-tzIf0f4t9Y .mbr-text {
    margin-bottom: 20px;
  }
  .cid-tzIf0f4t9Y .iconfont-wrapper {
    margin-bottom: 20px;
  }
}
.cid-tzIf0f4t9Y .mbr-text,
.cid-tzIf0f4t9Y .btn_link {
  color: #ffffff;
  text-align: left;
}
.cid-tzIf0f4t9Y .card-title,
.cid-tzIf0f4t9Y .icon_block {
  text-align: left;
}
.cid-tv20JXf5Ez {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #282b2f;
}
.cid-tv20JXf5Ez svg {
  width: 100%;
  position: absolute;
  left: 0;
  top: -48px;
  height: 50px;
  transform-origin: bottom;
  animation: 1.5s ease-in-out infinite alternate svg2;
}
.cid-tv20JXf5Ez svg .st0 {
  fill: #282b2f;
}
@media (max-width: 992px) {
  .cid-tv20JXf5Ez svg {
    width: 1000px;
  }
}
@keyframes svg2 {
  from {
    transform: scaleX(1) scaleY(1.1) rotate(0deg);
  }
  to {
    transform: scaleX(1) scaleY(1.6) rotate(0deg);
  }
}
.cid-tv20JXf5Ez .list {
  list-style: none;
  padding-left: 0;
  color: #ffffff;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-tv20JXf5Ez .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tv20JXf5Ez .list {
    margin-bottom: 0rem;
  }
}
@media (max-width: 767px) {
  .cid-tv20JXf5Ez .row {
    text-align: center;
  }
}
@media (max-width: 991px) {
  .cid-tv20JXf5Ez div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-tv20JXf5Ez .copyright {
  color: #ffffff;
  text-align: center;
}
.cid-tO3ZaARX6J {
  z-index: 1000;
  width: 100%;
  position: relative;
}
.cid-tO3ZaARX6J .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;
}
@media (max-width: 767px) {
  .cid-tO3ZaARX6J .navbar-toggler {
    transform: scale(0.8);
  }
}
.cid-tO3ZaARX6J .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tO3ZaARX6J .navbar-brand img {
  max-width: 100%;
  max-height: 100%;
  border-radius: 0px !important;
}
.cid-tO3ZaARX6J .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tO3ZaARX6J .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tO3ZaARX6J .navbar-nav {
  margin: auto;
  margin-left: 0;
  margin-left: auto;
}
.cid-tO3ZaARX6J .navbar-nav .nav-item {
  padding: 0 !important;
  transition: .3s all !important;
}
.cid-tO3ZaARX6J .navbar-nav .nav-item .nav-link {
  padding: 16px !important;
  margin: 0 !important;
  border-radius: 1rem !important;
  transition: .3s all !important;
}
.cid-tO3ZaARX6J .navbar-nav .nav-item .nav-link:hover {
  background-color: rgba(27, 31, 10, 0.06);
}
.cid-tO3ZaARX6J .navbar-nav .open .nav-link::after {
  transform: rotate(180deg);
}
@media (min-width: 992px) {
  .cid-tO3ZaARX6J .navbar-nav .open .nav-link::before {
    content: "";
    width: 100%;
    height: 20px;
    top: 100%;
    background: transparent;
    position: absolute;
  }
}
.cid-tO3ZaARX6J .navbar-nav .dropdown-item {
  padding: 12px !important;
  border-radius: 0.5rem !important;
  margin: 0 8px !important;
  transition: .3s all !important;
}
.cid-tO3ZaARX6J .navbar-nav .dropdown-item:hover {
  background-color: rgba(27, 31, 10, 0.06);
}
@media (min-width: 992px) {
  .cid-tO3ZaARX6J .navbar-nav {
    padding-left: 1.5rem;
  }
}
.cid-tO3ZaARX6J .nav-link {
  width: fit-content;
  position: relative;
}
.cid-tO3ZaARX6J .navbar-logo {
  padding-left: 2rem;
  margin: 0 !important;
}
@media (max-width: 767px) {
  .cid-tO3ZaARX6J .navbar-logo {
    padding-left: 1rem;
  }
}
.cid-tO3ZaARX6J .navbar-caption {
  padding-left: 1rem;
  padding-right: .5rem;
}
@media (max-width: 767px) {
  .cid-tO3ZaARX6J .nav-dropdown {
    padding-bottom: 0.5rem;
  }
}
.cid-tO3ZaARX6J .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  transition: .3s all;
}
.cid-tO3ZaARX6J .container {
  display: flex;
  height: 90px;
  padding: 0.5rem 0.6rem;
  flex-wrap: nowrap;
  background: rgba(64, 63, 131, 0.8) !important;
  left: 0;
  right: 0;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: flex-end;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 100vw;
  margin-top: 1rem;
  background-color: #403f83;
  box-shadow: 0 30px 60px 0 rgba(27, 31, 10, 0.08);
}
@media (max-width: 992px) {
  .cid-tO3ZaARX6J .container {
    padding-right: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-tO3ZaARX6J .container {
    width: 95%;
    height: 56px !important;
    padding-right: 1rem;
    margin-top: 0rem;
  }
}
.cid-tO3ZaARX6J .iconfont-wrapper {
  color: #2469ea !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tO3ZaARX6J .dropdown-menu {
  flex-wrap: wrap;
  flex-direction: column;
  max-width: 100%;
  padding: 12px 4px !important;
  border-radius: 1.5rem;
  transition: .3s all !important;
  min-width: auto;
  background: #403f83;
  background: rgba(64, 63, 131, 0.8) !important;
}
.cid-tO3ZaARX6J .nav-item:focus,
.cid-tO3ZaARX6J .nav-link:focus {
  outline: none;
}
.cid-tO3ZaARX6J .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tO3ZaARX6J .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tO3ZaARX6J .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tO3ZaARX6J .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tO3ZaARX6J .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tO3ZaARX6J .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tO3ZaARX6J .navbar {
  min-height: 90px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: transparent !important;
  padding: 0 !important;
  border: none !important;
  box-shadow: none !important;
  border-radius: 0 !important;
}
.cid-tO3ZaARX6J .navbar.opened {
  transition: all 0.3s;
}
.cid-tO3ZaARX6J .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tO3ZaARX6J .navbar .navbar-logo img {
  width: auto;
}
.cid-tO3ZaARX6J .navbar .navbar-collapse {
  z-index: 1;
  justify-content: flex-end;
}
.cid-tO3ZaARX6J .navbar.collapsed {
  justify-content: center;
}
.cid-tO3ZaARX6J .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tO3ZaARX6J .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tO3ZaARX6J .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 2.7rem);
  }
}
.cid-tO3ZaARX6J .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tO3ZaARX6J .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tO3ZaARX6J .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-tO3ZaARX6J .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tO3ZaARX6J .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tO3ZaARX6J .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 767px) {
  .cid-tO3ZaARX6J .navbar {
    min-height: 72px;
  }
  .cid-tO3ZaARX6J .navbar .navbar-logo img {
    height: 2rem !important;
  }
}
@media (max-width: 991px) {
  .cid-tO3ZaARX6J .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tO3ZaARX6J .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tO3ZaARX6J .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tO3ZaARX6J .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tO3ZaARX6J .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-tO3ZaARX6J .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tO3ZaARX6J .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 10px;
  }
  .cid-tO3ZaARX6J .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tO3ZaARX6J .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tO3ZaARX6J .navbar.navbar-short .navbar-logo img {
  height: 2rem;
}
.cid-tO3ZaARX6J .dropdown-item.active,
.cid-tO3ZaARX6J .dropdown-item:active {
  background-color: transparent;
}
.cid-tO3ZaARX6J .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tO3ZaARX6J .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tO3ZaARX6J .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tO3ZaARX6J .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #403f83;
}
.cid-tO3ZaARX6J .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 105%;
  transform: none;
  top: -12px;
}
.cid-tO3ZaARX6J .navbar .dropdown.open > .dropdown-menu {
  display: flex;
}
.cid-tO3ZaARX6J ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tO3ZaARX6J .navbar-buttons {
  text-align: center;
  min-width: 140px;
}
@media (max-width: 992px) {
  .cid-tO3ZaARX6J .navbar-buttons {
    text-align: left;
  }
}
.cid-tO3ZaARX6J button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tO3ZaARX6J button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-tO3ZaARX6J button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tO3ZaARX6J button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tO3ZaARX6J button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tO3ZaARX6J button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tO3ZaARX6J nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tO3ZaARX6J nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tO3ZaARX6J nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tO3ZaARX6J nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tO3ZaARX6J .navbar-dropdown {
  padding: 0 1rem;
}
.cid-tO3ZaARX6J a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tO3ZaARX6J .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media (max-width: 992px) {
  .cid-tO3ZaARX6J .icons-menu {
    justify-content: flex-start;
    margin-bottom: .5rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tO3ZaARX6J .navbar {
    height: 70px;
  }
  .cid-tO3ZaARX6J .navbar.opened {
    height: auto;
  }
  .cid-tO3ZaARX6J .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tO3ZaARX6J .navbar .dropdown > .dropdown-menu {
  display: none;
  width: max-content;
  max-width: 500px !important;
  transform: translateX(-50%);
  top: calc(100% + 20px);
  left: 50%;
}
.cid-tO3ZaARX6J .navbar .dropdown > .dropdown-menu .dropdown-item {
  line-height: 1 !important;
}
.cid-tO3ZaARX6J .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item {
  align-items: center;
  display: flex;
  height: max-content !important;
  min-height: max-content !important;
}
.cid-tO3ZaARX6J .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item::after {
  display: inline-block;
  position: static;
  margin-left: 0.5rem;
  margin-top: 0;
  margin-right: 0;
  margin-bottom: 0;
  transition: .3s all;
  transform: rotate(-90deg);
}
.cid-tO3ZaARX6J .navbar .dropdown > .dropdown-menu .dropdown.open .dropdown-item::after {
  transform: rotate(0deg);
}
.cid-tO3ZaARX6J .mbr-section-btn {
  margin: -0.6rem -0.6rem;
}
.cid-tO3ZaARX6J .navbar-toggler {
  margin-left: 12px;
  margin-right: 8px;
  order: 1000;
}
@media (max-width: 991px) {
  .cid-tO3ZaARX6J .navbar-brand {
    margin-right: auto;
  }
  .cid-tO3ZaARX6J .navbar-collapse {
    z-index: -1 !important;
    position: absolute;
    top: 110%;
    left: 0;
    width: 100%;
    padding: 1rem;
    border-radius: 1.5rem;
    background: #403f83;
    opacity: 1;
    border-color: rgba(64, 63, 131, 0.8) !important;
    background: rgba(64, 63, 131, 0.8) !important;
    backdrop-filter: blur(8px);
  }
  .cid-tO3ZaARX6J .navbar-nav .nav-item .nav-link::after {
    margin-left: 10px;
  }
  .cid-tO3ZaARX6J .navbar-nav .dropdown-item:hover {
    background-color: rgba(27, 31, 10, 0.06);
  }
  .cid-tO3ZaARX6J .navbar .dropdown > .dropdown-menu {
    max-width: 100% !important;
    transform: translateX(0);
    top: 10px;
    left: 0;
    padding: 8px !important;
    border-radius: 1rem;
    background-color: rgba(27, 31, 10, 0.04) !important;
  }
  .cid-tO3ZaARX6J .navbar .dropdown > .dropdown-menu .dropdown-item {
    padding: 8px !important;
    line-height: 1 !important;
    margin-bottom: 4px !important;
  }
  .cid-tO3ZaARX6J .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item {
    align-items: center;
    display: flex;
    height: max-content !important;
    min-height: max-content !important;
  }
  .cid-tO3ZaARX6J .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item::after {
    display: inline-block;
    position: static;
    margin-left: 0.5rem;
    margin-top: 0;
    margin-right: 0;
    margin-bottom: 0;
    transition: .3s all;
    transform: rotate(0deg);
  }
  .cid-tO3ZaARX6J .navbar .dropdown > .dropdown-menu .dropdown.open .dropdown-item::after {
    transform: rotate(180deg);
  }
  .cid-tO3ZaARX6J .navbar .dropdown > .dropdown-menu .dropdown-submenu {
    position: static;
    width: 100%;
    max-width: 100% !important;
    transform: translateX(0) !important;
    top: 0;
    left: 0;
    padding: 8px !important;
    border-radius: 1rem;
    background-color: rgba(27, 31, 10, 0.04) !important;
  }
  .cid-tO3ZaARX6J .navbar .dropdown.open > .dropdown-menu {
    display: flex !important;
    flex-direction: column;
    align-items: flex-start;
  }
}
@media (max-width: 575px) {
  .cid-tO3ZaARX6J .navbar-collapse {
    padding: 1rem;
  }
}
.cid-trZYMrD2E4 {
  background-image: url("../../../assets/images/host3-1920x1080.webp");
}
.cid-trZYMrD2E4 img {
  width: 100%;
  border-radius: 30px;
}
.cid-trZYMrD2E4 .mbr-section-title {
  color: #ffffff;
}
.cid-trZYMrD2E4 .mbr-section-subtitle {
  background-color: #8364e2;
  padding: 0 1rem;
  border-radius: 5px;
  display: inline-block;
  font-family: 'IBM Plex Sans', sans-serif;
  font-weight: 900;
  color: #ffffff;
}
.cid-trZYMrD2E4 .svg-1 {
  position: absolute;
  bottom: 0;
}
.cid-trZYMrD2E4 .svg-1 path {
  fill: #212428;
}
.cid-trZYMrD2E4 .container-fluid {
  max-width: 1200px;
}
.cid-trZYMrD2E4 .mbr-arrow {
  z-index: 1;
}
.cid-trZYMrD2E4 .mbr-section-btn {
  margin-top: 1.5rem;
}
@media (min-width: 768px) {
  .cid-trZYMrD2E4 .container-fluid {
    padding: 0 1.5rem;
  }
}
@media (max-width: 992px) {
  .cid-trZYMrD2E4 .imageContainer {
    margin-top: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-trZYMrD2E4 .container-fluid {
    padding: 0 1rem;
  }
  .cid-trZYMrD2E4 .mbr-section-subtitle {
    margin-bottom: 1.4rem;
  }
}
.cid-tzZppC1BxV {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #212428;
}
.cid-tzZppC1BxV .mbr-iconfont {
  display: block;
  font-size: 3rem;
  color: #8364e2;
  margin-bottom: 1rem;
}
.cid-tzZppC1BxV .main-title {
  position: relative;
  width: fit-content;
  display: inline-block;
  color: #160830;
}
.cid-tzZppC1BxV .main-title:before {
  content: "";
  bottom: -1rem;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 2px;
  background: currentColor;
  position: absolute;
}
.cid-tzZppC1BxV .card-wrapper {
  transition: all 0.3s;
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 2.5rem 2rem;
  background: #282b2f;
  border-radius: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 2rem;
  box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.3);
}
.cid-tzZppC1BxV .card-wrapper:hover {
  background: transparent;
}
.cid-tzZppC1BxV .card-title,
.cid-tzZppC1BxV .card-box {
  color: #ffffff;
}
.cid-tzZppC1BxV .main-title,
.cid-tzZppC1BxV .title-col {
  text-align: center;
  color: #ffffff;
}
.cid-tzZppC1BxV .card-text {
  color: #bbbbbb;
  text-align: left;
}
.cid-tzZppC1BxV .mbr-fallback-image.disabled {
  display: none;
}
.cid-tzZppC1BxV .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tEto0lorOj {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #212428;
}
.cid-tEto0lorOj .progress {
  width: 100%;
}
.cid-tEto0lorOj p {
  margin-bottom: 0.4rem;
}
.cid-tEto0lorOj .progressbar-title {
  padding-bottom: 1rem;
}
.cid-tEto0lorOj .title-wrap {
  display: flex;
  justify-content: space-between;
  -webkit-justify-content: space-between;
}
.cid-tEto0lorOj progress {
  height: 10px;
}
.cid-tEto0lorOj .progressbar-number {
  display: inline-block;
  width: 50px;
}
.cid-tEto0lorOj .progress-primary {
  background: rgba(206, 206, 206, 0.9);
  border: none;
  outline: none;
}
.cid-tEto0lorOj .progress-primary::-webkit-progress-bar {
  background: rgba(206, 206, 206, 0.9);
}
.cid-tEto0lorOj .progress_value {
  position: relative;
}
.cid-tEto0lorOj .progress1 .progressbar-number:before,
.cid-tEto0lorOj .progress2 .progressbar-number:before,
.cid-tEto0lorOj .progress3 .progressbar-number:before,
.cid-tEto0lorOj .progress4 .progressbar-number:before,
.cid-tEto0lorOj .progress5 .progressbar-number:before {
  position: absolute;
  right: 15px;
  top: 0;
}
.cid-tEto0lorOj progress[value]::-webkit-progress-bar {
  background: rgba(206, 206, 206, 0.4);
  margin: 0;
}
.cid-tEto0lorOj progress::-webkit-progress-value {
  background: #6917c7;
}
.cid-tEto0lorOj progress[value]::-moz-progress-bar {
  background: #6917c7;
}
.cid-tEto0lorOj progress::-ms-fill {
  background: #6917c7;
}
.cid-tEto0lorOj .progress1 .progressbar-number:before {
  content: "100";
}
.cid-tEto0lorOj .progress2 .progressbar-number:before {
  content: "71";
}
.cid-tEto0lorOj .progress3 .progressbar-number:before {
  content: "53";
}
.cid-tEto0lorOj .progress4 .progressbar-number:before {
  content: "70";
}
.cid-tEto0lorOj .progress5 .progressbar-number:before {
  content: "81";
}
.cid-tEto0lorOj .section-content-text {
  color: #454545;
}
.cid-tEto0lorOj .progressbar-title p,
.cid-tEto0lorOj .progress_value {
  color: #ffffff;
  text-align: center;
}
.cid-tEto0lorOj .mbr-section-subtitle {
  color: #454545;
}
.cid-tEto0lorOj .section-content-title {
  text-align: center;
  color: #ffffff;
}
.cid-tEto0lorOj .mbr-fallback-image.disabled {
  display: none;
}
.cid-tEto0lorOj .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-trZYMttAQ6 {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #212428;
}
.cid-trZYMttAQ6 .title-section {
  padding: 0px;
  margin-bottom: 20px;
}
@media (min-width: 992px) {
  .cid-trZYMttAQ6 .title-section {
    padding: 0 90px;
    margin-bottom: 40px;
  }
}
.cid-trZYMttAQ6 .btn {
  display: flex;
}
.cid-trZYMttAQ6 .card {
  background-color: transparent;
  border: 2px solid #db3eb1;
  border-radius: 20px;
}
.cid-trZYMttAQ6 .card-body {
  padding: 40px 55px 30px 55px;
}
.cid-trZYMttAQ6 .col-img {
  width: 35px;
  height: 35px;
  flex: 0 0 35px;
  margin-right: 22px;
}
.cid-trZYMttAQ6 .card-title {
  flex: 1 1 auto;
  width: auto;
}
.cid-trZYMttAQ6 .price {
  text-align: center;
  color: #7f6cc0;
}
.cid-trZYMttAQ6 .title-section .mbr-section-subtitle {
  text-align: left;
}
.cid-trZYMttAQ6 .mbr-fallback-image.disabled {
  display: none;
}
.cid-trZYMttAQ6 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-trZYMttAQ6 .text1 {
  text-align: left;
  color: #ffffff;
}
.cid-trZYMttAQ6 .mbr-section-subtitle {
  color: #ffffff;
}
.cid-trZYMttAQ6 .title-section .mbr-section-title {
  color: #ffffff;
  text-align: right;
}
.cid-trZYMu77f3 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #212428;
}
.cid-trZYMu77f3 .title-section {
  padding: 0px;
  margin-bottom: 20px;
}
@media (min-width: 992px) {
  .cid-trZYMu77f3 .title-section {
    padding: 0 90px;
    margin-bottom: 40px;
  }
}
.cid-trZYMu77f3 .btn {
  display: flex;
}
.cid-trZYMu77f3 .card {
  background-color: transparent;
  border: 2px solid #8364e2;
  border-radius: 20px;
}
.cid-trZYMu77f3 .card-body {
  padding: 40px 55px 30px 55px;
}
.cid-trZYMu77f3 .col-img {
  width: 35px;
  height: 35px;
  flex: 0 0 35px;
  margin-right: 22px;
}
.cid-trZYMu77f3 .card-title {
  flex: 1 1 auto;
  width: auto;
}
.cid-trZYMu77f3 .price {
  text-align: center;
  color: #7f6cc0;
}
.cid-trZYMu77f3 .title-section .mbr-section-subtitle {
  text-align: left;
}
.cid-trZYMu77f3 .mbr-fallback-image.disabled {
  display: none;
}
.cid-trZYMu77f3 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-trZYMu77f3 .text1 {
  text-align: left;
  color: #ffffff;
}
.cid-trZYMu77f3 .mbr-section-subtitle {
  color: #ffffff;
}
.cid-trZYMu77f3 .title-section .mbr-section-title {
  color: #ffffff;
  text-align: right;
}
.cid-tEtoDcebBf {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #212428;
}
.cid-tEtoDcebBf .progress {
  width: 100%;
}
.cid-tEtoDcebBf p {
  margin-bottom: 0.4rem;
}
.cid-tEtoDcebBf .progressbar-title {
  padding-bottom: 1rem;
}
.cid-tEtoDcebBf .title-wrap {
  display: flex;
  justify-content: space-between;
  -webkit-justify-content: space-between;
}
.cid-tEtoDcebBf progress {
  height: 10px;
}
.cid-tEtoDcebBf .progressbar-number {
  display: inline-block;
  width: 50px;
}
.cid-tEtoDcebBf .progress-primary {
  background: rgba(206, 206, 206, 0.9);
  border: none;
  outline: none;
}
.cid-tEtoDcebBf .progress-primary::-webkit-progress-bar {
  background: rgba(206, 206, 206, 0.9);
}
.cid-tEtoDcebBf .progress_value {
  position: relative;
}
.cid-tEtoDcebBf .progress1 .progressbar-number:before,
.cid-tEtoDcebBf .progress2 .progressbar-number:before,
.cid-tEtoDcebBf .progress3 .progressbar-number:before,
.cid-tEtoDcebBf .progress4 .progressbar-number:before,
.cid-tEtoDcebBf .progress5 .progressbar-number:before {
  position: absolute;
  right: 15px;
  top: 0;
}
.cid-tEtoDcebBf progress[value]::-webkit-progress-bar {
  background: rgba(206, 206, 206, 0.4);
  margin: 0;
}
.cid-tEtoDcebBf progress::-webkit-progress-value {
  background: #6917c7;
}
.cid-tEtoDcebBf progress[value]::-moz-progress-bar {
  background: #6917c7;
}
.cid-tEtoDcebBf progress::-ms-fill {
  background: #6917c7;
}
.cid-tEtoDcebBf .progress1 .progressbar-number:before {
  content: "100";
}
.cid-tEtoDcebBf .progress2 .progressbar-number:before {
  content: "71";
}
.cid-tEtoDcebBf .progress3 .progressbar-number:before {
  content: "53";
}
.cid-tEtoDcebBf .progress4 .progressbar-number:before {
  content: "70";
}
.cid-tEtoDcebBf .progress5 .progressbar-number:before {
  content: "81";
}
.cid-tEtoDcebBf .section-content-text {
  color: #454545;
}
.cid-tEtoDcebBf .progressbar-title p,
.cid-tEtoDcebBf .progress_value {
  color: #ffffff;
  text-align: center;
}
.cid-tEtoDcebBf .mbr-section-subtitle {
  color: #454545;
}
.cid-tEtoDcebBf .section-content-title {
  text-align: center;
  color: #ffffff;
}
.cid-tEtoDcebBf .mbr-fallback-image.disabled {
  display: none;
}
.cid-tEtoDcebBf .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-trZYMvlTMK {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #212428;
}
.cid-trZYMvlTMK .title-section {
  padding: 0px;
  margin-bottom: 20px;
}
@media (min-width: 992px) {
  .cid-trZYMvlTMK .title-section {
    padding: 0 90px;
    margin-bottom: 40px;
  }
}
.cid-trZYMvlTMK .btn {
  display: flex;
}
.cid-trZYMvlTMK .card {
  background-color: transparent;
  border: 2px solid #db3eb1;
  border-radius: 20px;
  box-shadow: 0px 10px 20px 0px rgba(29, 29, 27, 0.2);
}
.cid-trZYMvlTMK .card-body {
  padding: 40px 55px 30px 55px;
}
.cid-trZYMvlTMK .col-img {
  width: 35px;
  height: 35px;
  flex: 0 0 35px;
  margin-right: 22px;
}
.cid-trZYMvlTMK .card-title {
  flex: 1 1 auto;
  width: auto;
}
.cid-trZYMvlTMK .price {
  text-align: center;
  color: #7f6cc0;
}
.cid-trZYMvlTMK .title-section .mbr-section-subtitle {
  text-align: center;
}
.cid-trZYMvlTMK .mbr-fallback-image.disabled {
  display: none;
}
.cid-trZYMvlTMK .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-trZYMvlTMK .text1 {
  text-align: left;
  color: #ffffff;
}
.cid-trZYMvlTMK .mbr-section-subtitle {
  color: #ffffff;
}
.cid-trZYMvlTMK .title-section .mbr-section-title {
  color: #ffffff;
  text-align: left;
}
.cid-tEtoCI8HO3 {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #212428;
}
.cid-tEtoCI8HO3 .progress {
  width: 100%;
}
.cid-tEtoCI8HO3 p {
  margin-bottom: 0.4rem;
}
.cid-tEtoCI8HO3 .progressbar-title {
  padding-bottom: 1rem;
}
.cid-tEtoCI8HO3 .title-wrap {
  display: flex;
  justify-content: space-between;
  -webkit-justify-content: space-between;
}
.cid-tEtoCI8HO3 progress {
  height: 10px;
}
.cid-tEtoCI8HO3 .progressbar-number {
  display: inline-block;
  width: 50px;
}
.cid-tEtoCI8HO3 .progress-primary {
  background: rgba(206, 206, 206, 0.9);
  border: none;
  outline: none;
}
.cid-tEtoCI8HO3 .progress-primary::-webkit-progress-bar {
  background: rgba(206, 206, 206, 0.9);
}
.cid-tEtoCI8HO3 .progress_value {
  position: relative;
}
.cid-tEtoCI8HO3 .progress1 .progressbar-number:before,
.cid-tEtoCI8HO3 .progress2 .progressbar-number:before,
.cid-tEtoCI8HO3 .progress3 .progressbar-number:before,
.cid-tEtoCI8HO3 .progress4 .progressbar-number:before,
.cid-tEtoCI8HO3 .progress5 .progressbar-number:before {
  position: absolute;
  right: 15px;
  top: 0;
}
.cid-tEtoCI8HO3 progress[value]::-webkit-progress-bar {
  background: rgba(206, 206, 206, 0.4);
  margin: 0;
}
.cid-tEtoCI8HO3 progress::-webkit-progress-value {
  background: #6917c7;
}
.cid-tEtoCI8HO3 progress[value]::-moz-progress-bar {
  background: #6917c7;
}
.cid-tEtoCI8HO3 progress::-ms-fill {
  background: #6917c7;
}
.cid-tEtoCI8HO3 .progress1 .progressbar-number:before {
  content: "100";
}
.cid-tEtoCI8HO3 .progress2 .progressbar-number:before {
  content: "71";
}
.cid-tEtoCI8HO3 .progress3 .progressbar-number:before {
  content: "53";
}
.cid-tEtoCI8HO3 .progress4 .progressbar-number:before {
  content: "70";
}
.cid-tEtoCI8HO3 .progress5 .progressbar-number:before {
  content: "81";
}
.cid-tEtoCI8HO3 .section-content-text {
  color: #454545;
}
.cid-tEtoCI8HO3 .progressbar-title p,
.cid-tEtoCI8HO3 .progress_value {
  color: #ffffff;
  text-align: center;
}
.cid-tEtoCI8HO3 .mbr-section-subtitle {
  color: #454545;
}
.cid-tEtoCI8HO3 .section-content-title {
  text-align: center;
  color: #ffffff;
}
.cid-tEtoCI8HO3 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tEtoCI8HO3 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tEtoBY2plX {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #212428;
  overflow: hidden;
}
.cid-tEtoBY2plX .mbr-fallback-image.disabled {
  display: none;
}
.cid-tEtoBY2plX .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tEtoBY2plX .card-row {
  align-items: stretch;
}
.cid-tEtoBY2plX .item-wrap {
  position: relative;
  height: 100%;
  width: 100%;
  padding: 55px;
  border-radius: 10px;
  overflow: hidden;
  background: linear-gradient(145deg, #1e2024, #000000);
  box-shadow: 10px 10px 19px #7f6cc0, -10px -10px 19px #7f6cc0;
}
@media (max-width: 767px) {
  .cid-tEtoBY2plX .item-wrap {
    padding: 40px;
  }
}
@media (max-width: 575px) {
  .cid-tEtoBY2plX .item-wrap {
    padding: 35px 25px 35px 25px;
  }
}
.cid-tEtoBY2plX .carousel {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 100%;
  width: 100%;
  margin: 0;
}
.cid-tEtoBY2plX .carousel-inner {
  display: flex;
  align-items: center;
  margin-bottom: 0;
  border-radius: 10px;
}
.cid-tEtoBY2plX .carousel-item-wrapper {
  display: flex;
  width: 100%;
  overflow: visible;
  padding: 0;
}
.cid-tEtoBY2plX .carousel-item-wrapper img {
  aspect-ratio: 1.77842566;
  object-fit: cover;
}
.cid-tEtoBY2plX .carousel-control {
  top: 50%;
  transform: translateY(-50%);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(to right bottom, #212428, #16181c) !important;
  box-shadow: 10px 10px 19px #191b1f, -10px -10px 19px #23272b;
  border: none;
  transition: all 0.4s;
  opacity: 1;
  color: #C4CFDE;
  font-size: 18px;
}
.cid-tEtoBY2plX .carousel-control.carousel-control-prev {
  left: -30px;
  margin-left: 0;
}
@media (max-width: 575px) {
  .cid-tEtoBY2plX .carousel-control.carousel-control-prev {
    left: -25px;
  }
}
.cid-tEtoBY2plX .carousel-control.carousel-control-next {
  right: -30px;
  margin-right: 0;
}
@media (max-width: 575px) {
  .cid-tEtoBY2plX .carousel-control.carousel-control-next {
    right: -25px;
  }
}
.cid-tEtoBY2plX .carousel-control:hover {
  color: #FFFFFF !important;
  opacity: 1;
}
.cid-tEtoBY2plX .mobi-mbri-arrow-next {
  margin-left: 5px;
}
.cid-tEtoBY2plX .mobi-mbri-arrow-prev {
  margin-right: 5px;
}
.cid-tEtoBY2plX .container .carousel-indicators {
  margin-bottom: 3px;
  display: none !important;
}
.cid-tEtoBY2plX .item-menu-overlay {
  opacity: 0 !important;
}
.cid-tEtoBY2plX .text-row {
  padding-top: 50px;
}
@media (max-width: 991px) {
  .cid-tEtoBY2plX .text-row {
    padding-top: 30px;
  }
}
.cid-tEtoBY2plX .card-title {
  color: #C4CFDE;
  margin-bottom: 20px;
}
.cid-tEtoBY2plX .card-subtitle {
  color: #878e99;
  margin-bottom: 0;
}
.cid-tEtoBY2plX .card-text-container {
  display: flex;
  align-items: flex-start;
  padding-top: 24px;
  padding-bottom: 8px;
  margin: 0 -30px;
}
@media (max-width: 767px) {
  .cid-tEtoBY2plX .card-text-container {
    margin: 0 -10px;
  }
}
@media (max-width: 575px) {
  .cid-tEtoBY2plX .card-text-container {
    flex-wrap: wrap;
  }
}
.cid-tEtoBY2plX .card-text {
  color: #878e99;
  margin-bottom: 8px;
  margin-top: 8px;
  flex-basis: 50%;
  flex-grow: 1;
  padding-left: 30px;
  padding-right: 30px;
}
@media (max-width: 767px) {
  .cid-tEtoBY2plX .card-text {
    padding-left: 10px;
    padding-right: 10px;
  }
}
@media (max-width: 575px) {
  .cid-tEtoBY2plX .card-text {
    flex-basis: 100%;
  }
}
.cid-tEtoBY2plX .mbr-section-btn {
  display: flex;
  flex-direction: column;
  align-items: stretch;
}
@media (max-width: 991px) {
  .cid-tEtoBY2plX .mbr-section-btn {
    margin-top: 10px;
  }
}
.cid-tzIf2N3OnQ {
  padding-top: 1rem;
  padding-bottom: 2rem;
  background-color: #212428;
}
.cid-tzIf2N3OnQ .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-tzIf2N3OnQ .card-title {
  margin-bottom: 26px;
  color: #8364e2;
}
.cid-tzIf2N3OnQ .mbr-text {
  margin-bottom: 30px;
}
.cid-tzIf2N3OnQ .iconfont-wrapper {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  border-top-right-radius: 0;
  display: inline-block;
  text-align: center;
  margin-bottom: 30px;
  position: relative;
  z-index: 1;
  box-shadow: 0px 14px 30px 0px rgba(148, 10, 36, 0.4);
  background-image: linear-gradient(125deg, #940a24 0%, #ef153e 100%);
}
.cid-tzIf2N3OnQ .iconfont-wrapper .mbr-iconfont {
  color: #ffffff;
  font-size: 36px;
  line-height: 70px;
}
.cid-tzIf2N3OnQ .btn_link {
  display: block;
  margin-bottom: 0;
  position: relative;
  font-weight: 700;
}
.cid-tzIf2N3OnQ .btn_link span {
  display: inline-block;
  margin-left: .25rem;
  font-size: 16px;
  vertical-align: middle;
  transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.cid-tzIf2N3OnQ .btn_link:hover {
  cursor: pointer;
}
.cid-tzIf2N3OnQ .btn_link:hover a {
  color: #8364e2 !important;
}
.cid-tzIf2N3OnQ .btn_link:hover span {
  transform: translatex(5px);
}
@media (min-width: 992px) {
  .cid-tzIf2N3OnQ .text-wrapper {
    padding-right: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tzIf2N3OnQ .text-wrapper {
    text-align: center;
  }
  .cid-tzIf2N3OnQ .image-wrapper {
    margin-bottom: 40px;
  }
  .cid-tzIf2N3OnQ .mbr-text {
    margin-bottom: 20px;
  }
  .cid-tzIf2N3OnQ .iconfont-wrapper {
    margin-bottom: 20px;
  }
}
.cid-tzIf2N3OnQ .mbr-text,
.cid-tzIf2N3OnQ .btn_link {
  color: #ffffff;
  text-align: left;
}
.cid-tzIf2N3OnQ .card-title,
.cid-tzIf2N3OnQ .icon_block {
  text-align: left;
}
.cid-tv20JXf5Ez {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #282b2f;
}
.cid-tv20JXf5Ez svg {
  width: 100%;
  position: absolute;
  left: 0;
  top: -48px;
  height: 50px;
  transform-origin: bottom;
  animation: 1.5s ease-in-out infinite alternate svg2;
}
.cid-tv20JXf5Ez svg .st0 {
  fill: #282b2f;
}
@media (max-width: 992px) {
  .cid-tv20JXf5Ez svg {
    width: 1000px;
  }
}
@keyframes svg2 {
  from {
    transform: scaleX(1) scaleY(1.1) rotate(0deg);
  }
  to {
    transform: scaleX(1) scaleY(1.6) rotate(0deg);
  }
}
.cid-tv20JXf5Ez .list {
  list-style: none;
  padding-left: 0;
  color: #ffffff;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-tv20JXf5Ez .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tv20JXf5Ez .list {
    margin-bottom: 0rem;
  }
}
@media (max-width: 767px) {
  .cid-tv20JXf5Ez .row {
    text-align: center;
  }
}
@media (max-width: 991px) {
  .cid-tv20JXf5Ez div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-tv20JXf5Ez .copyright {
  color: #ffffff;
  text-align: center;
}
.cid-tO3ZaARX6J {
  z-index: 1000;
  width: 100%;
  position: relative;
}
.cid-tO3ZaARX6J .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;
}
@media (max-width: 767px) {
  .cid-tO3ZaARX6J .navbar-toggler {
    transform: scale(0.8);
  }
}
.cid-tO3ZaARX6J .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tO3ZaARX6J .navbar-brand img {
  max-width: 100%;
  max-height: 100%;
  border-radius: 0px !important;
}
.cid-tO3ZaARX6J .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tO3ZaARX6J .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tO3ZaARX6J .navbar-nav {
  margin: auto;
  margin-left: 0;
  margin-left: auto;
}
.cid-tO3ZaARX6J .navbar-nav .nav-item {
  padding: 0 !important;
  transition: .3s all !important;
}
.cid-tO3ZaARX6J .navbar-nav .nav-item .nav-link {
  padding: 16px !important;
  margin: 0 !important;
  border-radius: 1rem !important;
  transition: .3s all !important;
}
.cid-tO3ZaARX6J .navbar-nav .nav-item .nav-link:hover {
  background-color: rgba(27, 31, 10, 0.06);
}
.cid-tO3ZaARX6J .navbar-nav .open .nav-link::after {
  transform: rotate(180deg);
}
@media (min-width: 992px) {
  .cid-tO3ZaARX6J .navbar-nav .open .nav-link::before {
    content: "";
    width: 100%;
    height: 20px;
    top: 100%;
    background: transparent;
    position: absolute;
  }
}
.cid-tO3ZaARX6J .navbar-nav .dropdown-item {
  padding: 12px !important;
  border-radius: 0.5rem !important;
  margin: 0 8px !important;
  transition: .3s all !important;
}
.cid-tO3ZaARX6J .navbar-nav .dropdown-item:hover {
  background-color: rgba(27, 31, 10, 0.06);
}
@media (min-width: 992px) {
  .cid-tO3ZaARX6J .navbar-nav {
    padding-left: 1.5rem;
  }
}
.cid-tO3ZaARX6J .nav-link {
  width: fit-content;
  position: relative;
}
.cid-tO3ZaARX6J .navbar-logo {
  padding-left: 2rem;
  margin: 0 !important;
}
@media (max-width: 767px) {
  .cid-tO3ZaARX6J .navbar-logo {
    padding-left: 1rem;
  }
}
.cid-tO3ZaARX6J .navbar-caption {
  padding-left: 1rem;
  padding-right: .5rem;
}
@media (max-width: 767px) {
  .cid-tO3ZaARX6J .nav-dropdown {
    padding-bottom: 0.5rem;
  }
}
.cid-tO3ZaARX6J .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  transition: .3s all;
}
.cid-tO3ZaARX6J .container {
  display: flex;
  height: 90px;
  padding: 0.5rem 0.6rem;
  flex-wrap: nowrap;
  background: rgba(64, 63, 131, 0.8) !important;
  left: 0;
  right: 0;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: flex-end;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 100vw;
  margin-top: 1rem;
  background-color: #403f83;
  box-shadow: 0 30px 60px 0 rgba(27, 31, 10, 0.08);
}
@media (max-width: 992px) {
  .cid-tO3ZaARX6J .container {
    padding-right: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-tO3ZaARX6J .container {
    width: 95%;
    height: 56px !important;
    padding-right: 1rem;
    margin-top: 0rem;
  }
}
.cid-tO3ZaARX6J .iconfont-wrapper {
  color: #2469ea !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tO3ZaARX6J .dropdown-menu {
  flex-wrap: wrap;
  flex-direction: column;
  max-width: 100%;
  padding: 12px 4px !important;
  border-radius: 1.5rem;
  transition: .3s all !important;
  min-width: auto;
  background: #403f83;
  background: rgba(64, 63, 131, 0.8) !important;
}
.cid-tO3ZaARX6J .nav-item:focus,
.cid-tO3ZaARX6J .nav-link:focus {
  outline: none;
}
.cid-tO3ZaARX6J .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tO3ZaARX6J .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tO3ZaARX6J .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tO3ZaARX6J .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tO3ZaARX6J .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tO3ZaARX6J .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tO3ZaARX6J .navbar {
  min-height: 90px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: transparent !important;
  padding: 0 !important;
  border: none !important;
  box-shadow: none !important;
  border-radius: 0 !important;
}
.cid-tO3ZaARX6J .navbar.opened {
  transition: all 0.3s;
}
.cid-tO3ZaARX6J .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tO3ZaARX6J .navbar .navbar-logo img {
  width: auto;
}
.cid-tO3ZaARX6J .navbar .navbar-collapse {
  z-index: 1;
  justify-content: flex-end;
}
.cid-tO3ZaARX6J .navbar.collapsed {
  justify-content: center;
}
.cid-tO3ZaARX6J .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tO3ZaARX6J .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tO3ZaARX6J .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 2.7rem);
  }
}
.cid-tO3ZaARX6J .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tO3ZaARX6J .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tO3ZaARX6J .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-tO3ZaARX6J .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tO3ZaARX6J .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tO3ZaARX6J .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 767px) {
  .cid-tO3ZaARX6J .navbar {
    min-height: 72px;
  }
  .cid-tO3ZaARX6J .navbar .navbar-logo img {
    height: 2rem !important;
  }
}
@media (max-width: 991px) {
  .cid-tO3ZaARX6J .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tO3ZaARX6J .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tO3ZaARX6J .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tO3ZaARX6J .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tO3ZaARX6J .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-tO3ZaARX6J .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tO3ZaARX6J .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 10px;
  }
  .cid-tO3ZaARX6J .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tO3ZaARX6J .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tO3ZaARX6J .navbar.navbar-short .navbar-logo img {
  height: 2rem;
}
.cid-tO3ZaARX6J .dropdown-item.active,
.cid-tO3ZaARX6J .dropdown-item:active {
  background-color: transparent;
}
.cid-tO3ZaARX6J .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tO3ZaARX6J .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tO3ZaARX6J .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tO3ZaARX6J .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #403f83;
}
.cid-tO3ZaARX6J .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 105%;
  transform: none;
  top: -12px;
}
.cid-tO3ZaARX6J .navbar .dropdown.open > .dropdown-menu {
  display: flex;
}
.cid-tO3ZaARX6J ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tO3ZaARX6J .navbar-buttons {
  text-align: center;
  min-width: 140px;
}
@media (max-width: 992px) {
  .cid-tO3ZaARX6J .navbar-buttons {
    text-align: left;
  }
}
.cid-tO3ZaARX6J button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tO3ZaARX6J button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-tO3ZaARX6J button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tO3ZaARX6J button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tO3ZaARX6J button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tO3ZaARX6J button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tO3ZaARX6J nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tO3ZaARX6J nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tO3ZaARX6J nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tO3ZaARX6J nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tO3ZaARX6J .navbar-dropdown {
  padding: 0 1rem;
}
.cid-tO3ZaARX6J a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tO3ZaARX6J .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media (max-width: 992px) {
  .cid-tO3ZaARX6J .icons-menu {
    justify-content: flex-start;
    margin-bottom: .5rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tO3ZaARX6J .navbar {
    height: 70px;
  }
  .cid-tO3ZaARX6J .navbar.opened {
    height: auto;
  }
  .cid-tO3ZaARX6J .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tO3ZaARX6J .navbar .dropdown > .dropdown-menu {
  display: none;
  width: max-content;
  max-width: 500px !important;
  transform: translateX(-50%);
  top: calc(100% + 20px);
  left: 50%;
}
.cid-tO3ZaARX6J .navbar .dropdown > .dropdown-menu .dropdown-item {
  line-height: 1 !important;
}
.cid-tO3ZaARX6J .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item {
  align-items: center;
  display: flex;
  height: max-content !important;
  min-height: max-content !important;
}
.cid-tO3ZaARX6J .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item::after {
  display: inline-block;
  position: static;
  margin-left: 0.5rem;
  margin-top: 0;
  margin-right: 0;
  margin-bottom: 0;
  transition: .3s all;
  transform: rotate(-90deg);
}
.cid-tO3ZaARX6J .navbar .dropdown > .dropdown-menu .dropdown.open .dropdown-item::after {
  transform: rotate(0deg);
}
.cid-tO3ZaARX6J .mbr-section-btn {
  margin: -0.6rem -0.6rem;
}
.cid-tO3ZaARX6J .navbar-toggler {
  margin-left: 12px;
  margin-right: 8px;
  order: 1000;
}
@media (max-width: 991px) {
  .cid-tO3ZaARX6J .navbar-brand {
    margin-right: auto;
  }
  .cid-tO3ZaARX6J .navbar-collapse {
    z-index: -1 !important;
    position: absolute;
    top: 110%;
    left: 0;
    width: 100%;
    padding: 1rem;
    border-radius: 1.5rem;
    background: #403f83;
    opacity: 1;
    border-color: rgba(64, 63, 131, 0.8) !important;
    background: rgba(64, 63, 131, 0.8) !important;
    backdrop-filter: blur(8px);
  }
  .cid-tO3ZaARX6J .navbar-nav .nav-item .nav-link::after {
    margin-left: 10px;
  }
  .cid-tO3ZaARX6J .navbar-nav .dropdown-item:hover {
    background-color: rgba(27, 31, 10, 0.06);
  }
  .cid-tO3ZaARX6J .navbar .dropdown > .dropdown-menu {
    max-width: 100% !important;
    transform: translateX(0);
    top: 10px;
    left: 0;
    padding: 8px !important;
    border-radius: 1rem;
    background-color: rgba(27, 31, 10, 0.04) !important;
  }
  .cid-tO3ZaARX6J .navbar .dropdown > .dropdown-menu .dropdown-item {
    padding: 8px !important;
    line-height: 1 !important;
    margin-bottom: 4px !important;
  }
  .cid-tO3ZaARX6J .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item {
    align-items: center;
    display: flex;
    height: max-content !important;
    min-height: max-content !important;
  }
  .cid-tO3ZaARX6J .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item::after {
    display: inline-block;
    position: static;
    margin-left: 0.5rem;
    margin-top: 0;
    margin-right: 0;
    margin-bottom: 0;
    transition: .3s all;
    transform: rotate(0deg);
  }
  .cid-tO3ZaARX6J .navbar .dropdown > .dropdown-menu .dropdown.open .dropdown-item::after {
    transform: rotate(180deg);
  }
  .cid-tO3ZaARX6J .navbar .dropdown > .dropdown-menu .dropdown-submenu {
    position: static;
    width: 100%;
    max-width: 100% !important;
    transform: translateX(0) !important;
    top: 0;
    left: 0;
    padding: 8px !important;
    border-radius: 1rem;
    background-color: rgba(27, 31, 10, 0.04) !important;
  }
  .cid-tO3ZaARX6J .navbar .dropdown.open > .dropdown-menu {
    display: flex !important;
    flex-direction: column;
    align-items: flex-start;
  }
}
@media (max-width: 575px) {
  .cid-tO3ZaARX6J .navbar-collapse {
    padding: 1rem;
  }
}
.cid-trZzOPSPhs {
  background-image: url("../../../assets/images/fundo-1280x640.webp");
}
.cid-trZzOPSPhs img {
  width: 100%;
  border-radius: 30px;
}
.cid-trZzOPSPhs .mbr-section-title {
  color: #ffffff;
}
.cid-trZzOPSPhs .mbr-section-subtitle {
  background-color: #8364e2;
  padding: 0 1rem;
  border-radius: 5px;
  display: inline-block;
  font-family: 'IBM Plex Sans', sans-serif;
  font-weight: 900;
  color: #ffffff;
}
.cid-trZzOPSPhs .svg-1 {
  position: absolute;
  bottom: 0;
}
.cid-trZzOPSPhs .svg-1 path {
  fill: #212428;
}
.cid-trZzOPSPhs .container-fluid {
  max-width: 1200px;
}
.cid-trZzOPSPhs .mbr-arrow {
  z-index: 1;
}
.cid-trZzOPSPhs .mbr-section-btn {
  margin-top: 1.5rem;
}
@media (min-width: 768px) {
  .cid-trZzOPSPhs .container-fluid {
    padding: 0 1.5rem;
  }
}
@media (max-width: 992px) {
  .cid-trZzOPSPhs .imageContainer {
    margin-top: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-trZzOPSPhs .container-fluid {
    padding: 0 1rem;
  }
  .cid-trZzOPSPhs .mbr-section-subtitle {
    margin-bottom: 1.4rem;
  }
}
.cid-tEtGBkPu4d {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #212428;
}
.cid-tEtGBkPu4d .progress {
  width: 100%;
}
.cid-tEtGBkPu4d p {
  margin-bottom: 0.4rem;
}
.cid-tEtGBkPu4d .progressbar-title {
  padding-bottom: 1rem;
}
.cid-tEtGBkPu4d .title-wrap {
  display: flex;
  justify-content: space-between;
  -webkit-justify-content: space-between;
}
.cid-tEtGBkPu4d progress {
  height: 10px;
}
.cid-tEtGBkPu4d .progressbar-number {
  display: inline-block;
  width: 50px;
}
.cid-tEtGBkPu4d .progress-primary {
  background: rgba(206, 206, 206, 0.9);
  border: none;
  outline: none;
}
.cid-tEtGBkPu4d .progress-primary::-webkit-progress-bar {
  background: rgba(206, 206, 206, 0.9);
}
.cid-tEtGBkPu4d .progress_value {
  position: relative;
}
.cid-tEtGBkPu4d .progress1 .progressbar-number:before,
.cid-tEtGBkPu4d .progress2 .progressbar-number:before,
.cid-tEtGBkPu4d .progress3 .progressbar-number:before,
.cid-tEtGBkPu4d .progress4 .progressbar-number:before,
.cid-tEtGBkPu4d .progress5 .progressbar-number:before {
  position: absolute;
  right: 15px;
  top: 0;
}
.cid-tEtGBkPu4d progress[value]::-webkit-progress-bar {
  background: rgba(206, 206, 206, 0.4);
  margin: 0;
}
.cid-tEtGBkPu4d progress::-webkit-progress-value {
  background: #6917c7;
}
.cid-tEtGBkPu4d progress[value]::-moz-progress-bar {
  background: #6917c7;
}
.cid-tEtGBkPu4d progress::-ms-fill {
  background: #6917c7;
}
.cid-tEtGBkPu4d .progress1 .progressbar-number:before {
  content: "100";
}
.cid-tEtGBkPu4d .progress2 .progressbar-number:before {
  content: "71";
}
.cid-tEtGBkPu4d .progress3 .progressbar-number:before {
  content: "53";
}
.cid-tEtGBkPu4d .progress4 .progressbar-number:before {
  content: "70";
}
.cid-tEtGBkPu4d .progress5 .progressbar-number:before {
  content: "81";
}
.cid-tEtGBkPu4d .section-content-text {
  color: #454545;
}
.cid-tEtGBkPu4d .progressbar-title p,
.cid-tEtGBkPu4d .progress_value {
  color: #ffffff;
  text-align: center;
}
.cid-tEtGBkPu4d .mbr-section-subtitle {
  color: #454545;
}
.cid-tEtGBkPu4d .section-content-title {
  text-align: center;
  color: #ffffff;
}
.cid-tEtGBkPu4d .mbr-fallback-image.disabled {
  display: none;
}
.cid-tEtGBkPu4d .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tO4KvL9OBI {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #212428;
}
.cid-tO4KvL9OBI .progress {
  width: 100%;
}
.cid-tO4KvL9OBI p {
  margin-bottom: 0.4rem;
}
.cid-tO4KvL9OBI .progressbar-title {
  padding-bottom: 1rem;
}
.cid-tO4KvL9OBI .title-wrap {
  display: flex;
  justify-content: space-between;
  -webkit-justify-content: space-between;
}
.cid-tO4KvL9OBI progress {
  height: 10px;
}
.cid-tO4KvL9OBI .progressbar-number {
  display: inline-block;
  width: 50px;
}
.cid-tO4KvL9OBI .progress-primary {
  background: rgba(206, 206, 206, 0.9);
  border: none;
  outline: none;
}
.cid-tO4KvL9OBI .progress-primary::-webkit-progress-bar {
  background: rgba(206, 206, 206, 0.9);
}
.cid-tO4KvL9OBI .progress_value {
  position: relative;
}
.cid-tO4KvL9OBI .progress1 .progressbar-number:before,
.cid-tO4KvL9OBI .progress2 .progressbar-number:before,
.cid-tO4KvL9OBI .progress3 .progressbar-number:before,
.cid-tO4KvL9OBI .progress4 .progressbar-number:before,
.cid-tO4KvL9OBI .progress5 .progressbar-number:before {
  position: absolute;
  right: 15px;
  top: 0;
}
.cid-tO4KvL9OBI progress[value]::-webkit-progress-bar {
  background: rgba(206, 206, 206, 0.4);
  margin: 0;
}
.cid-tO4KvL9OBI progress::-webkit-progress-value {
  background: #6917c7;
}
.cid-tO4KvL9OBI progress[value]::-moz-progress-bar {
  background: #6917c7;
}
.cid-tO4KvL9OBI progress::-ms-fill {
  background: #6917c7;
}
.cid-tO4KvL9OBI .progress1 .progressbar-number:before {
  content: "100";
}
.cid-tO4KvL9OBI .progress2 .progressbar-number:before {
  content: "71";
}
.cid-tO4KvL9OBI .progress3 .progressbar-number:before {
  content: "53";
}
.cid-tO4KvL9OBI .progress4 .progressbar-number:before {
  content: "70";
}
.cid-tO4KvL9OBI .progress5 .progressbar-number:before {
  content: "81";
}
.cid-tO4KvL9OBI .section-content-text {
  color: #454545;
}
.cid-tO4KvL9OBI .progressbar-title p,
.cid-tO4KvL9OBI .progress_value {
  color: #ffffff;
  text-align: center;
}
.cid-tO4KvL9OBI .mbr-section-subtitle {
  color: #454545;
}
.cid-tO4KvL9OBI .section-content-title {
  text-align: center;
  color: #ffffff;
}
.cid-tO4KvL9OBI .mbr-fallback-image.disabled {
  display: none;
}
.cid-tO4KvL9OBI .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tO4JBi45PR {
  padding-top: 0rem;
  padding-bottom: 4rem;
  background-color: #212428;
}
.cid-tO4JBi45PR .iconfont-wrapper {
  padding-bottom: 1rem;
  margin-bottom: 1rem;
}
.cid-tO4JBi45PR .card-box {
  z-index: 2;
  position: relative;
}
.cid-tO4JBi45PR .card-title,
.cid-tO4JBi45PR .card-text {
  transition: all 0.3s;
}
.cid-tO4JBi45PR .card-wrapper {
  position: relative;
  overflow: hidden;
  padding: 4rem 2rem;
  border-radius: 6px;
  background: #1c232b;
  transition: all 0.3s;
}
.cid-tO4JBi45PR .card-wrapper:hover {
  background: #403f83;
}
.cid-tO4JBi45PR .card-wrapper:hover .card-title,
.cid-tO4JBi45PR .card-wrapper:hover .card-text {
  color: #ffffff;
}
@media (max-width: 767px) {
  .cid-tO4JBi45PR .card-wrapper {
    padding: 2rem 1rem;
  }
}
.cid-tO4JBi45PR .card-title,
.cid-tO4JBi45PR .iconfont-wrapper {
  color: #ffffff;
  text-align: center;
}
.cid-tO4JBi45PR .card-text {
  color: #353535;
}
.cid-tO4JBi45PR .card-text,
.cid-tO4JBi45PR .mbr-section-btn {
  text-align: center;
}
.cid-tO4JBi45PR .mbr-fallback-image.disabled {
  display: none;
}
.cid-tO4JBi45PR .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tv20JXf5Ez {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #282b2f;
}
.cid-tv20JXf5Ez svg {
  width: 100%;
  position: absolute;
  left: 0;
  top: -48px;
  height: 50px;
  transform-origin: bottom;
  animation: 1.5s ease-in-out infinite alternate svg2;
}
.cid-tv20JXf5Ez svg .st0 {
  fill: #282b2f;
}
@media (max-width: 992px) {
  .cid-tv20JXf5Ez svg {
    width: 1000px;
  }
}
@keyframes svg2 {
  from {
    transform: scaleX(1) scaleY(1.1) rotate(0deg);
  }
  to {
    transform: scaleX(1) scaleY(1.6) rotate(0deg);
  }
}
.cid-tv20JXf5Ez .list {
  list-style: none;
  padding-left: 0;
  color: #ffffff;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-tv20JXf5Ez .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tv20JXf5Ez .list {
    margin-bottom: 0rem;
  }
}
@media (max-width: 767px) {
  .cid-tv20JXf5Ez .row {
    text-align: center;
  }
}
@media (max-width: 991px) {
  .cid-tv20JXf5Ez div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-tv20JXf5Ez .copyright {
  color: #ffffff;
  text-align: center;
}
.cid-tO3ZaARX6J {
  z-index: 1000;
  width: 100%;
  position: relative;
}
.cid-tO3ZaARX6J .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;
}
@media (max-width: 767px) {
  .cid-tO3ZaARX6J .navbar-toggler {
    transform: scale(0.8);
  }
}
.cid-tO3ZaARX6J .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tO3ZaARX6J .navbar-brand img {
  max-width: 100%;
  max-height: 100%;
  border-radius: 0px !important;
}
.cid-tO3ZaARX6J .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tO3ZaARX6J .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tO3ZaARX6J .navbar-nav {
  margin: auto;
  margin-left: 0;
  margin-left: auto;
}
.cid-tO3ZaARX6J .navbar-nav .nav-item {
  padding: 0 !important;
  transition: .3s all !important;
}
.cid-tO3ZaARX6J .navbar-nav .nav-item .nav-link {
  padding: 16px !important;
  margin: 0 !important;
  border-radius: 1rem !important;
  transition: .3s all !important;
}
.cid-tO3ZaARX6J .navbar-nav .nav-item .nav-link:hover {
  background-color: rgba(27, 31, 10, 0.06);
}
.cid-tO3ZaARX6J .navbar-nav .open .nav-link::after {
  transform: rotate(180deg);
}
@media (min-width: 992px) {
  .cid-tO3ZaARX6J .navbar-nav .open .nav-link::before {
    content: "";
    width: 100%;
    height: 20px;
    top: 100%;
    background: transparent;
    position: absolute;
  }
}
.cid-tO3ZaARX6J .navbar-nav .dropdown-item {
  padding: 12px !important;
  border-radius: 0.5rem !important;
  margin: 0 8px !important;
  transition: .3s all !important;
}
.cid-tO3ZaARX6J .navbar-nav .dropdown-item:hover {
  background-color: rgba(27, 31, 10, 0.06);
}
@media (min-width: 992px) {
  .cid-tO3ZaARX6J .navbar-nav {
    padding-left: 1.5rem;
  }
}
.cid-tO3ZaARX6J .nav-link {
  width: fit-content;
  position: relative;
}
.cid-tO3ZaARX6J .navbar-logo {
  padding-left: 2rem;
  margin: 0 !important;
}
@media (max-width: 767px) {
  .cid-tO3ZaARX6J .navbar-logo {
    padding-left: 1rem;
  }
}
.cid-tO3ZaARX6J .navbar-caption {
  padding-left: 1rem;
  padding-right: .5rem;
}
@media (max-width: 767px) {
  .cid-tO3ZaARX6J .nav-dropdown {
    padding-bottom: 0.5rem;
  }
}
.cid-tO3ZaARX6J .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  transition: .3s all;
}
.cid-tO3ZaARX6J .container {
  display: flex;
  height: 90px;
  padding: 0.5rem 0.6rem;
  flex-wrap: nowrap;
  background: rgba(64, 63, 131, 0.8) !important;
  left: 0;
  right: 0;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: flex-end;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 100vw;
  margin-top: 1rem;
  background-color: #403f83;
  box-shadow: 0 30px 60px 0 rgba(27, 31, 10, 0.08);
}
@media (max-width: 992px) {
  .cid-tO3ZaARX6J .container {
    padding-right: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-tO3ZaARX6J .container {
    width: 95%;
    height: 56px !important;
    padding-right: 1rem;
    margin-top: 0rem;
  }
}
.cid-tO3ZaARX6J .iconfont-wrapper {
  color: #2469ea !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tO3ZaARX6J .dropdown-menu {
  flex-wrap: wrap;
  flex-direction: column;
  max-width: 100%;
  padding: 12px 4px !important;
  border-radius: 1.5rem;
  transition: .3s all !important;
  min-width: auto;
  background: #403f83;
  background: rgba(64, 63, 131, 0.8) !important;
}
.cid-tO3ZaARX6J .nav-item:focus,
.cid-tO3ZaARX6J .nav-link:focus {
  outline: none;
}
.cid-tO3ZaARX6J .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tO3ZaARX6J .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tO3ZaARX6J .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tO3ZaARX6J .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tO3ZaARX6J .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tO3ZaARX6J .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tO3ZaARX6J .navbar {
  min-height: 90px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: transparent !important;
  padding: 0 !important;
  border: none !important;
  box-shadow: none !important;
  border-radius: 0 !important;
}
.cid-tO3ZaARX6J .navbar.opened {
  transition: all 0.3s;
}
.cid-tO3ZaARX6J .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tO3ZaARX6J .navbar .navbar-logo img {
  width: auto;
}
.cid-tO3ZaARX6J .navbar .navbar-collapse {
  z-index: 1;
  justify-content: flex-end;
}
.cid-tO3ZaARX6J .navbar.collapsed {
  justify-content: center;
}
.cid-tO3ZaARX6J .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tO3ZaARX6J .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tO3ZaARX6J .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 2.7rem);
  }
}
.cid-tO3ZaARX6J .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tO3ZaARX6J .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tO3ZaARX6J .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-tO3ZaARX6J .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tO3ZaARX6J .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tO3ZaARX6J .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 767px) {
  .cid-tO3ZaARX6J .navbar {
    min-height: 72px;
  }
  .cid-tO3ZaARX6J .navbar .navbar-logo img {
    height: 2rem !important;
  }
}
@media (max-width: 991px) {
  .cid-tO3ZaARX6J .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tO3ZaARX6J .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tO3ZaARX6J .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tO3ZaARX6J .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tO3ZaARX6J .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-tO3ZaARX6J .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tO3ZaARX6J .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 10px;
  }
  .cid-tO3ZaARX6J .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tO3ZaARX6J .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tO3ZaARX6J .navbar.navbar-short .navbar-logo img {
  height: 2rem;
}
.cid-tO3ZaARX6J .dropdown-item.active,
.cid-tO3ZaARX6J .dropdown-item:active {
  background-color: transparent;
}
.cid-tO3ZaARX6J .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tO3ZaARX6J .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tO3ZaARX6J .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tO3ZaARX6J .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #403f83;
}
.cid-tO3ZaARX6J .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 105%;
  transform: none;
  top: -12px;
}
.cid-tO3ZaARX6J .navbar .dropdown.open > .dropdown-menu {
  display: flex;
}
.cid-tO3ZaARX6J ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tO3ZaARX6J .navbar-buttons {
  text-align: center;
  min-width: 140px;
}
@media (max-width: 992px) {
  .cid-tO3ZaARX6J .navbar-buttons {
    text-align: left;
  }
}
.cid-tO3ZaARX6J button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tO3ZaARX6J button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-tO3ZaARX6J button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tO3ZaARX6J button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tO3ZaARX6J button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tO3ZaARX6J button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tO3ZaARX6J nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tO3ZaARX6J nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tO3ZaARX6J nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tO3ZaARX6J nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tO3ZaARX6J .navbar-dropdown {
  padding: 0 1rem;
}
.cid-tO3ZaARX6J a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tO3ZaARX6J .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media (max-width: 992px) {
  .cid-tO3ZaARX6J .icons-menu {
    justify-content: flex-start;
    margin-bottom: .5rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tO3ZaARX6J .navbar {
    height: 70px;
  }
  .cid-tO3ZaARX6J .navbar.opened {
    height: auto;
  }
  .cid-tO3ZaARX6J .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tO3ZaARX6J .navbar .dropdown > .dropdown-menu {
  display: none;
  width: max-content;
  max-width: 500px !important;
  transform: translateX(-50%);
  top: calc(100% + 20px);
  left: 50%;
}
.cid-tO3ZaARX6J .navbar .dropdown > .dropdown-menu .dropdown-item {
  line-height: 1 !important;
}
.cid-tO3ZaARX6J .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item {
  align-items: center;
  display: flex;
  height: max-content !important;
  min-height: max-content !important;
}
.cid-tO3ZaARX6J .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item::after {
  display: inline-block;
  position: static;
  margin-left: 0.5rem;
  margin-top: 0;
  margin-right: 0;
  margin-bottom: 0;
  transition: .3s all;
  transform: rotate(-90deg);
}
.cid-tO3ZaARX6J .navbar .dropdown > .dropdown-menu .dropdown.open .dropdown-item::after {
  transform: rotate(0deg);
}
.cid-tO3ZaARX6J .mbr-section-btn {
  margin: -0.6rem -0.6rem;
}
.cid-tO3ZaARX6J .navbar-toggler {
  margin-left: 12px;
  margin-right: 8px;
  order: 1000;
}
@media (max-width: 991px) {
  .cid-tO3ZaARX6J .navbar-brand {
    margin-right: auto;
  }
  .cid-tO3ZaARX6J .navbar-collapse {
    z-index: -1 !important;
    position: absolute;
    top: 110%;
    left: 0;
    width: 100%;
    padding: 1rem;
    border-radius: 1.5rem;
    background: #403f83;
    opacity: 1;
    border-color: rgba(64, 63, 131, 0.8) !important;
    background: rgba(64, 63, 131, 0.8) !important;
    backdrop-filter: blur(8px);
  }
  .cid-tO3ZaARX6J .navbar-nav .nav-item .nav-link::after {
    margin-left: 10px;
  }
  .cid-tO3ZaARX6J .navbar-nav .dropdown-item:hover {
    background-color: rgba(27, 31, 10, 0.06);
  }
  .cid-tO3ZaARX6J .navbar .dropdown > .dropdown-menu {
    max-width: 100% !important;
    transform: translateX(0);
    top: 10px;
    left: 0;
    padding: 8px !important;
    border-radius: 1rem;
    background-color: rgba(27, 31, 10, 0.04) !important;
  }
  .cid-tO3ZaARX6J .navbar .dropdown > .dropdown-menu .dropdown-item {
    padding: 8px !important;
    line-height: 1 !important;
    margin-bottom: 4px !important;
  }
  .cid-tO3ZaARX6J .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item {
    align-items: center;
    display: flex;
    height: max-content !important;
    min-height: max-content !important;
  }
  .cid-tO3ZaARX6J .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item::after {
    display: inline-block;
    position: static;
    margin-left: 0.5rem;
    margin-top: 0;
    margin-right: 0;
    margin-bottom: 0;
    transition: .3s all;
    transform: rotate(0deg);
  }
  .cid-tO3ZaARX6J .navbar .dropdown > .dropdown-menu .dropdown.open .dropdown-item::after {
    transform: rotate(180deg);
  }
  .cid-tO3ZaARX6J .navbar .dropdown > .dropdown-menu .dropdown-submenu {
    position: static;
    width: 100%;
    max-width: 100% !important;
    transform: translateX(0) !important;
    top: 0;
    left: 0;
    padding: 8px !important;
    border-radius: 1rem;
    background-color: rgba(27, 31, 10, 0.04) !important;
  }
  .cid-tO3ZaARX6J .navbar .dropdown.open > .dropdown-menu {
    display: flex !important;
    flex-direction: column;
    align-items: flex-start;
  }
}
@media (max-width: 575px) {
  .cid-tO3ZaARX6J .navbar-collapse {
    padding: 1rem;
  }
}
.cid-trZzuDfoqP {
  background-image: url("../../../assets/images/fundo-1280x640.webp");
}
.cid-trZzuDfoqP img {
  width: 100%;
  border-radius: 30px;
}
.cid-trZzuDfoqP .mbr-section-title {
  color: #ffffff;
}
.cid-trZzuDfoqP .mbr-section-subtitle {
  background-color: #8364e2;
  padding: 0 1rem;
  border-radius: 5px;
  display: inline-block;
  font-family: 'IBM Plex Sans', sans-serif;
  font-weight: 900;
  color: #ffffff;
}
.cid-trZzuDfoqP .svg-1 {
  position: absolute;
  bottom: 0;
}
.cid-trZzuDfoqP .svg-1 path {
  fill: #212428;
}
.cid-trZzuDfoqP .container-fluid {
  max-width: 1200px;
}
.cid-trZzuDfoqP .mbr-arrow {
  z-index: 1;
}
.cid-trZzuDfoqP .mbr-section-btn {
  margin-top: 1.5rem;
}
@media (min-width: 768px) {
  .cid-trZzuDfoqP .container-fluid {
    padding: 0 1.5rem;
  }
}
@media (max-width: 992px) {
  .cid-trZzuDfoqP .imageContainer {
    margin-top: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-trZzuDfoqP .container-fluid {
    padding: 0 1rem;
  }
  .cid-trZzuDfoqP .mbr-section-subtitle {
    margin-bottom: 1.4rem;
  }
}
.cid-trVRP7OwZM {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #212428;
}
.cid-trVRP7OwZM .mbr-section-title {
  color: #ffffff;
}
.cid-trVRP7OwZM .mbr-text,
.cid-trVRP7OwZM .mbr-section-btn {
  color: #f7f4fd;
}
.cid-trVRP7OwZM .mbr-section-subtitle {
  color: #8364e2;
}
.cid-trVRP7OwZM img {
  border-radius: 2rem;
}
@media (min-width: 992px) {
  .cid-trVRP7OwZM .image-wrapper {
    padding-right: 4rem;
  }
}
.cid-tO4L3Azokz {
  padding-top: 5rem;
  padding-bottom: 5rem;
  overflow: hidden;
  background-color: #212428;
}
.cid-tO4L3Azokz .mbr-fallback-image.disabled {
  display: none;
}
.cid-tO4L3Azokz .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tO4L3Azokz .container {
  max-width: 1200px;
  padding: 0 10px;
}
.cid-tO4L3Azokz .mbr-section-head {
  margin-bottom: 10px;
  width: 100%;
}
.cid-tO4L3Azokz .mbr-section-title {
  color: #ffffff;
}
.cid-tO4L3Azokz .mbr-section-subtitle {
  color: #f4f4f4;
  margin-top: 15px;
}
@media (max-width: 767px) {
  .cid-tO4L3Azokz .mbr-section-subtitle {
    margin-top: 10px;
  }
}
.cid-tO4L3Azokz .card-row {
  align-items: stretch;
}
.cid-tO4L3Azokz .card {
  margin-top: 30px;
}
@media (max-width: 575px) {
  .cid-tO4L3Azokz .card {
    flex-basis: 80% !important;
  }
}
.cid-tO4L3Azokz .card-wrapper {
  position: relative;
  height: 100%;
  width: 100%;
  border-radius: 10px;
  overflow: hidden;
  background: linear-gradient(145deg, #1e2024, #23272b);
  box-shadow: 10px 10px 19px #191b1f, -10px -10px 19px #23272b;
}
.cid-tO4L3Azokz .card-wrapper:hover .card-bg {
  opacity: 1;
}
.cid-tO4L3Azokz .card-bg {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 4;
  width: 100%;
  height: 100%;
  border-radius: 10px;
  background: linear-gradient(to right bottom, #212428, #16181c);
  opacity: 0;
  transition: .5s all;
}
.cid-tO4L3Azokz .card-box {
  position: relative;
  z-index: 5;
  height: 100%;
}
.cid-tO4L3Azokz .item-img {
  height: 150px;
  align-items: center;
  display: flex;
  justify-content: center;
  padding: 30px;
  width: 100%;
}
.cid-tO4L3Azokz .item-img img {
  width: auto;
  max-height: 85px;
  max-width: 100%;
  object-fit: contain;
}
.cid-tO4L3Azokz .text-item {
  padding: 16px;
  width: 100%;
  border-top: 1px solid #16181c;
}
.cid-tO4L3Azokz .card-title {
  color: #878e99;
  margin-bottom: 0;
  text-align: center;
}
.cid-tO4L3Azokz .card-title a {
  transition: 0.4s all;
}
.cid-tO4L3Azokz .card-title a:hover {
  color: #8364e2 !important;
}
.cid-tv20JXf5Ez {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #282b2f;
}
.cid-tv20JXf5Ez svg {
  width: 100%;
  position: absolute;
  left: 0;
  top: -48px;
  height: 50px;
  transform-origin: bottom;
  animation: 1.5s ease-in-out infinite alternate svg2;
}
.cid-tv20JXf5Ez svg .st0 {
  fill: #282b2f;
}
@media (max-width: 992px) {
  .cid-tv20JXf5Ez svg {
    width: 1000px;
  }
}
@keyframes svg2 {
  from {
    transform: scaleX(1) scaleY(1.1) rotate(0deg);
  }
  to {
    transform: scaleX(1) scaleY(1.6) rotate(0deg);
  }
}
.cid-tv20JXf5Ez .list {
  list-style: none;
  padding-left: 0;
  color: #ffffff;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-tv20JXf5Ez .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tv20JXf5Ez .list {
    margin-bottom: 0rem;
  }
}
@media (max-width: 767px) {
  .cid-tv20JXf5Ez .row {
    text-align: center;
  }
}
@media (max-width: 991px) {
  .cid-tv20JXf5Ez div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-tv20JXf5Ez .copyright {
  color: #ffffff;
  text-align: center;
}
.cid-tO3ZaARX6J {
  z-index: 1000;
  width: 100%;
  position: relative;
}
.cid-tO3ZaARX6J .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;
}
@media (max-width: 767px) {
  .cid-tO3ZaARX6J .navbar-toggler {
    transform: scale(0.8);
  }
}
.cid-tO3ZaARX6J .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tO3ZaARX6J .navbar-brand img {
  max-width: 100%;
  max-height: 100%;
  border-radius: 0px !important;
}
.cid-tO3ZaARX6J .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tO3ZaARX6J .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tO3ZaARX6J .navbar-nav {
  margin: auto;
  margin-left: 0;
  margin-left: auto;
}
.cid-tO3ZaARX6J .navbar-nav .nav-item {
  padding: 0 !important;
  transition: .3s all !important;
}
.cid-tO3ZaARX6J .navbar-nav .nav-item .nav-link {
  padding: 16px !important;
  margin: 0 !important;
  border-radius: 1rem !important;
  transition: .3s all !important;
}
.cid-tO3ZaARX6J .navbar-nav .nav-item .nav-link:hover {
  background-color: rgba(27, 31, 10, 0.06);
}
.cid-tO3ZaARX6J .navbar-nav .open .nav-link::after {
  transform: rotate(180deg);
}
@media (min-width: 992px) {
  .cid-tO3ZaARX6J .navbar-nav .open .nav-link::before {
    content: "";
    width: 100%;
    height: 20px;
    top: 100%;
    background: transparent;
    position: absolute;
  }
}
.cid-tO3ZaARX6J .navbar-nav .dropdown-item {
  padding: 12px !important;
  border-radius: 0.5rem !important;
  margin: 0 8px !important;
  transition: .3s all !important;
}
.cid-tO3ZaARX6J .navbar-nav .dropdown-item:hover {
  background-color: rgba(27, 31, 10, 0.06);
}
@media (min-width: 992px) {
  .cid-tO3ZaARX6J .navbar-nav {
    padding-left: 1.5rem;
  }
}
.cid-tO3ZaARX6J .nav-link {
  width: fit-content;
  position: relative;
}
.cid-tO3ZaARX6J .navbar-logo {
  padding-left: 2rem;
  margin: 0 !important;
}
@media (max-width: 767px) {
  .cid-tO3ZaARX6J .navbar-logo {
    padding-left: 1rem;
  }
}
.cid-tO3ZaARX6J .navbar-caption {
  padding-left: 1rem;
  padding-right: .5rem;
}
@media (max-width: 767px) {
  .cid-tO3ZaARX6J .nav-dropdown {
    padding-bottom: 0.5rem;
  }
}
.cid-tO3ZaARX6J .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  transition: .3s all;
}
.cid-tO3ZaARX6J .container {
  display: flex;
  height: 90px;
  padding: 0.5rem 0.6rem;
  flex-wrap: nowrap;
  background: rgba(64, 63, 131, 0.8) !important;
  left: 0;
  right: 0;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: flex-end;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 100vw;
  margin-top: 1rem;
  background-color: #403f83;
  box-shadow: 0 30px 60px 0 rgba(27, 31, 10, 0.08);
}
@media (max-width: 992px) {
  .cid-tO3ZaARX6J .container {
    padding-right: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-tO3ZaARX6J .container {
    width: 95%;
    height: 56px !important;
    padding-right: 1rem;
    margin-top: 0rem;
  }
}
.cid-tO3ZaARX6J .iconfont-wrapper {
  color: #2469ea !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tO3ZaARX6J .dropdown-menu {
  flex-wrap: wrap;
  flex-direction: column;
  max-width: 100%;
  padding: 12px 4px !important;
  border-radius: 1.5rem;
  transition: .3s all !important;
  min-width: auto;
  background: #403f83;
  background: rgba(64, 63, 131, 0.8) !important;
}
.cid-tO3ZaARX6J .nav-item:focus,
.cid-tO3ZaARX6J .nav-link:focus {
  outline: none;
}
.cid-tO3ZaARX6J .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tO3ZaARX6J .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tO3ZaARX6J .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tO3ZaARX6J .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tO3ZaARX6J .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tO3ZaARX6J .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tO3ZaARX6J .navbar {
  min-height: 90px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: transparent !important;
  padding: 0 !important;
  border: none !important;
  box-shadow: none !important;
  border-radius: 0 !important;
}
.cid-tO3ZaARX6J .navbar.opened {
  transition: all 0.3s;
}
.cid-tO3ZaARX6J .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tO3ZaARX6J .navbar .navbar-logo img {
  width: auto;
}
.cid-tO3ZaARX6J .navbar .navbar-collapse {
  z-index: 1;
  justify-content: flex-end;
}
.cid-tO3ZaARX6J .navbar.collapsed {
  justify-content: center;
}
.cid-tO3ZaARX6J .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tO3ZaARX6J .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tO3ZaARX6J .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 2.7rem);
  }
}
.cid-tO3ZaARX6J .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tO3ZaARX6J .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tO3ZaARX6J .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-tO3ZaARX6J .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tO3ZaARX6J .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tO3ZaARX6J .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 767px) {
  .cid-tO3ZaARX6J .navbar {
    min-height: 72px;
  }
  .cid-tO3ZaARX6J .navbar .navbar-logo img {
    height: 2rem !important;
  }
}
@media (max-width: 991px) {
  .cid-tO3ZaARX6J .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tO3ZaARX6J .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tO3ZaARX6J .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tO3ZaARX6J .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tO3ZaARX6J .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-tO3ZaARX6J .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tO3ZaARX6J .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 10px;
  }
  .cid-tO3ZaARX6J .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tO3ZaARX6J .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tO3ZaARX6J .navbar.navbar-short .navbar-logo img {
  height: 2rem;
}
.cid-tO3ZaARX6J .dropdown-item.active,
.cid-tO3ZaARX6J .dropdown-item:active {
  background-color: transparent;
}
.cid-tO3ZaARX6J .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tO3ZaARX6J .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tO3ZaARX6J .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tO3ZaARX6J .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #403f83;
}
.cid-tO3ZaARX6J .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 105%;
  transform: none;
  top: -12px;
}
.cid-tO3ZaARX6J .navbar .dropdown.open > .dropdown-menu {
  display: flex;
}
.cid-tO3ZaARX6J ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tO3ZaARX6J .navbar-buttons {
  text-align: center;
  min-width: 140px;
}
@media (max-width: 992px) {
  .cid-tO3ZaARX6J .navbar-buttons {
    text-align: left;
  }
}
.cid-tO3ZaARX6J button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tO3ZaARX6J button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-tO3ZaARX6J button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tO3ZaARX6J button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tO3ZaARX6J button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tO3ZaARX6J button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tO3ZaARX6J nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tO3ZaARX6J nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tO3ZaARX6J nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tO3ZaARX6J nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tO3ZaARX6J .navbar-dropdown {
  padding: 0 1rem;
}
.cid-tO3ZaARX6J a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tO3ZaARX6J .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media (max-width: 992px) {
  .cid-tO3ZaARX6J .icons-menu {
    justify-content: flex-start;
    margin-bottom: .5rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tO3ZaARX6J .navbar {
    height: 70px;
  }
  .cid-tO3ZaARX6J .navbar.opened {
    height: auto;
  }
  .cid-tO3ZaARX6J .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tO3ZaARX6J .navbar .dropdown > .dropdown-menu {
  display: none;
  width: max-content;
  max-width: 500px !important;
  transform: translateX(-50%);
  top: calc(100% + 20px);
  left: 50%;
}
.cid-tO3ZaARX6J .navbar .dropdown > .dropdown-menu .dropdown-item {
  line-height: 1 !important;
}
.cid-tO3ZaARX6J .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item {
  align-items: center;
  display: flex;
  height: max-content !important;
  min-height: max-content !important;
}
.cid-tO3ZaARX6J .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item::after {
  display: inline-block;
  position: static;
  margin-left: 0.5rem;
  margin-top: 0;
  margin-right: 0;
  margin-bottom: 0;
  transition: .3s all;
  transform: rotate(-90deg);
}
.cid-tO3ZaARX6J .navbar .dropdown > .dropdown-menu .dropdown.open .dropdown-item::after {
  transform: rotate(0deg);
}
.cid-tO3ZaARX6J .mbr-section-btn {
  margin: -0.6rem -0.6rem;
}
.cid-tO3ZaARX6J .navbar-toggler {
  margin-left: 12px;
  margin-right: 8px;
  order: 1000;
}
@media (max-width: 991px) {
  .cid-tO3ZaARX6J .navbar-brand {
    margin-right: auto;
  }
  .cid-tO3ZaARX6J .navbar-collapse {
    z-index: -1 !important;
    position: absolute;
    top: 110%;
    left: 0;
    width: 100%;
    padding: 1rem;
    border-radius: 1.5rem;
    background: #403f83;
    opacity: 1;
    border-color: rgba(64, 63, 131, 0.8) !important;
    background: rgba(64, 63, 131, 0.8) !important;
    backdrop-filter: blur(8px);
  }
  .cid-tO3ZaARX6J .navbar-nav .nav-item .nav-link::after {
    margin-left: 10px;
  }
  .cid-tO3ZaARX6J .navbar-nav .dropdown-item:hover {
    background-color: rgba(27, 31, 10, 0.06);
  }
  .cid-tO3ZaARX6J .navbar .dropdown > .dropdown-menu {
    max-width: 100% !important;
    transform: translateX(0);
    top: 10px;
    left: 0;
    padding: 8px !important;
    border-radius: 1rem;
    background-color: rgba(27, 31, 10, 0.04) !important;
  }
  .cid-tO3ZaARX6J .navbar .dropdown > .dropdown-menu .dropdown-item {
    padding: 8px !important;
    line-height: 1 !important;
    margin-bottom: 4px !important;
  }
  .cid-tO3ZaARX6J .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item {
    align-items: center;
    display: flex;
    height: max-content !important;
    min-height: max-content !important;
  }
  .cid-tO3ZaARX6J .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item::after {
    display: inline-block;
    position: static;
    margin-left: 0.5rem;
    margin-top: 0;
    margin-right: 0;
    margin-bottom: 0;
    transition: .3s all;
    transform: rotate(0deg);
  }
  .cid-tO3ZaARX6J .navbar .dropdown > .dropdown-menu .dropdown.open .dropdown-item::after {
    transform: rotate(180deg);
  }
  .cid-tO3ZaARX6J .navbar .dropdown > .dropdown-menu .dropdown-submenu {
    position: static;
    width: 100%;
    max-width: 100% !important;
    transform: translateX(0) !important;
    top: 0;
    left: 0;
    padding: 8px !important;
    border-radius: 1rem;
    background-color: rgba(27, 31, 10, 0.04) !important;
  }
  .cid-tO3ZaARX6J .navbar .dropdown.open > .dropdown-menu {
    display: flex !important;
    flex-direction: column;
    align-items: flex-start;
  }
}
@media (max-width: 575px) {
  .cid-tO3ZaARX6J .navbar-collapse {
    padding: 1rem;
  }
}
.cid-trZAdRCEjM {
  background-image: url("../../../assets/images/fundo-1280x640.webp");
}
.cid-trZAdRCEjM img {
  width: 100%;
  border-radius: 30px;
}
.cid-trZAdRCEjM .mbr-section-title {
  color: #ffffff;
}
.cid-trZAdRCEjM .mbr-section-subtitle {
  background-color: #8364e2;
  padding: 0 1rem;
  border-radius: 5px;
  display: inline-block;
  font-family: 'IBM Plex Sans', sans-serif;
  font-weight: 900;
  color: #ffffff;
}
.cid-trZAdRCEjM .svg-1 {
  position: absolute;
  bottom: 0;
}
.cid-trZAdRCEjM .svg-1 path {
  fill: #212428;
}
.cid-trZAdRCEjM .container-fluid {
  max-width: 1200px;
}
.cid-trZAdRCEjM .mbr-arrow {
  z-index: 1;
}
.cid-trZAdRCEjM .mbr-section-btn {
  margin-top: 1.5rem;
}
@media (min-width: 768px) {
  .cid-trZAdRCEjM .container-fluid {
    padding: 0 1.5rem;
  }
}
@media (max-width: 992px) {
  .cid-trZAdRCEjM .imageContainer {
    margin-top: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-trZAdRCEjM .container-fluid {
    padding: 0 1rem;
  }
  .cid-trZAdRCEjM .mbr-section-subtitle {
    margin-bottom: 1.4rem;
  }
}
.cid-trU0x0Ss0q {
  padding-top: 8rem;
  padding-bottom: 2rem;
  background-color: #212428;
}
.cid-trU0x0Ss0q .mbr-section-title {
  color: #ffffff;
}
.cid-trU0x0Ss0q .mbr-text,
.cid-trU0x0Ss0q .mbr-section-btn {
  color: #f7f4fd;
}
.cid-trU0x0Ss0q .mbr-section-subtitle {
  color: #8364e2;
}
.cid-trU0x0Ss0q img {
  border-radius: 2rem;
}
@media (min-width: 992px) {
  .cid-trU0x0Ss0q .image-wrapper {
    padding-right: 4rem;
  }
}
.cid-tv20JXf5Ez {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #282b2f;
}
.cid-tv20JXf5Ez svg {
  width: 100%;
  position: absolute;
  left: 0;
  top: -48px;
  height: 50px;
  transform-origin: bottom;
  animation: 1.5s ease-in-out infinite alternate svg2;
}
.cid-tv20JXf5Ez svg .st0 {
  fill: #282b2f;
}
@media (max-width: 992px) {
  .cid-tv20JXf5Ez svg {
    width: 1000px;
  }
}
@keyframes svg2 {
  from {
    transform: scaleX(1) scaleY(1.1) rotate(0deg);
  }
  to {
    transform: scaleX(1) scaleY(1.6) rotate(0deg);
  }
}
.cid-tv20JXf5Ez .list {
  list-style: none;
  padding-left: 0;
  color: #ffffff;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-tv20JXf5Ez .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tv20JXf5Ez .list {
    margin-bottom: 0rem;
  }
}
@media (max-width: 767px) {
  .cid-tv20JXf5Ez .row {
    text-align: center;
  }
}
@media (max-width: 991px) {
  .cid-tv20JXf5Ez div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-tv20JXf5Ez .copyright {
  color: #ffffff;
  text-align: center;
}
.cid-tO3ZaARX6J {
  z-index: 1000;
  width: 100%;
  position: relative;
}
.cid-tO3ZaARX6J .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;
}
@media (max-width: 767px) {
  .cid-tO3ZaARX6J .navbar-toggler {
    transform: scale(0.8);
  }
}
.cid-tO3ZaARX6J .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tO3ZaARX6J .navbar-brand img {
  max-width: 100%;
  max-height: 100%;
  border-radius: 0px !important;
}
.cid-tO3ZaARX6J .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tO3ZaARX6J .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tO3ZaARX6J .navbar-nav {
  margin: auto;
  margin-left: 0;
  margin-left: auto;
}
.cid-tO3ZaARX6J .navbar-nav .nav-item {
  padding: 0 !important;
  transition: .3s all !important;
}
.cid-tO3ZaARX6J .navbar-nav .nav-item .nav-link {
  padding: 16px !important;
  margin: 0 !important;
  border-radius: 1rem !important;
  transition: .3s all !important;
}
.cid-tO3ZaARX6J .navbar-nav .nav-item .nav-link:hover {
  background-color: rgba(27, 31, 10, 0.06);
}
.cid-tO3ZaARX6J .navbar-nav .open .nav-link::after {
  transform: rotate(180deg);
}
@media (min-width: 992px) {
  .cid-tO3ZaARX6J .navbar-nav .open .nav-link::before {
    content: "";
    width: 100%;
    height: 20px;
    top: 100%;
    background: transparent;
    position: absolute;
  }
}
.cid-tO3ZaARX6J .navbar-nav .dropdown-item {
  padding: 12px !important;
  border-radius: 0.5rem !important;
  margin: 0 8px !important;
  transition: .3s all !important;
}
.cid-tO3ZaARX6J .navbar-nav .dropdown-item:hover {
  background-color: rgba(27, 31, 10, 0.06);
}
@media (min-width: 992px) {
  .cid-tO3ZaARX6J .navbar-nav {
    padding-left: 1.5rem;
  }
}
.cid-tO3ZaARX6J .nav-link {
  width: fit-content;
  position: relative;
}
.cid-tO3ZaARX6J .navbar-logo {
  padding-left: 2rem;
  margin: 0 !important;
}
@media (max-width: 767px) {
  .cid-tO3ZaARX6J .navbar-logo {
    padding-left: 1rem;
  }
}
.cid-tO3ZaARX6J .navbar-caption {
  padding-left: 1rem;
  padding-right: .5rem;
}
@media (max-width: 767px) {
  .cid-tO3ZaARX6J .nav-dropdown {
    padding-bottom: 0.5rem;
  }
}
.cid-tO3ZaARX6J .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  transition: .3s all;
}
.cid-tO3ZaARX6J .container {
  display: flex;
  height: 90px;
  padding: 0.5rem 0.6rem;
  flex-wrap: nowrap;
  background: rgba(64, 63, 131, 0.8) !important;
  left: 0;
  right: 0;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: flex-end;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 100vw;
  margin-top: 1rem;
  background-color: #403f83;
  box-shadow: 0 30px 60px 0 rgba(27, 31, 10, 0.08);
}
@media (max-width: 992px) {
  .cid-tO3ZaARX6J .container {
    padding-right: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-tO3ZaARX6J .container {
    width: 95%;
    height: 56px !important;
    padding-right: 1rem;
    margin-top: 0rem;
  }
}
.cid-tO3ZaARX6J .iconfont-wrapper {
  color: #2469ea !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tO3ZaARX6J .dropdown-menu {
  flex-wrap: wrap;
  flex-direction: column;
  max-width: 100%;
  padding: 12px 4px !important;
  border-radius: 1.5rem;
  transition: .3s all !important;
  min-width: auto;
  background: #403f83;
  background: rgba(64, 63, 131, 0.8) !important;
}
.cid-tO3ZaARX6J .nav-item:focus,
.cid-tO3ZaARX6J .nav-link:focus {
  outline: none;
}
.cid-tO3ZaARX6J .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tO3ZaARX6J .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tO3ZaARX6J .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tO3ZaARX6J .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tO3ZaARX6J .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tO3ZaARX6J .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tO3ZaARX6J .navbar {
  min-height: 90px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: transparent !important;
  padding: 0 !important;
  border: none !important;
  box-shadow: none !important;
  border-radius: 0 !important;
}
.cid-tO3ZaARX6J .navbar.opened {
  transition: all 0.3s;
}
.cid-tO3ZaARX6J .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tO3ZaARX6J .navbar .navbar-logo img {
  width: auto;
}
.cid-tO3ZaARX6J .navbar .navbar-collapse {
  z-index: 1;
  justify-content: flex-end;
}
.cid-tO3ZaARX6J .navbar.collapsed {
  justify-content: center;
}
.cid-tO3ZaARX6J .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tO3ZaARX6J .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tO3ZaARX6J .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 2.7rem);
  }
}
.cid-tO3ZaARX6J .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tO3ZaARX6J .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tO3ZaARX6J .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-tO3ZaARX6J .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tO3ZaARX6J .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tO3ZaARX6J .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 767px) {
  .cid-tO3ZaARX6J .navbar {
    min-height: 72px;
  }
  .cid-tO3ZaARX6J .navbar .navbar-logo img {
    height: 2rem !important;
  }
}
@media (max-width: 991px) {
  .cid-tO3ZaARX6J .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tO3ZaARX6J .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tO3ZaARX6J .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tO3ZaARX6J .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tO3ZaARX6J .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-tO3ZaARX6J .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tO3ZaARX6J .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 10px;
  }
  .cid-tO3ZaARX6J .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tO3ZaARX6J .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tO3ZaARX6J .navbar.navbar-short .navbar-logo img {
  height: 2rem;
}
.cid-tO3ZaARX6J .dropdown-item.active,
.cid-tO3ZaARX6J .dropdown-item:active {
  background-color: transparent;
}
.cid-tO3ZaARX6J .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tO3ZaARX6J .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tO3ZaARX6J .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tO3ZaARX6J .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #403f83;
}
.cid-tO3ZaARX6J .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 105%;
  transform: none;
  top: -12px;
}
.cid-tO3ZaARX6J .navbar .dropdown.open > .dropdown-menu {
  display: flex;
}
.cid-tO3ZaARX6J ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tO3ZaARX6J .navbar-buttons {
  text-align: center;
  min-width: 140px;
}
@media (max-width: 992px) {
  .cid-tO3ZaARX6J .navbar-buttons {
    text-align: left;
  }
}
.cid-tO3ZaARX6J button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tO3ZaARX6J button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-tO3ZaARX6J button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tO3ZaARX6J button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tO3ZaARX6J button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tO3ZaARX6J button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tO3ZaARX6J nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tO3ZaARX6J nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tO3ZaARX6J nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tO3ZaARX6J nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tO3ZaARX6J .navbar-dropdown {
  padding: 0 1rem;
}
.cid-tO3ZaARX6J a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tO3ZaARX6J .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media (max-width: 992px) {
  .cid-tO3ZaARX6J .icons-menu {
    justify-content: flex-start;
    margin-bottom: .5rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tO3ZaARX6J .navbar {
    height: 70px;
  }
  .cid-tO3ZaARX6J .navbar.opened {
    height: auto;
  }
  .cid-tO3ZaARX6J .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tO3ZaARX6J .navbar .dropdown > .dropdown-menu {
  display: none;
  width: max-content;
  max-width: 500px !important;
  transform: translateX(-50%);
  top: calc(100% + 20px);
  left: 50%;
}
.cid-tO3ZaARX6J .navbar .dropdown > .dropdown-menu .dropdown-item {
  line-height: 1 !important;
}
.cid-tO3ZaARX6J .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item {
  align-items: center;
  display: flex;
  height: max-content !important;
  min-height: max-content !important;
}
.cid-tO3ZaARX6J .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item::after {
  display: inline-block;
  position: static;
  margin-left: 0.5rem;
  margin-top: 0;
  margin-right: 0;
  margin-bottom: 0;
  transition: .3s all;
  transform: rotate(-90deg);
}
.cid-tO3ZaARX6J .navbar .dropdown > .dropdown-menu .dropdown.open .dropdown-item::after {
  transform: rotate(0deg);
}
.cid-tO3ZaARX6J .mbr-section-btn {
  margin: -0.6rem -0.6rem;
}
.cid-tO3ZaARX6J .navbar-toggler {
  margin-left: 12px;
  margin-right: 8px;
  order: 1000;
}
@media (max-width: 991px) {
  .cid-tO3ZaARX6J .navbar-brand {
    margin-right: auto;
  }
  .cid-tO3ZaARX6J .navbar-collapse {
    z-index: -1 !important;
    position: absolute;
    top: 110%;
    left: 0;
    width: 100%;
    padding: 1rem;
    border-radius: 1.5rem;
    background: #403f83;
    opacity: 1;
    border-color: rgba(64, 63, 131, 0.8) !important;
    background: rgba(64, 63, 131, 0.8) !important;
    backdrop-filter: blur(8px);
  }
  .cid-tO3ZaARX6J .navbar-nav .nav-item .nav-link::after {
    margin-left: 10px;
  }
  .cid-tO3ZaARX6J .navbar-nav .dropdown-item:hover {
    background-color: rgba(27, 31, 10, 0.06);
  }
  .cid-tO3ZaARX6J .navbar .dropdown > .dropdown-menu {
    max-width: 100% !important;
    transform: translateX(0);
    top: 10px;
    left: 0;
    padding: 8px !important;
    border-radius: 1rem;
    background-color: rgba(27, 31, 10, 0.04) !important;
  }
  .cid-tO3ZaARX6J .navbar .dropdown > .dropdown-menu .dropdown-item {
    padding: 8px !important;
    line-height: 1 !important;
    margin-bottom: 4px !important;
  }
  .cid-tO3ZaARX6J .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item {
    align-items: center;
    display: flex;
    height: max-content !important;
    min-height: max-content !important;
  }
  .cid-tO3ZaARX6J .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item::after {
    display: inline-block;
    position: static;
    margin-left: 0.5rem;
    margin-top: 0;
    margin-right: 0;
    margin-bottom: 0;
    transition: .3s all;
    transform: rotate(0deg);
  }
  .cid-tO3ZaARX6J .navbar .dropdown > .dropdown-menu .dropdown.open .dropdown-item::after {
    transform: rotate(180deg);
  }
  .cid-tO3ZaARX6J .navbar .dropdown > .dropdown-menu .dropdown-submenu {
    position: static;
    width: 100%;
    max-width: 100% !important;
    transform: translateX(0) !important;
    top: 0;
    left: 0;
    padding: 8px !important;
    border-radius: 1rem;
    background-color: rgba(27, 31, 10, 0.04) !important;
  }
  .cid-tO3ZaARX6J .navbar .dropdown.open > .dropdown-menu {
    display: flex !important;
    flex-direction: column;
    align-items: flex-start;
  }
}
@media (max-width: 575px) {
  .cid-tO3ZaARX6J .navbar-collapse {
    padding: 1rem;
  }
}
.cid-ts0b6Oa2BT {
  background-image: url("../../../assets/images/fundo-1280x640.webp");
}
.cid-ts0b6Oa2BT img {
  width: 100%;
  border-radius: 30px;
}
.cid-ts0b6Oa2BT .mbr-section-title {
  color: #ffffff;
}
.cid-ts0b6Oa2BT .mbr-section-subtitle {
  background-color: #8364e2;
  padding: 0 1rem;
  border-radius: 5px;
  display: inline-block;
  font-family: 'IBM Plex Sans', sans-serif;
  font-weight: 900;
  color: #ffffff;
}
.cid-ts0b6Oa2BT .svg-1 {
  position: absolute;
  bottom: 0;
}
.cid-ts0b6Oa2BT .svg-1 path {
  fill: #212428;
}
.cid-ts0b6Oa2BT .container-fluid {
  max-width: 1200px;
}
.cid-ts0b6Oa2BT .mbr-arrow {
  z-index: 1;
}
.cid-ts0b6Oa2BT .mbr-section-btn {
  margin-top: 1.5rem;
}
@media (min-width: 768px) {
  .cid-ts0b6Oa2BT .container-fluid {
    padding: 0 1.5rem;
  }
}
@media (max-width: 992px) {
  .cid-ts0b6Oa2BT .imageContainer {
    margin-top: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-ts0b6Oa2BT .container-fluid {
    padding: 0 1rem;
  }
  .cid-ts0b6Oa2BT .mbr-section-subtitle {
    margin-bottom: 1.4rem;
  }
}
.cid-tzI37MTHaG {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #212428;
}
.cid-tzI37MTHaG .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-tzI37MTHaG .card-title {
  margin-bottom: 26px;
  color: #8364e2;
}
.cid-tzI37MTHaG .mbr-text {
  margin-bottom: 30px;
}
.cid-tzI37MTHaG .iconfont-wrapper {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  border-top-right-radius: 0;
  display: inline-block;
  text-align: center;
  margin-bottom: 30px;
  position: relative;
  z-index: 1;
  box-shadow: 0px 14px 30px 0px rgba(23, 148, 10, 0.4);
  background-image: linear-gradient(125deg, #17940a 0%, #29ef15 100%);
}
.cid-tzI37MTHaG .iconfont-wrapper .mbr-iconfont {
  color: #ffffff;
  font-size: 36px;
  line-height: 70px;
}
.cid-tzI37MTHaG .btn_link {
  display: block;
  margin-bottom: 0;
  position: relative;
  font-weight: 700;
}
.cid-tzI37MTHaG .btn_link span {
  display: inline-block;
  margin-left: .25rem;
  font-size: 16px;
  vertical-align: middle;
  transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.cid-tzI37MTHaG .btn_link:hover {
  cursor: pointer;
}
.cid-tzI37MTHaG .btn_link:hover a {
  color: #8364e2 !important;
}
.cid-tzI37MTHaG .btn_link:hover span {
  transform: translatex(5px);
}
@media (min-width: 992px) {
  .cid-tzI37MTHaG .text-wrapper {
    padding-right: 0;
    padding-left: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tzI37MTHaG .text-wrapper {
    text-align: center;
  }
  .cid-tzI37MTHaG .image-wrapper {
    margin-bottom: 40px;
  }
  .cid-tzI37MTHaG .mbr-text {
    margin-bottom: 20px;
  }
  .cid-tzI37MTHaG .iconfont-wrapper {
    margin-bottom: 20px;
  }
}
.cid-tzI37MTHaG .mbr-text,
.cid-tzI37MTHaG .btn_link {
  color: #ffffff;
}
.cid-ttdYgaBc0V {
  padding-top: 1rem;
  padding-bottom: 2rem;
  background-color: #212428;
}
.cid-ttdYgaBc0V .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-ttdYgaBc0V .card-title {
  margin-bottom: 26px;
  color: #8364e2;
}
.cid-ttdYgaBc0V .mbr-text {
  margin-bottom: 30px;
}
.cid-ttdYgaBc0V .iconfont-wrapper {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  border-top-right-radius: 0;
  display: inline-block;
  text-align: center;
  margin-bottom: 30px;
  position: relative;
  z-index: 1;
  box-shadow: 0px 14px 30px 0px rgba(148, 10, 36, 0.4);
  background-image: linear-gradient(125deg, #940a24 0%, #ef153e 100%);
}
.cid-ttdYgaBc0V .iconfont-wrapper .mbr-iconfont {
  color: #ffffff;
  font-size: 36px;
  line-height: 70px;
}
.cid-ttdYgaBc0V .btn_link {
  display: block;
  margin-bottom: 0;
  position: relative;
  font-weight: 700;
}
.cid-ttdYgaBc0V .btn_link span {
  display: inline-block;
  margin-left: .25rem;
  font-size: 16px;
  vertical-align: middle;
  transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.cid-ttdYgaBc0V .btn_link:hover {
  cursor: pointer;
}
.cid-ttdYgaBc0V .btn_link:hover a {
  color: #8364e2 !important;
}
.cid-ttdYgaBc0V .btn_link:hover span {
  transform: translatex(5px);
}
@media (min-width: 992px) {
  .cid-ttdYgaBc0V .text-wrapper {
    padding-right: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-ttdYgaBc0V .text-wrapper {
    text-align: center;
  }
  .cid-ttdYgaBc0V .image-wrapper {
    margin-bottom: 40px;
  }
  .cid-ttdYgaBc0V .mbr-text {
    margin-bottom: 20px;
  }
  .cid-ttdYgaBc0V .iconfont-wrapper {
    margin-bottom: 20px;
  }
}
.cid-ttdYgaBc0V .mbr-text,
.cid-ttdYgaBc0V .btn_link {
  color: #ffffff;
  text-align: left;
}
.cid-ttdYgaBc0V .card-title,
.cid-ttdYgaBc0V .icon_block {
  text-align: left;
}
.cid-tv20JXf5Ez {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #282b2f;
}
.cid-tv20JXf5Ez svg {
  width: 100%;
  position: absolute;
  left: 0;
  top: -48px;
  height: 50px;
  transform-origin: bottom;
  animation: 1.5s ease-in-out infinite alternate svg2;
}
.cid-tv20JXf5Ez svg .st0 {
  fill: #282b2f;
}
@media (max-width: 992px) {
  .cid-tv20JXf5Ez svg {
    width: 1000px;
  }
}
@keyframes svg2 {
  from {
    transform: scaleX(1) scaleY(1.1) rotate(0deg);
  }
  to {
    transform: scaleX(1) scaleY(1.6) rotate(0deg);
  }
}
.cid-tv20JXf5Ez .list {
  list-style: none;
  padding-left: 0;
  color: #ffffff;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-tv20JXf5Ez .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tv20JXf5Ez .list {
    margin-bottom: 0rem;
  }
}
@media (max-width: 767px) {
  .cid-tv20JXf5Ez .row {
    text-align: center;
  }
}
@media (max-width: 991px) {
  .cid-tv20JXf5Ez div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-tv20JXf5Ez .copyright {
  color: #ffffff;
  text-align: center;
}
.cid-tO3ZaARX6J {
  z-index: 1000;
  width: 100%;
  position: relative;
}
.cid-tO3ZaARX6J .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;
}
@media (max-width: 767px) {
  .cid-tO3ZaARX6J .navbar-toggler {
    transform: scale(0.8);
  }
}
.cid-tO3ZaARX6J .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tO3ZaARX6J .navbar-brand img {
  max-width: 100%;
  max-height: 100%;
  border-radius: 0px !important;
}
.cid-tO3ZaARX6J .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tO3ZaARX6J .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tO3ZaARX6J .navbar-nav {
  margin: auto;
  margin-left: 0;
  margin-left: auto;
}
.cid-tO3ZaARX6J .navbar-nav .nav-item {
  padding: 0 !important;
  transition: .3s all !important;
}
.cid-tO3ZaARX6J .navbar-nav .nav-item .nav-link {
  padding: 16px !important;
  margin: 0 !important;
  border-radius: 1rem !important;
  transition: .3s all !important;
}
.cid-tO3ZaARX6J .navbar-nav .nav-item .nav-link:hover {
  background-color: rgba(27, 31, 10, 0.06);
}
.cid-tO3ZaARX6J .navbar-nav .open .nav-link::after {
  transform: rotate(180deg);
}
@media (min-width: 992px) {
  .cid-tO3ZaARX6J .navbar-nav .open .nav-link::before {
    content: "";
    width: 100%;
    height: 20px;
    top: 100%;
    background: transparent;
    position: absolute;
  }
}
.cid-tO3ZaARX6J .navbar-nav .dropdown-item {
  padding: 12px !important;
  border-radius: 0.5rem !important;
  margin: 0 8px !important;
  transition: .3s all !important;
}
.cid-tO3ZaARX6J .navbar-nav .dropdown-item:hover {
  background-color: rgba(27, 31, 10, 0.06);
}
@media (min-width: 992px) {
  .cid-tO3ZaARX6J .navbar-nav {
    padding-left: 1.5rem;
  }
}
.cid-tO3ZaARX6J .nav-link {
  width: fit-content;
  position: relative;
}
.cid-tO3ZaARX6J .navbar-logo {
  padding-left: 2rem;
  margin: 0 !important;
}
@media (max-width: 767px) {
  .cid-tO3ZaARX6J .navbar-logo {
    padding-left: 1rem;
  }
}
.cid-tO3ZaARX6J .navbar-caption {
  padding-left: 1rem;
  padding-right: .5rem;
}
@media (max-width: 767px) {
  .cid-tO3ZaARX6J .nav-dropdown {
    padding-bottom: 0.5rem;
  }
}
.cid-tO3ZaARX6J .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  transition: .3s all;
}
.cid-tO3ZaARX6J .container {
  display: flex;
  height: 90px;
  padding: 0.5rem 0.6rem;
  flex-wrap: nowrap;
  background: rgba(64, 63, 131, 0.8) !important;
  left: 0;
  right: 0;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: flex-end;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 100vw;
  margin-top: 1rem;
  background-color: #403f83;
  box-shadow: 0 30px 60px 0 rgba(27, 31, 10, 0.08);
}
@media (max-width: 992px) {
  .cid-tO3ZaARX6J .container {
    padding-right: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-tO3ZaARX6J .container {
    width: 95%;
    height: 56px !important;
    padding-right: 1rem;
    margin-top: 0rem;
  }
}
.cid-tO3ZaARX6J .iconfont-wrapper {
  color: #2469ea !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tO3ZaARX6J .dropdown-menu {
  flex-wrap: wrap;
  flex-direction: column;
  max-width: 100%;
  padding: 12px 4px !important;
  border-radius: 1.5rem;
  transition: .3s all !important;
  min-width: auto;
  background: #403f83;
  background: rgba(64, 63, 131, 0.8) !important;
}
.cid-tO3ZaARX6J .nav-item:focus,
.cid-tO3ZaARX6J .nav-link:focus {
  outline: none;
}
.cid-tO3ZaARX6J .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tO3ZaARX6J .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tO3ZaARX6J .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tO3ZaARX6J .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tO3ZaARX6J .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tO3ZaARX6J .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tO3ZaARX6J .navbar {
  min-height: 90px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: transparent !important;
  padding: 0 !important;
  border: none !important;
  box-shadow: none !important;
  border-radius: 0 !important;
}
.cid-tO3ZaARX6J .navbar.opened {
  transition: all 0.3s;
}
.cid-tO3ZaARX6J .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tO3ZaARX6J .navbar .navbar-logo img {
  width: auto;
}
.cid-tO3ZaARX6J .navbar .navbar-collapse {
  z-index: 1;
  justify-content: flex-end;
}
.cid-tO3ZaARX6J .navbar.collapsed {
  justify-content: center;
}
.cid-tO3ZaARX6J .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tO3ZaARX6J .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tO3ZaARX6J .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 2.7rem);
  }
}
.cid-tO3ZaARX6J .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tO3ZaARX6J .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tO3ZaARX6J .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-tO3ZaARX6J .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tO3ZaARX6J .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tO3ZaARX6J .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 767px) {
  .cid-tO3ZaARX6J .navbar {
    min-height: 72px;
  }
  .cid-tO3ZaARX6J .navbar .navbar-logo img {
    height: 2rem !important;
  }
}
@media (max-width: 991px) {
  .cid-tO3ZaARX6J .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tO3ZaARX6J .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tO3ZaARX6J .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tO3ZaARX6J .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tO3ZaARX6J .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-tO3ZaARX6J .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tO3ZaARX6J .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 10px;
  }
  .cid-tO3ZaARX6J .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tO3ZaARX6J .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tO3ZaARX6J .navbar.navbar-short .navbar-logo img {
  height: 2rem;
}
.cid-tO3ZaARX6J .dropdown-item.active,
.cid-tO3ZaARX6J .dropdown-item:active {
  background-color: transparent;
}
.cid-tO3ZaARX6J .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tO3ZaARX6J .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tO3ZaARX6J .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tO3ZaARX6J .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #403f83;
}
.cid-tO3ZaARX6J .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 105%;
  transform: none;
  top: -12px;
}
.cid-tO3ZaARX6J .navbar .dropdown.open > .dropdown-menu {
  display: flex;
}
.cid-tO3ZaARX6J ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tO3ZaARX6J .navbar-buttons {
  text-align: center;
  min-width: 140px;
}
@media (max-width: 992px) {
  .cid-tO3ZaARX6J .navbar-buttons {
    text-align: left;
  }
}
.cid-tO3ZaARX6J button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tO3ZaARX6J button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-tO3ZaARX6J button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tO3ZaARX6J button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tO3ZaARX6J button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tO3ZaARX6J button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tO3ZaARX6J nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tO3ZaARX6J nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tO3ZaARX6J nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tO3ZaARX6J nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tO3ZaARX6J .navbar-dropdown {
  padding: 0 1rem;
}
.cid-tO3ZaARX6J a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tO3ZaARX6J .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media (max-width: 992px) {
  .cid-tO3ZaARX6J .icons-menu {
    justify-content: flex-start;
    margin-bottom: .5rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tO3ZaARX6J .navbar {
    height: 70px;
  }
  .cid-tO3ZaARX6J .navbar.opened {
    height: auto;
  }
  .cid-tO3ZaARX6J .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tO3ZaARX6J .navbar .dropdown > .dropdown-menu {
  display: none;
  width: max-content;
  max-width: 500px !important;
  transform: translateX(-50%);
  top: calc(100% + 20px);
  left: 50%;
}
.cid-tO3ZaARX6J .navbar .dropdown > .dropdown-menu .dropdown-item {
  line-height: 1 !important;
}
.cid-tO3ZaARX6J .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item {
  align-items: center;
  display: flex;
  height: max-content !important;
  min-height: max-content !important;
}
.cid-tO3ZaARX6J .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item::after {
  display: inline-block;
  position: static;
  margin-left: 0.5rem;
  margin-top: 0;
  margin-right: 0;
  margin-bottom: 0;
  transition: .3s all;
  transform: rotate(-90deg);
}
.cid-tO3ZaARX6J .navbar .dropdown > .dropdown-menu .dropdown.open .dropdown-item::after {
  transform: rotate(0deg);
}
.cid-tO3ZaARX6J .mbr-section-btn {
  margin: -0.6rem -0.6rem;
}
.cid-tO3ZaARX6J .navbar-toggler {
  margin-left: 12px;
  margin-right: 8px;
  order: 1000;
}
@media (max-width: 991px) {
  .cid-tO3ZaARX6J .navbar-brand {
    margin-right: auto;
  }
  .cid-tO3ZaARX6J .navbar-collapse {
    z-index: -1 !important;
    position: absolute;
    top: 110%;
    left: 0;
    width: 100%;
    padding: 1rem;
    border-radius: 1.5rem;
    background: #403f83;
    opacity: 1;
    border-color: rgba(64, 63, 131, 0.8) !important;
    background: rgba(64, 63, 131, 0.8) !important;
    backdrop-filter: blur(8px);
  }
  .cid-tO3ZaARX6J .navbar-nav .nav-item .nav-link::after {
    margin-left: 10px;
  }
  .cid-tO3ZaARX6J .navbar-nav .dropdown-item:hover {
    background-color: rgba(27, 31, 10, 0.06);
  }
  .cid-tO3ZaARX6J .navbar .dropdown > .dropdown-menu {
    max-width: 100% !important;
    transform: translateX(0);
    top: 10px;
    left: 0;
    padding: 8px !important;
    border-radius: 1rem;
    background-color: rgba(27, 31, 10, 0.04) !important;
  }
  .cid-tO3ZaARX6J .navbar .dropdown > .dropdown-menu .dropdown-item {
    padding: 8px !important;
    line-height: 1 !important;
    margin-bottom: 4px !important;
  }
  .cid-tO3ZaARX6J .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item {
    align-items: center;
    display: flex;
    height: max-content !important;
    min-height: max-content !important;
  }
  .cid-tO3ZaARX6J .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item::after {
    display: inline-block;
    position: static;
    margin-left: 0.5rem;
    margin-top: 0;
    margin-right: 0;
    margin-bottom: 0;
    transition: .3s all;
    transform: rotate(0deg);
  }
  .cid-tO3ZaARX6J .navbar .dropdown > .dropdown-menu .dropdown.open .dropdown-item::after {
    transform: rotate(180deg);
  }
  .cid-tO3ZaARX6J .navbar .dropdown > .dropdown-menu .dropdown-submenu {
    position: static;
    width: 100%;
    max-width: 100% !important;
    transform: translateX(0) !important;
    top: 0;
    left: 0;
    padding: 8px !important;
    border-radius: 1rem;
    background-color: rgba(27, 31, 10, 0.04) !important;
  }
  .cid-tO3ZaARX6J .navbar .dropdown.open > .dropdown-menu {
    display: flex !important;
    flex-direction: column;
    align-items: flex-start;
  }
}
@media (max-width: 575px) {
  .cid-tO3ZaARX6J .navbar-collapse {
    padding: 1rem;
  }
}
.cid-ts5xXzOozO {
  background-image: url("../../../assets/images/fundo-1280x640.webp");
}
.cid-ts5xXzOozO img {
  width: 100%;
  border-radius: 30px;
}
.cid-ts5xXzOozO .mbr-section-title {
  color: #ffffff;
}
.cid-ts5xXzOozO .mbr-section-subtitle {
  background-color: #8364e2;
  padding: 0 1rem;
  border-radius: 5px;
  display: inline-block;
  font-family: 'IBM Plex Sans', sans-serif;
  font-weight: 900;
  color: #ffffff;
}
.cid-ts5xXzOozO .svg-1 {
  position: absolute;
  bottom: 0;
}
.cid-ts5xXzOozO .svg-1 path {
  fill: #1c232b;
}
.cid-ts5xXzOozO .container-fluid {
  max-width: 1200px;
}
.cid-ts5xXzOozO .mbr-arrow {
  z-index: 1;
}
.cid-ts5xXzOozO .mbr-section-btn {
  margin-top: 1.5rem;
}
@media (min-width: 768px) {
  .cid-ts5xXzOozO .container-fluid {
    padding: 0 1.5rem;
  }
}
@media (max-width: 992px) {
  .cid-ts5xXzOozO .imageContainer {
    margin-top: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-ts5xXzOozO .container-fluid {
    padding: 0 1rem;
  }
  .cid-ts5xXzOozO .mbr-section-subtitle {
    margin-bottom: 1.4rem;
  }
}
.cid-tEtGHbKoB6 {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #1c232b;
}
.cid-tEtGHbKoB6 .progress {
  width: 100%;
}
.cid-tEtGHbKoB6 p {
  margin-bottom: 0.4rem;
}
.cid-tEtGHbKoB6 .progressbar-title {
  padding-bottom: 1rem;
}
.cid-tEtGHbKoB6 .title-wrap {
  display: flex;
  justify-content: space-between;
  -webkit-justify-content: space-between;
}
.cid-tEtGHbKoB6 progress {
  height: 10px;
}
.cid-tEtGHbKoB6 .progressbar-number {
  display: inline-block;
  width: 50px;
}
.cid-tEtGHbKoB6 .progress-primary {
  background: rgba(206, 206, 206, 0.9);
  border: none;
  outline: none;
}
.cid-tEtGHbKoB6 .progress-primary::-webkit-progress-bar {
  background: rgba(206, 206, 206, 0.9);
}
.cid-tEtGHbKoB6 .progress_value {
  position: relative;
}
.cid-tEtGHbKoB6 .progress1 .progressbar-number:before,
.cid-tEtGHbKoB6 .progress2 .progressbar-number:before,
.cid-tEtGHbKoB6 .progress3 .progressbar-number:before,
.cid-tEtGHbKoB6 .progress4 .progressbar-number:before,
.cid-tEtGHbKoB6 .progress5 .progressbar-number:before {
  position: absolute;
  right: 15px;
  top: 0;
}
.cid-tEtGHbKoB6 progress[value]::-webkit-progress-bar {
  background: rgba(206, 206, 206, 0.4);
  margin: 0;
}
.cid-tEtGHbKoB6 progress::-webkit-progress-value {
  background: #6917c7;
}
.cid-tEtGHbKoB6 progress[value]::-moz-progress-bar {
  background: #6917c7;
}
.cid-tEtGHbKoB6 progress::-ms-fill {
  background: #6917c7;
}
.cid-tEtGHbKoB6 .progress1 .progressbar-number:before {
  content: "100";
}
.cid-tEtGHbKoB6 .progress2 .progressbar-number:before {
  content: "71";
}
.cid-tEtGHbKoB6 .progress3 .progressbar-number:before {
  content: "53";
}
.cid-tEtGHbKoB6 .progress4 .progressbar-number:before {
  content: "70";
}
.cid-tEtGHbKoB6 .progress5 .progressbar-number:before {
  content: "81";
}
.cid-tEtGHbKoB6 .section-content-text {
  color: #454545;
}
.cid-tEtGHbKoB6 .progressbar-title p,
.cid-tEtGHbKoB6 .progress_value {
  color: #ffffff;
  text-align: center;
}
.cid-tEtGHbKoB6 .mbr-section-subtitle {
  color: #454545;
}
.cid-tEtGHbKoB6 .section-content-title {
  text-align: center;
  color: #ffffff;
}
.cid-tEtGHbKoB6 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tEtGHbKoB6 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tEtGJ1X1jT {
  padding-top: 45px;
  padding-bottom: 30px;
  background-color: #1c232b;
}
.cid-tEtGJ1X1jT .progress {
  width: 100%;
}
.cid-tEtGJ1X1jT p {
  margin-bottom: 0.4rem;
}
.cid-tEtGJ1X1jT .progressbar-title {
  padding-bottom: 1rem;
}
.cid-tEtGJ1X1jT .title-wrap {
  display: flex;
  justify-content: space-between;
  -webkit-justify-content: space-between;
}
.cid-tEtGJ1X1jT progress {
  height: 10px;
}
.cid-tEtGJ1X1jT .progressbar-number {
  display: inline-block;
  width: 50px;
}
.cid-tEtGJ1X1jT .progress-primary {
  background: rgba(206, 206, 206, 0.9);
  border: none;
  outline: none;
}
.cid-tEtGJ1X1jT .progress-primary::-webkit-progress-bar {
  background: rgba(206, 206, 206, 0.9);
}
.cid-tEtGJ1X1jT .progress_value {
  position: relative;
}
.cid-tEtGJ1X1jT .progress1 .progressbar-number:before,
.cid-tEtGJ1X1jT .progress2 .progressbar-number:before,
.cid-tEtGJ1X1jT .progress3 .progressbar-number:before,
.cid-tEtGJ1X1jT .progress4 .progressbar-number:before,
.cid-tEtGJ1X1jT .progress5 .progressbar-number:before {
  position: absolute;
  right: 15px;
  top: 0;
}
.cid-tEtGJ1X1jT progress[value]::-webkit-progress-bar {
  background: rgba(206, 206, 206, 0.4);
  margin: 0;
}
.cid-tEtGJ1X1jT progress::-webkit-progress-value {
  background: #6917c7;
}
.cid-tEtGJ1X1jT progress[value]::-moz-progress-bar {
  background: #6917c7;
}
.cid-tEtGJ1X1jT progress::-ms-fill {
  background: #6917c7;
}
.cid-tEtGJ1X1jT .progress1 .progressbar-number:before {
  content: "100";
}
.cid-tEtGJ1X1jT .progress2 .progressbar-number:before {
  content: "71";
}
.cid-tEtGJ1X1jT .progress3 .progressbar-number:before {
  content: "53";
}
.cid-tEtGJ1X1jT .progress4 .progressbar-number:before {
  content: "70";
}
.cid-tEtGJ1X1jT .progress5 .progressbar-number:before {
  content: "81";
}
.cid-tEtGJ1X1jT .section-content-text {
  color: #454545;
}
.cid-tEtGJ1X1jT .progressbar-title p,
.cid-tEtGJ1X1jT .progress_value {
  color: #ffffff;
  text-align: center;
}
.cid-tEtGJ1X1jT .mbr-section-subtitle {
  color: #454545;
}
.cid-tEtGJ1X1jT .section-content-title {
  text-align: center;
  color: #ffffff;
}
.cid-tEtGJ1X1jT .mbr-fallback-image.disabled {
  display: none;
}
.cid-tEtGJ1X1jT .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tv20JXf5Ez {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #282b2f;
}
.cid-tv20JXf5Ez svg {
  width: 100%;
  position: absolute;
  left: 0;
  top: -48px;
  height: 50px;
  transform-origin: bottom;
  animation: 1.5s ease-in-out infinite alternate svg2;
}
.cid-tv20JXf5Ez svg .st0 {
  fill: #282b2f;
}
@media (max-width: 992px) {
  .cid-tv20JXf5Ez svg {
    width: 1000px;
  }
}
@keyframes svg2 {
  from {
    transform: scaleX(1) scaleY(1.1) rotate(0deg);
  }
  to {
    transform: scaleX(1) scaleY(1.6) rotate(0deg);
  }
}
.cid-tv20JXf5Ez .list {
  list-style: none;
  padding-left: 0;
  color: #ffffff;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-tv20JXf5Ez .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tv20JXf5Ez .list {
    margin-bottom: 0rem;
  }
}
@media (max-width: 767px) {
  .cid-tv20JXf5Ez .row {
    text-align: center;
  }
}
@media (max-width: 991px) {
  .cid-tv20JXf5Ez div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-tv20JXf5Ez .copyright {
  color: #ffffff;
  text-align: center;
}
.cid-tO3ZaARX6J {
  z-index: 1000;
  width: 100%;
  position: relative;
}
.cid-tO3ZaARX6J .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;
}
@media (max-width: 767px) {
  .cid-tO3ZaARX6J .navbar-toggler {
    transform: scale(0.8);
  }
}
.cid-tO3ZaARX6J .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tO3ZaARX6J .navbar-brand img {
  max-width: 100%;
  max-height: 100%;
  border-radius: 0px !important;
}
.cid-tO3ZaARX6J .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tO3ZaARX6J .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tO3ZaARX6J .navbar-nav {
  margin: auto;
  margin-left: 0;
  margin-left: auto;
}
.cid-tO3ZaARX6J .navbar-nav .nav-item {
  padding: 0 !important;
  transition: .3s all !important;
}
.cid-tO3ZaARX6J .navbar-nav .nav-item .nav-link {
  padding: 16px !important;
  margin: 0 !important;
  border-radius: 1rem !important;
  transition: .3s all !important;
}
.cid-tO3ZaARX6J .navbar-nav .nav-item .nav-link:hover {
  background-color: rgba(27, 31, 10, 0.06);
}
.cid-tO3ZaARX6J .navbar-nav .open .nav-link::after {
  transform: rotate(180deg);
}
@media (min-width: 992px) {
  .cid-tO3ZaARX6J .navbar-nav .open .nav-link::before {
    content: "";
    width: 100%;
    height: 20px;
    top: 100%;
    background: transparent;
    position: absolute;
  }
}
.cid-tO3ZaARX6J .navbar-nav .dropdown-item {
  padding: 12px !important;
  border-radius: 0.5rem !important;
  margin: 0 8px !important;
  transition: .3s all !important;
}
.cid-tO3ZaARX6J .navbar-nav .dropdown-item:hover {
  background-color: rgba(27, 31, 10, 0.06);
}
@media (min-width: 992px) {
  .cid-tO3ZaARX6J .navbar-nav {
    padding-left: 1.5rem;
  }
}
.cid-tO3ZaARX6J .nav-link {
  width: fit-content;
  position: relative;
}
.cid-tO3ZaARX6J .navbar-logo {
  padding-left: 2rem;
  margin: 0 !important;
}
@media (max-width: 767px) {
  .cid-tO3ZaARX6J .navbar-logo {
    padding-left: 1rem;
  }
}
.cid-tO3ZaARX6J .navbar-caption {
  padding-left: 1rem;
  padding-right: .5rem;
}
@media (max-width: 767px) {
  .cid-tO3ZaARX6J .nav-dropdown {
    padding-bottom: 0.5rem;
  }
}
.cid-tO3ZaARX6J .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  transition: .3s all;
}
.cid-tO3ZaARX6J .container {
  display: flex;
  height: 90px;
  padding: 0.5rem 0.6rem;
  flex-wrap: nowrap;
  background: rgba(64, 63, 131, 0.8) !important;
  left: 0;
  right: 0;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: flex-end;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 100vw;
  margin-top: 1rem;
  background-color: #403f83;
  box-shadow: 0 30px 60px 0 rgba(27, 31, 10, 0.08);
}
@media (max-width: 992px) {
  .cid-tO3ZaARX6J .container {
    padding-right: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-tO3ZaARX6J .container {
    width: 95%;
    height: 56px !important;
    padding-right: 1rem;
    margin-top: 0rem;
  }
}
.cid-tO3ZaARX6J .iconfont-wrapper {
  color: #2469ea !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tO3ZaARX6J .dropdown-menu {
  flex-wrap: wrap;
  flex-direction: column;
  max-width: 100%;
  padding: 12px 4px !important;
  border-radius: 1.5rem;
  transition: .3s all !important;
  min-width: auto;
  background: #403f83;
  background: rgba(64, 63, 131, 0.8) !important;
}
.cid-tO3ZaARX6J .nav-item:focus,
.cid-tO3ZaARX6J .nav-link:focus {
  outline: none;
}
.cid-tO3ZaARX6J .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tO3ZaARX6J .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tO3ZaARX6J .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tO3ZaARX6J .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tO3ZaARX6J .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tO3ZaARX6J .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tO3ZaARX6J .navbar {
  min-height: 90px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: transparent !important;
  padding: 0 !important;
  border: none !important;
  box-shadow: none !important;
  border-radius: 0 !important;
}
.cid-tO3ZaARX6J .navbar.opened {
  transition: all 0.3s;
}
.cid-tO3ZaARX6J .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tO3ZaARX6J .navbar .navbar-logo img {
  width: auto;
}
.cid-tO3ZaARX6J .navbar .navbar-collapse {
  z-index: 1;
  justify-content: flex-end;
}
.cid-tO3ZaARX6J .navbar.collapsed {
  justify-content: center;
}
.cid-tO3ZaARX6J .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tO3ZaARX6J .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tO3ZaARX6J .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 2.7rem);
  }
}
.cid-tO3ZaARX6J .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tO3ZaARX6J .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tO3ZaARX6J .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-tO3ZaARX6J .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tO3ZaARX6J .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tO3ZaARX6J .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 767px) {
  .cid-tO3ZaARX6J .navbar {
    min-height: 72px;
  }
  .cid-tO3ZaARX6J .navbar .navbar-logo img {
    height: 2rem !important;
  }
}
@media (max-width: 991px) {
  .cid-tO3ZaARX6J .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tO3ZaARX6J .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tO3ZaARX6J .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tO3ZaARX6J .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tO3ZaARX6J .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-tO3ZaARX6J .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tO3ZaARX6J .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 10px;
  }
  .cid-tO3ZaARX6J .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tO3ZaARX6J .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tO3ZaARX6J .navbar.navbar-short .navbar-logo img {
  height: 2rem;
}
.cid-tO3ZaARX6J .dropdown-item.active,
.cid-tO3ZaARX6J .dropdown-item:active {
  background-color: transparent;
}
.cid-tO3ZaARX6J .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tO3ZaARX6J .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tO3ZaARX6J .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tO3ZaARX6J .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #403f83;
}
.cid-tO3ZaARX6J .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 105%;
  transform: none;
  top: -12px;
}
.cid-tO3ZaARX6J .navbar .dropdown.open > .dropdown-menu {
  display: flex;
}
.cid-tO3ZaARX6J ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tO3ZaARX6J .navbar-buttons {
  text-align: center;
  min-width: 140px;
}
@media (max-width: 992px) {
  .cid-tO3ZaARX6J .navbar-buttons {
    text-align: left;
  }
}
.cid-tO3ZaARX6J button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tO3ZaARX6J button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-tO3ZaARX6J button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tO3ZaARX6J button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tO3ZaARX6J button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tO3ZaARX6J button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tO3ZaARX6J nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tO3ZaARX6J nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tO3ZaARX6J nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tO3ZaARX6J nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tO3ZaARX6J .navbar-dropdown {
  padding: 0 1rem;
}
.cid-tO3ZaARX6J a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tO3ZaARX6J .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media (max-width: 992px) {
  .cid-tO3ZaARX6J .icons-menu {
    justify-content: flex-start;
    margin-bottom: .5rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tO3ZaARX6J .navbar {
    height: 70px;
  }
  .cid-tO3ZaARX6J .navbar.opened {
    height: auto;
  }
  .cid-tO3ZaARX6J .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tO3ZaARX6J .navbar .dropdown > .dropdown-menu {
  display: none;
  width: max-content;
  max-width: 500px !important;
  transform: translateX(-50%);
  top: calc(100% + 20px);
  left: 50%;
}
.cid-tO3ZaARX6J .navbar .dropdown > .dropdown-menu .dropdown-item {
  line-height: 1 !important;
}
.cid-tO3ZaARX6J .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item {
  align-items: center;
  display: flex;
  height: max-content !important;
  min-height: max-content !important;
}
.cid-tO3ZaARX6J .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item::after {
  display: inline-block;
  position: static;
  margin-left: 0.5rem;
  margin-top: 0;
  margin-right: 0;
  margin-bottom: 0;
  transition: .3s all;
  transform: rotate(-90deg);
}
.cid-tO3ZaARX6J .navbar .dropdown > .dropdown-menu .dropdown.open .dropdown-item::after {
  transform: rotate(0deg);
}
.cid-tO3ZaARX6J .mbr-section-btn {
  margin: -0.6rem -0.6rem;
}
.cid-tO3ZaARX6J .navbar-toggler {
  margin-left: 12px;
  margin-right: 8px;
  order: 1000;
}
@media (max-width: 991px) {
  .cid-tO3ZaARX6J .navbar-brand {
    margin-right: auto;
  }
  .cid-tO3ZaARX6J .navbar-collapse {
    z-index: -1 !important;
    position: absolute;
    top: 110%;
    left: 0;
    width: 100%;
    padding: 1rem;
    border-radius: 1.5rem;
    background: #403f83;
    opacity: 1;
    border-color: rgba(64, 63, 131, 0.8) !important;
    background: rgba(64, 63, 131, 0.8) !important;
    backdrop-filter: blur(8px);
  }
  .cid-tO3ZaARX6J .navbar-nav .nav-item .nav-link::after {
    margin-left: 10px;
  }
  .cid-tO3ZaARX6J .navbar-nav .dropdown-item:hover {
    background-color: rgba(27, 31, 10, 0.06);
  }
  .cid-tO3ZaARX6J .navbar .dropdown > .dropdown-menu {
    max-width: 100% !important;
    transform: translateX(0);
    top: 10px;
    left: 0;
    padding: 8px !important;
    border-radius: 1rem;
    background-color: rgba(27, 31, 10, 0.04) !important;
  }
  .cid-tO3ZaARX6J .navbar .dropdown > .dropdown-menu .dropdown-item {
    padding: 8px !important;
    line-height: 1 !important;
    margin-bottom: 4px !important;
  }
  .cid-tO3ZaARX6J .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item {
    align-items: center;
    display: flex;
    height: max-content !important;
    min-height: max-content !important;
  }
  .cid-tO3ZaARX6J .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item::after {
    display: inline-block;
    position: static;
    margin-left: 0.5rem;
    margin-top: 0;
    margin-right: 0;
    margin-bottom: 0;
    transition: .3s all;
    transform: rotate(0deg);
  }
  .cid-tO3ZaARX6J .navbar .dropdown > .dropdown-menu .dropdown.open .dropdown-item::after {
    transform: rotate(180deg);
  }
  .cid-tO3ZaARX6J .navbar .dropdown > .dropdown-menu .dropdown-submenu {
    position: static;
    width: 100%;
    max-width: 100% !important;
    transform: translateX(0) !important;
    top: 0;
    left: 0;
    padding: 8px !important;
    border-radius: 1rem;
    background-color: rgba(27, 31, 10, 0.04) !important;
  }
  .cid-tO3ZaARX6J .navbar .dropdown.open > .dropdown-menu {
    display: flex !important;
    flex-direction: column;
    align-items: flex-start;
  }
}
@media (max-width: 575px) {
  .cid-tO3ZaARX6J .navbar-collapse {
    padding: 1rem;
  }
}
.cid-tv20oBSlzy {
  background-image: url("../../../assets/images/minecraftdungeons-1920x1080.webp");
}
.cid-tv20oBSlzy img {
  width: 100%;
  border-radius: 30px;
}
.cid-tv20oBSlzy .mbr-section-title {
  color: #ffffff;
}
.cid-tv20oBSlzy .mbr-section-subtitle {
  background-color: #8364e2;
  padding: 0 1rem;
  border-radius: 5px;
  display: inline-block;
  font-family: 'IBM Plex Sans', sans-serif;
  font-weight: 900;
  color: #ffffff;
}
.cid-tv20oBSlzy .svg-1 {
  position: absolute;
  bottom: 0;
}
.cid-tv20oBSlzy .svg-1 path {
  fill: #212428;
}
.cid-tv20oBSlzy .container-fluid {
  max-width: 1200px;
}
.cid-tv20oBSlzy .mbr-arrow {
  z-index: 1;
}
.cid-tv20oBSlzy .mbr-section-btn {
  margin-top: 1.5rem;
}
@media (min-width: 768px) {
  .cid-tv20oBSlzy .container-fluid {
    padding: 0 1.5rem;
  }
}
@media (max-width: 992px) {
  .cid-tv20oBSlzy .imageContainer {
    margin-top: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-tv20oBSlzy .container-fluid {
    padding: 0 1rem;
  }
  .cid-tv20oBSlzy .mbr-section-subtitle {
    margin-bottom: 1.4rem;
  }
}
.cid-tv20pbefUn {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #212428;
}
.cid-tv20pbefUn .item-img {
  margin-bottom: 1rem;
}
.cid-tv20pbefUn .item-img img {
  border-radius: 20px;
}
.cid-tv20pbefUn .item-wrapper {
  position: relative;
  background: #1e2024;
  border-radius: 20px;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
  padding: 1.5rem;
  box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.3);
  padding-top: 2rem;
  padding-bottom: 3rem;
}
.cid-tv20pbefUn .face-wrap {
  position: absolute;
  left: 1.5rem;
  top: 1rem;
  width: 70px;
  height: 70px;
  border-radius: 50%;
}
.cid-tv20pbefUn .face-wrap:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #8364e2;
  border-radius: 50%;
  z-index: 1;
  transition: all 0.3s;
  transform: scale(0.99);
}
.cid-tv20pbefUn .face-wrap .mbr-iconfont {
  position: absolute;
  right: 0;
  bottom: 0;
  font-size: 0.8rem;
  color: #ffffff;
  background: #8364e2;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 3;
}
.cid-tv20pbefUn .face-wrap:hover .face {
  transform: scale(0.9);
}
.cid-tv20pbefUn .face-wrap:hover:before {
  transform: scale(1.1);
}
.cid-tv20pbefUn .face {
  object-fit: cover;
  position: relative;
  transition: all 0.3s;
  border-radius: 50%;
  z-index: 2;
}
.cid-tv20pbefUn .item-img img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}
.cid-tv20pbefUn .item:focus,
.cid-tv20pbefUn span:focus {
  outline: none;
}
.cid-tv20pbefUn .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-tv20pbefUn .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tv20pbefUn .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-tv20pbefUn .mbr-text,
.cid-tv20pbefUn .mbr-section-btn {
  text-align: center;
  color: #ffffff;
}
.cid-tv20pbefUn .item-title {
  text-align: center;
  color: #ffffff;
}
.cid-tv20pbefUn .item-subtitle {
  text-align: left;
  color: #ffffff;
}
.cid-tv20pbefUn .mbr-link {
  color: #8364e2;
}
.cid-tv20pbefUn .mbr-section-subtitle {
  color: #ffffff;
  text-align: center;
}
.cid-tzI3iEgySe {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #212428;
}
.cid-tzI3iEgySe .mbr-iconfont {
  display: block;
  font-size: 3rem;
  color: #8364e2;
  margin-bottom: 1rem;
}
.cid-tzI3iEgySe .main-title {
  position: relative;
  width: fit-content;
  display: inline-block;
  color: #160830;
}
.cid-tzI3iEgySe .main-title:before {
  content: "";
  bottom: -1rem;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 2px;
  background: currentColor;
  position: absolute;
}
.cid-tzI3iEgySe .card-wrapper {
  transition: all 0.3s;
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 2.5rem 2rem;
  background: #282b2f;
  border-radius: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 2rem;
  box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.3);
}
.cid-tzI3iEgySe .card-wrapper:hover {
  background: transparent;
}
.cid-tzI3iEgySe .card-title,
.cid-tzI3iEgySe .card-box {
  color: #ffffff;
}
.cid-tzI3iEgySe .main-title,
.cid-tzI3iEgySe .title-col {
  text-align: center;
  color: #ffffff;
}
.cid-tzI3iEgySe .card-text {
  color: #bbbbbb;
}
.cid-tzI3iEgySe .mbr-fallback-image.disabled {
  display: none;
}
.cid-tzI3iEgySe .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tv20qcjrRe {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #212428;
}
.cid-tv20qcjrRe .progress {
  width: 100%;
}
.cid-tv20qcjrRe p {
  margin-bottom: 0.4rem;
}
.cid-tv20qcjrRe .progressbar-title {
  padding-bottom: 1rem;
}
.cid-tv20qcjrRe .title-wrap {
  display: flex;
  justify-content: space-between;
  -webkit-justify-content: space-between;
}
.cid-tv20qcjrRe progress {
  height: 10px;
}
.cid-tv20qcjrRe .progressbar-number {
  display: inline-block;
  width: 50px;
}
.cid-tv20qcjrRe .progress-primary {
  background: rgba(206, 206, 206, 0.9);
  border: none;
  outline: none;
}
.cid-tv20qcjrRe .progress-primary::-webkit-progress-bar {
  background: rgba(206, 206, 206, 0.9);
}
.cid-tv20qcjrRe .progress_value {
  position: relative;
}
.cid-tv20qcjrRe .progress1 .progressbar-number:before,
.cid-tv20qcjrRe .progress2 .progressbar-number:before,
.cid-tv20qcjrRe .progress3 .progressbar-number:before,
.cid-tv20qcjrRe .progress4 .progressbar-number:before,
.cid-tv20qcjrRe .progress5 .progressbar-number:before {
  position: absolute;
  right: 15px;
  top: 0;
}
.cid-tv20qcjrRe progress[value]::-webkit-progress-bar {
  background: rgba(206, 206, 206, 0.4);
  margin: 0;
}
.cid-tv20qcjrRe progress::-webkit-progress-value {
  background: #6917c7;
}
.cid-tv20qcjrRe progress[value]::-moz-progress-bar {
  background: #6917c7;
}
.cid-tv20qcjrRe progress::-ms-fill {
  background: #6917c7;
}
.cid-tv20qcjrRe .progress1 .progressbar-number:before {
  content: "100";
}
.cid-tv20qcjrRe .progress2 .progressbar-number:before {
  content: "71";
}
.cid-tv20qcjrRe .progress3 .progressbar-number:before {
  content: "53";
}
.cid-tv20qcjrRe .progress4 .progressbar-number:before {
  content: "70";
}
.cid-tv20qcjrRe .progress5 .progressbar-number:before {
  content: "81";
}
.cid-tv20qcjrRe .section-content-text {
  color: #454545;
}
.cid-tv20qcjrRe .progressbar-title p,
.cid-tv20qcjrRe .progress_value {
  color: #ffffff;
  text-align: center;
}
.cid-tv20qcjrRe .mbr-section-subtitle {
  color: #454545;
}
.cid-tv20qcjrRe .section-content-title {
  text-align: center;
  color: #ffffff;
}
.cid-tv20qcjrRe .mbr-fallback-image.disabled {
  display: none;
}
.cid-tv20qcjrRe .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tEtmzdIr4S {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #212428;
}
.cid-tEtmzdIr4S .main-title {
  position: relative;
  width: fit-content;
  display: inline-block;
  color: #160830;
}
.cid-tEtmzdIr4S .main-title:before {
  content: "";
  bottom: -1rem;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 2px;
  background: currentColor;
  position: absolute;
}
.cid-tEtmzdIr4S img {
  width: 80px;
  margin: auto;
}
.cid-tEtmzdIr4S .card-wrapper {
  transition: all 0.3s;
  border: 2px solid #5b3486;
  padding: 2rem 0;
  background: #5b3486;
  border-radius: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 2rem;
}
.cid-tEtmzdIr4S .card-wrapper:hover {
  background: transparent;
}
.cid-tEtmzdIr4S .card-title,
.cid-tEtmzdIr4S .card-box {
  color: #ffffff;
  text-align: center;
}
.cid-tEtmzdIr4S .main-title,
.cid-tEtmzdIr4S .title-col {
  text-align: center;
  color: #ffffff;
}
.cid-tEtmzdIr4S .card-text {
  color: #bbbbbb;
}
.cid-tEtmzdIr4S .mbr-fallback-image.disabled {
  display: none;
}
.cid-tEtmzdIr4S .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tv20qSkhWd {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #212428;
}
.cid-tv20qSkhWd .progress {
  width: 100%;
}
.cid-tv20qSkhWd p {
  margin-bottom: 0.4rem;
}
.cid-tv20qSkhWd .progressbar-title {
  padding-bottom: 1rem;
}
.cid-tv20qSkhWd .title-wrap {
  display: flex;
  justify-content: space-between;
  -webkit-justify-content: space-between;
}
.cid-tv20qSkhWd progress {
  height: 10px;
}
.cid-tv20qSkhWd .progressbar-number {
  display: inline-block;
  width: 50px;
}
.cid-tv20qSkhWd .progress-primary {
  background: rgba(206, 206, 206, 0.9);
  border: none;
  outline: none;
}
.cid-tv20qSkhWd .progress-primary::-webkit-progress-bar {
  background: rgba(206, 206, 206, 0.9);
}
.cid-tv20qSkhWd .progress_value {
  position: relative;
}
.cid-tv20qSkhWd .progress1 .progressbar-number:before,
.cid-tv20qSkhWd .progress2 .progressbar-number:before,
.cid-tv20qSkhWd .progress3 .progressbar-number:before,
.cid-tv20qSkhWd .progress4 .progressbar-number:before,
.cid-tv20qSkhWd .progress5 .progressbar-number:before {
  position: absolute;
  right: 15px;
  top: 0;
}
.cid-tv20qSkhWd progress[value]::-webkit-progress-bar {
  background: rgba(206, 206, 206, 0.4);
  margin: 0;
}
.cid-tv20qSkhWd progress::-webkit-progress-value {
  background: #6917c7;
}
.cid-tv20qSkhWd progress[value]::-moz-progress-bar {
  background: #6917c7;
}
.cid-tv20qSkhWd progress::-ms-fill {
  background: #6917c7;
}
.cid-tv20qSkhWd .progress1 .progressbar-number:before {
  content: "100";
}
.cid-tv20qSkhWd .progress2 .progressbar-number:before {
  content: "71";
}
.cid-tv20qSkhWd .progress3 .progressbar-number:before {
  content: "53";
}
.cid-tv20qSkhWd .progress4 .progressbar-number:before {
  content: "70";
}
.cid-tv20qSkhWd .progress5 .progressbar-number:before {
  content: "81";
}
.cid-tv20qSkhWd .section-content-text {
  color: #454545;
}
.cid-tv20qSkhWd .progressbar-title p,
.cid-tv20qSkhWd .progress_value {
  color: #ffffff;
  text-align: center;
}
.cid-tv20qSkhWd .mbr-section-subtitle {
  color: #454545;
}
.cid-tv20qSkhWd .section-content-title {
  text-align: center;
  color: #ffffff;
}
.cid-tv20qSkhWd .mbr-fallback-image.disabled {
  display: none;
}
.cid-tv20qSkhWd .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tv20r5wAv2 {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #212428;
}
.cid-tv20r5wAv2 .title-section {
  padding: 0px;
  margin-bottom: 20px;
}
@media (min-width: 992px) {
  .cid-tv20r5wAv2 .title-section {
    padding: 0 90px;
    margin-bottom: 40px;
  }
}
.cid-tv20r5wAv2 .btn {
  display: flex;
}
.cid-tv20r5wAv2 .card {
  background-color: transparent;
  border: 2px solid #8364e2;
  border-radius: 20px;
}
.cid-tv20r5wAv2 .card-body {
  padding: 40px 55px 30px 55px;
}
.cid-tv20r5wAv2 .col-img {
  width: 35px;
  height: 35px;
  flex: 0 0 35px;
  margin-right: 22px;
}
.cid-tv20r5wAv2 .card-title {
  flex: 1 1 auto;
  width: auto;
}
.cid-tv20r5wAv2 .price {
  text-align: center;
  color: #7f6cc0;
}
.cid-tv20r5wAv2 .title-section .mbr-section-subtitle {
  text-align: left;
}
.cid-tv20r5wAv2 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tv20r5wAv2 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tv20r5wAv2 .text1 {
  text-align: left;
  color: #ffffff;
}
.cid-tv20r5wAv2 .mbr-section-subtitle {
  color: #ffffff;
  text-align: left;
}
.cid-tv20r5wAv2 .title-section .mbr-section-title {
  color: #ffffff;
  text-align: right;
}
.cid-tv20rtKiq6 {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #212428;
}
.cid-tv20rtKiq6 .title-section {
  padding: 0px;
  margin-bottom: 20px;
}
@media (min-width: 992px) {
  .cid-tv20rtKiq6 .title-section {
    padding: 0 90px;
    margin-bottom: 40px;
  }
}
.cid-tv20rtKiq6 .btn {
  display: flex;
}
.cid-tv20rtKiq6 .card {
  background-color: transparent;
  border: 2px solid #8364e2;
  border-radius: 20px;
}
.cid-tv20rtKiq6 .card-body {
  padding: 40px 55px 30px 55px;
}
.cid-tv20rtKiq6 .col-img {
  width: 35px;
  height: 35px;
  flex: 0 0 35px;
  margin-right: 22px;
}
.cid-tv20rtKiq6 .card-title {
  flex: 1 1 auto;
  width: auto;
}
.cid-tv20rtKiq6 .price {
  text-align: center;
  color: #7f6cc0;
}
.cid-tv20rtKiq6 .title-section .mbr-section-subtitle {
  text-align: left;
}
.cid-tv20rtKiq6 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tv20rtKiq6 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tv20rtKiq6 .text1 {
  text-align: left;
  color: #ffffff;
}
.cid-tv20rtKiq6 .mbr-section-subtitle {
  color: #ffffff;
}
.cid-tv20rtKiq6 .title-section .mbr-section-title {
  color: #ffffff;
  text-align: right;
}
.cid-tv20rAu495 {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #212428;
}
.cid-tv20rAu495 .title-section {
  padding: 0px;
  margin-bottom: 20px;
}
@media (min-width: 992px) {
  .cid-tv20rAu495 .title-section {
    padding: 0 90px;
    margin-bottom: 40px;
  }
}
.cid-tv20rAu495 .btn {
  display: flex;
}
.cid-tv20rAu495 .card {
  background-color: transparent;
  border: 2px solid #db3eb1;
  border-radius: 20px;
}
.cid-tv20rAu495 .card-body {
  padding: 40px 55px 30px 55px;
}
.cid-tv20rAu495 .col-img {
  width: 35px;
  height: 35px;
  flex: 0 0 35px;
  margin-right: 22px;
}
.cid-tv20rAu495 .card-title {
  flex: 1 1 auto;
  width: auto;
}
.cid-tv20rAu495 .price {
  text-align: center;
  color: #7f6cc0;
}
.cid-tv20rAu495 .title-section .mbr-section-subtitle {
  text-align: left;
}
.cid-tv20rAu495 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tv20rAu495 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tv20rAu495 .text1 {
  text-align: left;
  color: #ffffff;
}
.cid-tv20rAu495 .mbr-section-subtitle {
  color: #ffffff;
}
.cid-tv20rAu495 .title-section .mbr-section-title {
  color: #ffffff;
  text-align: right;
}
.cid-tv20rIJUV7 {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #212428;
}
.cid-tv20rIJUV7 .title-section {
  padding: 0px;
  margin-bottom: 20px;
}
@media (min-width: 992px) {
  .cid-tv20rIJUV7 .title-section {
    padding: 0 90px;
    margin-bottom: 40px;
  }
}
.cid-tv20rIJUV7 .btn {
  display: flex;
}
.cid-tv20rIJUV7 .card {
  background-color: transparent;
  border: 2px solid #8364e2;
  border-radius: 20px;
}
.cid-tv20rIJUV7 .card-body {
  padding: 40px 55px 30px 55px;
}
.cid-tv20rIJUV7 .col-img {
  width: 35px;
  height: 35px;
  flex: 0 0 35px;
  margin-right: 22px;
}
.cid-tv20rIJUV7 .card-title {
  flex: 1 1 auto;
  width: auto;
}
.cid-tv20rIJUV7 .price {
  text-align: center;
  color: #7f6cc0;
}
.cid-tv20rIJUV7 .title-section .mbr-section-subtitle {
  text-align: left;
}
.cid-tv20rIJUV7 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tv20rIJUV7 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tv20rIJUV7 .text1 {
  text-align: left;
  color: #ffffff;
}
.cid-tv20rIJUV7 .mbr-section-subtitle {
  color: #ffffff;
}
.cid-tv20rIJUV7 .title-section .mbr-section-title {
  color: #ffffff;
  text-align: right;
}
.cid-tv20rSkXnJ {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #212428;
}
.cid-tv20rSkXnJ .title-section {
  padding: 0px;
  margin-bottom: 20px;
}
@media (min-width: 992px) {
  .cid-tv20rSkXnJ .title-section {
    padding: 0 90px;
    margin-bottom: 40px;
  }
}
.cid-tv20rSkXnJ .btn {
  display: flex;
}
.cid-tv20rSkXnJ .card {
  background-color: transparent;
  border: 2px solid #8364e2;
  border-radius: 20px;
}
.cid-tv20rSkXnJ .card-body {
  padding: 40px 55px 30px 55px;
}
.cid-tv20rSkXnJ .col-img {
  width: 35px;
  height: 35px;
  flex: 0 0 35px;
  margin-right: 22px;
}
.cid-tv20rSkXnJ .card-title {
  flex: 1 1 auto;
  width: auto;
}
.cid-tv20rSkXnJ .price {
  text-align: center;
  color: #7f6cc0;
}
.cid-tv20rSkXnJ .title-section .mbr-section-subtitle {
  text-align: left;
}
.cid-tv20rSkXnJ .mbr-fallback-image.disabled {
  display: none;
}
.cid-tv20rSkXnJ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tv20rSkXnJ .text1 {
  text-align: left;
  color: #ffffff;
}
.cid-tv20rSkXnJ .mbr-section-subtitle {
  color: #ffffff;
}
.cid-tv20rSkXnJ .title-section .mbr-section-title {
  color: #ffffff;
  text-align: right;
}
.cid-tv22pCf99F {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #212428;
}
.cid-tv22pCf99F .title-section {
  padding: 0px;
  margin-bottom: 20px;
}
@media (min-width: 992px) {
  .cid-tv22pCf99F .title-section {
    padding: 0 90px;
    margin-bottom: 40px;
  }
}
.cid-tv22pCf99F .btn {
  display: flex;
}
.cid-tv22pCf99F .card {
  background-color: transparent;
  border: 2px solid #8364e2;
  border-radius: 20px;
}
.cid-tv22pCf99F .card-body {
  padding: 40px 55px 30px 55px;
}
.cid-tv22pCf99F .col-img {
  width: 35px;
  height: 35px;
  flex: 0 0 35px;
  margin-right: 22px;
}
.cid-tv22pCf99F .card-title {
  flex: 1 1 auto;
  width: auto;
}
.cid-tv22pCf99F .price {
  text-align: center;
  color: #7f6cc0;
}
.cid-tv22pCf99F .title-section .mbr-section-subtitle {
  text-align: left;
}
.cid-tv22pCf99F .mbr-fallback-image.disabled {
  display: none;
}
.cid-tv22pCf99F .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tv22pCf99F .text1 {
  text-align: left;
  color: #ffffff;
}
.cid-tv22pCf99F .mbr-section-subtitle {
  color: #ffffff;
}
.cid-tv22pCf99F .title-section .mbr-section-title {
  color: #ffffff;
  text-align: right;
}
.cid-tv20skWV7F {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #212428;
}
.cid-tv20skWV7F .progress {
  width: 100%;
}
.cid-tv20skWV7F p {
  margin-bottom: 0.4rem;
}
.cid-tv20skWV7F .progressbar-title {
  padding-bottom: 1rem;
}
.cid-tv20skWV7F .title-wrap {
  display: flex;
  justify-content: space-between;
  -webkit-justify-content: space-between;
}
.cid-tv20skWV7F progress {
  height: 10px;
}
.cid-tv20skWV7F .progressbar-number {
  display: inline-block;
  width: 50px;
}
.cid-tv20skWV7F .progress-primary {
  background: rgba(206, 206, 206, 0.9);
  border: none;
  outline: none;
}
.cid-tv20skWV7F .progress-primary::-webkit-progress-bar {
  background: rgba(206, 206, 206, 0.9);
}
.cid-tv20skWV7F .progress_value {
  position: relative;
}
.cid-tv20skWV7F .progress1 .progressbar-number:before,
.cid-tv20skWV7F .progress2 .progressbar-number:before,
.cid-tv20skWV7F .progress3 .progressbar-number:before,
.cid-tv20skWV7F .progress4 .progressbar-number:before,
.cid-tv20skWV7F .progress5 .progressbar-number:before {
  position: absolute;
  right: 15px;
  top: 0;
}
.cid-tv20skWV7F progress[value]::-webkit-progress-bar {
  background: rgba(206, 206, 206, 0.4);
  margin: 0;
}
.cid-tv20skWV7F progress::-webkit-progress-value {
  background: #6917c7;
}
.cid-tv20skWV7F progress[value]::-moz-progress-bar {
  background: #6917c7;
}
.cid-tv20skWV7F progress::-ms-fill {
  background: #6917c7;
}
.cid-tv20skWV7F .progress1 .progressbar-number:before {
  content: "100";
}
.cid-tv20skWV7F .progress2 .progressbar-number:before {
  content: "71";
}
.cid-tv20skWV7F .progress3 .progressbar-number:before {
  content: "53";
}
.cid-tv20skWV7F .progress4 .progressbar-number:before {
  content: "70";
}
.cid-tv20skWV7F .progress5 .progressbar-number:before {
  content: "81";
}
.cid-tv20skWV7F .section-content-text {
  color: #454545;
}
.cid-tv20skWV7F .progressbar-title p,
.cid-tv20skWV7F .progress_value {
  color: #ffffff;
  text-align: center;
}
.cid-tv20skWV7F .mbr-section-subtitle {
  color: #454545;
}
.cid-tv20skWV7F .section-content-title {
  text-align: center;
  color: #ffffff;
}
.cid-tv20skWV7F .mbr-fallback-image.disabled {
  display: none;
}
.cid-tv20skWV7F .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tv20stQZD3 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #212428;
}
.cid-tv20stQZD3 .title-section {
  padding: 0px;
  margin-bottom: 20px;
}
@media (min-width: 992px) {
  .cid-tv20stQZD3 .title-section {
    padding: 0 90px;
    margin-bottom: 40px;
  }
}
.cid-tv20stQZD3 .btn {
  display: flex;
}
.cid-tv20stQZD3 .card {
  background-color: transparent;
  border: 2px solid #db3eb1;
  border-radius: 20px;
  box-shadow: 0px 10px 20px 0px rgba(29, 29, 27, 0.2);
}
.cid-tv20stQZD3 .card-body {
  padding: 40px 55px 30px 55px;
}
.cid-tv20stQZD3 .col-img {
  width: 35px;
  height: 35px;
  flex: 0 0 35px;
  margin-right: 22px;
}
.cid-tv20stQZD3 .card-title {
  flex: 1 1 auto;
  width: auto;
}
.cid-tv20stQZD3 .price {
  text-align: center;
  color: #7f6cc0;
}
.cid-tv20stQZD3 .title-section .mbr-section-subtitle {
  text-align: center;
}
.cid-tv20stQZD3 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tv20stQZD3 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tv20stQZD3 .text1 {
  text-align: left;
  color: #ffffff;
}
.cid-tv20stQZD3 .mbr-section-subtitle {
  color: #ffffff;
}
.cid-tv20stQZD3 .title-section .mbr-section-title {
  color: #ffffff;
  text-align: left;
}
.cid-tv20sF9f9R {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #212428;
}
.cid-tv20sF9f9R .progress {
  width: 100%;
}
.cid-tv20sF9f9R p {
  margin-bottom: 0.4rem;
}
.cid-tv20sF9f9R .progressbar-title {
  padding-bottom: 1rem;
}
.cid-tv20sF9f9R .title-wrap {
  display: flex;
  justify-content: space-between;
  -webkit-justify-content: space-between;
}
.cid-tv20sF9f9R progress {
  height: 10px;
}
.cid-tv20sF9f9R .progressbar-number {
  display: inline-block;
  width: 50px;
}
.cid-tv20sF9f9R .progress-primary {
  background: rgba(206, 206, 206, 0.9);
  border: none;
  outline: none;
}
.cid-tv20sF9f9R .progress-primary::-webkit-progress-bar {
  background: rgba(206, 206, 206, 0.9);
}
.cid-tv20sF9f9R .progress_value {
  position: relative;
}
.cid-tv20sF9f9R .progress1 .progressbar-number:before,
.cid-tv20sF9f9R .progress2 .progressbar-number:before,
.cid-tv20sF9f9R .progress3 .progressbar-number:before,
.cid-tv20sF9f9R .progress4 .progressbar-number:before,
.cid-tv20sF9f9R .progress5 .progressbar-number:before {
  position: absolute;
  right: 15px;
  top: 0;
}
.cid-tv20sF9f9R progress[value]::-webkit-progress-bar {
  background: rgba(206, 206, 206, 0.4);
  margin: 0;
}
.cid-tv20sF9f9R progress::-webkit-progress-value {
  background: #6917c7;
}
.cid-tv20sF9f9R progress[value]::-moz-progress-bar {
  background: #6917c7;
}
.cid-tv20sF9f9R progress::-ms-fill {
  background: #6917c7;
}
.cid-tv20sF9f9R .progress1 .progressbar-number:before {
  content: "100";
}
.cid-tv20sF9f9R .progress2 .progressbar-number:before {
  content: "71";
}
.cid-tv20sF9f9R .progress3 .progressbar-number:before {
  content: "53";
}
.cid-tv20sF9f9R .progress4 .progressbar-number:before {
  content: "70";
}
.cid-tv20sF9f9R .progress5 .progressbar-number:before {
  content: "81";
}
.cid-tv20sF9f9R .section-content-text {
  color: #454545;
}
.cid-tv20sF9f9R .progressbar-title p,
.cid-tv20sF9f9R .progress_value {
  color: #ffffff;
  text-align: center;
}
.cid-tv20sF9f9R .mbr-section-subtitle {
  color: #454545;
}
.cid-tv20sF9f9R .section-content-title {
  text-align: center;
  color: #ffffff;
}
.cid-tv20sF9f9R .mbr-fallback-image.disabled {
  display: none;
}
.cid-tv20sF9f9R .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tEtmG698pE {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #212428;
  overflow: hidden;
}
.cid-tEtmG698pE .mbr-fallback-image.disabled {
  display: none;
}
.cid-tEtmG698pE .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tEtmG698pE .card-row {
  align-items: stretch;
}
.cid-tEtmG698pE .item-wrap {
  position: relative;
  height: 100%;
  width: 100%;
  padding: 55px;
  border-radius: 10px;
  overflow: hidden;
  background: linear-gradient(145deg, #1e2024, #000000);
  box-shadow: 10px 10px 19px #7f6cc0, -10px -10px 19px #7f6cc0;
}
@media (max-width: 767px) {
  .cid-tEtmG698pE .item-wrap {
    padding: 40px;
  }
}
@media (max-width: 575px) {
  .cid-tEtmG698pE .item-wrap {
    padding: 35px 25px 35px 25px;
  }
}
.cid-tEtmG698pE .carousel {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 100%;
  width: 100%;
  margin: 0;
}
.cid-tEtmG698pE .carousel-inner {
  display: flex;
  align-items: center;
  margin-bottom: 0;
  border-radius: 10px;
}
.cid-tEtmG698pE .carousel-item-wrapper {
  display: flex;
  width: 100%;
  overflow: visible;
  padding: 0;
}
.cid-tEtmG698pE .carousel-item-wrapper img {
  aspect-ratio: 1.77842566;
  object-fit: cover;
}
.cid-tEtmG698pE .carousel-control {
  top: 50%;
  transform: translateY(-50%);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(to right bottom, #212428, #16181c) !important;
  box-shadow: 10px 10px 19px #191b1f, -10px -10px 19px #23272b;
  border: none;
  transition: all 0.4s;
  opacity: 1;
  color: #C4CFDE;
  font-size: 18px;
}
.cid-tEtmG698pE .carousel-control.carousel-control-prev {
  left: -30px;
  margin-left: 0;
}
@media (max-width: 575px) {
  .cid-tEtmG698pE .carousel-control.carousel-control-prev {
    left: -25px;
  }
}
.cid-tEtmG698pE .carousel-control.carousel-control-next {
  right: -30px;
  margin-right: 0;
}
@media (max-width: 575px) {
  .cid-tEtmG698pE .carousel-control.carousel-control-next {
    right: -25px;
  }
}
.cid-tEtmG698pE .carousel-control:hover {
  color: #FFFFFF !important;
  opacity: 1;
}
.cid-tEtmG698pE .mobi-mbri-arrow-next {
  margin-left: 5px;
}
.cid-tEtmG698pE .mobi-mbri-arrow-prev {
  margin-right: 5px;
}
.cid-tEtmG698pE .container .carousel-indicators {
  margin-bottom: 3px;
  display: none !important;
}
.cid-tEtmG698pE .item-menu-overlay {
  opacity: 0 !important;
}
.cid-tEtmG698pE .text-row {
  padding-top: 50px;
}
@media (max-width: 991px) {
  .cid-tEtmG698pE .text-row {
    padding-top: 30px;
  }
}
.cid-tEtmG698pE .card-title {
  color: #C4CFDE;
  margin-bottom: 20px;
}
.cid-tEtmG698pE .card-subtitle {
  color: #878e99;
  margin-bottom: 0;
}
.cid-tEtmG698pE .card-text-container {
  display: flex;
  align-items: flex-start;
  padding-top: 24px;
  padding-bottom: 8px;
  margin: 0 -30px;
}
@media (max-width: 767px) {
  .cid-tEtmG698pE .card-text-container {
    margin: 0 -10px;
  }
}
@media (max-width: 575px) {
  .cid-tEtmG698pE .card-text-container {
    flex-wrap: wrap;
  }
}
.cid-tEtmG698pE .card-text {
  color: #878e99;
  margin-bottom: 8px;
  margin-top: 8px;
  flex-basis: 50%;
  flex-grow: 1;
  padding-left: 30px;
  padding-right: 30px;
}
@media (max-width: 767px) {
  .cid-tEtmG698pE .card-text {
    padding-left: 10px;
    padding-right: 10px;
  }
}
@media (max-width: 575px) {
  .cid-tEtmG698pE .card-text {
    flex-basis: 100%;
  }
}
.cid-tEtmG698pE .mbr-section-btn {
  display: flex;
  flex-direction: column;
  align-items: stretch;
}
@media (max-width: 991px) {
  .cid-tEtmG698pE .mbr-section-btn {
    margin-top: 10px;
  }
}
.cid-tzI3uHo2CQ {
  padding-top: 1rem;
  padding-bottom: 2rem;
  background-color: #212428;
}
.cid-tzI3uHo2CQ .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-tzI3uHo2CQ .card-title {
  margin-bottom: 26px;
  color: #8364e2;
}
.cid-tzI3uHo2CQ .mbr-text {
  margin-bottom: 30px;
}
.cid-tzI3uHo2CQ .iconfont-wrapper {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  border-top-right-radius: 0;
  display: inline-block;
  text-align: center;
  margin-bottom: 30px;
  position: relative;
  z-index: 1;
  box-shadow: 0px 14px 30px 0px rgba(148, 10, 36, 0.4);
  background-image: linear-gradient(125deg, #940a24 0%, #ef153e 100%);
}
.cid-tzI3uHo2CQ .iconfont-wrapper .mbr-iconfont {
  color: #ffffff;
  font-size: 36px;
  line-height: 70px;
}
.cid-tzI3uHo2CQ .btn_link {
  display: block;
  margin-bottom: 0;
  position: relative;
  font-weight: 700;
}
.cid-tzI3uHo2CQ .btn_link span {
  display: inline-block;
  margin-left: .25rem;
  font-size: 16px;
  vertical-align: middle;
  transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.cid-tzI3uHo2CQ .btn_link:hover {
  cursor: pointer;
}
.cid-tzI3uHo2CQ .btn_link:hover a {
  color: #8364e2 !important;
}
.cid-tzI3uHo2CQ .btn_link:hover span {
  transform: translatex(5px);
}
@media (min-width: 992px) {
  .cid-tzI3uHo2CQ .text-wrapper {
    padding-right: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tzI3uHo2CQ .text-wrapper {
    text-align: center;
  }
  .cid-tzI3uHo2CQ .image-wrapper {
    margin-bottom: 40px;
  }
  .cid-tzI3uHo2CQ .mbr-text {
    margin-bottom: 20px;
  }
  .cid-tzI3uHo2CQ .iconfont-wrapper {
    margin-bottom: 20px;
  }
}
.cid-tzI3uHo2CQ .mbr-text,
.cid-tzI3uHo2CQ .btn_link {
  color: #ffffff;
  text-align: left;
}
.cid-tzI3uHo2CQ .card-title,
.cid-tzI3uHo2CQ .icon_block {
  text-align: left;
}
.cid-tv20t9Y3YX {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #212428;
}
.cid-tv20t9Y3YX .row {
  flex-direction: row-reverse;
}
.cid-tv20t9Y3YX .mbr-section-title {
  color: #ffffff;
}
.cid-tv20t9Y3YX .mbr-text,
.cid-tv20t9Y3YX .mbr-section-btn {
  color: #bbbbbb;
}
.cid-tv20t9Y3YX .mbr-section-subtitle {
  color: #8364e2;
}
.cid-tv20t9Y3YX img {
  border-radius: 2rem;
}
@media (min-width: 992px) {
  .cid-tv20t9Y3YX .image-wrapper {
    padding-right: 4rem;
  }
}
.cid-tO4bzFsPEM {
  padding-top: 5rem;
  padding-bottom: 5rem;
  overflow: hidden;
  background-color: #212428;
}
.cid-tO4bzFsPEM .mbr-fallback-image.disabled {
  display: none;
}
.cid-tO4bzFsPEM .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tO4bzFsPEM .container {
  max-width: 1200px;
  padding: 0 10px;
}
.cid-tO4bzFsPEM .mbr-section-head {
  margin-bottom: 10px;
  width: 100%;
}
.cid-tO4bzFsPEM .mbr-section-title {
  color: #ffffff;
}
.cid-tO4bzFsPEM .mbr-section-subtitle {
  color: #f4f4f4;
  margin-top: 15px;
}
@media (max-width: 767px) {
  .cid-tO4bzFsPEM .mbr-section-subtitle {
    margin-top: 10px;
  }
}
.cid-tO4bzFsPEM .card-row {
  align-items: stretch;
}
.cid-tO4bzFsPEM .card {
  margin-top: 30px;
}
@media (max-width: 575px) {
  .cid-tO4bzFsPEM .card {
    flex-basis: 80% !important;
  }
}
.cid-tO4bzFsPEM .card-wrapper {
  position: relative;
  height: 100%;
  width: 100%;
  border-radius: 10px;
  overflow: hidden;
  background: linear-gradient(145deg, #1e2024, #23272b);
  box-shadow: 10px 10px 19px #191b1f, -10px -10px 19px #23272b;
}
.cid-tO4bzFsPEM .card-wrapper:hover .card-bg {
  opacity: 1;
}
.cid-tO4bzFsPEM .card-bg {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 4;
  width: 100%;
  height: 100%;
  border-radius: 10px;
  background: linear-gradient(to right bottom, #212428, #16181c);
  opacity: 0;
  transition: .5s all;
}
.cid-tO4bzFsPEM .card-box {
  position: relative;
  z-index: 5;
  height: 100%;
}
.cid-tO4bzFsPEM .item-img {
  height: 150px;
  align-items: center;
  display: flex;
  justify-content: center;
  padding: 30px;
  width: 100%;
}
.cid-tO4bzFsPEM .item-img img {
  width: auto;
  max-height: 85px;
  max-width: 100%;
  object-fit: contain;
}
.cid-tO4bzFsPEM .text-item {
  padding: 16px;
  width: 100%;
  border-top: 1px solid #16181c;
}
.cid-tO4bzFsPEM .card-title {
  color: #878e99;
  margin-bottom: 0;
  text-align: center;
}
.cid-tO4bzFsPEM .card-title a {
  transition: 0.4s all;
}
.cid-tO4bzFsPEM .card-title a:hover {
  color: #8364e2 !important;
}
.cid-tv20JXf5Ez {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #282b2f;
}
.cid-tv20JXf5Ez svg {
  width: 100%;
  position: absolute;
  left: 0;
  top: -48px;
  height: 50px;
  transform-origin: bottom;
  animation: 1.5s ease-in-out infinite alternate svg2;
}
.cid-tv20JXf5Ez svg .st0 {
  fill: #282b2f;
}
@media (max-width: 992px) {
  .cid-tv20JXf5Ez svg {
    width: 1000px;
  }
}
@keyframes svg2 {
  from {
    transform: scaleX(1) scaleY(1.1) rotate(0deg);
  }
  to {
    transform: scaleX(1) scaleY(1.6) rotate(0deg);
  }
}
.cid-tv20JXf5Ez .list {
  list-style: none;
  padding-left: 0;
  color: #ffffff;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-tv20JXf5Ez .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tv20JXf5Ez .list {
    margin-bottom: 0rem;
  }
}
@media (max-width: 767px) {
  .cid-tv20JXf5Ez .row {
    text-align: center;
  }
}
@media (max-width: 991px) {
  .cid-tv20JXf5Ez div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-tv20JXf5Ez .copyright {
  color: #ffffff;
  text-align: center;
}
.cid-tO3ZaARX6J {
  z-index: 1000;
  width: 100%;
  position: relative;
}
.cid-tO3ZaARX6J .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;
}
@media (max-width: 767px) {
  .cid-tO3ZaARX6J .navbar-toggler {
    transform: scale(0.8);
  }
}
.cid-tO3ZaARX6J .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tO3ZaARX6J .navbar-brand img {
  max-width: 100%;
  max-height: 100%;
  border-radius: 0px !important;
}
.cid-tO3ZaARX6J .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tO3ZaARX6J .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tO3ZaARX6J .navbar-nav {
  margin: auto;
  margin-left: 0;
  margin-left: auto;
}
.cid-tO3ZaARX6J .navbar-nav .nav-item {
  padding: 0 !important;
  transition: .3s all !important;
}
.cid-tO3ZaARX6J .navbar-nav .nav-item .nav-link {
  padding: 16px !important;
  margin: 0 !important;
  border-radius: 1rem !important;
  transition: .3s all !important;
}
.cid-tO3ZaARX6J .navbar-nav .nav-item .nav-link:hover {
  background-color: rgba(27, 31, 10, 0.06);
}
.cid-tO3ZaARX6J .navbar-nav .open .nav-link::after {
  transform: rotate(180deg);
}
@media (min-width: 992px) {
  .cid-tO3ZaARX6J .navbar-nav .open .nav-link::before {
    content: "";
    width: 100%;
    height: 20px;
    top: 100%;
    background: transparent;
    position: absolute;
  }
}
.cid-tO3ZaARX6J .navbar-nav .dropdown-item {
  padding: 12px !important;
  border-radius: 0.5rem !important;
  margin: 0 8px !important;
  transition: .3s all !important;
}
.cid-tO3ZaARX6J .navbar-nav .dropdown-item:hover {
  background-color: rgba(27, 31, 10, 0.06);
}
@media (min-width: 992px) {
  .cid-tO3ZaARX6J .navbar-nav {
    padding-left: 1.5rem;
  }
}
.cid-tO3ZaARX6J .nav-link {
  width: fit-content;
  position: relative;
}
.cid-tO3ZaARX6J .navbar-logo {
  padding-left: 2rem;
  margin: 0 !important;
}
@media (max-width: 767px) {
  .cid-tO3ZaARX6J .navbar-logo {
    padding-left: 1rem;
  }
}
.cid-tO3ZaARX6J .navbar-caption {
  padding-left: 1rem;
  padding-right: .5rem;
}
@media (max-width: 767px) {
  .cid-tO3ZaARX6J .nav-dropdown {
    padding-bottom: 0.5rem;
  }
}
.cid-tO3ZaARX6J .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  transition: .3s all;
}
.cid-tO3ZaARX6J .container {
  display: flex;
  height: 90px;
  padding: 0.5rem 0.6rem;
  flex-wrap: nowrap;
  background: rgba(64, 63, 131, 0.8) !important;
  left: 0;
  right: 0;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: flex-end;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 100vw;
  margin-top: 1rem;
  background-color: #403f83;
  box-shadow: 0 30px 60px 0 rgba(27, 31, 10, 0.08);
}
@media (max-width: 992px) {
  .cid-tO3ZaARX6J .container {
    padding-right: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-tO3ZaARX6J .container {
    width: 95%;
    height: 56px !important;
    padding-right: 1rem;
    margin-top: 0rem;
  }
}
.cid-tO3ZaARX6J .iconfont-wrapper {
  color: #2469ea !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tO3ZaARX6J .dropdown-menu {
  flex-wrap: wrap;
  flex-direction: column;
  max-width: 100%;
  padding: 12px 4px !important;
  border-radius: 1.5rem;
  transition: .3s all !important;
  min-width: auto;
  background: #403f83;
  background: rgba(64, 63, 131, 0.8) !important;
}
.cid-tO3ZaARX6J .nav-item:focus,
.cid-tO3ZaARX6J .nav-link:focus {
  outline: none;
}
.cid-tO3ZaARX6J .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tO3ZaARX6J .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tO3ZaARX6J .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tO3ZaARX6J .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tO3ZaARX6J .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tO3ZaARX6J .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tO3ZaARX6J .navbar {
  min-height: 90px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: transparent !important;
  padding: 0 !important;
  border: none !important;
  box-shadow: none !important;
  border-radius: 0 !important;
}
.cid-tO3ZaARX6J .navbar.opened {
  transition: all 0.3s;
}
.cid-tO3ZaARX6J .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tO3ZaARX6J .navbar .navbar-logo img {
  width: auto;
}
.cid-tO3ZaARX6J .navbar .navbar-collapse {
  z-index: 1;
  justify-content: flex-end;
}
.cid-tO3ZaARX6J .navbar.collapsed {
  justify-content: center;
}
.cid-tO3ZaARX6J .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tO3ZaARX6J .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tO3ZaARX6J .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 2.7rem);
  }
}
.cid-tO3ZaARX6J .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tO3ZaARX6J .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tO3ZaARX6J .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-tO3ZaARX6J .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tO3ZaARX6J .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tO3ZaARX6J .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 767px) {
  .cid-tO3ZaARX6J .navbar {
    min-height: 72px;
  }
  .cid-tO3ZaARX6J .navbar .navbar-logo img {
    height: 2rem !important;
  }
}
@media (max-width: 991px) {
  .cid-tO3ZaARX6J .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tO3ZaARX6J .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tO3ZaARX6J .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tO3ZaARX6J .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tO3ZaARX6J .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-tO3ZaARX6J .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tO3ZaARX6J .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 10px;
  }
  .cid-tO3ZaARX6J .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tO3ZaARX6J .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tO3ZaARX6J .navbar.navbar-short .navbar-logo img {
  height: 2rem;
}
.cid-tO3ZaARX6J .dropdown-item.active,
.cid-tO3ZaARX6J .dropdown-item:active {
  background-color: transparent;
}
.cid-tO3ZaARX6J .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tO3ZaARX6J .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tO3ZaARX6J .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tO3ZaARX6J .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #403f83;
}
.cid-tO3ZaARX6J .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 105%;
  transform: none;
  top: -12px;
}
.cid-tO3ZaARX6J .navbar .dropdown.open > .dropdown-menu {
  display: flex;
}
.cid-tO3ZaARX6J ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tO3ZaARX6J .navbar-buttons {
  text-align: center;
  min-width: 140px;
}
@media (max-width: 992px) {
  .cid-tO3ZaARX6J .navbar-buttons {
    text-align: left;
  }
}
.cid-tO3ZaARX6J button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tO3ZaARX6J button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-tO3ZaARX6J button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tO3ZaARX6J button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tO3ZaARX6J button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tO3ZaARX6J button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tO3ZaARX6J nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tO3ZaARX6J nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tO3ZaARX6J nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tO3ZaARX6J nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tO3ZaARX6J .navbar-dropdown {
  padding: 0 1rem;
}
.cid-tO3ZaARX6J a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tO3ZaARX6J .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media (max-width: 992px) {
  .cid-tO3ZaARX6J .icons-menu {
    justify-content: flex-start;
    margin-bottom: .5rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tO3ZaARX6J .navbar {
    height: 70px;
  }
  .cid-tO3ZaARX6J .navbar.opened {
    height: auto;
  }
  .cid-tO3ZaARX6J .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tO3ZaARX6J .navbar .dropdown > .dropdown-menu {
  display: none;
  width: max-content;
  max-width: 500px !important;
  transform: translateX(-50%);
  top: calc(100% + 20px);
  left: 50%;
}
.cid-tO3ZaARX6J .navbar .dropdown > .dropdown-menu .dropdown-item {
  line-height: 1 !important;
}
.cid-tO3ZaARX6J .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item {
  align-items: center;
  display: flex;
  height: max-content !important;
  min-height: max-content !important;
}
.cid-tO3ZaARX6J .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item::after {
  display: inline-block;
  position: static;
  margin-left: 0.5rem;
  margin-top: 0;
  margin-right: 0;
  margin-bottom: 0;
  transition: .3s all;
  transform: rotate(-90deg);
}
.cid-tO3ZaARX6J .navbar .dropdown > .dropdown-menu .dropdown.open .dropdown-item::after {
  transform: rotate(0deg);
}
.cid-tO3ZaARX6J .mbr-section-btn {
  margin: -0.6rem -0.6rem;
}
.cid-tO3ZaARX6J .navbar-toggler {
  margin-left: 12px;
  margin-right: 8px;
  order: 1000;
}
@media (max-width: 991px) {
  .cid-tO3ZaARX6J .navbar-brand {
    margin-right: auto;
  }
  .cid-tO3ZaARX6J .navbar-collapse {
    z-index: -1 !important;
    position: absolute;
    top: 110%;
    left: 0;
    width: 100%;
    padding: 1rem;
    border-radius: 1.5rem;
    background: #403f83;
    opacity: 1;
    border-color: rgba(64, 63, 131, 0.8) !important;
    background: rgba(64, 63, 131, 0.8) !important;
    backdrop-filter: blur(8px);
  }
  .cid-tO3ZaARX6J .navbar-nav .nav-item .nav-link::after {
    margin-left: 10px;
  }
  .cid-tO3ZaARX6J .navbar-nav .dropdown-item:hover {
    background-color: rgba(27, 31, 10, 0.06);
  }
  .cid-tO3ZaARX6J .navbar .dropdown > .dropdown-menu {
    max-width: 100% !important;
    transform: translateX(0);
    top: 10px;
    left: 0;
    padding: 8px !important;
    border-radius: 1rem;
    background-color: rgba(27, 31, 10, 0.04) !important;
  }
  .cid-tO3ZaARX6J .navbar .dropdown > .dropdown-menu .dropdown-item {
    padding: 8px !important;
    line-height: 1 !important;
    margin-bottom: 4px !important;
  }
  .cid-tO3ZaARX6J .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item {
    align-items: center;
    display: flex;
    height: max-content !important;
    min-height: max-content !important;
  }
  .cid-tO3ZaARX6J .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item::after {
    display: inline-block;
    position: static;
    margin-left: 0.5rem;
    margin-top: 0;
    margin-right: 0;
    margin-bottom: 0;
    transition: .3s all;
    transform: rotate(0deg);
  }
  .cid-tO3ZaARX6J .navbar .dropdown > .dropdown-menu .dropdown.open .dropdown-item::after {
    transform: rotate(180deg);
  }
  .cid-tO3ZaARX6J .navbar .dropdown > .dropdown-menu .dropdown-submenu {
    position: static;
    width: 100%;
    max-width: 100% !important;
    transform: translateX(0) !important;
    top: 0;
    left: 0;
    padding: 8px !important;
    border-radius: 1rem;
    background-color: rgba(27, 31, 10, 0.04) !important;
  }
  .cid-tO3ZaARX6J .navbar .dropdown.open > .dropdown-menu {
    display: flex !important;
    flex-direction: column;
    align-items: flex-start;
  }
}
@media (max-width: 575px) {
  .cid-tO3ZaARX6J .navbar-collapse {
    padding: 1rem;
  }
}
.cid-tsa9FVdr0K {
  background-image: url("../../../assets/images/fundo-1280x640.webp");
}
.cid-tsa9FVdr0K img {
  width: 100%;
  border-radius: 30px;
}
.cid-tsa9FVdr0K .mbr-section-title {
  color: #ffffff;
}
.cid-tsa9FVdr0K .mbr-section-subtitle {
  background-color: #8364e2;
  padding: 0 1rem;
  border-radius: 5px;
  display: inline-block;
  font-family: 'IBM Plex Sans', sans-serif;
  font-weight: 900;
  color: #ffffff;
}
.cid-tsa9FVdr0K .svg-1 {
  position: absolute;
  bottom: 0;
}
.cid-tsa9FVdr0K .svg-1 path {
  fill: #212428;
}
.cid-tsa9FVdr0K .container-fluid {
  max-width: 1200px;
}
.cid-tsa9FVdr0K .mbr-arrow {
  z-index: 1;
}
.cid-tsa9FVdr0K .mbr-section-btn {
  margin-top: 1.5rem;
}
@media (min-width: 768px) {
  .cid-tsa9FVdr0K .container-fluid {
    padding: 0 1.5rem;
  }
}
@media (max-width: 992px) {
  .cid-tsa9FVdr0K .imageContainer {
    margin-top: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-tsa9FVdr0K .container-fluid {
    padding: 0 1rem;
  }
  .cid-tsa9FVdr0K .mbr-section-subtitle {
    margin-bottom: 1.4rem;
  }
}
.cid-tsa9T5njot {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #212428;
}
.cid-tsa9T5njot .item-img {
  margin-bottom: 1rem;
}
.cid-tsa9T5njot .item-img img {
  border-radius: 20px;
}
.cid-tsa9T5njot .item-wrapper {
  position: relative;
  background: #1e2024;
  border-radius: 20px;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
  padding: 1.5rem;
  box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.3);
  padding-top: 2rem;
  padding-bottom: 3rem;
}
.cid-tsa9T5njot .face-wrap {
  position: absolute;
  left: 1.5rem;
  top: 1rem;
  width: 70px;
  height: 70px;
  border-radius: 50%;
}
.cid-tsa9T5njot .face-wrap:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #8364e2;
  border-radius: 50%;
  z-index: 1;
  transition: all 0.3s;
  transform: scale(0.99);
}
.cid-tsa9T5njot .face-wrap .mbr-iconfont {
  position: absolute;
  right: 0;
  bottom: 0;
  font-size: 0.8rem;
  color: #ffffff;
  background: #8364e2;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 3;
}
.cid-tsa9T5njot .face-wrap:hover .face {
  transform: scale(0.9);
}
.cid-tsa9T5njot .face-wrap:hover:before {
  transform: scale(1.1);
}
.cid-tsa9T5njot .face {
  object-fit: cover;
  position: relative;
  transition: all 0.3s;
  border-radius: 50%;
  z-index: 2;
}
.cid-tsa9T5njot .item-img img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}
.cid-tsa9T5njot .item:focus,
.cid-tsa9T5njot span:focus {
  outline: none;
}
.cid-tsa9T5njot .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-tsa9T5njot .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tsa9T5njot .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-tsa9T5njot .mbr-text,
.cid-tsa9T5njot .mbr-section-btn {
  text-align: center;
  color: #ffffff;
}
.cid-tsa9T5njot .item-title {
  text-align: center;
  color: #ffffff;
}
.cid-tsa9T5njot .item-subtitle {
  text-align: left;
  color: #ffffff;
}
.cid-tsa9T5njot .mbr-link {
  color: #8364e2;
}
.cid-tsa9T5njot .mbr-section-subtitle {
  color: #ffffff;
  text-align: center;
}
.cid-tsAHMHCIDi {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #212428;
}
.cid-tsAHMHCIDi .mbr-section-title {
  color: #ffffff;
}
.cid-tsAHMHCIDi .mbr-text,
.cid-tsAHMHCIDi .mbr-section-btn {
  color: #f7f4fd;
}
.cid-tsAHMHCIDi .mbr-section-subtitle {
  color: #8364e2;
}
.cid-tsAHMHCIDi img {
  border-radius: 2rem;
}
@media (min-width: 992px) {
  .cid-tsAHMHCIDi .image-wrapper {
    padding-right: 4rem;
  }
}
.cid-tO4L7nDlI6 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  overflow: hidden;
  background-color: #212428;
}
.cid-tO4L7nDlI6 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tO4L7nDlI6 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tO4L7nDlI6 .container {
  max-width: 1200px;
  padding: 0 10px;
}
.cid-tO4L7nDlI6 .mbr-section-head {
  margin-bottom: 10px;
  width: 100%;
}
.cid-tO4L7nDlI6 .mbr-section-title {
  color: #ffffff;
}
.cid-tO4L7nDlI6 .mbr-section-subtitle {
  color: #f4f4f4;
  margin-top: 15px;
}
@media (max-width: 767px) {
  .cid-tO4L7nDlI6 .mbr-section-subtitle {
    margin-top: 10px;
  }
}
.cid-tO4L7nDlI6 .card-row {
  align-items: stretch;
}
.cid-tO4L7nDlI6 .card {
  margin-top: 30px;
}
@media (max-width: 575px) {
  .cid-tO4L7nDlI6 .card {
    flex-basis: 80% !important;
  }
}
.cid-tO4L7nDlI6 .card-wrapper {
  position: relative;
  height: 100%;
  width: 100%;
  border-radius: 10px;
  overflow: hidden;
  background: linear-gradient(145deg, #1e2024, #23272b);
  box-shadow: 10px 10px 19px #191b1f, -10px -10px 19px #23272b;
}
.cid-tO4L7nDlI6 .card-wrapper:hover .card-bg {
  opacity: 1;
}
.cid-tO4L7nDlI6 .card-bg {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 4;
  width: 100%;
  height: 100%;
  border-radius: 10px;
  background: linear-gradient(to right bottom, #212428, #16181c);
  opacity: 0;
  transition: .5s all;
}
.cid-tO4L7nDlI6 .card-box {
  position: relative;
  z-index: 5;
  height: 100%;
}
.cid-tO4L7nDlI6 .item-img {
  height: 150px;
  align-items: center;
  display: flex;
  justify-content: center;
  padding: 30px;
  width: 100%;
}
.cid-tO4L7nDlI6 .item-img img {
  width: auto;
  max-height: 85px;
  max-width: 100%;
  object-fit: contain;
}
.cid-tO4L7nDlI6 .text-item {
  padding: 16px;
  width: 100%;
  border-top: 1px solid #16181c;
}
.cid-tO4L7nDlI6 .card-title {
  color: #878e99;
  margin-bottom: 0;
  text-align: center;
}
.cid-tO4L7nDlI6 .card-title a {
  transition: 0.4s all;
}
.cid-tO4L7nDlI6 .card-title a:hover {
  color: #8364e2 !important;
}
.cid-tv20JXf5Ez {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #282b2f;
}
.cid-tv20JXf5Ez svg {
  width: 100%;
  position: absolute;
  left: 0;
  top: -48px;
  height: 50px;
  transform-origin: bottom;
  animation: 1.5s ease-in-out infinite alternate svg2;
}
.cid-tv20JXf5Ez svg .st0 {
  fill: #282b2f;
}
@media (max-width: 992px) {
  .cid-tv20JXf5Ez svg {
    width: 1000px;
  }
}
@keyframes svg2 {
  from {
    transform: scaleX(1) scaleY(1.1) rotate(0deg);
  }
  to {
    transform: scaleX(1) scaleY(1.6) rotate(0deg);
  }
}
.cid-tv20JXf5Ez .list {
  list-style: none;
  padding-left: 0;
  color: #ffffff;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-tv20JXf5Ez .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tv20JXf5Ez .list {
    margin-bottom: 0rem;
  }
}
@media (max-width: 767px) {
  .cid-tv20JXf5Ez .row {
    text-align: center;
  }
}
@media (max-width: 991px) {
  .cid-tv20JXf5Ez div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-tv20JXf5Ez .copyright {
  color: #ffffff;
  text-align: center;
}
.cid-tO3ZaARX6J {
  z-index: 1000;
  width: 100%;
  position: relative;
}
.cid-tO3ZaARX6J .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;
}
@media (max-width: 767px) {
  .cid-tO3ZaARX6J .navbar-toggler {
    transform: scale(0.8);
  }
}
.cid-tO3ZaARX6J .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tO3ZaARX6J .navbar-brand img {
  max-width: 100%;
  max-height: 100%;
  border-radius: 0px !important;
}
.cid-tO3ZaARX6J .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tO3ZaARX6J .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tO3ZaARX6J .navbar-nav {
  margin: auto;
  margin-left: 0;
  margin-left: auto;
}
.cid-tO3ZaARX6J .navbar-nav .nav-item {
  padding: 0 !important;
  transition: .3s all !important;
}
.cid-tO3ZaARX6J .navbar-nav .nav-item .nav-link {
  padding: 16px !important;
  margin: 0 !important;
  border-radius: 1rem !important;
  transition: .3s all !important;
}
.cid-tO3ZaARX6J .navbar-nav .nav-item .nav-link:hover {
  background-color: rgba(27, 31, 10, 0.06);
}
.cid-tO3ZaARX6J .navbar-nav .open .nav-link::after {
  transform: rotate(180deg);
}
@media (min-width: 992px) {
  .cid-tO3ZaARX6J .navbar-nav .open .nav-link::before {
    content: "";
    width: 100%;
    height: 20px;
    top: 100%;
    background: transparent;
    position: absolute;
  }
}
.cid-tO3ZaARX6J .navbar-nav .dropdown-item {
  padding: 12px !important;
  border-radius: 0.5rem !important;
  margin: 0 8px !important;
  transition: .3s all !important;
}
.cid-tO3ZaARX6J .navbar-nav .dropdown-item:hover {
  background-color: rgba(27, 31, 10, 0.06);
}
@media (min-width: 992px) {
  .cid-tO3ZaARX6J .navbar-nav {
    padding-left: 1.5rem;
  }
}
.cid-tO3ZaARX6J .nav-link {
  width: fit-content;
  position: relative;
}
.cid-tO3ZaARX6J .navbar-logo {
  padding-left: 2rem;
  margin: 0 !important;
}
@media (max-width: 767px) {
  .cid-tO3ZaARX6J .navbar-logo {
    padding-left: 1rem;
  }
}
.cid-tO3ZaARX6J .navbar-caption {
  padding-left: 1rem;
  padding-right: .5rem;
}
@media (max-width: 767px) {
  .cid-tO3ZaARX6J .nav-dropdown {
    padding-bottom: 0.5rem;
  }
}
.cid-tO3ZaARX6J .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  transition: .3s all;
}
.cid-tO3ZaARX6J .container {
  display: flex;
  height: 90px;
  padding: 0.5rem 0.6rem;
  flex-wrap: nowrap;
  background: rgba(64, 63, 131, 0.8) !important;
  left: 0;
  right: 0;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: flex-end;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 100vw;
  margin-top: 1rem;
  background-color: #403f83;
  box-shadow: 0 30px 60px 0 rgba(27, 31, 10, 0.08);
}
@media (max-width: 992px) {
  .cid-tO3ZaARX6J .container {
    padding-right: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-tO3ZaARX6J .container {
    width: 95%;
    height: 56px !important;
    padding-right: 1rem;
    margin-top: 0rem;
  }
}
.cid-tO3ZaARX6J .iconfont-wrapper {
  color: #2469ea !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tO3ZaARX6J .dropdown-menu {
  flex-wrap: wrap;
  flex-direction: column;
  max-width: 100%;
  padding: 12px 4px !important;
  border-radius: 1.5rem;
  transition: .3s all !important;
  min-width: auto;
  background: #403f83;
  background: rgba(64, 63, 131, 0.8) !important;
}
.cid-tO3ZaARX6J .nav-item:focus,
.cid-tO3ZaARX6J .nav-link:focus {
  outline: none;
}
.cid-tO3ZaARX6J .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tO3ZaARX6J .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tO3ZaARX6J .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tO3ZaARX6J .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tO3ZaARX6J .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tO3ZaARX6J .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tO3ZaARX6J .navbar {
  min-height: 90px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: transparent !important;
  padding: 0 !important;
  border: none !important;
  box-shadow: none !important;
  border-radius: 0 !important;
}
.cid-tO3ZaARX6J .navbar.opened {
  transition: all 0.3s;
}
.cid-tO3ZaARX6J .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tO3ZaARX6J .navbar .navbar-logo img {
  width: auto;
}
.cid-tO3ZaARX6J .navbar .navbar-collapse {
  z-index: 1;
  justify-content: flex-end;
}
.cid-tO3ZaARX6J .navbar.collapsed {
  justify-content: center;
}
.cid-tO3ZaARX6J .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tO3ZaARX6J .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tO3ZaARX6J .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 2.7rem);
  }
}
.cid-tO3ZaARX6J .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tO3ZaARX6J .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tO3ZaARX6J .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-tO3ZaARX6J .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tO3ZaARX6J .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tO3ZaARX6J .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 767px) {
  .cid-tO3ZaARX6J .navbar {
    min-height: 72px;
  }
  .cid-tO3ZaARX6J .navbar .navbar-logo img {
    height: 2rem !important;
  }
}
@media (max-width: 991px) {
  .cid-tO3ZaARX6J .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tO3ZaARX6J .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tO3ZaARX6J .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tO3ZaARX6J .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tO3ZaARX6J .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-tO3ZaARX6J .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tO3ZaARX6J .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 10px;
  }
  .cid-tO3ZaARX6J .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tO3ZaARX6J .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tO3ZaARX6J .navbar.navbar-short .navbar-logo img {
  height: 2rem;
}
.cid-tO3ZaARX6J .dropdown-item.active,
.cid-tO3ZaARX6J .dropdown-item:active {
  background-color: transparent;
}
.cid-tO3ZaARX6J .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tO3ZaARX6J .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tO3ZaARX6J .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tO3ZaARX6J .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #403f83;
}
.cid-tO3ZaARX6J .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 105%;
  transform: none;
  top: -12px;
}
.cid-tO3ZaARX6J .navbar .dropdown.open > .dropdown-menu {
  display: flex;
}
.cid-tO3ZaARX6J ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tO3ZaARX6J .navbar-buttons {
  text-align: center;
  min-width: 140px;
}
@media (max-width: 992px) {
  .cid-tO3ZaARX6J .navbar-buttons {
    text-align: left;
  }
}
.cid-tO3ZaARX6J button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tO3ZaARX6J button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-tO3ZaARX6J button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tO3ZaARX6J button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tO3ZaARX6J button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tO3ZaARX6J button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tO3ZaARX6J nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tO3ZaARX6J nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tO3ZaARX6J nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tO3ZaARX6J nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tO3ZaARX6J .navbar-dropdown {
  padding: 0 1rem;
}
.cid-tO3ZaARX6J a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tO3ZaARX6J .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media (max-width: 992px) {
  .cid-tO3ZaARX6J .icons-menu {
    justify-content: flex-start;
    margin-bottom: .5rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tO3ZaARX6J .navbar {
    height: 70px;
  }
  .cid-tO3ZaARX6J .navbar.opened {
    height: auto;
  }
  .cid-tO3ZaARX6J .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tO3ZaARX6J .navbar .dropdown > .dropdown-menu {
  display: none;
  width: max-content;
  max-width: 500px !important;
  transform: translateX(-50%);
  top: calc(100% + 20px);
  left: 50%;
}
.cid-tO3ZaARX6J .navbar .dropdown > .dropdown-menu .dropdown-item {
  line-height: 1 !important;
}
.cid-tO3ZaARX6J .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item {
  align-items: center;
  display: flex;
  height: max-content !important;
  min-height: max-content !important;
}
.cid-tO3ZaARX6J .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item::after {
  display: inline-block;
  position: static;
  margin-left: 0.5rem;
  margin-top: 0;
  margin-right: 0;
  margin-bottom: 0;
  transition: .3s all;
  transform: rotate(-90deg);
}
.cid-tO3ZaARX6J .navbar .dropdown > .dropdown-menu .dropdown.open .dropdown-item::after {
  transform: rotate(0deg);
}
.cid-tO3ZaARX6J .mbr-section-btn {
  margin: -0.6rem -0.6rem;
}
.cid-tO3ZaARX6J .navbar-toggler {
  margin-left: 12px;
  margin-right: 8px;
  order: 1000;
}
@media (max-width: 991px) {
  .cid-tO3ZaARX6J .navbar-brand {
    margin-right: auto;
  }
  .cid-tO3ZaARX6J .navbar-collapse {
    z-index: -1 !important;
    position: absolute;
    top: 110%;
    left: 0;
    width: 100%;
    padding: 1rem;
    border-radius: 1.5rem;
    background: #403f83;
    opacity: 1;
    border-color: rgba(64, 63, 131, 0.8) !important;
    background: rgba(64, 63, 131, 0.8) !important;
    backdrop-filter: blur(8px);
  }
  .cid-tO3ZaARX6J .navbar-nav .nav-item .nav-link::after {
    margin-left: 10px;
  }
  .cid-tO3ZaARX6J .navbar-nav .dropdown-item:hover {
    background-color: rgba(27, 31, 10, 0.06);
  }
  .cid-tO3ZaARX6J .navbar .dropdown > .dropdown-menu {
    max-width: 100% !important;
    transform: translateX(0);
    top: 10px;
    left: 0;
    padding: 8px !important;
    border-radius: 1rem;
    background-color: rgba(27, 31, 10, 0.04) !important;
  }
  .cid-tO3ZaARX6J .navbar .dropdown > .dropdown-menu .dropdown-item {
    padding: 8px !important;
    line-height: 1 !important;
    margin-bottom: 4px !important;
  }
  .cid-tO3ZaARX6J .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item {
    align-items: center;
    display: flex;
    height: max-content !important;
    min-height: max-content !important;
  }
  .cid-tO3ZaARX6J .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item::after {
    display: inline-block;
    position: static;
    margin-left: 0.5rem;
    margin-top: 0;
    margin-right: 0;
    margin-bottom: 0;
    transition: .3s all;
    transform: rotate(0deg);
  }
  .cid-tO3ZaARX6J .navbar .dropdown > .dropdown-menu .dropdown.open .dropdown-item::after {
    transform: rotate(180deg);
  }
  .cid-tO3ZaARX6J .navbar .dropdown > .dropdown-menu .dropdown-submenu {
    position: static;
    width: 100%;
    max-width: 100% !important;
    transform: translateX(0) !important;
    top: 0;
    left: 0;
    padding: 8px !important;
    border-radius: 1rem;
    background-color: rgba(27, 31, 10, 0.04) !important;
  }
  .cid-tO3ZaARX6J .navbar .dropdown.open > .dropdown-menu {
    display: flex !important;
    flex-direction: column;
    align-items: flex-start;
  }
}
@media (max-width: 575px) {
  .cid-tO3ZaARX6J .navbar-collapse {
    padding: 1rem;
  }
}
.cid-tsapnpWhFl {
  background-image: url("../../../assets/images/fundo-1280x640.webp");
}
.cid-tsapnpWhFl img {
  width: 100%;
  border-radius: 30px;
}
.cid-tsapnpWhFl .mbr-section-title {
  color: #ffffff;
}
.cid-tsapnpWhFl .mbr-section-subtitle {
  background-color: #8364e2;
  padding: 0 1rem;
  border-radius: 5px;
  display: inline-block;
  font-family: 'IBM Plex Sans', sans-serif;
  font-weight: 900;
  color: #ffffff;
}
.cid-tsapnpWhFl .svg-1 {
  position: absolute;
  bottom: 0;
}
.cid-tsapnpWhFl .svg-1 path {
  fill: #212428;
}
.cid-tsapnpWhFl .container-fluid {
  max-width: 1200px;
}
.cid-tsapnpWhFl .mbr-arrow {
  z-index: 1;
}
.cid-tsapnpWhFl .mbr-section-btn {
  margin-top: 1.5rem;
}
@media (min-width: 768px) {
  .cid-tsapnpWhFl .container-fluid {
    padding: 0 1.5rem;
  }
}
@media (max-width: 992px) {
  .cid-tsapnpWhFl .imageContainer {
    margin-top: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-tsapnpWhFl .container-fluid {
    padding: 0 1rem;
  }
  .cid-tsapnpWhFl .mbr-section-subtitle {
    margin-bottom: 1.4rem;
  }
}
.cid-tsapnqHmGQ {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #212428;
}
.cid-tsapnqHmGQ .item-img {
  margin-bottom: 1rem;
}
.cid-tsapnqHmGQ .item-img img {
  border-radius: 20px;
}
.cid-tsapnqHmGQ .item-wrapper {
  position: relative;
  background: #1e2024;
  border-radius: 20px;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
  padding: 1.5rem;
  box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.3);
  padding-top: 2rem;
  padding-bottom: 3rem;
}
.cid-tsapnqHmGQ .face-wrap {
  position: absolute;
  left: 1.5rem;
  top: 1rem;
  width: 70px;
  height: 70px;
  border-radius: 50%;
}
.cid-tsapnqHmGQ .face-wrap:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #8364e2;
  border-radius: 50%;
  z-index: 1;
  transition: all 0.3s;
  transform: scale(0.99);
}
.cid-tsapnqHmGQ .face-wrap .mbr-iconfont {
  position: absolute;
  right: 0;
  bottom: 0;
  font-size: 0.8rem;
  color: #ffffff;
  background: #8364e2;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 3;
}
.cid-tsapnqHmGQ .face-wrap:hover .face {
  transform: scale(0.9);
}
.cid-tsapnqHmGQ .face-wrap:hover:before {
  transform: scale(1.1);
}
.cid-tsapnqHmGQ .face {
  object-fit: cover;
  position: relative;
  transition: all 0.3s;
  border-radius: 50%;
  z-index: 2;
}
.cid-tsapnqHmGQ .item-img img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}
.cid-tsapnqHmGQ .item:focus,
.cid-tsapnqHmGQ span:focus {
  outline: none;
}
.cid-tsapnqHmGQ .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-tsapnqHmGQ .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tsapnqHmGQ .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-tsapnqHmGQ .mbr-text,
.cid-tsapnqHmGQ .mbr-section-btn {
  text-align: center;
  color: #ffffff;
}
.cid-tsapnqHmGQ .item-title {
  text-align: center;
  color: #ffffff;
}
.cid-tsapnqHmGQ .item-subtitle {
  text-align: left;
  color: #ffffff;
}
.cid-tsapnqHmGQ .mbr-link {
  color: #8364e2;
}
.cid-tsapnqHmGQ .mbr-section-subtitle {
  color: #ffffff;
  text-align: center;
}
.cid-tsAHQIpeuV {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #212428;
}
.cid-tsAHQIpeuV .mbr-section-title {
  color: #ffffff;
}
.cid-tsAHQIpeuV .mbr-text,
.cid-tsAHQIpeuV .mbr-section-btn {
  color: #f7f4fd;
}
.cid-tsAHQIpeuV .mbr-section-subtitle {
  color: #8364e2;
}
.cid-tsAHQIpeuV img {
  border-radius: 2rem;
}
@media (min-width: 992px) {
  .cid-tsAHQIpeuV .image-wrapper {
    padding-right: 4rem;
  }
}
.cid-tO4LDigcnQ {
  padding-top: 5rem;
  padding-bottom: 5rem;
  overflow: hidden;
  background-color: #212428;
}
.cid-tO4LDigcnQ .mbr-fallback-image.disabled {
  display: none;
}
.cid-tO4LDigcnQ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tO4LDigcnQ .container {
  max-width: 1200px;
  padding: 0 10px;
}
.cid-tO4LDigcnQ .mbr-section-head {
  margin-bottom: 10px;
  width: 100%;
}
.cid-tO4LDigcnQ .mbr-section-title {
  color: #ffffff;
}
.cid-tO4LDigcnQ .mbr-section-subtitle {
  color: #f4f4f4;
  margin-top: 15px;
}
@media (max-width: 767px) {
  .cid-tO4LDigcnQ .mbr-section-subtitle {
    margin-top: 10px;
  }
}
.cid-tO4LDigcnQ .card-row {
  align-items: stretch;
}
.cid-tO4LDigcnQ .card {
  margin-top: 30px;
}
@media (max-width: 575px) {
  .cid-tO4LDigcnQ .card {
    flex-basis: 80% !important;
  }
}
.cid-tO4LDigcnQ .card-wrapper {
  position: relative;
  height: 100%;
  width: 100%;
  border-radius: 10px;
  overflow: hidden;
  background: linear-gradient(145deg, #1e2024, #23272b);
  box-shadow: 10px 10px 19px #191b1f, -10px -10px 19px #23272b;
}
.cid-tO4LDigcnQ .card-wrapper:hover .card-bg {
  opacity: 1;
}
.cid-tO4LDigcnQ .card-bg {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 4;
  width: 100%;
  height: 100%;
  border-radius: 10px;
  background: linear-gradient(to right bottom, #212428, #16181c);
  opacity: 0;
  transition: .5s all;
}
.cid-tO4LDigcnQ .card-box {
  position: relative;
  z-index: 5;
  height: 100%;
}
.cid-tO4LDigcnQ .item-img {
  height: 150px;
  align-items: center;
  display: flex;
  justify-content: center;
  padding: 30px;
  width: 100%;
}
.cid-tO4LDigcnQ .item-img img {
  width: auto;
  max-height: 85px;
  max-width: 100%;
  object-fit: contain;
}
.cid-tO4LDigcnQ .text-item {
  padding: 16px;
  width: 100%;
  border-top: 1px solid #16181c;
}
.cid-tO4LDigcnQ .card-title {
  color: #878e99;
  margin-bottom: 0;
  text-align: center;
}
.cid-tO4LDigcnQ .card-title a {
  transition: 0.4s all;
}
.cid-tO4LDigcnQ .card-title a:hover {
  color: #8364e2 !important;
}
.cid-tv20JXf5Ez {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #282b2f;
}
.cid-tv20JXf5Ez svg {
  width: 100%;
  position: absolute;
  left: 0;
  top: -48px;
  height: 50px;
  transform-origin: bottom;
  animation: 1.5s ease-in-out infinite alternate svg2;
}
.cid-tv20JXf5Ez svg .st0 {
  fill: #282b2f;
}
@media (max-width: 992px) {
  .cid-tv20JXf5Ez svg {
    width: 1000px;
  }
}
@keyframes svg2 {
  from {
    transform: scaleX(1) scaleY(1.1) rotate(0deg);
  }
  to {
    transform: scaleX(1) scaleY(1.6) rotate(0deg);
  }
}
.cid-tv20JXf5Ez .list {
  list-style: none;
  padding-left: 0;
  color: #ffffff;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-tv20JXf5Ez .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tv20JXf5Ez .list {
    margin-bottom: 0rem;
  }
}
@media (max-width: 767px) {
  .cid-tv20JXf5Ez .row {
    text-align: center;
  }
}
@media (max-width: 991px) {
  .cid-tv20JXf5Ez div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-tv20JXf5Ez .copyright {
  color: #ffffff;
  text-align: center;
}
.cid-tO3ZaARX6J {
  z-index: 1000;
  width: 100%;
  position: relative;
}
.cid-tO3ZaARX6J .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;
}
@media (max-width: 767px) {
  .cid-tO3ZaARX6J .navbar-toggler {
    transform: scale(0.8);
  }
}
.cid-tO3ZaARX6J .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tO3ZaARX6J .navbar-brand img {
  max-width: 100%;
  max-height: 100%;
  border-radius: 0px !important;
}
.cid-tO3ZaARX6J .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tO3ZaARX6J .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tO3ZaARX6J .navbar-nav {
  margin: auto;
  margin-left: 0;
  margin-left: auto;
}
.cid-tO3ZaARX6J .navbar-nav .nav-item {
  padding: 0 !important;
  transition: .3s all !important;
}
.cid-tO3ZaARX6J .navbar-nav .nav-item .nav-link {
  padding: 16px !important;
  margin: 0 !important;
  border-radius: 1rem !important;
  transition: .3s all !important;
}
.cid-tO3ZaARX6J .navbar-nav .nav-item .nav-link:hover {
  background-color: rgba(27, 31, 10, 0.06);
}
.cid-tO3ZaARX6J .navbar-nav .open .nav-link::after {
  transform: rotate(180deg);
}
@media (min-width: 992px) {
  .cid-tO3ZaARX6J .navbar-nav .open .nav-link::before {
    content: "";
    width: 100%;
    height: 20px;
    top: 100%;
    background: transparent;
    position: absolute;
  }
}
.cid-tO3ZaARX6J .navbar-nav .dropdown-item {
  padding: 12px !important;
  border-radius: 0.5rem !important;
  margin: 0 8px !important;
  transition: .3s all !important;
}
.cid-tO3ZaARX6J .navbar-nav .dropdown-item:hover {
  background-color: rgba(27, 31, 10, 0.06);
}
@media (min-width: 992px) {
  .cid-tO3ZaARX6J .navbar-nav {
    padding-left: 1.5rem;
  }
}
.cid-tO3ZaARX6J .nav-link {
  width: fit-content;
  position: relative;
}
.cid-tO3ZaARX6J .navbar-logo {
  padding-left: 2rem;
  margin: 0 !important;
}
@media (max-width: 767px) {
  .cid-tO3ZaARX6J .navbar-logo {
    padding-left: 1rem;
  }
}
.cid-tO3ZaARX6J .navbar-caption {
  padding-left: 1rem;
  padding-right: .5rem;
}
@media (max-width: 767px) {
  .cid-tO3ZaARX6J .nav-dropdown {
    padding-bottom: 0.5rem;
  }
}
.cid-tO3ZaARX6J .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  transition: .3s all;
}
.cid-tO3ZaARX6J .container {
  display: flex;
  height: 90px;
  padding: 0.5rem 0.6rem;
  flex-wrap: nowrap;
  background: rgba(64, 63, 131, 0.8) !important;
  left: 0;
  right: 0;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: flex-end;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 100vw;
  margin-top: 1rem;
  background-color: #403f83;
  box-shadow: 0 30px 60px 0 rgba(27, 31, 10, 0.08);
}
@media (max-width: 992px) {
  .cid-tO3ZaARX6J .container {
    padding-right: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-tO3ZaARX6J .container {
    width: 95%;
    height: 56px !important;
    padding-right: 1rem;
    margin-top: 0rem;
  }
}
.cid-tO3ZaARX6J .iconfont-wrapper {
  color: #2469ea !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tO3ZaARX6J .dropdown-menu {
  flex-wrap: wrap;
  flex-direction: column;
  max-width: 100%;
  padding: 12px 4px !important;
  border-radius: 1.5rem;
  transition: .3s all !important;
  min-width: auto;
  background: #403f83;
  background: rgba(64, 63, 131, 0.8) !important;
}
.cid-tO3ZaARX6J .nav-item:focus,
.cid-tO3ZaARX6J .nav-link:focus {
  outline: none;
}
.cid-tO3ZaARX6J .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tO3ZaARX6J .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tO3ZaARX6J .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tO3ZaARX6J .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tO3ZaARX6J .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tO3ZaARX6J .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tO3ZaARX6J .navbar {
  min-height: 90px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: transparent !important;
  padding: 0 !important;
  border: none !important;
  box-shadow: none !important;
  border-radius: 0 !important;
}
.cid-tO3ZaARX6J .navbar.opened {
  transition: all 0.3s;
}
.cid-tO3ZaARX6J .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tO3ZaARX6J .navbar .navbar-logo img {
  width: auto;
}
.cid-tO3ZaARX6J .navbar .navbar-collapse {
  z-index: 1;
  justify-content: flex-end;
}
.cid-tO3ZaARX6J .navbar.collapsed {
  justify-content: center;
}
.cid-tO3ZaARX6J .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tO3ZaARX6J .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tO3ZaARX6J .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 2.7rem);
  }
}
.cid-tO3ZaARX6J .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tO3ZaARX6J .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tO3ZaARX6J .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-tO3ZaARX6J .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tO3ZaARX6J .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tO3ZaARX6J .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 767px) {
  .cid-tO3ZaARX6J .navbar {
    min-height: 72px;
  }
  .cid-tO3ZaARX6J .navbar .navbar-logo img {
    height: 2rem !important;
  }
}
@media (max-width: 991px) {
  .cid-tO3ZaARX6J .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tO3ZaARX6J .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tO3ZaARX6J .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tO3ZaARX6J .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tO3ZaARX6J .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-tO3ZaARX6J .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tO3ZaARX6J .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 10px;
  }
  .cid-tO3ZaARX6J .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tO3ZaARX6J .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tO3ZaARX6J .navbar.navbar-short .navbar-logo img {
  height: 2rem;
}
.cid-tO3ZaARX6J .dropdown-item.active,
.cid-tO3ZaARX6J .dropdown-item:active {
  background-color: transparent;
}
.cid-tO3ZaARX6J .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tO3ZaARX6J .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tO3ZaARX6J .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tO3ZaARX6J .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #403f83;
}
.cid-tO3ZaARX6J .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 105%;
  transform: none;
  top: -12px;
}
.cid-tO3ZaARX6J .navbar .dropdown.open > .dropdown-menu {
  display: flex;
}
.cid-tO3ZaARX6J ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tO3ZaARX6J .navbar-buttons {
  text-align: center;
  min-width: 140px;
}
@media (max-width: 992px) {
  .cid-tO3ZaARX6J .navbar-buttons {
    text-align: left;
  }
}
.cid-tO3ZaARX6J button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tO3ZaARX6J button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-tO3ZaARX6J button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tO3ZaARX6J button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tO3ZaARX6J button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tO3ZaARX6J button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tO3ZaARX6J nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tO3ZaARX6J nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tO3ZaARX6J nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tO3ZaARX6J nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tO3ZaARX6J .navbar-dropdown {
  padding: 0 1rem;
}
.cid-tO3ZaARX6J a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tO3ZaARX6J .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media (max-width: 992px) {
  .cid-tO3ZaARX6J .icons-menu {
    justify-content: flex-start;
    margin-bottom: .5rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tO3ZaARX6J .navbar {
    height: 70px;
  }
  .cid-tO3ZaARX6J .navbar.opened {
    height: auto;
  }
  .cid-tO3ZaARX6J .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tO3ZaARX6J .navbar .dropdown > .dropdown-menu {
  display: none;
  width: max-content;
  max-width: 500px !important;
  transform: translateX(-50%);
  top: calc(100% + 20px);
  left: 50%;
}
.cid-tO3ZaARX6J .navbar .dropdown > .dropdown-menu .dropdown-item {
  line-height: 1 !important;
}
.cid-tO3ZaARX6J .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item {
  align-items: center;
  display: flex;
  height: max-content !important;
  min-height: max-content !important;
}
.cid-tO3ZaARX6J .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item::after {
  display: inline-block;
  position: static;
  margin-left: 0.5rem;
  margin-top: 0;
  margin-right: 0;
  margin-bottom: 0;
  transition: .3s all;
  transform: rotate(-90deg);
}
.cid-tO3ZaARX6J .navbar .dropdown > .dropdown-menu .dropdown.open .dropdown-item::after {
  transform: rotate(0deg);
}
.cid-tO3ZaARX6J .mbr-section-btn {
  margin: -0.6rem -0.6rem;
}
.cid-tO3ZaARX6J .navbar-toggler {
  margin-left: 12px;
  margin-right: 8px;
  order: 1000;
}
@media (max-width: 991px) {
  .cid-tO3ZaARX6J .navbar-brand {
    margin-right: auto;
  }
  .cid-tO3ZaARX6J .navbar-collapse {
    z-index: -1 !important;
    position: absolute;
    top: 110%;
    left: 0;
    width: 100%;
    padding: 1rem;
    border-radius: 1.5rem;
    background: #403f83;
    opacity: 1;
    border-color: rgba(64, 63, 131, 0.8) !important;
    background: rgba(64, 63, 131, 0.8) !important;
    backdrop-filter: blur(8px);
  }
  .cid-tO3ZaARX6J .navbar-nav .nav-item .nav-link::after {
    margin-left: 10px;
  }
  .cid-tO3ZaARX6J .navbar-nav .dropdown-item:hover {
    background-color: rgba(27, 31, 10, 0.06);
  }
  .cid-tO3ZaARX6J .navbar .dropdown > .dropdown-menu {
    max-width: 100% !important;
    transform: translateX(0);
    top: 10px;
    left: 0;
    padding: 8px !important;
    border-radius: 1rem;
    background-color: rgba(27, 31, 10, 0.04) !important;
  }
  .cid-tO3ZaARX6J .navbar .dropdown > .dropdown-menu .dropdown-item {
    padding: 8px !important;
    line-height: 1 !important;
    margin-bottom: 4px !important;
  }
  .cid-tO3ZaARX6J .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item {
    align-items: center;
    display: flex;
    height: max-content !important;
    min-height: max-content !important;
  }
  .cid-tO3ZaARX6J .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item::after {
    display: inline-block;
    position: static;
    margin-left: 0.5rem;
    margin-top: 0;
    margin-right: 0;
    margin-bottom: 0;
    transition: .3s all;
    transform: rotate(0deg);
  }
  .cid-tO3ZaARX6J .navbar .dropdown > .dropdown-menu .dropdown.open .dropdown-item::after {
    transform: rotate(180deg);
  }
  .cid-tO3ZaARX6J .navbar .dropdown > .dropdown-menu .dropdown-submenu {
    position: static;
    width: 100%;
    max-width: 100% !important;
    transform: translateX(0) !important;
    top: 0;
    left: 0;
    padding: 8px !important;
    border-radius: 1rem;
    background-color: rgba(27, 31, 10, 0.04) !important;
  }
  .cid-tO3ZaARX6J .navbar .dropdown.open > .dropdown-menu {
    display: flex !important;
    flex-direction: column;
    align-items: flex-start;
  }
}
@media (max-width: 575px) {
  .cid-tO3ZaARX6J .navbar-collapse {
    padding: 1rem;
  }
}
.cid-tsnIvSw3ul {
  background-image: url("../../../assets/images/host3-1920x1080.webp");
}
.cid-tsnIvSw3ul img {
  width: 100%;
  border-radius: 30px;
}
.cid-tsnIvSw3ul .mbr-section-title {
  color: #ffffff;
}
.cid-tsnIvSw3ul .mbr-section-subtitle {
  background-color: #8364e2;
  padding: 0 1rem;
  border-radius: 5px;
  display: inline-block;
  font-family: 'IBM Plex Sans', sans-serif;
  font-weight: 900;
  color: #ffffff;
}
.cid-tsnIvSw3ul .svg-1 {
  position: absolute;
  bottom: 0;
}
.cid-tsnIvSw3ul .svg-1 path {
  fill: #212428;
}
.cid-tsnIvSw3ul .container-fluid {
  max-width: 1200px;
}
.cid-tsnIvSw3ul .mbr-arrow {
  z-index: 1;
}
.cid-tsnIvSw3ul .mbr-section-btn {
  margin-top: 1.5rem;
}
@media (min-width: 768px) {
  .cid-tsnIvSw3ul .container-fluid {
    padding: 0 1.5rem;
  }
}
@media (max-width: 992px) {
  .cid-tsnIvSw3ul .imageContainer {
    margin-top: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-tsnIvSw3ul .container-fluid {
    padding: 0 1rem;
  }
  .cid-tsnIvSw3ul .mbr-section-subtitle {
    margin-bottom: 1.4rem;
  }
}
.cid-tsnIvTfgpR {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #212428;
}
.cid-tsnIvTfgpR .item-img {
  margin-bottom: 1rem;
}
.cid-tsnIvTfgpR .item-img img {
  border-radius: 20px;
}
.cid-tsnIvTfgpR .item-wrapper {
  position: relative;
  background: #1e2024;
  border-radius: 20px;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
  padding: 1.5rem;
  box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.3);
  padding-top: 2rem;
  padding-bottom: 3rem;
}
.cid-tsnIvTfgpR .face-wrap {
  position: absolute;
  left: 1.5rem;
  top: 1rem;
  width: 70px;
  height: 70px;
  border-radius: 50%;
}
.cid-tsnIvTfgpR .face-wrap:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #8364e2;
  border-radius: 50%;
  z-index: 1;
  transition: all 0.3s;
  transform: scale(0.99);
}
.cid-tsnIvTfgpR .face-wrap .mbr-iconfont {
  position: absolute;
  right: 0;
  bottom: 0;
  font-size: 0.8rem;
  color: #ffffff;
  background: #8364e2;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 3;
}
.cid-tsnIvTfgpR .face-wrap:hover .face {
  transform: scale(0.9);
}
.cid-tsnIvTfgpR .face-wrap:hover:before {
  transform: scale(1.1);
}
.cid-tsnIvTfgpR .face {
  object-fit: cover;
  position: relative;
  transition: all 0.3s;
  border-radius: 50%;
  z-index: 2;
}
.cid-tsnIvTfgpR .item-img img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}
.cid-tsnIvTfgpR .item:focus,
.cid-tsnIvTfgpR span:focus {
  outline: none;
}
.cid-tsnIvTfgpR .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-tsnIvTfgpR .row {
  margin-left: 0;
  margin-right: 0;
}
.cid-tsnIvTfgpR .item {
  padding: 0;
  margin: 0;
}
.cid-tsnIvTfgpR .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tsnIvTfgpR .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-tsnIvTfgpR .mbr-text,
.cid-tsnIvTfgpR .mbr-section-btn {
  text-align: center;
  color: #ffffff;
}
.cid-tsnIvTfgpR .item-title {
  text-align: center;
  color: #ffffff;
}
.cid-tsnIvTfgpR .item-subtitle {
  text-align: left;
  color: #ffffff;
}
.cid-tsnIvTfgpR .mbr-link {
  color: #8364e2;
}
.cid-tsnIvTfgpR .mbr-section-subtitle {
  color: #ffffff;
  text-align: center;
}
.cid-tzI1XOmYQt {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #212428;
}
.cid-tzI1XOmYQt .mbr-iconfont {
  display: block;
  font-size: 3rem;
  color: #8364e2;
  margin-bottom: 1rem;
}
.cid-tzI1XOmYQt .main-title {
  position: relative;
  width: fit-content;
  display: inline-block;
  color: #160830;
}
.cid-tzI1XOmYQt .main-title:before {
  content: "";
  bottom: -1rem;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 2px;
  background: currentColor;
  position: absolute;
}
.cid-tzI1XOmYQt .card-wrapper {
  transition: all 0.3s;
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 2.5rem 2rem;
  background: #282b2f;
  border-radius: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 2rem;
  box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.3);
}
.cid-tzI1XOmYQt .card-wrapper:hover {
  background: transparent;
}
.cid-tzI1XOmYQt .card-title,
.cid-tzI1XOmYQt .card-box {
  color: #ffffff;
}
.cid-tzI1XOmYQt .main-title,
.cid-tzI1XOmYQt .title-col {
  text-align: center;
  color: #ffffff;
}
.cid-tzI1XOmYQt .card-text {
  color: #bbbbbb;
}
.cid-tzI1XOmYQt .mbr-fallback-image.disabled {
  display: none;
}
.cid-tzI1XOmYQt .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tsYk47iJd9 {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #212428;
}
.cid-tsYk47iJd9 .progress {
  width: 100%;
}
.cid-tsYk47iJd9 p {
  margin-bottom: 0.4rem;
}
.cid-tsYk47iJd9 .progressbar-title {
  padding-bottom: 1rem;
}
.cid-tsYk47iJd9 .title-wrap {
  display: flex;
  justify-content: space-between;
  -webkit-justify-content: space-between;
}
.cid-tsYk47iJd9 progress {
  height: 10px;
}
.cid-tsYk47iJd9 .progressbar-number {
  display: inline-block;
  width: 50px;
}
.cid-tsYk47iJd9 .progress-primary {
  background: rgba(206, 206, 206, 0.9);
  border: none;
  outline: none;
}
.cid-tsYk47iJd9 .progress-primary::-webkit-progress-bar {
  background: rgba(206, 206, 206, 0.9);
}
.cid-tsYk47iJd9 .progress_value {
  position: relative;
}
.cid-tsYk47iJd9 .progress1 .progressbar-number:before,
.cid-tsYk47iJd9 .progress2 .progressbar-number:before,
.cid-tsYk47iJd9 .progress3 .progressbar-number:before,
.cid-tsYk47iJd9 .progress4 .progressbar-number:before,
.cid-tsYk47iJd9 .progress5 .progressbar-number:before {
  position: absolute;
  right: 15px;
  top: 0;
}
.cid-tsYk47iJd9 progress[value]::-webkit-progress-bar {
  background: rgba(206, 206, 206, 0.4);
  margin: 0;
}
.cid-tsYk47iJd9 progress::-webkit-progress-value {
  background: #6917c7;
}
.cid-tsYk47iJd9 progress[value]::-moz-progress-bar {
  background: #6917c7;
}
.cid-tsYk47iJd9 progress::-ms-fill {
  background: #6917c7;
}
.cid-tsYk47iJd9 .progress1 .progressbar-number:before {
  content: "100";
}
.cid-tsYk47iJd9 .progress2 .progressbar-number:before {
  content: "71";
}
.cid-tsYk47iJd9 .progress3 .progressbar-number:before {
  content: "53";
}
.cid-tsYk47iJd9 .progress4 .progressbar-number:before {
  content: "70";
}
.cid-tsYk47iJd9 .progress5 .progressbar-number:before {
  content: "81";
}
.cid-tsYk47iJd9 .section-content-text {
  color: #454545;
}
.cid-tsYk47iJd9 .progressbar-title p,
.cid-tsYk47iJd9 .progress_value {
  color: #ffffff;
  text-align: center;
}
.cid-tsYk47iJd9 .mbr-section-subtitle {
  color: #454545;
}
.cid-tsYk47iJd9 .section-content-title {
  text-align: center;
  color: #ffffff;
}
.cid-tsYk47iJd9 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tsYk47iJd9 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tsyPcXFXRd {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #212428;
}
.cid-tsyPcXFXRd .main-title {
  position: relative;
  width: fit-content;
  display: inline-block;
  color: #160830;
}
.cid-tsyPcXFXRd .main-title:before {
  content: "";
  bottom: -1rem;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 2px;
  background: currentColor;
  position: absolute;
}
.cid-tsyPcXFXRd img {
  width: 80px;
  margin: auto;
}
.cid-tsyPcXFXRd .card-wrapper {
  transition: all 0.3s;
  border: 2px solid #5b3486;
  padding: 2rem 0;
  background: #5b3486;
  border-radius: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 2rem;
}
.cid-tsyPcXFXRd .card-wrapper:hover {
  background: transparent;
}
.cid-tsyPcXFXRd .card-title,
.cid-tsyPcXFXRd .card-box {
  color: #ffffff;
  text-align: center;
}
.cid-tsyPcXFXRd .main-title,
.cid-tsyPcXFXRd .title-col {
  text-align: center;
  color: #ffffff;
}
.cid-tsyPcXFXRd .card-text {
  color: #bbbbbb;
}
.cid-tsyPcXFXRd .mbr-fallback-image.disabled {
  display: none;
}
.cid-tsyPcXFXRd .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tsYk3LXEhP {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #212428;
}
.cid-tsYk3LXEhP .progress {
  width: 100%;
}
.cid-tsYk3LXEhP p {
  margin-bottom: 0.4rem;
}
.cid-tsYk3LXEhP .progressbar-title {
  padding-bottom: 1rem;
}
.cid-tsYk3LXEhP .title-wrap {
  display: flex;
  justify-content: space-between;
  -webkit-justify-content: space-between;
}
.cid-tsYk3LXEhP progress {
  height: 10px;
}
.cid-tsYk3LXEhP .progressbar-number {
  display: inline-block;
  width: 50px;
}
.cid-tsYk3LXEhP .progress-primary {
  background: rgba(206, 206, 206, 0.9);
  border: none;
  outline: none;
}
.cid-tsYk3LXEhP .progress-primary::-webkit-progress-bar {
  background: rgba(206, 206, 206, 0.9);
}
.cid-tsYk3LXEhP .progress_value {
  position: relative;
}
.cid-tsYk3LXEhP .progress1 .progressbar-number:before,
.cid-tsYk3LXEhP .progress2 .progressbar-number:before,
.cid-tsYk3LXEhP .progress3 .progressbar-number:before,
.cid-tsYk3LXEhP .progress4 .progressbar-number:before,
.cid-tsYk3LXEhP .progress5 .progressbar-number:before {
  position: absolute;
  right: 15px;
  top: 0;
}
.cid-tsYk3LXEhP progress[value]::-webkit-progress-bar {
  background: rgba(206, 206, 206, 0.4);
  margin: 0;
}
.cid-tsYk3LXEhP progress::-webkit-progress-value {
  background: #6917c7;
}
.cid-tsYk3LXEhP progress[value]::-moz-progress-bar {
  background: #6917c7;
}
.cid-tsYk3LXEhP progress::-ms-fill {
  background: #6917c7;
}
.cid-tsYk3LXEhP .progress1 .progressbar-number:before {
  content: "100";
}
.cid-tsYk3LXEhP .progress2 .progressbar-number:before {
  content: "71";
}
.cid-tsYk3LXEhP .progress3 .progressbar-number:before {
  content: "53";
}
.cid-tsYk3LXEhP .progress4 .progressbar-number:before {
  content: "70";
}
.cid-tsYk3LXEhP .progress5 .progressbar-number:before {
  content: "81";
}
.cid-tsYk3LXEhP .section-content-text {
  color: #454545;
}
.cid-tsYk3LXEhP .progressbar-title p,
.cid-tsYk3LXEhP .progress_value {
  color: #ffffff;
  text-align: center;
}
.cid-tsYk3LXEhP .mbr-section-subtitle {
  color: #454545;
}
.cid-tsYk3LXEhP .section-content-title {
  text-align: center;
  color: #ffffff;
}
.cid-tsYk3LXEhP .mbr-fallback-image.disabled {
  display: none;
}
.cid-tsYk3LXEhP .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tsEqS5cZxy {
  padding-top: 0rem;
  padding-bottom: 2rem;
  background: #212428;
}
.cid-tsEqS5cZxy .list-group-item {
  background-color: transparent;
  padding: .5rem 3.25rem;
  color: #ffffff;
  text-align: center;
}
.cid-tsEqS5cZxy .plan-body {
  padding-bottom: 2rem;
}
.cid-tsEqS5cZxy .plan-header {
  padding-top: 2rem;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-tsEqS5cZxy .price {
  color: #ffffff;
}
.cid-tsEqS5cZxy .plan {
  border: 2px solid;
  border-image: linear-gradient(45deg, #fedd00, #009739) 1;
  word-break: break-word;
  background-color: #1c232b;
  border-radius: 2rem;
  transition: all 0.3s;
}
.cid-tsEqS5cZxy .plan .list-group-item {
  position: relative;
  justify-content: center;
  border: 0;
}
.cid-tsEqS5cZxy .plan .list-group-item::after {
  position: absolute;
  bottom: 1px;
  left: 25%;
  width: 50%;
  height: 1px;
  content: "";
  background-color: rgba(0, 0, 0, 0.1);
}
.cid-tsEqS5cZxy .plan .list-group-item:last-child::after {
  display: none;
}
.cid-tsEqS5cZxy .plan:hover {
  box-shadow: 0 50px 50px -25px rgba(0, 0, 0, 0.3);
  transform: rotate(-2deg) scale(1.03);
}
@media (max-width: 991px) {
  .cid-tsEqS5cZxy .plan {
    margin-bottom: 2rem;
  }
}
.cid-tsEqS5cZxy UL {
  color: #696969;
}
.cid-tsEqS5cZxy .plan-title {
  color: #ffffff;
}
.cid-tsEqS5cZxy .mbr-fallback-image.disabled {
  display: none;
}
.cid-tsEqS5cZxy .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tsEqS5cZxy .price-term {
  color: #ffffff;
}
.cid-tvKvOCVdu1 {
  padding-top: 0rem;
  padding-bottom: 2rem;
  background: #212428;
}
.cid-tvKvOCVdu1 .list-group-item {
  background-color: transparent;
  padding: .5rem 3.25rem;
  color: #ffffff;
  text-align: center;
}
.cid-tvKvOCVdu1 .plan-body {
  padding-bottom: 2rem;
}
.cid-tvKvOCVdu1 .plan-header {
  padding-top: 2rem;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-tvKvOCVdu1 .price {
  color: #ffffff;
}
.cid-tvKvOCVdu1 .plan {
  border: 2px solid;
  border-image: linear-gradient(45deg, #fedd00, #009739) 1;
  word-break: break-word;
  background-color: #1c232b;
  border-radius: 2rem;
  transition: all 0.3s;
}
.cid-tvKvOCVdu1 .plan .list-group-item {
  position: relative;
  justify-content: center;
  border: 0;
}
.cid-tvKvOCVdu1 .plan .list-group-item::after {
  position: absolute;
  bottom: 1px;
  left: 25%;
  width: 50%;
  height: 1px;
  content: "";
  background-color: rgba(0, 0, 0, 0.1);
}
.cid-tvKvOCVdu1 .plan .list-group-item:last-child::after {
  display: none;
}
.cid-tvKvOCVdu1 .plan:hover {
  box-shadow: 0 50px 50px -25px rgba(0, 0, 0, 0.3);
  transform: rotate(-2deg) scale(1.03);
}
@media (max-width: 991px) {
  .cid-tvKvOCVdu1 .plan {
    margin-bottom: 2rem;
  }
}
.cid-tvKvOCVdu1 UL {
  color: #696969;
}
.cid-tvKvOCVdu1 .plan-title {
  color: #ffffff;
}
.cid-tvKvOCVdu1 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tvKvOCVdu1 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tvKvOCVdu1 .price-term {
  color: #ffffff;
}
.cid-tsEqSrULkk {
  padding-top: 0rem;
  padding-bottom: 2rem;
  background: #212428;
}
.cid-tsEqSrULkk .list-group-item {
  background-color: transparent;
  padding: .5rem 3.25rem;
  color: #ffffff;
  text-align: center;
}
.cid-tsEqSrULkk .plan-body {
  padding-bottom: 2rem;
}
.cid-tsEqSrULkk .plan-header {
  padding-top: 2rem;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-tsEqSrULkk .price {
  color: #ffffff;
}
.cid-tsEqSrULkk .plan {
  border: 2px solid;
  border-image: linear-gradient(45deg, #fedd00, #009739) 1;
  word-break: break-word;
  background-color: #1c232b;
  border-radius: 2rem;
  transition: all 0.3s;
}
.cid-tsEqSrULkk .plan .list-group-item {
  position: relative;
  justify-content: center;
  border: 0;
}
.cid-tsEqSrULkk .plan .list-group-item::after {
  position: absolute;
  bottom: 1px;
  left: 25%;
  width: 50%;
  height: 1px;
  content: "";
  background-color: rgba(0, 0, 0, 0.1);
}
.cid-tsEqSrULkk .plan .list-group-item:last-child::after {
  display: none;
}
.cid-tsEqSrULkk .plan:hover {
  box-shadow: 0 50px 50px -25px rgba(0, 0, 0, 0.3);
  transform: rotate(-2deg) scale(1.03);
}
@media (max-width: 991px) {
  .cid-tsEqSrULkk .plan {
    margin-bottom: 2rem;
  }
}
.cid-tsEqSrULkk UL {
  color: #696969;
  text-align: center;
}
.cid-tsEqSrULkk .plan-title {
  color: #ffffff;
}
.cid-tsEqSrULkk .mbr-fallback-image.disabled {
  display: none;
}
.cid-tsEqSrULkk .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tsEqSrULkk .price-term {
  color: #ffffff;
}
.cid-tEtpjc57OC {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #212428;
}
.cid-tEtpjc57OC .progress {
  width: 100%;
}
.cid-tEtpjc57OC p {
  margin-bottom: 0.4rem;
}
.cid-tEtpjc57OC .progressbar-title {
  padding-bottom: 1rem;
}
.cid-tEtpjc57OC .title-wrap {
  display: flex;
  justify-content: space-between;
  -webkit-justify-content: space-between;
}
.cid-tEtpjc57OC progress {
  height: 10px;
}
.cid-tEtpjc57OC .progressbar-number {
  display: inline-block;
  width: 50px;
}
.cid-tEtpjc57OC .progress-primary {
  background: rgba(206, 206, 206, 0.9);
  border: none;
  outline: none;
}
.cid-tEtpjc57OC .progress-primary::-webkit-progress-bar {
  background: rgba(206, 206, 206, 0.9);
}
.cid-tEtpjc57OC .progress_value {
  position: relative;
}
.cid-tEtpjc57OC .progress1 .progressbar-number:before,
.cid-tEtpjc57OC .progress2 .progressbar-number:before,
.cid-tEtpjc57OC .progress3 .progressbar-number:before,
.cid-tEtpjc57OC .progress4 .progressbar-number:before,
.cid-tEtpjc57OC .progress5 .progressbar-number:before {
  position: absolute;
  right: 15px;
  top: 0;
}
.cid-tEtpjc57OC progress[value]::-webkit-progress-bar {
  background: rgba(206, 206, 206, 0.4);
  margin: 0;
}
.cid-tEtpjc57OC progress::-webkit-progress-value {
  background: #6917c7;
}
.cid-tEtpjc57OC progress[value]::-moz-progress-bar {
  background: #6917c7;
}
.cid-tEtpjc57OC progress::-ms-fill {
  background: #6917c7;
}
.cid-tEtpjc57OC .progress1 .progressbar-number:before {
  content: "100";
}
.cid-tEtpjc57OC .progress2 .progressbar-number:before {
  content: "71";
}
.cid-tEtpjc57OC .progress3 .progressbar-number:before {
  content: "53";
}
.cid-tEtpjc57OC .progress4 .progressbar-number:before {
  content: "70";
}
.cid-tEtpjc57OC .progress5 .progressbar-number:before {
  content: "81";
}
.cid-tEtpjc57OC .section-content-text {
  color: #454545;
}
.cid-tEtpjc57OC .progressbar-title p,
.cid-tEtpjc57OC .progress_value {
  color: #ffffff;
  text-align: center;
}
.cid-tEtpjc57OC .mbr-section-subtitle {
  color: #454545;
}
.cid-tEtpjc57OC .section-content-title {
  text-align: center;
  color: #ffffff;
}
.cid-tEtpjc57OC .mbr-fallback-image.disabled {
  display: none;
}
.cid-tEtpjc57OC .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-txBhw0iVMC {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #212428;
}
.cid-txBhw0iVMC .title-section {
  padding: 0px;
  margin-bottom: 20px;
}
@media (min-width: 992px) {
  .cid-txBhw0iVMC .title-section {
    padding: 0 90px;
    margin-bottom: 40px;
  }
}
.cid-txBhw0iVMC .btn {
  display: flex;
}
.cid-txBhw0iVMC .card {
  background-color: transparent;
  border: 2px solid #db3eb1;
  border-radius: 20px;
  box-shadow: 0px 10px 20px 0px rgba(29, 29, 27, 0.2);
}
.cid-txBhw0iVMC .card-body {
  padding: 40px 55px 30px 55px;
}
.cid-txBhw0iVMC .col-img {
  width: 35px;
  height: 35px;
  flex: 0 0 35px;
  margin-right: 22px;
}
.cid-txBhw0iVMC .card-title {
  flex: 1 1 auto;
  width: auto;
}
.cid-txBhw0iVMC .price {
  text-align: center;
  color: #7f6cc0;
}
.cid-txBhw0iVMC .title-section .mbr-section-subtitle {
  text-align: center;
}
.cid-txBhw0iVMC .mbr-fallback-image.disabled {
  display: none;
}
.cid-txBhw0iVMC .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-txBhw0iVMC .text1 {
  text-align: left;
  color: #ffffff;
}
.cid-txBhw0iVMC .mbr-section-subtitle {
  color: #ffffff;
}
.cid-txBhw0iVMC .title-section .mbr-section-title {
  color: #ffffff;
  text-align: left;
}
.cid-txBhwAOBe6 {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #212428;
}
.cid-txBhwAOBe6 .progress {
  width: 100%;
}
.cid-txBhwAOBe6 p {
  margin-bottom: 0.4rem;
}
.cid-txBhwAOBe6 .progressbar-title {
  padding-bottom: 1rem;
}
.cid-txBhwAOBe6 .title-wrap {
  display: flex;
  justify-content: space-between;
  -webkit-justify-content: space-between;
}
.cid-txBhwAOBe6 progress {
  height: 10px;
}
.cid-txBhwAOBe6 .progressbar-number {
  display: inline-block;
  width: 50px;
}
.cid-txBhwAOBe6 .progress-primary {
  background: rgba(206, 206, 206, 0.9);
  border: none;
  outline: none;
}
.cid-txBhwAOBe6 .progress-primary::-webkit-progress-bar {
  background: rgba(206, 206, 206, 0.9);
}
.cid-txBhwAOBe6 .progress_value {
  position: relative;
}
.cid-txBhwAOBe6 .progress1 .progressbar-number:before,
.cid-txBhwAOBe6 .progress2 .progressbar-number:before,
.cid-txBhwAOBe6 .progress3 .progressbar-number:before,
.cid-txBhwAOBe6 .progress4 .progressbar-number:before,
.cid-txBhwAOBe6 .progress5 .progressbar-number:before {
  position: absolute;
  right: 15px;
  top: 0;
}
.cid-txBhwAOBe6 progress[value]::-webkit-progress-bar {
  background: rgba(206, 206, 206, 0.4);
  margin: 0;
}
.cid-txBhwAOBe6 progress::-webkit-progress-value {
  background: #6917c7;
}
.cid-txBhwAOBe6 progress[value]::-moz-progress-bar {
  background: #6917c7;
}
.cid-txBhwAOBe6 progress::-ms-fill {
  background: #6917c7;
}
.cid-txBhwAOBe6 .progress1 .progressbar-number:before {
  content: "100";
}
.cid-txBhwAOBe6 .progress2 .progressbar-number:before {
  content: "71";
}
.cid-txBhwAOBe6 .progress3 .progressbar-number:before {
  content: "53";
}
.cid-txBhwAOBe6 .progress4 .progressbar-number:before {
  content: "70";
}
.cid-txBhwAOBe6 .progress5 .progressbar-number:before {
  content: "81";
}
.cid-txBhwAOBe6 .section-content-text {
  color: #454545;
}
.cid-txBhwAOBe6 .progressbar-title p,
.cid-txBhwAOBe6 .progress_value {
  color: #ffffff;
  text-align: center;
}
.cid-txBhwAOBe6 .mbr-section-subtitle {
  color: #454545;
}
.cid-txBhwAOBe6 .section-content-title {
  text-align: center;
  color: #ffffff;
}
.cid-txBhwAOBe6 .mbr-fallback-image.disabled {
  display: none;
}
.cid-txBhwAOBe6 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tEtpwn24Mx {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #212428;
  overflow: hidden;
}
.cid-tEtpwn24Mx .mbr-fallback-image.disabled {
  display: none;
}
.cid-tEtpwn24Mx .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tEtpwn24Mx .card-row {
  align-items: stretch;
}
.cid-tEtpwn24Mx .item-wrap {
  position: relative;
  height: 100%;
  width: 100%;
  padding: 55px;
  border-radius: 10px;
  overflow: hidden;
  background: linear-gradient(145deg, #1e2024, #000000);
  box-shadow: 10px 10px 19px #7f6cc0, -10px -10px 19px #7f6cc0;
}
@media (max-width: 767px) {
  .cid-tEtpwn24Mx .item-wrap {
    padding: 40px;
  }
}
@media (max-width: 575px) {
  .cid-tEtpwn24Mx .item-wrap {
    padding: 35px 25px 35px 25px;
  }
}
.cid-tEtpwn24Mx .carousel {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 100%;
  width: 100%;
  margin: 0;
}
.cid-tEtpwn24Mx .carousel-inner {
  display: flex;
  align-items: center;
  margin-bottom: 0;
  border-radius: 10px;
}
.cid-tEtpwn24Mx .carousel-item-wrapper {
  display: flex;
  width: 100%;
  overflow: visible;
  padding: 0;
}
.cid-tEtpwn24Mx .carousel-item-wrapper img {
  aspect-ratio: 1.77842566;
  object-fit: cover;
}
.cid-tEtpwn24Mx .carousel-control {
  top: 50%;
  transform: translateY(-50%);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(to right bottom, #212428, #16181c) !important;
  box-shadow: 10px 10px 19px #191b1f, -10px -10px 19px #23272b;
  border: none;
  transition: all 0.4s;
  opacity: 1;
  color: #C4CFDE;
  font-size: 18px;
}
.cid-tEtpwn24Mx .carousel-control.carousel-control-prev {
  left: -30px;
  margin-left: 0;
}
@media (max-width: 575px) {
  .cid-tEtpwn24Mx .carousel-control.carousel-control-prev {
    left: -25px;
  }
}
.cid-tEtpwn24Mx .carousel-control.carousel-control-next {
  right: -30px;
  margin-right: 0;
}
@media (max-width: 575px) {
  .cid-tEtpwn24Mx .carousel-control.carousel-control-next {
    right: -25px;
  }
}
.cid-tEtpwn24Mx .carousel-control:hover {
  color: #FFFFFF !important;
  opacity: 1;
}
.cid-tEtpwn24Mx .mobi-mbri-arrow-next {
  margin-left: 5px;
}
.cid-tEtpwn24Mx .mobi-mbri-arrow-prev {
  margin-right: 5px;
}
.cid-tEtpwn24Mx .container .carousel-indicators {
  margin-bottom: 3px;
  display: none !important;
}
.cid-tEtpwn24Mx .item-menu-overlay {
  opacity: 0 !important;
}
.cid-tEtpwn24Mx .text-row {
  padding-top: 50px;
}
@media (max-width: 991px) {
  .cid-tEtpwn24Mx .text-row {
    padding-top: 30px;
  }
}
.cid-tEtpwn24Mx .card-title {
  color: #C4CFDE;
  margin-bottom: 20px;
}
.cid-tEtpwn24Mx .card-subtitle {
  color: #878e99;
  margin-bottom: 0;
}
.cid-tEtpwn24Mx .card-text-container {
  display: flex;
  align-items: flex-start;
  padding-top: 24px;
  padding-bottom: 8px;
  margin: 0 -30px;
}
@media (max-width: 767px) {
  .cid-tEtpwn24Mx .card-text-container {
    margin: 0 -10px;
  }
}
@media (max-width: 575px) {
  .cid-tEtpwn24Mx .card-text-container {
    flex-wrap: wrap;
  }
}
.cid-tEtpwn24Mx .card-text {
  color: #878e99;
  margin-bottom: 8px;
  margin-top: 8px;
  flex-basis: 50%;
  flex-grow: 1;
  padding-left: 30px;
  padding-right: 30px;
}
@media (max-width: 767px) {
  .cid-tEtpwn24Mx .card-text {
    padding-left: 10px;
    padding-right: 10px;
  }
}
@media (max-width: 575px) {
  .cid-tEtpwn24Mx .card-text {
    flex-basis: 100%;
  }
}
.cid-tEtpwn24Mx .mbr-section-btn {
  display: flex;
  flex-direction: column;
  align-items: stretch;
}
@media (max-width: 991px) {
  .cid-tEtpwn24Mx .mbr-section-btn {
    margin-top: 10px;
  }
}
.cid-tzI1WeU6W6 {
  padding-top: 0rem;
  padding-bottom: 2rem;
  background-color: #212428;
}
.cid-tzI1WeU6W6 .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-tzI1WeU6W6 .card-title {
  margin-bottom: 26px;
  color: #8364e2;
}
.cid-tzI1WeU6W6 .mbr-text {
  margin-bottom: 30px;
}
.cid-tzI1WeU6W6 .iconfont-wrapper {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  border-top-right-radius: 0;
  display: inline-block;
  text-align: center;
  margin-bottom: 30px;
  position: relative;
  z-index: 1;
  box-shadow: 0px 14px 30px 0px rgba(23, 148, 10, 0.4);
  background-image: linear-gradient(125deg, #17940a 0%, #29ef15 100%);
}
.cid-tzI1WeU6W6 .iconfont-wrapper .mbr-iconfont {
  color: #ffffff;
  font-size: 36px;
  line-height: 70px;
}
.cid-tzI1WeU6W6 .btn_link {
  display: block;
  margin-bottom: 0;
  position: relative;
  font-weight: 700;
}
.cid-tzI1WeU6W6 .btn_link span {
  display: inline-block;
  margin-left: .25rem;
  font-size: 16px;
  vertical-align: middle;
  transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.cid-tzI1WeU6W6 .btn_link:hover {
  cursor: pointer;
}
.cid-tzI1WeU6W6 .btn_link:hover a {
  color: #8364e2 !important;
}
.cid-tzI1WeU6W6 .btn_link:hover span {
  transform: translatex(5px);
}
@media (min-width: 992px) {
  .cid-tzI1WeU6W6 .text-wrapper {
    padding-right: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tzI1WeU6W6 .text-wrapper {
    text-align: center;
  }
  .cid-tzI1WeU6W6 .image-wrapper {
    margin-bottom: 40px;
  }
  .cid-tzI1WeU6W6 .mbr-text {
    margin-bottom: 20px;
  }
  .cid-tzI1WeU6W6 .iconfont-wrapper {
    margin-bottom: 20px;
  }
}
.cid-tzI1WeU6W6 .mbr-text,
.cid-tzI1WeU6W6 .btn_link {
  color: #ffffff;
}
.cid-tv20JXf5Ez {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #282b2f;
}
.cid-tv20JXf5Ez svg {
  width: 100%;
  position: absolute;
  left: 0;
  top: -48px;
  height: 50px;
  transform-origin: bottom;
  animation: 1.5s ease-in-out infinite alternate svg2;
}
.cid-tv20JXf5Ez svg .st0 {
  fill: #282b2f;
}
@media (max-width: 992px) {
  .cid-tv20JXf5Ez svg {
    width: 1000px;
  }
}
@keyframes svg2 {
  from {
    transform: scaleX(1) scaleY(1.1) rotate(0deg);
  }
  to {
    transform: scaleX(1) scaleY(1.6) rotate(0deg);
  }
}
.cid-tv20JXf5Ez .list {
  list-style: none;
  padding-left: 0;
  color: #ffffff;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-tv20JXf5Ez .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tv20JXf5Ez .list {
    margin-bottom: 0rem;
  }
}
@media (max-width: 767px) {
  .cid-tv20JXf5Ez .row {
    text-align: center;
  }
}
@media (max-width: 991px) {
  .cid-tv20JXf5Ez div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-tv20JXf5Ez .copyright {
  color: #ffffff;
  text-align: center;
}
.cid-tO3ZaARX6J {
  z-index: 1000;
  width: 100%;
  position: relative;
}
.cid-tO3ZaARX6J .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;
}
@media (max-width: 767px) {
  .cid-tO3ZaARX6J .navbar-toggler {
    transform: scale(0.8);
  }
}
.cid-tO3ZaARX6J .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tO3ZaARX6J .navbar-brand img {
  max-width: 100%;
  max-height: 100%;
  border-radius: 0px !important;
}
.cid-tO3ZaARX6J .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tO3ZaARX6J .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tO3ZaARX6J .navbar-nav {
  margin: auto;
  margin-left: 0;
  margin-left: auto;
}
.cid-tO3ZaARX6J .navbar-nav .nav-item {
  padding: 0 !important;
  transition: .3s all !important;
}
.cid-tO3ZaARX6J .navbar-nav .nav-item .nav-link {
  padding: 16px !important;
  margin: 0 !important;
  border-radius: 1rem !important;
  transition: .3s all !important;
}
.cid-tO3ZaARX6J .navbar-nav .nav-item .nav-link:hover {
  background-color: rgba(27, 31, 10, 0.06);
}
.cid-tO3ZaARX6J .navbar-nav .open .nav-link::after {
  transform: rotate(180deg);
}
@media (min-width: 992px) {
  .cid-tO3ZaARX6J .navbar-nav .open .nav-link::before {
    content: "";
    width: 100%;
    height: 20px;
    top: 100%;
    background: transparent;
    position: absolute;
  }
}
.cid-tO3ZaARX6J .navbar-nav .dropdown-item {
  padding: 12px !important;
  border-radius: 0.5rem !important;
  margin: 0 8px !important;
  transition: .3s all !important;
}
.cid-tO3ZaARX6J .navbar-nav .dropdown-item:hover {
  background-color: rgba(27, 31, 10, 0.06);
}
@media (min-width: 992px) {
  .cid-tO3ZaARX6J .navbar-nav {
    padding-left: 1.5rem;
  }
}
.cid-tO3ZaARX6J .nav-link {
  width: fit-content;
  position: relative;
}
.cid-tO3ZaARX6J .navbar-logo {
  padding-left: 2rem;
  margin: 0 !important;
}
@media (max-width: 767px) {
  .cid-tO3ZaARX6J .navbar-logo {
    padding-left: 1rem;
  }
}
.cid-tO3ZaARX6J .navbar-caption {
  padding-left: 1rem;
  padding-right: .5rem;
}
@media (max-width: 767px) {
  .cid-tO3ZaARX6J .nav-dropdown {
    padding-bottom: 0.5rem;
  }
}
.cid-tO3ZaARX6J .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  transition: .3s all;
}
.cid-tO3ZaARX6J .container {
  display: flex;
  height: 90px;
  padding: 0.5rem 0.6rem;
  flex-wrap: nowrap;
  background: rgba(64, 63, 131, 0.8) !important;
  left: 0;
  right: 0;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: flex-end;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 100vw;
  margin-top: 1rem;
  background-color: #403f83;
  box-shadow: 0 30px 60px 0 rgba(27, 31, 10, 0.08);
}
@media (max-width: 992px) {
  .cid-tO3ZaARX6J .container {
    padding-right: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-tO3ZaARX6J .container {
    width: 95%;
    height: 56px !important;
    padding-right: 1rem;
    margin-top: 0rem;
  }
}
.cid-tO3ZaARX6J .iconfont-wrapper {
  color: #2469ea !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tO3ZaARX6J .dropdown-menu {
  flex-wrap: wrap;
  flex-direction: column;
  max-width: 100%;
  padding: 12px 4px !important;
  border-radius: 1.5rem;
  transition: .3s all !important;
  min-width: auto;
  background: #403f83;
  background: rgba(64, 63, 131, 0.8) !important;
}
.cid-tO3ZaARX6J .nav-item:focus,
.cid-tO3ZaARX6J .nav-link:focus {
  outline: none;
}
.cid-tO3ZaARX6J .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tO3ZaARX6J .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tO3ZaARX6J .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tO3ZaARX6J .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tO3ZaARX6J .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tO3ZaARX6J .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tO3ZaARX6J .navbar {
  min-height: 90px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: transparent !important;
  padding: 0 !important;
  border: none !important;
  box-shadow: none !important;
  border-radius: 0 !important;
}
.cid-tO3ZaARX6J .navbar.opened {
  transition: all 0.3s;
}
.cid-tO3ZaARX6J .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tO3ZaARX6J .navbar .navbar-logo img {
  width: auto;
}
.cid-tO3ZaARX6J .navbar .navbar-collapse {
  z-index: 1;
  justify-content: flex-end;
}
.cid-tO3ZaARX6J .navbar.collapsed {
  justify-content: center;
}
.cid-tO3ZaARX6J .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tO3ZaARX6J .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tO3ZaARX6J .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 2.7rem);
  }
}
.cid-tO3ZaARX6J .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tO3ZaARX6J .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tO3ZaARX6J .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-tO3ZaARX6J .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tO3ZaARX6J .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tO3ZaARX6J .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 767px) {
  .cid-tO3ZaARX6J .navbar {
    min-height: 72px;
  }
  .cid-tO3ZaARX6J .navbar .navbar-logo img {
    height: 2rem !important;
  }
}
@media (max-width: 991px) {
  .cid-tO3ZaARX6J .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tO3ZaARX6J .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tO3ZaARX6J .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tO3ZaARX6J .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tO3ZaARX6J .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-tO3ZaARX6J .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tO3ZaARX6J .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 10px;
  }
  .cid-tO3ZaARX6J .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tO3ZaARX6J .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tO3ZaARX6J .navbar.navbar-short .navbar-logo img {
  height: 2rem;
}
.cid-tO3ZaARX6J .dropdown-item.active,
.cid-tO3ZaARX6J .dropdown-item:active {
  background-color: transparent;
}
.cid-tO3ZaARX6J .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tO3ZaARX6J .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tO3ZaARX6J .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tO3ZaARX6J .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #403f83;
}
.cid-tO3ZaARX6J .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 105%;
  transform: none;
  top: -12px;
}
.cid-tO3ZaARX6J .navbar .dropdown.open > .dropdown-menu {
  display: flex;
}
.cid-tO3ZaARX6J ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tO3ZaARX6J .navbar-buttons {
  text-align: center;
  min-width: 140px;
}
@media (max-width: 992px) {
  .cid-tO3ZaARX6J .navbar-buttons {
    text-align: left;
  }
}
.cid-tO3ZaARX6J button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tO3ZaARX6J button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-tO3ZaARX6J button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tO3ZaARX6J button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tO3ZaARX6J button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tO3ZaARX6J button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tO3ZaARX6J nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tO3ZaARX6J nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tO3ZaARX6J nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tO3ZaARX6J nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tO3ZaARX6J .navbar-dropdown {
  padding: 0 1rem;
}
.cid-tO3ZaARX6J a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tO3ZaARX6J .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media (max-width: 992px) {
  .cid-tO3ZaARX6J .icons-menu {
    justify-content: flex-start;
    margin-bottom: .5rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tO3ZaARX6J .navbar {
    height: 70px;
  }
  .cid-tO3ZaARX6J .navbar.opened {
    height: auto;
  }
  .cid-tO3ZaARX6J .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tO3ZaARX6J .navbar .dropdown > .dropdown-menu {
  display: none;
  width: max-content;
  max-width: 500px !important;
  transform: translateX(-50%);
  top: calc(100% + 20px);
  left: 50%;
}
.cid-tO3ZaARX6J .navbar .dropdown > .dropdown-menu .dropdown-item {
  line-height: 1 !important;
}
.cid-tO3ZaARX6J .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item {
  align-items: center;
  display: flex;
  height: max-content !important;
  min-height: max-content !important;
}
.cid-tO3ZaARX6J .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item::after {
  display: inline-block;
  position: static;
  margin-left: 0.5rem;
  margin-top: 0;
  margin-right: 0;
  margin-bottom: 0;
  transition: .3s all;
  transform: rotate(-90deg);
}
.cid-tO3ZaARX6J .navbar .dropdown > .dropdown-menu .dropdown.open .dropdown-item::after {
  transform: rotate(0deg);
}
.cid-tO3ZaARX6J .mbr-section-btn {
  margin: -0.6rem -0.6rem;
}
.cid-tO3ZaARX6J .navbar-toggler {
  margin-left: 12px;
  margin-right: 8px;
  order: 1000;
}
@media (max-width: 991px) {
  .cid-tO3ZaARX6J .navbar-brand {
    margin-right: auto;
  }
  .cid-tO3ZaARX6J .navbar-collapse {
    z-index: -1 !important;
    position: absolute;
    top: 110%;
    left: 0;
    width: 100%;
    padding: 1rem;
    border-radius: 1.5rem;
    background: #403f83;
    opacity: 1;
    border-color: rgba(64, 63, 131, 0.8) !important;
    background: rgba(64, 63, 131, 0.8) !important;
    backdrop-filter: blur(8px);
  }
  .cid-tO3ZaARX6J .navbar-nav .nav-item .nav-link::after {
    margin-left: 10px;
  }
  .cid-tO3ZaARX6J .navbar-nav .dropdown-item:hover {
    background-color: rgba(27, 31, 10, 0.06);
  }
  .cid-tO3ZaARX6J .navbar .dropdown > .dropdown-menu {
    max-width: 100% !important;
    transform: translateX(0);
    top: 10px;
    left: 0;
    padding: 8px !important;
    border-radius: 1rem;
    background-color: rgba(27, 31, 10, 0.04) !important;
  }
  .cid-tO3ZaARX6J .navbar .dropdown > .dropdown-menu .dropdown-item {
    padding: 8px !important;
    line-height: 1 !important;
    margin-bottom: 4px !important;
  }
  .cid-tO3ZaARX6J .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item {
    align-items: center;
    display: flex;
    height: max-content !important;
    min-height: max-content !important;
  }
  .cid-tO3ZaARX6J .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item::after {
    display: inline-block;
    position: static;
    margin-left: 0.5rem;
    margin-top: 0;
    margin-right: 0;
    margin-bottom: 0;
    transition: .3s all;
    transform: rotate(0deg);
  }
  .cid-tO3ZaARX6J .navbar .dropdown > .dropdown-menu .dropdown.open .dropdown-item::after {
    transform: rotate(180deg);
  }
  .cid-tO3ZaARX6J .navbar .dropdown > .dropdown-menu .dropdown-submenu {
    position: static;
    width: 100%;
    max-width: 100% !important;
    transform: translateX(0) !important;
    top: 0;
    left: 0;
    padding: 8px !important;
    border-radius: 1rem;
    background-color: rgba(27, 31, 10, 0.04) !important;
  }
  .cid-tO3ZaARX6J .navbar .dropdown.open > .dropdown-menu {
    display: flex !important;
    flex-direction: column;
    align-items: flex-start;
  }
}
@media (max-width: 575px) {
  .cid-tO3ZaARX6J .navbar-collapse {
    padding: 1rem;
  }
}
.cid-tsyT3wbFzp {
  background-image: url("../../../assets/images/host3-1920x1080.webp");
}
.cid-tsyT3wbFzp img {
  width: 100%;
  border-radius: 30px;
}
.cid-tsyT3wbFzp .mbr-section-title {
  color: #ffffff;
}
.cid-tsyT3wbFzp .mbr-section-subtitle {
  background-color: #8364e2;
  padding: 0 1rem;
  border-radius: 5px;
  display: inline-block;
  font-family: 'IBM Plex Sans', sans-serif;
  font-weight: 900;
  color: #ffffff;
}
.cid-tsyT3wbFzp .svg-1 {
  position: absolute;
  bottom: 0;
}
.cid-tsyT3wbFzp .svg-1 path {
  fill: #212428;
}
.cid-tsyT3wbFzp .container-fluid {
  max-width: 1200px;
}
.cid-tsyT3wbFzp .mbr-arrow {
  z-index: 1;
}
.cid-tsyT3wbFzp .mbr-section-btn {
  margin-top: 1.5rem;
}
@media (min-width: 768px) {
  .cid-tsyT3wbFzp .container-fluid {
    padding: 0 1.5rem;
  }
}
@media (max-width: 992px) {
  .cid-tsyT3wbFzp .imageContainer {
    margin-top: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-tsyT3wbFzp .container-fluid {
    padding: 0 1rem;
  }
  .cid-tsyT3wbFzp .mbr-section-subtitle {
    margin-bottom: 1.4rem;
  }
}
.cid-tsyT3x4bWR {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #212428;
}
.cid-tsyT3x4bWR .item-img {
  margin-bottom: 1rem;
}
.cid-tsyT3x4bWR .item-img img {
  border-radius: 20px;
}
.cid-tsyT3x4bWR .item-wrapper {
  position: relative;
  background: #1e2024;
  border-radius: 20px;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
  padding: 1.5rem;
  box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.3);
  padding-top: 2rem;
  padding-bottom: 3rem;
}
.cid-tsyT3x4bWR .face-wrap {
  position: absolute;
  left: 1.5rem;
  top: 1rem;
  width: 70px;
  height: 70px;
  border-radius: 50%;
}
.cid-tsyT3x4bWR .face-wrap:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #8364e2;
  border-radius: 50%;
  z-index: 1;
  transition: all 0.3s;
  transform: scale(0.99);
}
.cid-tsyT3x4bWR .face-wrap .mbr-iconfont {
  position: absolute;
  right: 0;
  bottom: 0;
  font-size: 0.8rem;
  color: #ffffff;
  background: #8364e2;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 3;
}
.cid-tsyT3x4bWR .face-wrap:hover .face {
  transform: scale(0.9);
}
.cid-tsyT3x4bWR .face-wrap:hover:before {
  transform: scale(1.1);
}
.cid-tsyT3x4bWR .face {
  object-fit: cover;
  position: relative;
  transition: all 0.3s;
  border-radius: 50%;
  z-index: 2;
}
.cid-tsyT3x4bWR .item-img img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}
.cid-tsyT3x4bWR .item:focus,
.cid-tsyT3x4bWR span:focus {
  outline: none;
}
.cid-tsyT3x4bWR .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-tsyT3x4bWR .row {
  margin-left: 0;
  margin-right: 0;
}
.cid-tsyT3x4bWR .item {
  padding: 0;
  margin: 0;
}
.cid-tsyT3x4bWR .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tsyT3x4bWR .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-tsyT3x4bWR .mbr-text,
.cid-tsyT3x4bWR .mbr-section-btn {
  text-align: center;
  color: #ffffff;
}
.cid-tsyT3x4bWR .item-title {
  text-align: center;
  color: #ffffff;
}
.cid-tsyT3x4bWR .item-subtitle {
  text-align: left;
  color: #ffffff;
}
.cid-tsyT3x4bWR .mbr-link {
  color: #8364e2;
}
.cid-tsyT3x4bWR .mbr-section-subtitle {
  color: #ffffff;
  text-align: center;
}
.cid-tzI24W0fN0 {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #212428;
}
.cid-tzI24W0fN0 .mbr-iconfont {
  display: block;
  font-size: 3rem;
  color: #8364e2;
  margin-bottom: 1rem;
}
.cid-tzI24W0fN0 .main-title {
  position: relative;
  width: fit-content;
  display: inline-block;
  color: #160830;
}
.cid-tzI24W0fN0 .main-title:before {
  content: "";
  bottom: -1rem;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 2px;
  background: currentColor;
  position: absolute;
}
.cid-tzI24W0fN0 .card-wrapper {
  transition: all 0.3s;
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 2.5rem 2rem;
  background: #282b2f;
  border-radius: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 2rem;
  box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.3);
}
.cid-tzI24W0fN0 .card-wrapper:hover {
  background: transparent;
}
.cid-tzI24W0fN0 .card-title,
.cid-tzI24W0fN0 .card-box {
  color: #ffffff;
}
.cid-tzI24W0fN0 .main-title,
.cid-tzI24W0fN0 .title-col {
  text-align: center;
  color: #ffffff;
}
.cid-tzI24W0fN0 .card-text {
  color: #bbbbbb;
}
.cid-tzI24W0fN0 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tzI24W0fN0 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tsYk9DZCjY {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #212428;
}
.cid-tsYk9DZCjY .progress {
  width: 100%;
}
.cid-tsYk9DZCjY p {
  margin-bottom: 0.4rem;
}
.cid-tsYk9DZCjY .progressbar-title {
  padding-bottom: 1rem;
}
.cid-tsYk9DZCjY .title-wrap {
  display: flex;
  justify-content: space-between;
  -webkit-justify-content: space-between;
}
.cid-tsYk9DZCjY progress {
  height: 10px;
}
.cid-tsYk9DZCjY .progressbar-number {
  display: inline-block;
  width: 50px;
}
.cid-tsYk9DZCjY .progress-primary {
  background: rgba(206, 206, 206, 0.9);
  border: none;
  outline: none;
}
.cid-tsYk9DZCjY .progress-primary::-webkit-progress-bar {
  background: rgba(206, 206, 206, 0.9);
}
.cid-tsYk9DZCjY .progress_value {
  position: relative;
}
.cid-tsYk9DZCjY .progress1 .progressbar-number:before,
.cid-tsYk9DZCjY .progress2 .progressbar-number:before,
.cid-tsYk9DZCjY .progress3 .progressbar-number:before,
.cid-tsYk9DZCjY .progress4 .progressbar-number:before,
.cid-tsYk9DZCjY .progress5 .progressbar-number:before {
  position: absolute;
  right: 15px;
  top: 0;
}
.cid-tsYk9DZCjY progress[value]::-webkit-progress-bar {
  background: rgba(206, 206, 206, 0.4);
  margin: 0;
}
.cid-tsYk9DZCjY progress::-webkit-progress-value {
  background: #6917c7;
}
.cid-tsYk9DZCjY progress[value]::-moz-progress-bar {
  background: #6917c7;
}
.cid-tsYk9DZCjY progress::-ms-fill {
  background: #6917c7;
}
.cid-tsYk9DZCjY .progress1 .progressbar-number:before {
  content: "100";
}
.cid-tsYk9DZCjY .progress2 .progressbar-number:before {
  content: "71";
}
.cid-tsYk9DZCjY .progress3 .progressbar-number:before {
  content: "53";
}
.cid-tsYk9DZCjY .progress4 .progressbar-number:before {
  content: "70";
}
.cid-tsYk9DZCjY .progress5 .progressbar-number:before {
  content: "81";
}
.cid-tsYk9DZCjY .section-content-text {
  color: #454545;
}
.cid-tsYk9DZCjY .progressbar-title p,
.cid-tsYk9DZCjY .progress_value {
  color: #ffffff;
  text-align: center;
}
.cid-tsYk9DZCjY .mbr-section-subtitle {
  color: #454545;
}
.cid-tsYk9DZCjY .section-content-title {
  text-align: center;
  color: #ffffff;
}
.cid-tsYk9DZCjY .mbr-fallback-image.disabled {
  display: none;
}
.cid-tsYk9DZCjY .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tEtq4yvLYV {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #212428;
}
.cid-tEtq4yvLYV .main-title {
  position: relative;
  width: fit-content;
  display: inline-block;
  color: #160830;
}
.cid-tEtq4yvLYV .main-title:before {
  content: "";
  bottom: -1rem;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 2px;
  background: currentColor;
  position: absolute;
}
.cid-tEtq4yvLYV img {
  width: 80px;
  margin: auto;
}
.cid-tEtq4yvLYV .card-wrapper {
  transition: all 0.3s;
  border: 2px solid #5b3486;
  padding: 2rem 0;
  background: #5b3486;
  border-radius: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 2rem;
}
.cid-tEtq4yvLYV .card-wrapper:hover {
  background: transparent;
}
.cid-tEtq4yvLYV .card-title,
.cid-tEtq4yvLYV .card-box {
  color: #ffffff;
  text-align: center;
}
.cid-tEtq4yvLYV .main-title,
.cid-tEtq4yvLYV .title-col {
  text-align: center;
  color: #ffffff;
}
.cid-tEtq4yvLYV .card-text {
  color: #bbbbbb;
}
.cid-tEtq4yvLYV .mbr-fallback-image.disabled {
  display: none;
}
.cid-tEtq4yvLYV .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tsYka5pT5m {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #212428;
}
.cid-tsYka5pT5m .progress {
  width: 100%;
}
.cid-tsYka5pT5m p {
  margin-bottom: 0.4rem;
}
.cid-tsYka5pT5m .progressbar-title {
  padding-bottom: 1rem;
}
.cid-tsYka5pT5m .title-wrap {
  display: flex;
  justify-content: space-between;
  -webkit-justify-content: space-between;
}
.cid-tsYka5pT5m progress {
  height: 10px;
}
.cid-tsYka5pT5m .progressbar-number {
  display: inline-block;
  width: 50px;
}
.cid-tsYka5pT5m .progress-primary {
  background: rgba(206, 206, 206, 0.9);
  border: none;
  outline: none;
}
.cid-tsYka5pT5m .progress-primary::-webkit-progress-bar {
  background: rgba(206, 206, 206, 0.9);
}
.cid-tsYka5pT5m .progress_value {
  position: relative;
}
.cid-tsYka5pT5m .progress1 .progressbar-number:before,
.cid-tsYka5pT5m .progress2 .progressbar-number:before,
.cid-tsYka5pT5m .progress3 .progressbar-number:before,
.cid-tsYka5pT5m .progress4 .progressbar-number:before,
.cid-tsYka5pT5m .progress5 .progressbar-number:before {
  position: absolute;
  right: 15px;
  top: 0;
}
.cid-tsYka5pT5m progress[value]::-webkit-progress-bar {
  background: rgba(206, 206, 206, 0.4);
  margin: 0;
}
.cid-tsYka5pT5m progress::-webkit-progress-value {
  background: #6917c7;
}
.cid-tsYka5pT5m progress[value]::-moz-progress-bar {
  background: #6917c7;
}
.cid-tsYka5pT5m progress::-ms-fill {
  background: #6917c7;
}
.cid-tsYka5pT5m .progress1 .progressbar-number:before {
  content: "100";
}
.cid-tsYka5pT5m .progress2 .progressbar-number:before {
  content: "71";
}
.cid-tsYka5pT5m .progress3 .progressbar-number:before {
  content: "53";
}
.cid-tsYka5pT5m .progress4 .progressbar-number:before {
  content: "70";
}
.cid-tsYka5pT5m .progress5 .progressbar-number:before {
  content: "81";
}
.cid-tsYka5pT5m .section-content-text {
  color: #454545;
}
.cid-tsYka5pT5m .progressbar-title p,
.cid-tsYka5pT5m .progress_value {
  color: #ffffff;
  text-align: center;
}
.cid-tsYka5pT5m .mbr-section-subtitle {
  color: #454545;
}
.cid-tsYka5pT5m .section-content-title {
  text-align: center;
  color: #ffffff;
}
.cid-tsYka5pT5m .mbr-fallback-image.disabled {
  display: none;
}
.cid-tsYka5pT5m .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tEzjhC9nDz {
  padding-top: 0rem;
  padding-bottom: 2rem;
  background: #212428;
}
.cid-tEzjhC9nDz .list-group-item {
  background-color: transparent;
  padding: .5rem 3.25rem;
  color: #ffffff;
  text-align: center;
}
.cid-tEzjhC9nDz .plan-body {
  padding-bottom: 2rem;
}
.cid-tEzjhC9nDz .plan-header {
  padding-top: 2rem;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-tEzjhC9nDz .price {
  color: #ffffff;
}
.cid-tEzjhC9nDz .plan {
  border: 2px solid;
  border-image: linear-gradient(45deg, #fedd00, #ff003c) 1;
  word-break: break-word;
  background-color: #1c232b;
  border-radius: 2rem;
  transition: all 0.3s;
}
.cid-tEzjhC9nDz .plan .list-group-item {
  position: relative;
  justify-content: center;
  border: 0;
}
.cid-tEzjhC9nDz .plan .list-group-item::after {
  position: absolute;
  bottom: 1px;
  left: 25%;
  width: 50%;
  height: 1px;
  content: "";
  background-color: rgba(0, 0, 0, 0.1);
}
.cid-tEzjhC9nDz .plan .list-group-item:last-child::after {
  display: none;
}
.cid-tEzjhC9nDz .plan:hover {
  box-shadow: 0 50px 50px -25px rgba(0, 0, 0, 0.3);
  transform: rotate(-2deg) scale(1.03);
}
@media (max-width: 991px) {
  .cid-tEzjhC9nDz .plan {
    margin-bottom: 2rem;
  }
}
.cid-tEzjhC9nDz UL {
  color: #696969;
}
.cid-tEzjhC9nDz .plan-title {
  color: #ffffff;
}
.cid-tEzjhC9nDz .mbr-fallback-image.disabled {
  display: none;
}
.cid-tEzjhC9nDz .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tEzjhC9nDz .price-term {
  color: #ffffff;
}
.cid-tEzjhXmoJ6 {
  padding-top: 0rem;
  padding-bottom: 2rem;
  background: #212428;
}
.cid-tEzjhXmoJ6 .list-group-item {
  background-color: transparent;
  padding: .5rem 3.25rem;
  color: #ffffff;
  text-align: center;
}
.cid-tEzjhXmoJ6 .plan-body {
  padding-bottom: 2rem;
}
.cid-tEzjhXmoJ6 .plan-header {
  padding-top: 2rem;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-tEzjhXmoJ6 .price {
  color: #ffffff;
}
.cid-tEzjhXmoJ6 .plan {
  border: 2px solid;
  border-image: linear-gradient(45deg, #fedd00, #ff003c) 1;
  word-break: break-word;
  background-color: #1c232b;
  border-radius: 2rem;
  transition: all 0.3s;
}
.cid-tEzjhXmoJ6 .plan .list-group-item {
  position: relative;
  justify-content: center;
  border: 0;
}
.cid-tEzjhXmoJ6 .plan .list-group-item::after {
  position: absolute;
  bottom: 1px;
  left: 25%;
  width: 50%;
  height: 1px;
  content: "";
  background-color: rgba(0, 0, 0, 0.1);
}
.cid-tEzjhXmoJ6 .plan .list-group-item:last-child::after {
  display: none;
}
.cid-tEzjhXmoJ6 .plan:hover {
  box-shadow: 0 50px 50px -25px rgba(0, 0, 0, 0.3);
  transform: rotate(-2deg) scale(1.03);
}
@media (max-width: 991px) {
  .cid-tEzjhXmoJ6 .plan {
    margin-bottom: 2rem;
  }
}
.cid-tEzjhXmoJ6 UL {
  color: #696969;
}
.cid-tEzjhXmoJ6 .plan-title {
  color: #ffffff;
}
.cid-tEzjhXmoJ6 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tEzjhXmoJ6 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tEzjhXmoJ6 .price-term {
  color: #ffffff;
}
.cid-tEzjihV4L8 {
  padding-top: 0rem;
  padding-bottom: 2rem;
  background: #212428;
}
.cid-tEzjihV4L8 .list-group-item {
  background-color: transparent;
  padding: .5rem 3.25rem;
  color: #ffffff;
  text-align: center;
}
.cid-tEzjihV4L8 .plan-body {
  padding-bottom: 2rem;
}
.cid-tEzjihV4L8 .plan-header {
  padding-top: 2rem;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-tEzjihV4L8 .price {
  color: #ffffff;
}
.cid-tEzjihV4L8 .plan {
  border: 2px solid;
  border-image: linear-gradient(45deg, #fedd00, #ff003c) 1;
  word-break: break-word;
  background-color: #1c232b;
  border-radius: 2rem;
  transition: all 0.3s;
}
.cid-tEzjihV4L8 .plan .list-group-item {
  position: relative;
  justify-content: center;
  border: 0;
}
.cid-tEzjihV4L8 .plan .list-group-item::after {
  position: absolute;
  bottom: 1px;
  left: 25%;
  width: 50%;
  height: 1px;
  content: "";
  background-color: rgba(0, 0, 0, 0.1);
}
.cid-tEzjihV4L8 .plan .list-group-item:last-child::after {
  display: none;
}
.cid-tEzjihV4L8 .plan:hover {
  box-shadow: 0 50px 50px -25px rgba(0, 0, 0, 0.3);
  transform: rotate(-2deg) scale(1.03);
}
@media (max-width: 991px) {
  .cid-tEzjihV4L8 .plan {
    margin-bottom: 2rem;
  }
}
.cid-tEzjihV4L8 UL {
  color: #696969;
  text-align: center;
}
.cid-tEzjihV4L8 .plan-title {
  color: #ffffff;
}
.cid-tEzjihV4L8 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tEzjihV4L8 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tEzjihV4L8 .price-term {
  color: #ffffff;
}
.cid-tEtqlgFaEB {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #212428;
}
.cid-tEtqlgFaEB .progress {
  width: 100%;
}
.cid-tEtqlgFaEB p {
  margin-bottom: 0.4rem;
}
.cid-tEtqlgFaEB .progressbar-title {
  padding-bottom: 1rem;
}
.cid-tEtqlgFaEB .title-wrap {
  display: flex;
  justify-content: space-between;
  -webkit-justify-content: space-between;
}
.cid-tEtqlgFaEB progress {
  height: 10px;
}
.cid-tEtqlgFaEB .progressbar-number {
  display: inline-block;
  width: 50px;
}
.cid-tEtqlgFaEB .progress-primary {
  background: rgba(206, 206, 206, 0.9);
  border: none;
  outline: none;
}
.cid-tEtqlgFaEB .progress-primary::-webkit-progress-bar {
  background: rgba(206, 206, 206, 0.9);
}
.cid-tEtqlgFaEB .progress_value {
  position: relative;
}
.cid-tEtqlgFaEB .progress1 .progressbar-number:before,
.cid-tEtqlgFaEB .progress2 .progressbar-number:before,
.cid-tEtqlgFaEB .progress3 .progressbar-number:before,
.cid-tEtqlgFaEB .progress4 .progressbar-number:before,
.cid-tEtqlgFaEB .progress5 .progressbar-number:before {
  position: absolute;
  right: 15px;
  top: 0;
}
.cid-tEtqlgFaEB progress[value]::-webkit-progress-bar {
  background: rgba(206, 206, 206, 0.4);
  margin: 0;
}
.cid-tEtqlgFaEB progress::-webkit-progress-value {
  background: #6917c7;
}
.cid-tEtqlgFaEB progress[value]::-moz-progress-bar {
  background: #6917c7;
}
.cid-tEtqlgFaEB progress::-ms-fill {
  background: #6917c7;
}
.cid-tEtqlgFaEB .progress1 .progressbar-number:before {
  content: "100";
}
.cid-tEtqlgFaEB .progress2 .progressbar-number:before {
  content: "71";
}
.cid-tEtqlgFaEB .progress3 .progressbar-number:before {
  content: "53";
}
.cid-tEtqlgFaEB .progress4 .progressbar-number:before {
  content: "70";
}
.cid-tEtqlgFaEB .progress5 .progressbar-number:before {
  content: "81";
}
.cid-tEtqlgFaEB .section-content-text {
  color: #454545;
}
.cid-tEtqlgFaEB .progressbar-title p,
.cid-tEtqlgFaEB .progress_value {
  color: #ffffff;
  text-align: center;
}
.cid-tEtqlgFaEB .mbr-section-subtitle {
  color: #454545;
}
.cid-tEtqlgFaEB .section-content-title {
  text-align: center;
  color: #ffffff;
}
.cid-tEtqlgFaEB .mbr-fallback-image.disabled {
  display: none;
}
.cid-tEtqlgFaEB .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tz3jHNcw2X {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #212428;
}
.cid-tz3jHNcw2X .title-section {
  padding: 0px;
  margin-bottom: 20px;
}
@media (min-width: 992px) {
  .cid-tz3jHNcw2X .title-section {
    padding: 0 90px;
    margin-bottom: 40px;
  }
}
.cid-tz3jHNcw2X .btn {
  display: flex;
}
.cid-tz3jHNcw2X .card {
  background-color: transparent;
  border: 2px solid #db3eb1;
  border-radius: 20px;
  box-shadow: 0px 10px 20px 0px rgba(29, 29, 27, 0.2);
}
.cid-tz3jHNcw2X .card-body {
  padding: 40px 55px 30px 55px;
}
.cid-tz3jHNcw2X .col-img {
  width: 35px;
  height: 35px;
  flex: 0 0 35px;
  margin-right: 22px;
}
.cid-tz3jHNcw2X .card-title {
  flex: 1 1 auto;
  width: auto;
}
.cid-tz3jHNcw2X .price {
  text-align: center;
  color: #7f6cc0;
}
.cid-tz3jHNcw2X .title-section .mbr-section-subtitle {
  text-align: center;
}
.cid-tz3jHNcw2X .mbr-fallback-image.disabled {
  display: none;
}
.cid-tz3jHNcw2X .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tz3jHNcw2X .text1 {
  text-align: left;
  color: #ffffff;
}
.cid-tz3jHNcw2X .mbr-section-subtitle {
  color: #ffffff;
}
.cid-tz3jHNcw2X .title-section .mbr-section-title {
  color: #ffffff;
  text-align: left;
}
.cid-tEtqktnOwn {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #212428;
}
.cid-tEtqktnOwn .progress {
  width: 100%;
}
.cid-tEtqktnOwn p {
  margin-bottom: 0.4rem;
}
.cid-tEtqktnOwn .progressbar-title {
  padding-bottom: 1rem;
}
.cid-tEtqktnOwn .title-wrap {
  display: flex;
  justify-content: space-between;
  -webkit-justify-content: space-between;
}
.cid-tEtqktnOwn progress {
  height: 10px;
}
.cid-tEtqktnOwn .progressbar-number {
  display: inline-block;
  width: 50px;
}
.cid-tEtqktnOwn .progress-primary {
  background: rgba(206, 206, 206, 0.9);
  border: none;
  outline: none;
}
.cid-tEtqktnOwn .progress-primary::-webkit-progress-bar {
  background: rgba(206, 206, 206, 0.9);
}
.cid-tEtqktnOwn .progress_value {
  position: relative;
}
.cid-tEtqktnOwn .progress1 .progressbar-number:before,
.cid-tEtqktnOwn .progress2 .progressbar-number:before,
.cid-tEtqktnOwn .progress3 .progressbar-number:before,
.cid-tEtqktnOwn .progress4 .progressbar-number:before,
.cid-tEtqktnOwn .progress5 .progressbar-number:before {
  position: absolute;
  right: 15px;
  top: 0;
}
.cid-tEtqktnOwn progress[value]::-webkit-progress-bar {
  background: rgba(206, 206, 206, 0.4);
  margin: 0;
}
.cid-tEtqktnOwn progress::-webkit-progress-value {
  background: #6917c7;
}
.cid-tEtqktnOwn progress[value]::-moz-progress-bar {
  background: #6917c7;
}
.cid-tEtqktnOwn progress::-ms-fill {
  background: #6917c7;
}
.cid-tEtqktnOwn .progress1 .progressbar-number:before {
  content: "100";
}
.cid-tEtqktnOwn .progress2 .progressbar-number:before {
  content: "71";
}
.cid-tEtqktnOwn .progress3 .progressbar-number:before {
  content: "53";
}
.cid-tEtqktnOwn .progress4 .progressbar-number:before {
  content: "70";
}
.cid-tEtqktnOwn .progress5 .progressbar-number:before {
  content: "81";
}
.cid-tEtqktnOwn .section-content-text {
  color: #454545;
}
.cid-tEtqktnOwn .progressbar-title p,
.cid-tEtqktnOwn .progress_value {
  color: #ffffff;
  text-align: center;
}
.cid-tEtqktnOwn .mbr-section-subtitle {
  color: #454545;
}
.cid-tEtqktnOwn .section-content-title {
  text-align: center;
  color: #ffffff;
}
.cid-tEtqktnOwn .mbr-fallback-image.disabled {
  display: none;
}
.cid-tEtqktnOwn .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tEtq9GRDBq {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #212428;
  overflow: hidden;
}
.cid-tEtq9GRDBq .mbr-fallback-image.disabled {
  display: none;
}
.cid-tEtq9GRDBq .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tEtq9GRDBq .card-row {
  align-items: stretch;
}
.cid-tEtq9GRDBq .item-wrap {
  position: relative;
  height: 100%;
  width: 100%;
  padding: 55px;
  border-radius: 10px;
  overflow: hidden;
  background: linear-gradient(145deg, #1e2024, #000000);
  box-shadow: 10px 10px 19px #7f6cc0, -10px -10px 19px #7f6cc0;
}
@media (max-width: 767px) {
  .cid-tEtq9GRDBq .item-wrap {
    padding: 40px;
  }
}
@media (max-width: 575px) {
  .cid-tEtq9GRDBq .item-wrap {
    padding: 35px 25px 35px 25px;
  }
}
.cid-tEtq9GRDBq .carousel {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 100%;
  width: 100%;
  margin: 0;
}
.cid-tEtq9GRDBq .carousel-inner {
  display: flex;
  align-items: center;
  margin-bottom: 0;
  border-radius: 10px;
}
.cid-tEtq9GRDBq .carousel-item-wrapper {
  display: flex;
  width: 100%;
  overflow: visible;
  padding: 0;
}
.cid-tEtq9GRDBq .carousel-item-wrapper img {
  aspect-ratio: 1.77842566;
  object-fit: cover;
}
.cid-tEtq9GRDBq .carousel-control {
  top: 50%;
  transform: translateY(-50%);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(to right bottom, #212428, #16181c) !important;
  box-shadow: 10px 10px 19px #191b1f, -10px -10px 19px #23272b;
  border: none;
  transition: all 0.4s;
  opacity: 1;
  color: #C4CFDE;
  font-size: 18px;
}
.cid-tEtq9GRDBq .carousel-control.carousel-control-prev {
  left: -30px;
  margin-left: 0;
}
@media (max-width: 575px) {
  .cid-tEtq9GRDBq .carousel-control.carousel-control-prev {
    left: -25px;
  }
}
.cid-tEtq9GRDBq .carousel-control.carousel-control-next {
  right: -30px;
  margin-right: 0;
}
@media (max-width: 575px) {
  .cid-tEtq9GRDBq .carousel-control.carousel-control-next {
    right: -25px;
  }
}
.cid-tEtq9GRDBq .carousel-control:hover {
  color: #FFFFFF !important;
  opacity: 1;
}
.cid-tEtq9GRDBq .mobi-mbri-arrow-next {
  margin-left: 5px;
}
.cid-tEtq9GRDBq .mobi-mbri-arrow-prev {
  margin-right: 5px;
}
.cid-tEtq9GRDBq .container .carousel-indicators {
  margin-bottom: 3px;
  display: none !important;
}
.cid-tEtq9GRDBq .item-menu-overlay {
  opacity: 0 !important;
}
.cid-tEtq9GRDBq .text-row {
  padding-top: 50px;
}
@media (max-width: 991px) {
  .cid-tEtq9GRDBq .text-row {
    padding-top: 30px;
  }
}
.cid-tEtq9GRDBq .card-title {
  color: #C4CFDE;
  margin-bottom: 20px;
}
.cid-tEtq9GRDBq .card-subtitle {
  color: #878e99;
  margin-bottom: 0;
}
.cid-tEtq9GRDBq .card-text-container {
  display: flex;
  align-items: flex-start;
  padding-top: 24px;
  padding-bottom: 8px;
  margin: 0 -30px;
}
@media (max-width: 767px) {
  .cid-tEtq9GRDBq .card-text-container {
    margin: 0 -10px;
  }
}
@media (max-width: 575px) {
  .cid-tEtq9GRDBq .card-text-container {
    flex-wrap: wrap;
  }
}
.cid-tEtq9GRDBq .card-text {
  color: #878e99;
  margin-bottom: 8px;
  margin-top: 8px;
  flex-basis: 50%;
  flex-grow: 1;
  padding-left: 30px;
  padding-right: 30px;
}
@media (max-width: 767px) {
  .cid-tEtq9GRDBq .card-text {
    padding-left: 10px;
    padding-right: 10px;
  }
}
@media (max-width: 575px) {
  .cid-tEtq9GRDBq .card-text {
    flex-basis: 100%;
  }
}
.cid-tEtq9GRDBq .mbr-section-btn {
  display: flex;
  flex-direction: column;
  align-items: stretch;
}
@media (max-width: 991px) {
  .cid-tEtq9GRDBq .mbr-section-btn {
    margin-top: 10px;
  }
}
.cid-tzI9vngi8Q {
  padding-top: 1rem;
  padding-bottom: 2rem;
  background-color: #212428;
}
.cid-tzI9vngi8Q .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-tzI9vngi8Q .card-title {
  margin-bottom: 26px;
  color: #8364e2;
}
.cid-tzI9vngi8Q .mbr-text {
  margin-bottom: 30px;
}
.cid-tzI9vngi8Q .iconfont-wrapper {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  border-top-right-radius: 0;
  display: inline-block;
  text-align: center;
  margin-bottom: 30px;
  position: relative;
  z-index: 1;
  box-shadow: 0px 14px 30px 0px rgba(148, 10, 36, 0.4);
  background-image: linear-gradient(125deg, #940a24 0%, #ef153e 100%);
}
.cid-tzI9vngi8Q .iconfont-wrapper .mbr-iconfont {
  color: #ffffff;
  font-size: 36px;
  line-height: 70px;
}
.cid-tzI9vngi8Q .btn_link {
  display: block;
  margin-bottom: 0;
  position: relative;
  font-weight: 700;
}
.cid-tzI9vngi8Q .btn_link span {
  display: inline-block;
  margin-left: .25rem;
  font-size: 16px;
  vertical-align: middle;
  transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.cid-tzI9vngi8Q .btn_link:hover {
  cursor: pointer;
}
.cid-tzI9vngi8Q .btn_link:hover a {
  color: #8364e2 !important;
}
.cid-tzI9vngi8Q .btn_link:hover span {
  transform: translatex(5px);
}
@media (min-width: 992px) {
  .cid-tzI9vngi8Q .text-wrapper {
    padding-right: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tzI9vngi8Q .text-wrapper {
    text-align: center;
  }
  .cid-tzI9vngi8Q .image-wrapper {
    margin-bottom: 40px;
  }
  .cid-tzI9vngi8Q .mbr-text {
    margin-bottom: 20px;
  }
  .cid-tzI9vngi8Q .iconfont-wrapper {
    margin-bottom: 20px;
  }
}
.cid-tzI9vngi8Q .mbr-text,
.cid-tzI9vngi8Q .btn_link {
  color: #ffffff;
  text-align: left;
}
.cid-tzI9vngi8Q .card-title,
.cid-tzI9vngi8Q .icon_block {
  text-align: left;
}
.cid-tv20JXf5Ez {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #282b2f;
}
.cid-tv20JXf5Ez svg {
  width: 100%;
  position: absolute;
  left: 0;
  top: -48px;
  height: 50px;
  transform-origin: bottom;
  animation: 1.5s ease-in-out infinite alternate svg2;
}
.cid-tv20JXf5Ez svg .st0 {
  fill: #282b2f;
}
@media (max-width: 992px) {
  .cid-tv20JXf5Ez svg {
    width: 1000px;
  }
}
@keyframes svg2 {
  from {
    transform: scaleX(1) scaleY(1.1) rotate(0deg);
  }
  to {
    transform: scaleX(1) scaleY(1.6) rotate(0deg);
  }
}
.cid-tv20JXf5Ez .list {
  list-style: none;
  padding-left: 0;
  color: #ffffff;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-tv20JXf5Ez .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tv20JXf5Ez .list {
    margin-bottom: 0rem;
  }
}
@media (max-width: 767px) {
  .cid-tv20JXf5Ez .row {
    text-align: center;
  }
}
@media (max-width: 991px) {
  .cid-tv20JXf5Ez div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-tv20JXf5Ez .copyright {
  color: #ffffff;
  text-align: center;
}
.cid-tO3ZaARX6J {
  z-index: 1000;
  width: 100%;
  position: relative;
}
.cid-tO3ZaARX6J .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;
}
@media (max-width: 767px) {
  .cid-tO3ZaARX6J .navbar-toggler {
    transform: scale(0.8);
  }
}
.cid-tO3ZaARX6J .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tO3ZaARX6J .navbar-brand img {
  max-width: 100%;
  max-height: 100%;
  border-radius: 0px !important;
}
.cid-tO3ZaARX6J .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tO3ZaARX6J .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tO3ZaARX6J .navbar-nav {
  margin: auto;
  margin-left: 0;
  margin-left: auto;
}
.cid-tO3ZaARX6J .navbar-nav .nav-item {
  padding: 0 !important;
  transition: .3s all !important;
}
.cid-tO3ZaARX6J .navbar-nav .nav-item .nav-link {
  padding: 16px !important;
  margin: 0 !important;
  border-radius: 1rem !important;
  transition: .3s all !important;
}
.cid-tO3ZaARX6J .navbar-nav .nav-item .nav-link:hover {
  background-color: rgba(27, 31, 10, 0.06);
}
.cid-tO3ZaARX6J .navbar-nav .open .nav-link::after {
  transform: rotate(180deg);
}
@media (min-width: 992px) {
  .cid-tO3ZaARX6J .navbar-nav .open .nav-link::before {
    content: "";
    width: 100%;
    height: 20px;
    top: 100%;
    background: transparent;
    position: absolute;
  }
}
.cid-tO3ZaARX6J .navbar-nav .dropdown-item {
  padding: 12px !important;
  border-radius: 0.5rem !important;
  margin: 0 8px !important;
  transition: .3s all !important;
}
.cid-tO3ZaARX6J .navbar-nav .dropdown-item:hover {
  background-color: rgba(27, 31, 10, 0.06);
}
@media (min-width: 992px) {
  .cid-tO3ZaARX6J .navbar-nav {
    padding-left: 1.5rem;
  }
}
.cid-tO3ZaARX6J .nav-link {
  width: fit-content;
  position: relative;
}
.cid-tO3ZaARX6J .navbar-logo {
  padding-left: 2rem;
  margin: 0 !important;
}
@media (max-width: 767px) {
  .cid-tO3ZaARX6J .navbar-logo {
    padding-left: 1rem;
  }
}
.cid-tO3ZaARX6J .navbar-caption {
  padding-left: 1rem;
  padding-right: .5rem;
}
@media (max-width: 767px) {
  .cid-tO3ZaARX6J .nav-dropdown {
    padding-bottom: 0.5rem;
  }
}
.cid-tO3ZaARX6J .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  transition: .3s all;
}
.cid-tO3ZaARX6J .container {
  display: flex;
  height: 90px;
  padding: 0.5rem 0.6rem;
  flex-wrap: nowrap;
  background: rgba(64, 63, 131, 0.8) !important;
  left: 0;
  right: 0;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: flex-end;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 100vw;
  margin-top: 1rem;
  background-color: #403f83;
  box-shadow: 0 30px 60px 0 rgba(27, 31, 10, 0.08);
}
@media (max-width: 992px) {
  .cid-tO3ZaARX6J .container {
    padding-right: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-tO3ZaARX6J .container {
    width: 95%;
    height: 56px !important;
    padding-right: 1rem;
    margin-top: 0rem;
  }
}
.cid-tO3ZaARX6J .iconfont-wrapper {
  color: #2469ea !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tO3ZaARX6J .dropdown-menu {
  flex-wrap: wrap;
  flex-direction: column;
  max-width: 100%;
  padding: 12px 4px !important;
  border-radius: 1.5rem;
  transition: .3s all !important;
  min-width: auto;
  background: #403f83;
  background: rgba(64, 63, 131, 0.8) !important;
}
.cid-tO3ZaARX6J .nav-item:focus,
.cid-tO3ZaARX6J .nav-link:focus {
  outline: none;
}
.cid-tO3ZaARX6J .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tO3ZaARX6J .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tO3ZaARX6J .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tO3ZaARX6J .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tO3ZaARX6J .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tO3ZaARX6J .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tO3ZaARX6J .navbar {
  min-height: 90px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: transparent !important;
  padding: 0 !important;
  border: none !important;
  box-shadow: none !important;
  border-radius: 0 !important;
}
.cid-tO3ZaARX6J .navbar.opened {
  transition: all 0.3s;
}
.cid-tO3ZaARX6J .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tO3ZaARX6J .navbar .navbar-logo img {
  width: auto;
}
.cid-tO3ZaARX6J .navbar .navbar-collapse {
  z-index: 1;
  justify-content: flex-end;
}
.cid-tO3ZaARX6J .navbar.collapsed {
  justify-content: center;
}
.cid-tO3ZaARX6J .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tO3ZaARX6J .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tO3ZaARX6J .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 2.7rem);
  }
}
.cid-tO3ZaARX6J .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tO3ZaARX6J .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tO3ZaARX6J .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-tO3ZaARX6J .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tO3ZaARX6J .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tO3ZaARX6J .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 767px) {
  .cid-tO3ZaARX6J .navbar {
    min-height: 72px;
  }
  .cid-tO3ZaARX6J .navbar .navbar-logo img {
    height: 2rem !important;
  }
}
@media (max-width: 991px) {
  .cid-tO3ZaARX6J .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tO3ZaARX6J .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tO3ZaARX6J .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tO3ZaARX6J .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tO3ZaARX6J .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-tO3ZaARX6J .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tO3ZaARX6J .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 10px;
  }
  .cid-tO3ZaARX6J .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tO3ZaARX6J .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tO3ZaARX6J .navbar.navbar-short .navbar-logo img {
  height: 2rem;
}
.cid-tO3ZaARX6J .dropdown-item.active,
.cid-tO3ZaARX6J .dropdown-item:active {
  background-color: transparent;
}
.cid-tO3ZaARX6J .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tO3ZaARX6J .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tO3ZaARX6J .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tO3ZaARX6J .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #403f83;
}
.cid-tO3ZaARX6J .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 105%;
  transform: none;
  top: -12px;
}
.cid-tO3ZaARX6J .navbar .dropdown.open > .dropdown-menu {
  display: flex;
}
.cid-tO3ZaARX6J ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tO3ZaARX6J .navbar-buttons {
  text-align: center;
  min-width: 140px;
}
@media (max-width: 992px) {
  .cid-tO3ZaARX6J .navbar-buttons {
    text-align: left;
  }
}
.cid-tO3ZaARX6J button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tO3ZaARX6J button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-tO3ZaARX6J button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tO3ZaARX6J button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tO3ZaARX6J button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tO3ZaARX6J button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tO3ZaARX6J nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tO3ZaARX6J nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tO3ZaARX6J nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tO3ZaARX6J nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tO3ZaARX6J .navbar-dropdown {
  padding: 0 1rem;
}
.cid-tO3ZaARX6J a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tO3ZaARX6J .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media (max-width: 992px) {
  .cid-tO3ZaARX6J .icons-menu {
    justify-content: flex-start;
    margin-bottom: .5rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tO3ZaARX6J .navbar {
    height: 70px;
  }
  .cid-tO3ZaARX6J .navbar.opened {
    height: auto;
  }
  .cid-tO3ZaARX6J .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tO3ZaARX6J .navbar .dropdown > .dropdown-menu {
  display: none;
  width: max-content;
  max-width: 500px !important;
  transform: translateX(-50%);
  top: calc(100% + 20px);
  left: 50%;
}
.cid-tO3ZaARX6J .navbar .dropdown > .dropdown-menu .dropdown-item {
  line-height: 1 !important;
}
.cid-tO3ZaARX6J .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item {
  align-items: center;
  display: flex;
  height: max-content !important;
  min-height: max-content !important;
}
.cid-tO3ZaARX6J .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item::after {
  display: inline-block;
  position: static;
  margin-left: 0.5rem;
  margin-top: 0;
  margin-right: 0;
  margin-bottom: 0;
  transition: .3s all;
  transform: rotate(-90deg);
}
.cid-tO3ZaARX6J .navbar .dropdown > .dropdown-menu .dropdown.open .dropdown-item::after {
  transform: rotate(0deg);
}
.cid-tO3ZaARX6J .mbr-section-btn {
  margin: -0.6rem -0.6rem;
}
.cid-tO3ZaARX6J .navbar-toggler {
  margin-left: 12px;
  margin-right: 8px;
  order: 1000;
}
@media (max-width: 991px) {
  .cid-tO3ZaARX6J .navbar-brand {
    margin-right: auto;
  }
  .cid-tO3ZaARX6J .navbar-collapse {
    z-index: -1 !important;
    position: absolute;
    top: 110%;
    left: 0;
    width: 100%;
    padding: 1rem;
    border-radius: 1.5rem;
    background: #403f83;
    opacity: 1;
    border-color: rgba(64, 63, 131, 0.8) !important;
    background: rgba(64, 63, 131, 0.8) !important;
    backdrop-filter: blur(8px);
  }
  .cid-tO3ZaARX6J .navbar-nav .nav-item .nav-link::after {
    margin-left: 10px;
  }
  .cid-tO3ZaARX6J .navbar-nav .dropdown-item:hover {
    background-color: rgba(27, 31, 10, 0.06);
  }
  .cid-tO3ZaARX6J .navbar .dropdown > .dropdown-menu {
    max-width: 100% !important;
    transform: translateX(0);
    top: 10px;
    left: 0;
    padding: 8px !important;
    border-radius: 1rem;
    background-color: rgba(27, 31, 10, 0.04) !important;
  }
  .cid-tO3ZaARX6J .navbar .dropdown > .dropdown-menu .dropdown-item {
    padding: 8px !important;
    line-height: 1 !important;
    margin-bottom: 4px !important;
  }
  .cid-tO3ZaARX6J .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item {
    align-items: center;
    display: flex;
    height: max-content !important;
    min-height: max-content !important;
  }
  .cid-tO3ZaARX6J .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item::after {
    display: inline-block;
    position: static;
    margin-left: 0.5rem;
    margin-top: 0;
    margin-right: 0;
    margin-bottom: 0;
    transition: .3s all;
    transform: rotate(0deg);
  }
  .cid-tO3ZaARX6J .navbar .dropdown > .dropdown-menu .dropdown.open .dropdown-item::after {
    transform: rotate(180deg);
  }
  .cid-tO3ZaARX6J .navbar .dropdown > .dropdown-menu .dropdown-submenu {
    position: static;
    width: 100%;
    max-width: 100% !important;
    transform: translateX(0) !important;
    top: 0;
    left: 0;
    padding: 8px !important;
    border-radius: 1rem;
    background-color: rgba(27, 31, 10, 0.04) !important;
  }
  .cid-tO3ZaARX6J .navbar .dropdown.open > .dropdown-menu {
    display: flex !important;
    flex-direction: column;
    align-items: flex-start;
  }
}
@media (max-width: 575px) {
  .cid-tO3ZaARX6J .navbar-collapse {
    padding: 1rem;
  }
}
.cid-ts6Qb5R2GR {
  background-image: url("../../../assets/images/minecraftdungeons-1920x1080.webp");
}
.cid-ts6Qb5R2GR img {
  width: 100%;
  border-radius: 30px;
}
.cid-ts6Qb5R2GR .mbr-section-title {
  color: #ffffff;
}
.cid-ts6Qb5R2GR .mbr-section-subtitle {
  background-color: #8364e2;
  padding: 0 1rem;
  border-radius: 5px;
  display: inline-block;
  font-family: 'IBM Plex Sans', sans-serif;
  font-weight: 900;
  color: #ffffff;
}
.cid-ts6Qb5R2GR .svg-1 {
  position: absolute;
  bottom: 0;
}
.cid-ts6Qb5R2GR .svg-1 path {
  fill: #212428;
}
.cid-ts6Qb5R2GR .container-fluid {
  max-width: 1200px;
}
.cid-ts6Qb5R2GR .mbr-arrow {
  z-index: 1;
}
.cid-ts6Qb5R2GR .mbr-section-btn {
  margin-top: 1.5rem;
}
@media (min-width: 768px) {
  .cid-ts6Qb5R2GR .container-fluid {
    padding: 0 1.5rem;
  }
}
@media (max-width: 992px) {
  .cid-ts6Qb5R2GR .imageContainer {
    margin-top: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-ts6Qb5R2GR .container-fluid {
    padding: 0 1rem;
  }
  .cid-ts6Qb5R2GR .mbr-section-subtitle {
    margin-bottom: 1.4rem;
  }
}
.cid-ts76pLFfL6 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #212428;
}
.cid-ts76pLFfL6 .item-img {
  margin-bottom: 1rem;
}
.cid-ts76pLFfL6 .item-img img {
  border-radius: 20px;
}
.cid-ts76pLFfL6 .item-wrapper {
  position: relative;
  background: #1e2024;
  border-radius: 20px;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
  padding: 1.5rem;
  box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.3);
  padding-top: 2rem;
  padding-bottom: 3rem;
}
.cid-ts76pLFfL6 .face-wrap {
  position: absolute;
  left: 1.5rem;
  top: 1rem;
  width: 70px;
  height: 70px;
  border-radius: 50%;
}
.cid-ts76pLFfL6 .face-wrap:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #8364e2;
  border-radius: 50%;
  z-index: 1;
  transition: all 0.3s;
  transform: scale(0.99);
}
.cid-ts76pLFfL6 .face-wrap .mbr-iconfont {
  position: absolute;
  right: 0;
  bottom: 0;
  font-size: 0.8rem;
  color: #ffffff;
  background: #8364e2;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 3;
}
.cid-ts76pLFfL6 .face-wrap:hover .face {
  transform: scale(0.9);
}
.cid-ts76pLFfL6 .face-wrap:hover:before {
  transform: scale(1.1);
}
.cid-ts76pLFfL6 .face {
  object-fit: cover;
  position: relative;
  transition: all 0.3s;
  border-radius: 50%;
  z-index: 2;
}
.cid-ts76pLFfL6 .item-img img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}
.cid-ts76pLFfL6 .item:focus,
.cid-ts76pLFfL6 span:focus {
  outline: none;
}
.cid-ts76pLFfL6 .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-ts76pLFfL6 .mbr-section-btn {
  margin-top: auto !important;
}
.cid-ts76pLFfL6 .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-ts76pLFfL6 .mbr-text,
.cid-ts76pLFfL6 .mbr-section-btn {
  text-align: center;
  color: #ffffff;
}
.cid-ts76pLFfL6 .item-title {
  text-align: center;
  color: #ffffff;
}
.cid-ts76pLFfL6 .item-subtitle {
  text-align: left;
  color: #ffffff;
}
.cid-ts76pLFfL6 .mbr-link {
  color: #8364e2;
}
.cid-ts76pLFfL6 .mbr-section-subtitle {
  color: #ffffff;
  text-align: center;
}
.cid-ts6QbafuXK {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #212428;
}
.cid-ts6QbafuXK .mbr-iconfont {
  display: block;
  font-size: 3rem;
  color: #8364e2;
  margin-bottom: 1rem;
}
.cid-ts6QbafuXK .main-title {
  position: relative;
  width: fit-content;
  display: inline-block;
  color: #160830;
}
.cid-ts6QbafuXK .main-title:before {
  content: "";
  bottom: -1rem;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 2px;
  background: currentColor;
  position: absolute;
}
.cid-ts6QbafuXK .card-wrapper {
  transition: all 0.3s;
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 2.5rem 2rem;
  background: #282b2f;
  border-radius: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 2rem;
  box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.3);
}
.cid-ts6QbafuXK .card-wrapper:hover {
  background: transparent;
}
.cid-ts6QbafuXK .card-title,
.cid-ts6QbafuXK .card-box {
  color: #ffffff;
}
.cid-ts6QbafuXK .main-title,
.cid-ts6QbafuXK .title-col {
  text-align: center;
  color: #ffffff;
}
.cid-ts6QbafuXK .card-text {
  color: #bbbbbb;
}
.cid-ts6QbafuXK .mbr-fallback-image.disabled {
  display: none;
}
.cid-ts6QbafuXK .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tsYim0QP8Q {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #212428;
}
.cid-tsYim0QP8Q .progress {
  width: 100%;
}
.cid-tsYim0QP8Q p {
  margin-bottom: 0.4rem;
}
.cid-tsYim0QP8Q .progressbar-title {
  padding-bottom: 1rem;
}
.cid-tsYim0QP8Q .title-wrap {
  display: flex;
  justify-content: space-between;
  -webkit-justify-content: space-between;
}
.cid-tsYim0QP8Q progress {
  height: 10px;
}
.cid-tsYim0QP8Q .progressbar-number {
  display: inline-block;
  width: 50px;
}
.cid-tsYim0QP8Q .progress-primary {
  background: rgba(206, 206, 206, 0.9);
  border: none;
  outline: none;
}
.cid-tsYim0QP8Q .progress-primary::-webkit-progress-bar {
  background: rgba(206, 206, 206, 0.9);
}
.cid-tsYim0QP8Q .progress_value {
  position: relative;
}
.cid-tsYim0QP8Q .progress1 .progressbar-number:before,
.cid-tsYim0QP8Q .progress2 .progressbar-number:before,
.cid-tsYim0QP8Q .progress3 .progressbar-number:before,
.cid-tsYim0QP8Q .progress4 .progressbar-number:before,
.cid-tsYim0QP8Q .progress5 .progressbar-number:before {
  position: absolute;
  right: 15px;
  top: 0;
}
.cid-tsYim0QP8Q progress[value]::-webkit-progress-bar {
  background: rgba(206, 206, 206, 0.4);
  margin: 0;
}
.cid-tsYim0QP8Q progress::-webkit-progress-value {
  background: #6917c7;
}
.cid-tsYim0QP8Q progress[value]::-moz-progress-bar {
  background: #6917c7;
}
.cid-tsYim0QP8Q progress::-ms-fill {
  background: #6917c7;
}
.cid-tsYim0QP8Q .progress1 .progressbar-number:before {
  content: "100";
}
.cid-tsYim0QP8Q .progress2 .progressbar-number:before {
  content: "71";
}
.cid-tsYim0QP8Q .progress3 .progressbar-number:before {
  content: "53";
}
.cid-tsYim0QP8Q .progress4 .progressbar-number:before {
  content: "70";
}
.cid-tsYim0QP8Q .progress5 .progressbar-number:before {
  content: "81";
}
.cid-tsYim0QP8Q .section-content-text {
  color: #454545;
}
.cid-tsYim0QP8Q .progressbar-title p,
.cid-tsYim0QP8Q .progress_value {
  color: #ffffff;
  text-align: center;
}
.cid-tsYim0QP8Q .mbr-section-subtitle {
  color: #454545;
}
.cid-tsYim0QP8Q .section-content-title {
  text-align: center;
  color: #ffffff;
}
.cid-tsYim0QP8Q .mbr-fallback-image.disabled {
  display: none;
}
.cid-tsYim0QP8Q .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tsYikjzXbW {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #212428;
}
.cid-tsYikjzXbW .main-title {
  position: relative;
  width: fit-content;
  display: inline-block;
  color: #160830;
}
.cid-tsYikjzXbW .main-title:before {
  content: "";
  bottom: -1rem;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 2px;
  background: currentColor;
  position: absolute;
}
.cid-tsYikjzXbW img {
  width: 80px;
  margin: auto;
}
.cid-tsYikjzXbW .card-wrapper {
  transition: all 0.3s;
  border: 2px solid #5b3486;
  padding: 2rem 0;
  background: #5b3486;
  border-radius: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 2rem;
}
.cid-tsYikjzXbW .card-wrapper:hover {
  background: transparent;
}
.cid-tsYikjzXbW .card-title,
.cid-tsYikjzXbW .card-box {
  color: #ffffff;
  text-align: center;
}
.cid-tsYikjzXbW .main-title,
.cid-tsYikjzXbW .title-col {
  text-align: center;
  color: #ffffff;
}
.cid-tsYikjzXbW .card-text {
  color: #bbbbbb;
}
.cid-tsYikjzXbW .mbr-fallback-image.disabled {
  display: none;
}
.cid-tsYikjzXbW .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tsYil5gGLC {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #212428;
}
.cid-tsYil5gGLC .progress {
  width: 100%;
}
.cid-tsYil5gGLC p {
  margin-bottom: 0.4rem;
}
.cid-tsYil5gGLC .progressbar-title {
  padding-bottom: 1rem;
}
.cid-tsYil5gGLC .title-wrap {
  display: flex;
  justify-content: space-between;
  -webkit-justify-content: space-between;
}
.cid-tsYil5gGLC progress {
  height: 10px;
}
.cid-tsYil5gGLC .progressbar-number {
  display: inline-block;
  width: 50px;
}
.cid-tsYil5gGLC .progress-primary {
  background: rgba(206, 206, 206, 0.9);
  border: none;
  outline: none;
}
.cid-tsYil5gGLC .progress-primary::-webkit-progress-bar {
  background: rgba(206, 206, 206, 0.9);
}
.cid-tsYil5gGLC .progress_value {
  position: relative;
}
.cid-tsYil5gGLC .progress1 .progressbar-number:before,
.cid-tsYil5gGLC .progress2 .progressbar-number:before,
.cid-tsYil5gGLC .progress3 .progressbar-number:before,
.cid-tsYil5gGLC .progress4 .progressbar-number:before,
.cid-tsYil5gGLC .progress5 .progressbar-number:before {
  position: absolute;
  right: 15px;
  top: 0;
}
.cid-tsYil5gGLC progress[value]::-webkit-progress-bar {
  background: rgba(206, 206, 206, 0.4);
  margin: 0;
}
.cid-tsYil5gGLC progress::-webkit-progress-value {
  background: #6917c7;
}
.cid-tsYil5gGLC progress[value]::-moz-progress-bar {
  background: #6917c7;
}
.cid-tsYil5gGLC progress::-ms-fill {
  background: #6917c7;
}
.cid-tsYil5gGLC .progress1 .progressbar-number:before {
  content: "100";
}
.cid-tsYil5gGLC .progress2 .progressbar-number:before {
  content: "71";
}
.cid-tsYil5gGLC .progress3 .progressbar-number:before {
  content: "53";
}
.cid-tsYil5gGLC .progress4 .progressbar-number:before {
  content: "70";
}
.cid-tsYil5gGLC .progress5 .progressbar-number:before {
  content: "81";
}
.cid-tsYil5gGLC .section-content-text {
  color: #454545;
}
.cid-tsYil5gGLC .progressbar-title p,
.cid-tsYil5gGLC .progress_value {
  color: #ffffff;
  text-align: center;
}
.cid-tsYil5gGLC .mbr-section-subtitle {
  color: #454545;
}
.cid-tsYil5gGLC .section-content-title {
  text-align: center;
  color: #ffffff;
}
.cid-tsYil5gGLC .mbr-fallback-image.disabled {
  display: none;
}
.cid-tsYil5gGLC .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ts6QbgHkpO {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #212428;
}
.cid-ts6QbgHkpO .title-section {
  padding: 0px;
  margin-bottom: 20px;
}
@media (min-width: 992px) {
  .cid-ts6QbgHkpO .title-section {
    padding: 0 90px;
    margin-bottom: 40px;
  }
}
.cid-ts6QbgHkpO .btn {
  display: flex;
}
.cid-ts6QbgHkpO .card {
  background-color: transparent;
  border: 2px solid #8364e2;
  border-radius: 20px;
}
.cid-ts6QbgHkpO .card-body {
  padding: 40px 55px 30px 55px;
}
.cid-ts6QbgHkpO .col-img {
  width: 35px;
  height: 35px;
  flex: 0 0 35px;
  margin-right: 22px;
}
.cid-ts6QbgHkpO .card-title {
  flex: 1 1 auto;
  width: auto;
}
.cid-ts6QbgHkpO .price {
  text-align: center;
  color: #7f6cc0;
}
.cid-ts6QbgHkpO .title-section .mbr-section-subtitle {
  text-align: left;
}
.cid-ts6QbgHkpO .mbr-fallback-image.disabled {
  display: none;
}
.cid-ts6QbgHkpO .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ts6QbgHkpO .text1 {
  text-align: left;
  color: #ffffff;
}
.cid-ts6QbgHkpO .mbr-section-subtitle {
  color: #ffffff;
  text-align: left;
}
.cid-ts6QbgHkpO .title-section .mbr-section-title {
  color: #ffffff;
  text-align: right;
}
.cid-ts6QbjSkVU {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #212428;
}
.cid-ts6QbjSkVU .title-section {
  padding: 0px;
  margin-bottom: 20px;
}
@media (min-width: 992px) {
  .cid-ts6QbjSkVU .title-section {
    padding: 0 90px;
    margin-bottom: 40px;
  }
}
.cid-ts6QbjSkVU .btn {
  display: flex;
}
.cid-ts6QbjSkVU .card {
  background-color: transparent;
  border: 2px solid #8364e2;
  border-radius: 20px;
}
.cid-ts6QbjSkVU .card-body {
  padding: 40px 55px 30px 55px;
}
.cid-ts6QbjSkVU .col-img {
  width: 35px;
  height: 35px;
  flex: 0 0 35px;
  margin-right: 22px;
}
.cid-ts6QbjSkVU .card-title {
  flex: 1 1 auto;
  width: auto;
}
.cid-ts6QbjSkVU .price {
  text-align: center;
  color: #7f6cc0;
}
.cid-ts6QbjSkVU .title-section .mbr-section-subtitle {
  text-align: left;
}
.cid-ts6QbjSkVU .mbr-fallback-image.disabled {
  display: none;
}
.cid-ts6QbjSkVU .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ts6QbjSkVU .text1 {
  text-align: left;
  color: #ffffff;
}
.cid-ts6QbjSkVU .mbr-section-subtitle {
  color: #ffffff;
}
.cid-ts6QbjSkVU .title-section .mbr-section-title {
  color: #ffffff;
  text-align: right;
}
.cid-ts6QblcSBr {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #212428;
}
.cid-ts6QblcSBr .title-section {
  padding: 0px;
  margin-bottom: 20px;
}
@media (min-width: 992px) {
  .cid-ts6QblcSBr .title-section {
    padding: 0 90px;
    margin-bottom: 40px;
  }
}
.cid-ts6QblcSBr .btn {
  display: flex;
}
.cid-ts6QblcSBr .card {
  background-color: transparent;
  border: 2px solid #db3eb1;
  border-radius: 20px;
}
.cid-ts6QblcSBr .card-body {
  padding: 40px 55px 30px 55px;
}
.cid-ts6QblcSBr .col-img {
  width: 35px;
  height: 35px;
  flex: 0 0 35px;
  margin-right: 22px;
}
.cid-ts6QblcSBr .card-title {
  flex: 1 1 auto;
  width: auto;
}
.cid-ts6QblcSBr .price {
  text-align: center;
  color: #7f6cc0;
}
.cid-ts6QblcSBr .title-section .mbr-section-subtitle {
  text-align: left;
}
.cid-ts6QblcSBr .mbr-fallback-image.disabled {
  display: none;
}
.cid-ts6QblcSBr .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ts6QblcSBr .text1 {
  text-align: left;
  color: #ffffff;
}
.cid-ts6QblcSBr .mbr-section-subtitle {
  color: #ffffff;
}
.cid-ts6QblcSBr .title-section .mbr-section-title {
  color: #ffffff;
  text-align: right;
}
.cid-ts6QbmHAC5 {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #212428;
}
.cid-ts6QbmHAC5 .title-section {
  padding: 0px;
  margin-bottom: 20px;
}
@media (min-width: 992px) {
  .cid-ts6QbmHAC5 .title-section {
    padding: 0 90px;
    margin-bottom: 40px;
  }
}
.cid-ts6QbmHAC5 .btn {
  display: flex;
}
.cid-ts6QbmHAC5 .card {
  background-color: transparent;
  border: 2px solid #8364e2;
  border-radius: 20px;
}
.cid-ts6QbmHAC5 .card-body {
  padding: 40px 55px 30px 55px;
}
.cid-ts6QbmHAC5 .col-img {
  width: 35px;
  height: 35px;
  flex: 0 0 35px;
  margin-right: 22px;
}
.cid-ts6QbmHAC5 .card-title {
  flex: 1 1 auto;
  width: auto;
}
.cid-ts6QbmHAC5 .price {
  text-align: center;
  color: #7f6cc0;
}
.cid-ts6QbmHAC5 .title-section .mbr-section-subtitle {
  text-align: left;
}
.cid-ts6QbmHAC5 .mbr-fallback-image.disabled {
  display: none;
}
.cid-ts6QbmHAC5 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ts6QbmHAC5 .text1 {
  text-align: left;
  color: #ffffff;
}
.cid-ts6QbmHAC5 .mbr-section-subtitle {
  color: #ffffff;
}
.cid-ts6QbmHAC5 .title-section .mbr-section-title {
  color: #ffffff;
  text-align: right;
}
.cid-ts6QbpOFnh {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #212428;
}
.cid-ts6QbpOFnh .title-section {
  padding: 0px;
  margin-bottom: 20px;
}
@media (min-width: 992px) {
  .cid-ts6QbpOFnh .title-section {
    padding: 0 90px;
    margin-bottom: 40px;
  }
}
.cid-ts6QbpOFnh .btn {
  display: flex;
}
.cid-ts6QbpOFnh .card {
  background-color: transparent;
  border: 2px solid #8364e2;
  border-radius: 20px;
}
.cid-ts6QbpOFnh .card-body {
  padding: 40px 55px 30px 55px;
}
.cid-ts6QbpOFnh .col-img {
  width: 35px;
  height: 35px;
  flex: 0 0 35px;
  margin-right: 22px;
}
.cid-ts6QbpOFnh .card-title {
  flex: 1 1 auto;
  width: auto;
}
.cid-ts6QbpOFnh .price {
  text-align: center;
  color: #7f6cc0;
}
.cid-ts6QbpOFnh .title-section .mbr-section-subtitle {
  text-align: left;
}
.cid-ts6QbpOFnh .mbr-fallback-image.disabled {
  display: none;
}
.cid-ts6QbpOFnh .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ts6QbpOFnh .text1 {
  text-align: left;
  color: #ffffff;
}
.cid-ts6QbpOFnh .mbr-section-subtitle {
  color: #ffffff;
}
.cid-ts6QbpOFnh .title-section .mbr-section-title {
  color: #ffffff;
  text-align: right;
}
.cid-ts6Qbrkh7C {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #212428;
}
.cid-ts6Qbrkh7C .title-section {
  padding: 0px;
  margin-bottom: 20px;
}
@media (min-width: 992px) {
  .cid-ts6Qbrkh7C .title-section {
    padding: 0 90px;
    margin-bottom: 40px;
  }
}
.cid-ts6Qbrkh7C .btn {
  display: flex;
}
.cid-ts6Qbrkh7C .card {
  background-color: transparent;
  border: 2px solid #8364e2;
  border-radius: 20px;
}
.cid-ts6Qbrkh7C .card-body {
  padding: 40px 55px 30px 55px;
}
.cid-ts6Qbrkh7C .col-img {
  width: 35px;
  height: 35px;
  flex: 0 0 35px;
  margin-right: 22px;
}
.cid-ts6Qbrkh7C .card-title {
  flex: 1 1 auto;
  width: auto;
}
.cid-ts6Qbrkh7C .price {
  text-align: center;
  color: #7f6cc0;
}
.cid-ts6Qbrkh7C .title-section .mbr-section-subtitle {
  text-align: left;
}
.cid-ts6Qbrkh7C .mbr-fallback-image.disabled {
  display: none;
}
.cid-ts6Qbrkh7C .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ts6Qbrkh7C .text1 {
  text-align: left;
  color: #ffffff;
}
.cid-ts6Qbrkh7C .mbr-section-subtitle {
  color: #ffffff;
}
.cid-ts6Qbrkh7C .title-section .mbr-section-title {
  color: #ffffff;
  text-align: right;
}
.cid-tsYiA8KXFx {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #212428;
}
.cid-tsYiA8KXFx .progress {
  width: 100%;
}
.cid-tsYiA8KXFx p {
  margin-bottom: 0.4rem;
}
.cid-tsYiA8KXFx .progressbar-title {
  padding-bottom: 1rem;
}
.cid-tsYiA8KXFx .title-wrap {
  display: flex;
  justify-content: space-between;
  -webkit-justify-content: space-between;
}
.cid-tsYiA8KXFx progress {
  height: 10px;
}
.cid-tsYiA8KXFx .progressbar-number {
  display: inline-block;
  width: 50px;
}
.cid-tsYiA8KXFx .progress-primary {
  background: rgba(206, 206, 206, 0.9);
  border: none;
  outline: none;
}
.cid-tsYiA8KXFx .progress-primary::-webkit-progress-bar {
  background: rgba(206, 206, 206, 0.9);
}
.cid-tsYiA8KXFx .progress_value {
  position: relative;
}
.cid-tsYiA8KXFx .progress1 .progressbar-number:before,
.cid-tsYiA8KXFx .progress2 .progressbar-number:before,
.cid-tsYiA8KXFx .progress3 .progressbar-number:before,
.cid-tsYiA8KXFx .progress4 .progressbar-number:before,
.cid-tsYiA8KXFx .progress5 .progressbar-number:before {
  position: absolute;
  right: 15px;
  top: 0;
}
.cid-tsYiA8KXFx progress[value]::-webkit-progress-bar {
  background: rgba(206, 206, 206, 0.4);
  margin: 0;
}
.cid-tsYiA8KXFx progress::-webkit-progress-value {
  background: #6917c7;
}
.cid-tsYiA8KXFx progress[value]::-moz-progress-bar {
  background: #6917c7;
}
.cid-tsYiA8KXFx progress::-ms-fill {
  background: #6917c7;
}
.cid-tsYiA8KXFx .progress1 .progressbar-number:before {
  content: "100";
}
.cid-tsYiA8KXFx .progress2 .progressbar-number:before {
  content: "71";
}
.cid-tsYiA8KXFx .progress3 .progressbar-number:before {
  content: "53";
}
.cid-tsYiA8KXFx .progress4 .progressbar-number:before {
  content: "70";
}
.cid-tsYiA8KXFx .progress5 .progressbar-number:before {
  content: "81";
}
.cid-tsYiA8KXFx .section-content-text {
  color: #454545;
}
.cid-tsYiA8KXFx .progressbar-title p,
.cid-tsYiA8KXFx .progress_value {
  color: #ffffff;
  text-align: center;
}
.cid-tsYiA8KXFx .mbr-section-subtitle {
  color: #454545;
}
.cid-tsYiA8KXFx .section-content-title {
  text-align: center;
  color: #ffffff;
}
.cid-tsYiA8KXFx .mbr-fallback-image.disabled {
  display: none;
}
.cid-tsYiA8KXFx .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ts6Qbuga85 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #212428;
}
.cid-ts6Qbuga85 .title-section {
  padding: 0px;
  margin-bottom: 20px;
}
@media (min-width: 992px) {
  .cid-ts6Qbuga85 .title-section {
    padding: 0 90px;
    margin-bottom: 40px;
  }
}
.cid-ts6Qbuga85 .btn {
  display: flex;
}
.cid-ts6Qbuga85 .card {
  background-color: transparent;
  border: 2px solid #db3eb1;
  border-radius: 20px;
  box-shadow: 0px 10px 20px 0px rgba(29, 29, 27, 0.2);
}
.cid-ts6Qbuga85 .card-body {
  padding: 40px 55px 30px 55px;
}
.cid-ts6Qbuga85 .col-img {
  width: 35px;
  height: 35px;
  flex: 0 0 35px;
  margin-right: 22px;
}
.cid-ts6Qbuga85 .card-title {
  flex: 1 1 auto;
  width: auto;
}
.cid-ts6Qbuga85 .price {
  text-align: center;
  color: #7f6cc0;
}
.cid-ts6Qbuga85 .title-section .mbr-section-subtitle {
  text-align: center;
}
.cid-ts6Qbuga85 .mbr-fallback-image.disabled {
  display: none;
}
.cid-ts6Qbuga85 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ts6Qbuga85 .text1 {
  text-align: left;
  color: #ffffff;
}
.cid-ts6Qbuga85 .mbr-section-subtitle {
  color: #ffffff;
}
.cid-ts6Qbuga85 .title-section .mbr-section-title {
  color: #ffffff;
  text-align: left;
}
.cid-tsYiADQ3AO {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #212428;
}
.cid-tsYiADQ3AO .progress {
  width: 100%;
}
.cid-tsYiADQ3AO p {
  margin-bottom: 0.4rem;
}
.cid-tsYiADQ3AO .progressbar-title {
  padding-bottom: 1rem;
}
.cid-tsYiADQ3AO .title-wrap {
  display: flex;
  justify-content: space-between;
  -webkit-justify-content: space-between;
}
.cid-tsYiADQ3AO progress {
  height: 10px;
}
.cid-tsYiADQ3AO .progressbar-number {
  display: inline-block;
  width: 50px;
}
.cid-tsYiADQ3AO .progress-primary {
  background: rgba(206, 206, 206, 0.9);
  border: none;
  outline: none;
}
.cid-tsYiADQ3AO .progress-primary::-webkit-progress-bar {
  background: rgba(206, 206, 206, 0.9);
}
.cid-tsYiADQ3AO .progress_value {
  position: relative;
}
.cid-tsYiADQ3AO .progress1 .progressbar-number:before,
.cid-tsYiADQ3AO .progress2 .progressbar-number:before,
.cid-tsYiADQ3AO .progress3 .progressbar-number:before,
.cid-tsYiADQ3AO .progress4 .progressbar-number:before,
.cid-tsYiADQ3AO .progress5 .progressbar-number:before {
  position: absolute;
  right: 15px;
  top: 0;
}
.cid-tsYiADQ3AO progress[value]::-webkit-progress-bar {
  background: rgba(206, 206, 206, 0.4);
  margin: 0;
}
.cid-tsYiADQ3AO progress::-webkit-progress-value {
  background: #6917c7;
}
.cid-tsYiADQ3AO progress[value]::-moz-progress-bar {
  background: #6917c7;
}
.cid-tsYiADQ3AO progress::-ms-fill {
  background: #6917c7;
}
.cid-tsYiADQ3AO .progress1 .progressbar-number:before {
  content: "100";
}
.cid-tsYiADQ3AO .progress2 .progressbar-number:before {
  content: "71";
}
.cid-tsYiADQ3AO .progress3 .progressbar-number:before {
  content: "53";
}
.cid-tsYiADQ3AO .progress4 .progressbar-number:before {
  content: "70";
}
.cid-tsYiADQ3AO .progress5 .progressbar-number:before {
  content: "81";
}
.cid-tsYiADQ3AO .section-content-text {
  color: #454545;
}
.cid-tsYiADQ3AO .progressbar-title p,
.cid-tsYiADQ3AO .progress_value {
  color: #ffffff;
  text-align: center;
}
.cid-tsYiADQ3AO .mbr-section-subtitle {
  color: #454545;
}
.cid-tsYiADQ3AO .section-content-title {
  text-align: center;
  color: #ffffff;
}
.cid-tsYiADQ3AO .mbr-fallback-image.disabled {
  display: none;
}
.cid-tsYiADQ3AO .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-txyMBKsRn0 {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #212428;
  overflow: hidden;
}
.cid-txyMBKsRn0 .mbr-fallback-image.disabled {
  display: none;
}
.cid-txyMBKsRn0 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-txyMBKsRn0 .card-row {
  align-items: stretch;
}
.cid-txyMBKsRn0 .item-wrap {
  position: relative;
  height: 100%;
  width: 100%;
  padding: 55px;
  border-radius: 10px;
  overflow: hidden;
  background: linear-gradient(145deg, #1e2024, #000000);
  box-shadow: 10px 10px 19px #7f6cc0, -10px -10px 19px #7f6cc0;
}
@media (max-width: 767px) {
  .cid-txyMBKsRn0 .item-wrap {
    padding: 40px;
  }
}
@media (max-width: 575px) {
  .cid-txyMBKsRn0 .item-wrap {
    padding: 35px 25px 35px 25px;
  }
}
.cid-txyMBKsRn0 .carousel {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 100%;
  width: 100%;
  margin: 0;
}
.cid-txyMBKsRn0 .carousel-inner {
  display: flex;
  align-items: center;
  margin-bottom: 0;
  border-radius: 10px;
}
.cid-txyMBKsRn0 .carousel-item-wrapper {
  display: flex;
  width: 100%;
  overflow: visible;
  padding: 0;
}
.cid-txyMBKsRn0 .carousel-item-wrapper img {
  aspect-ratio: 1.77842566;
  object-fit: cover;
}
.cid-txyMBKsRn0 .carousel-control {
  top: 50%;
  transform: translateY(-50%);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(to right bottom, #212428, #16181c) !important;
  box-shadow: 10px 10px 19px #191b1f, -10px -10px 19px #23272b;
  border: none;
  transition: all 0.4s;
  opacity: 1;
  color: #C4CFDE;
  font-size: 18px;
}
.cid-txyMBKsRn0 .carousel-control.carousel-control-prev {
  left: -30px;
  margin-left: 0;
}
@media (max-width: 575px) {
  .cid-txyMBKsRn0 .carousel-control.carousel-control-prev {
    left: -25px;
  }
}
.cid-txyMBKsRn0 .carousel-control.carousel-control-next {
  right: -30px;
  margin-right: 0;
}
@media (max-width: 575px) {
  .cid-txyMBKsRn0 .carousel-control.carousel-control-next {
    right: -25px;
  }
}
.cid-txyMBKsRn0 .carousel-control:hover {
  color: #FFFFFF !important;
  opacity: 1;
}
.cid-txyMBKsRn0 .mobi-mbri-arrow-next {
  margin-left: 5px;
}
.cid-txyMBKsRn0 .mobi-mbri-arrow-prev {
  margin-right: 5px;
}
.cid-txyMBKsRn0 .container .carousel-indicators {
  margin-bottom: 3px;
  display: none !important;
}
.cid-txyMBKsRn0 .item-menu-overlay {
  opacity: 0 !important;
}
.cid-txyMBKsRn0 .text-row {
  padding-top: 50px;
}
@media (max-width: 991px) {
  .cid-txyMBKsRn0 .text-row {
    padding-top: 30px;
  }
}
.cid-txyMBKsRn0 .card-title {
  color: #C4CFDE;
  margin-bottom: 20px;
}
.cid-txyMBKsRn0 .card-subtitle {
  color: #878e99;
  margin-bottom: 0;
}
.cid-txyMBKsRn0 .card-text-container {
  display: flex;
  align-items: flex-start;
  padding-top: 24px;
  padding-bottom: 8px;
  margin: 0 -30px;
}
@media (max-width: 767px) {
  .cid-txyMBKsRn0 .card-text-container {
    margin: 0 -10px;
  }
}
@media (max-width: 575px) {
  .cid-txyMBKsRn0 .card-text-container {
    flex-wrap: wrap;
  }
}
.cid-txyMBKsRn0 .card-text {
  color: #878e99;
  margin-bottom: 8px;
  margin-top: 8px;
  flex-basis: 50%;
  flex-grow: 1;
  padding-left: 30px;
  padding-right: 30px;
}
@media (max-width: 767px) {
  .cid-txyMBKsRn0 .card-text {
    padding-left: 10px;
    padding-right: 10px;
  }
}
@media (max-width: 575px) {
  .cid-txyMBKsRn0 .card-text {
    flex-basis: 100%;
  }
}
.cid-txyMBKsRn0 .mbr-section-btn {
  display: flex;
  flex-direction: column;
  align-items: stretch;
}
@media (max-width: 991px) {
  .cid-txyMBKsRn0 .mbr-section-btn {
    margin-top: 10px;
  }
}
.cid-tuam0DUwcB {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #212428;
}
.cid-tuam0DUwcB .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-tuam0DUwcB .card-title {
  margin-bottom: 26px;
  color: #8364e2;
}
.cid-tuam0DUwcB .mbr-text {
  margin-bottom: 30px;
}
.cid-tuam0DUwcB .iconfont-wrapper {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  border-top-right-radius: 0;
  display: inline-block;
  text-align: center;
  margin-bottom: 30px;
  position: relative;
  z-index: 1;
  box-shadow: 0px 14px 30px 0px rgba(23, 148, 10, 0.4);
  background-image: linear-gradient(125deg, #17940a 0%, #29ef15 100%);
}
.cid-tuam0DUwcB .iconfont-wrapper .mbr-iconfont {
  color: #ffffff;
  font-size: 36px;
  line-height: 70px;
}
.cid-tuam0DUwcB .btn_link {
  display: block;
  margin-bottom: 0;
  position: relative;
  font-weight: 700;
}
.cid-tuam0DUwcB .btn_link span {
  display: inline-block;
  margin-left: .25rem;
  font-size: 16px;
  vertical-align: middle;
  transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.cid-tuam0DUwcB .btn_link:hover {
  cursor: pointer;
}
.cid-tuam0DUwcB .btn_link:hover a {
  color: #8364e2 !important;
}
.cid-tuam0DUwcB .btn_link:hover span {
  transform: translatex(5px);
}
@media (min-width: 992px) {
  .cid-tuam0DUwcB .text-wrapper {
    padding-right: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tuam0DUwcB .text-wrapper {
    text-align: center;
  }
  .cid-tuam0DUwcB .image-wrapper {
    margin-bottom: 40px;
  }
  .cid-tuam0DUwcB .mbr-text {
    margin-bottom: 20px;
  }
  .cid-tuam0DUwcB .iconfont-wrapper {
    margin-bottom: 20px;
  }
}
.cid-tuam0DUwcB .mbr-text,
.cid-tuam0DUwcB .btn_link {
  color: #ffffff;
}
.cid-ts6QbzzOje {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #212428;
}
.cid-ts6QbzzOje .row {
  flex-direction: row-reverse;
}
.cid-ts6QbzzOje .mbr-section-title {
  color: #ffffff;
}
.cid-ts6QbzzOje .mbr-text,
.cid-ts6QbzzOje .mbr-section-btn {
  color: #bbbbbb;
}
.cid-ts6QbzzOje .mbr-section-subtitle {
  color: #8364e2;
}
.cid-ts6QbzzOje img {
  border-radius: 2rem;
}
@media (min-width: 992px) {
  .cid-ts6QbzzOje .image-wrapper {
    padding-right: 4rem;
  }
}
.cid-ttcVEU9ZoD {
  padding-top: 5rem;
  padding-bottom: 5rem;
  overflow: hidden;
  background-color: #212428;
}
.cid-ttcVEU9ZoD .mbr-fallback-image.disabled {
  display: none;
}
.cid-ttcVEU9ZoD .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ttcVEU9ZoD .container {
  max-width: 1200px;
  padding: 0 10px;
}
.cid-ttcVEU9ZoD .mbr-section-head {
  margin-bottom: 10px;
  width: 100%;
}
.cid-ttcVEU9ZoD .mbr-section-title {
  color: #ffffff;
}
.cid-ttcVEU9ZoD .mbr-section-subtitle {
  color: #f4f4f4;
  margin-top: 15px;
}
@media (max-width: 767px) {
  .cid-ttcVEU9ZoD .mbr-section-subtitle {
    margin-top: 10px;
  }
}
.cid-ttcVEU9ZoD .card-row {
  align-items: stretch;
}
.cid-ttcVEU9ZoD .card {
  margin-top: 30px;
}
@media (max-width: 575px) {
  .cid-ttcVEU9ZoD .card {
    flex-basis: 80% !important;
  }
}
.cid-ttcVEU9ZoD .card-wrapper {
  position: relative;
  height: 100%;
  width: 100%;
  border-radius: 10px;
  overflow: hidden;
  background: linear-gradient(145deg, #1e2024, #23272b);
  box-shadow: 10px 10px 19px #191b1f, -10px -10px 19px #23272b;
}
.cid-ttcVEU9ZoD .card-wrapper:hover .card-bg {
  opacity: 1;
}
.cid-ttcVEU9ZoD .card-bg {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 4;
  width: 100%;
  height: 100%;
  border-radius: 10px;
  background: linear-gradient(to right bottom, #212428, #16181c);
  opacity: 0;
  transition: .5s all;
}
.cid-ttcVEU9ZoD .card-box {
  position: relative;
  z-index: 5;
  height: 100%;
}
.cid-ttcVEU9ZoD .item-img {
  height: 150px;
  align-items: center;
  display: flex;
  justify-content: center;
  padding: 30px;
  width: 100%;
}
.cid-ttcVEU9ZoD .item-img img {
  width: auto;
  max-height: 85px;
  max-width: 100%;
  object-fit: contain;
}
.cid-ttcVEU9ZoD .text-item {
  padding: 16px;
  width: 100%;
  border-top: 1px solid #16181c;
}
.cid-ttcVEU9ZoD .card-title {
  color: #878e99;
  margin-bottom: 0;
  text-align: center;
}
.cid-ttcVEU9ZoD .card-title a {
  transition: 0.4s all;
}
.cid-ttcVEU9ZoD .card-title a:hover {
  color: #8364e2 !important;
}
.cid-tv20JXf5Ez {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #282b2f;
}
.cid-tv20JXf5Ez svg {
  width: 100%;
  position: absolute;
  left: 0;
  top: -48px;
  height: 50px;
  transform-origin: bottom;
  animation: 1.5s ease-in-out infinite alternate svg2;
}
.cid-tv20JXf5Ez svg .st0 {
  fill: #282b2f;
}
@media (max-width: 992px) {
  .cid-tv20JXf5Ez svg {
    width: 1000px;
  }
}
@keyframes svg2 {
  from {
    transform: scaleX(1) scaleY(1.1) rotate(0deg);
  }
  to {
    transform: scaleX(1) scaleY(1.6) rotate(0deg);
  }
}
.cid-tv20JXf5Ez .list {
  list-style: none;
  padding-left: 0;
  color: #ffffff;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-tv20JXf5Ez .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tv20JXf5Ez .list {
    margin-bottom: 0rem;
  }
}
@media (max-width: 767px) {
  .cid-tv20JXf5Ez .row {
    text-align: center;
  }
}
@media (max-width: 991px) {
  .cid-tv20JXf5Ez div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-tv20JXf5Ez .copyright {
  color: #ffffff;
  text-align: center;
}
.cid-tO3ZaARX6J {
  z-index: 1000;
  width: 100%;
  position: relative;
}
.cid-tO3ZaARX6J .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;
}
@media (max-width: 767px) {
  .cid-tO3ZaARX6J .navbar-toggler {
    transform: scale(0.8);
  }
}
.cid-tO3ZaARX6J .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tO3ZaARX6J .navbar-brand img {
  max-width: 100%;
  max-height: 100%;
  border-radius: 0px !important;
}
.cid-tO3ZaARX6J .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tO3ZaARX6J .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tO3ZaARX6J .navbar-nav {
  margin: auto;
  margin-left: 0;
  margin-left: auto;
}
.cid-tO3ZaARX6J .navbar-nav .nav-item {
  padding: 0 !important;
  transition: .3s all !important;
}
.cid-tO3ZaARX6J .navbar-nav .nav-item .nav-link {
  padding: 16px !important;
  margin: 0 !important;
  border-radius: 1rem !important;
  transition: .3s all !important;
}
.cid-tO3ZaARX6J .navbar-nav .nav-item .nav-link:hover {
  background-color: rgba(27, 31, 10, 0.06);
}
.cid-tO3ZaARX6J .navbar-nav .open .nav-link::after {
  transform: rotate(180deg);
}
@media (min-width: 992px) {
  .cid-tO3ZaARX6J .navbar-nav .open .nav-link::before {
    content: "";
    width: 100%;
    height: 20px;
    top: 100%;
    background: transparent;
    position: absolute;
  }
}
.cid-tO3ZaARX6J .navbar-nav .dropdown-item {
  padding: 12px !important;
  border-radius: 0.5rem !important;
  margin: 0 8px !important;
  transition: .3s all !important;
}
.cid-tO3ZaARX6J .navbar-nav .dropdown-item:hover {
  background-color: rgba(27, 31, 10, 0.06);
}
@media (min-width: 992px) {
  .cid-tO3ZaARX6J .navbar-nav {
    padding-left: 1.5rem;
  }
}
.cid-tO3ZaARX6J .nav-link {
  width: fit-content;
  position: relative;
}
.cid-tO3ZaARX6J .navbar-logo {
  padding-left: 2rem;
  margin: 0 !important;
}
@media (max-width: 767px) {
  .cid-tO3ZaARX6J .navbar-logo {
    padding-left: 1rem;
  }
}
.cid-tO3ZaARX6J .navbar-caption {
  padding-left: 1rem;
  padding-right: .5rem;
}
@media (max-width: 767px) {
  .cid-tO3ZaARX6J .nav-dropdown {
    padding-bottom: 0.5rem;
  }
}
.cid-tO3ZaARX6J .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  transition: .3s all;
}
.cid-tO3ZaARX6J .container {
  display: flex;
  height: 90px;
  padding: 0.5rem 0.6rem;
  flex-wrap: nowrap;
  background: rgba(64, 63, 131, 0.8) !important;
  left: 0;
  right: 0;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: flex-end;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 100vw;
  margin-top: 1rem;
  background-color: #403f83;
  box-shadow: 0 30px 60px 0 rgba(27, 31, 10, 0.08);
}
@media (max-width: 992px) {
  .cid-tO3ZaARX6J .container {
    padding-right: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-tO3ZaARX6J .container {
    width: 95%;
    height: 56px !important;
    padding-right: 1rem;
    margin-top: 0rem;
  }
}
.cid-tO3ZaARX6J .iconfont-wrapper {
  color: #2469ea !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tO3ZaARX6J .dropdown-menu {
  flex-wrap: wrap;
  flex-direction: column;
  max-width: 100%;
  padding: 12px 4px !important;
  border-radius: 1.5rem;
  transition: .3s all !important;
  min-width: auto;
  background: #403f83;
  background: rgba(64, 63, 131, 0.8) !important;
}
.cid-tO3ZaARX6J .nav-item:focus,
.cid-tO3ZaARX6J .nav-link:focus {
  outline: none;
}
.cid-tO3ZaARX6J .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tO3ZaARX6J .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tO3ZaARX6J .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tO3ZaARX6J .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tO3ZaARX6J .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tO3ZaARX6J .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tO3ZaARX6J .navbar {
  min-height: 90px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: transparent !important;
  padding: 0 !important;
  border: none !important;
  box-shadow: none !important;
  border-radius: 0 !important;
}
.cid-tO3ZaARX6J .navbar.opened {
  transition: all 0.3s;
}
.cid-tO3ZaARX6J .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tO3ZaARX6J .navbar .navbar-logo img {
  width: auto;
}
.cid-tO3ZaARX6J .navbar .navbar-collapse {
  z-index: 1;
  justify-content: flex-end;
}
.cid-tO3ZaARX6J .navbar.collapsed {
  justify-content: center;
}
.cid-tO3ZaARX6J .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tO3ZaARX6J .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tO3ZaARX6J .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 2.7rem);
  }
}
.cid-tO3ZaARX6J .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tO3ZaARX6J .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tO3ZaARX6J .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-tO3ZaARX6J .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tO3ZaARX6J .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tO3ZaARX6J .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 767px) {
  .cid-tO3ZaARX6J .navbar {
    min-height: 72px;
  }
  .cid-tO3ZaARX6J .navbar .navbar-logo img {
    height: 2rem !important;
  }
}
@media (max-width: 991px) {
  .cid-tO3ZaARX6J .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tO3ZaARX6J .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tO3ZaARX6J .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tO3ZaARX6J .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tO3ZaARX6J .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-tO3ZaARX6J .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tO3ZaARX6J .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 10px;
  }
  .cid-tO3ZaARX6J .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tO3ZaARX6J .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tO3ZaARX6J .navbar.navbar-short .navbar-logo img {
  height: 2rem;
}
.cid-tO3ZaARX6J .dropdown-item.active,
.cid-tO3ZaARX6J .dropdown-item:active {
  background-color: transparent;
}
.cid-tO3ZaARX6J .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tO3ZaARX6J .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tO3ZaARX6J .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tO3ZaARX6J .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #403f83;
}
.cid-tO3ZaARX6J .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 105%;
  transform: none;
  top: -12px;
}
.cid-tO3ZaARX6J .navbar .dropdown.open > .dropdown-menu {
  display: flex;
}
.cid-tO3ZaARX6J ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tO3ZaARX6J .navbar-buttons {
  text-align: center;
  min-width: 140px;
}
@media (max-width: 992px) {
  .cid-tO3ZaARX6J .navbar-buttons {
    text-align: left;
  }
}
.cid-tO3ZaARX6J button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tO3ZaARX6J button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-tO3ZaARX6J button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tO3ZaARX6J button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tO3ZaARX6J button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tO3ZaARX6J button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tO3ZaARX6J nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tO3ZaARX6J nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tO3ZaARX6J nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tO3ZaARX6J nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tO3ZaARX6J .navbar-dropdown {
  padding: 0 1rem;
}
.cid-tO3ZaARX6J a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tO3ZaARX6J .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media (max-width: 992px) {
  .cid-tO3ZaARX6J .icons-menu {
    justify-content: flex-start;
    margin-bottom: .5rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tO3ZaARX6J .navbar {
    height: 70px;
  }
  .cid-tO3ZaARX6J .navbar.opened {
    height: auto;
  }
  .cid-tO3ZaARX6J .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tO3ZaARX6J .navbar .dropdown > .dropdown-menu {
  display: none;
  width: max-content;
  max-width: 500px !important;
  transform: translateX(-50%);
  top: calc(100% + 20px);
  left: 50%;
}
.cid-tO3ZaARX6J .navbar .dropdown > .dropdown-menu .dropdown-item {
  line-height: 1 !important;
}
.cid-tO3ZaARX6J .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item {
  align-items: center;
  display: flex;
  height: max-content !important;
  min-height: max-content !important;
}
.cid-tO3ZaARX6J .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item::after {
  display: inline-block;
  position: static;
  margin-left: 0.5rem;
  margin-top: 0;
  margin-right: 0;
  margin-bottom: 0;
  transition: .3s all;
  transform: rotate(-90deg);
}
.cid-tO3ZaARX6J .navbar .dropdown > .dropdown-menu .dropdown.open .dropdown-item::after {
  transform: rotate(0deg);
}
.cid-tO3ZaARX6J .mbr-section-btn {
  margin: -0.6rem -0.6rem;
}
.cid-tO3ZaARX6J .navbar-toggler {
  margin-left: 12px;
  margin-right: 8px;
  order: 1000;
}
@media (max-width: 991px) {
  .cid-tO3ZaARX6J .navbar-brand {
    margin-right: auto;
  }
  .cid-tO3ZaARX6J .navbar-collapse {
    z-index: -1 !important;
    position: absolute;
    top: 110%;
    left: 0;
    width: 100%;
    padding: 1rem;
    border-radius: 1.5rem;
    background: #403f83;
    opacity: 1;
    border-color: rgba(64, 63, 131, 0.8) !important;
    background: rgba(64, 63, 131, 0.8) !important;
    backdrop-filter: blur(8px);
  }
  .cid-tO3ZaARX6J .navbar-nav .nav-item .nav-link::after {
    margin-left: 10px;
  }
  .cid-tO3ZaARX6J .navbar-nav .dropdown-item:hover {
    background-color: rgba(27, 31, 10, 0.06);
  }
  .cid-tO3ZaARX6J .navbar .dropdown > .dropdown-menu {
    max-width: 100% !important;
    transform: translateX(0);
    top: 10px;
    left: 0;
    padding: 8px !important;
    border-radius: 1rem;
    background-color: rgba(27, 31, 10, 0.04) !important;
  }
  .cid-tO3ZaARX6J .navbar .dropdown > .dropdown-menu .dropdown-item {
    padding: 8px !important;
    line-height: 1 !important;
    margin-bottom: 4px !important;
  }
  .cid-tO3ZaARX6J .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item {
    align-items: center;
    display: flex;
    height: max-content !important;
    min-height: max-content !important;
  }
  .cid-tO3ZaARX6J .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item::after {
    display: inline-block;
    position: static;
    margin-left: 0.5rem;
    margin-top: 0;
    margin-right: 0;
    margin-bottom: 0;
    transition: .3s all;
    transform: rotate(0deg);
  }
  .cid-tO3ZaARX6J .navbar .dropdown > .dropdown-menu .dropdown.open .dropdown-item::after {
    transform: rotate(180deg);
  }
  .cid-tO3ZaARX6J .navbar .dropdown > .dropdown-menu .dropdown-submenu {
    position: static;
    width: 100%;
    max-width: 100% !important;
    transform: translateX(0) !important;
    top: 0;
    left: 0;
    padding: 8px !important;
    border-radius: 1rem;
    background-color: rgba(27, 31, 10, 0.04) !important;
  }
  .cid-tO3ZaARX6J .navbar .dropdown.open > .dropdown-menu {
    display: flex !important;
    flex-direction: column;
    align-items: flex-start;
  }
}
@media (max-width: 575px) {
  .cid-tO3ZaARX6J .navbar-collapse {
    padding: 1rem;
  }
}
.cid-tuCtn0ohb3 {
  background-image: url("../../../assets/images/fundo-1280x640.webp");
}
.cid-tuCtn0ohb3 img {
  width: 100%;
  border-radius: 30px;
}
.cid-tuCtn0ohb3 .mbr-section-title {
  color: #ffffff;
}
.cid-tuCtn0ohb3 .mbr-section-subtitle {
  background-color: #8364e2;
  padding: 0 1rem;
  border-radius: 5px;
  display: inline-block;
  font-family: 'IBM Plex Sans', sans-serif;
  font-weight: 900;
  color: #ffffff;
}
.cid-tuCtn0ohb3 .svg-1 {
  position: absolute;
  bottom: 0;
}
.cid-tuCtn0ohb3 .svg-1 path {
  fill: #212428;
}
.cid-tuCtn0ohb3 .container-fluid {
  max-width: 1200px;
}
.cid-tuCtn0ohb3 .mbr-arrow {
  z-index: 1;
}
.cid-tuCtn0ohb3 .mbr-section-btn {
  margin-top: 1.5rem;
}
@media (min-width: 768px) {
  .cid-tuCtn0ohb3 .container-fluid {
    padding: 0 1.5rem;
  }
}
@media (max-width: 992px) {
  .cid-tuCtn0ohb3 .imageContainer {
    margin-top: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-tuCtn0ohb3 .container-fluid {
    padding: 0 1rem;
  }
  .cid-tuCtn0ohb3 .mbr-section-subtitle {
    margin-bottom: 1.4rem;
  }
}
.cid-tuCtn0QmxY {
  padding-top: 8rem;
  padding-bottom: 2rem;
  background-color: #212428;
}
.cid-tuCtn0QmxY .mbr-section-title {
  color: #ffffff;
}
.cid-tuCtn0QmxY .mbr-text,
.cid-tuCtn0QmxY .mbr-section-btn {
  color: #f7f4fd;
}
.cid-tuCtn0QmxY .mbr-section-subtitle {
  color: #8364e2;
}
.cid-tuCtn0QmxY img {
  border-radius: 2rem;
}
@media (min-width: 992px) {
  .cid-tuCtn0QmxY .image-wrapper {
    padding-right: 4rem;
  }
}
.cid-tuCtn1f6dw {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background: #212428;
}
.cid-tuCtn1f6dw .team-card {
  margin-bottom: 2rem;
  transition: all 0.3s;
}
.cid-tuCtn1f6dw .team-card:hover {
  transform: translateY(-10px);
}
.cid-tuCtn1f6dw .card-wrap {
  background: #353535;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.3);
}
@media (max-width: 991px) {
  .cid-tuCtn1f6dw .card-wrap {
    margin-bottom: 2rem;
  }
}
.cid-tuCtn1f6dw .card-wrap .image-wrap img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}
@media (min-width: 768px) {
  .cid-tuCtn1f6dw .card-wrap .content-wrap {
    padding: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-tuCtn1f6dw .card-wrap .content-wrap {
    padding: 1rem;
  }
}
.cid-tuCtn1f6dw .card-text {
  padding-bottom: 1rem;
}
.cid-tuCtn1f6dw .social-row {
  text-align: center;
}
.cid-tuCtn1f6dw .social-row .soc-item {
  display: inline-block;
  text-align: center;
  border-radius: 12px;
  margin-right: 0.6rem;
  margin-bottom: 1rem;
  padding: 0.8rem;
  background: #403f83;
  transition: all 0.3s;
}
.cid-tuCtn1f6dw .social-row .soc-item .mbr-iconfont {
  transition: all 0.3s;
  display: flex;
  justify-content: center;
  align-content: center;
  color: #ffffff;
  font-size: 1.2rem;
}
.cid-tuCtn1f6dw .social-row .soc-item:hover {
  background: #ffffff;
}
.cid-tuCtn1f6dw .social-row .soc-item:hover .mbr-iconfont {
  color: #403f83;
}
.cid-tuCtn1f6dw .mbr-role,
.cid-tuCtn1f6dw .social-row {
  color: #ffffff;
}
.cid-tuCtn1f6dw .card-title,
.cid-tuCtn1f6dw .social-row {
  color: #e43f3f;
}
.cid-tuCtn1f6dw .card-text,
.cid-tuCtn1f6dw .mbr-section-btn,
.cid-tuCtn1f6dw .social-row {
  color: #bbbbbb;
}
.cid-tuCtn1f6dw .mbr-section-title {
  color: #ffffff;
}
.cid-tuCtn1f6dw .mbr-section-subtitle {
  color: #bbbbbb;
}
.cid-tuCtn1f6dw .main-title {
  color: #ffffff;
}
.cid-tuCtn1f6dw .mbr-fallback-image.disabled {
  display: none;
}
.cid-tuCtn1f6dw .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tuCtn1PvR4 {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background: #212428;
}
.cid-tuCtn1PvR4 .team-card {
  margin-bottom: 2rem;
  transition: all 0.3s;
}
.cid-tuCtn1PvR4 .team-card:hover {
  transform: translateY(-10px);
}
.cid-tuCtn1PvR4 .card-wrap {
  background: #353535;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.3);
}
@media (max-width: 991px) {
  .cid-tuCtn1PvR4 .card-wrap {
    margin-bottom: 2rem;
  }
}
.cid-tuCtn1PvR4 .card-wrap .image-wrap img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}
@media (min-width: 768px) {
  .cid-tuCtn1PvR4 .card-wrap .content-wrap {
    padding: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-tuCtn1PvR4 .card-wrap .content-wrap {
    padding: 1rem;
  }
}
.cid-tuCtn1PvR4 .card-text {
  padding-bottom: 1rem;
}
.cid-tuCtn1PvR4 .social-row {
  text-align: center;
}
.cid-tuCtn1PvR4 .social-row .soc-item {
  display: inline-block;
  text-align: center;
  border-radius: 12px;
  margin-right: 0.6rem;
  margin-bottom: 1rem;
  padding: 0.8rem;
  background: #403f83;
  transition: all 0.3s;
}
.cid-tuCtn1PvR4 .social-row .soc-item .mbr-iconfont {
  transition: all 0.3s;
  display: flex;
  justify-content: center;
  align-content: center;
  color: #ffffff;
  font-size: 1.2rem;
}
.cid-tuCtn1PvR4 .social-row .soc-item:hover {
  background: #ffffff;
}
.cid-tuCtn1PvR4 .social-row .soc-item:hover .mbr-iconfont {
  color: #403f83;
}
.cid-tuCtn1PvR4 .mbr-role,
.cid-tuCtn1PvR4 .social-row {
  color: #ffffff;
}
.cid-tuCtn1PvR4 .card-title,
.cid-tuCtn1PvR4 .social-row {
  color: #e43f3f;
}
.cid-tuCtn1PvR4 .card-text,
.cid-tuCtn1PvR4 .mbr-section-btn,
.cid-tuCtn1PvR4 .social-row {
  color: #bbbbbb;
}
.cid-tuCtn1PvR4 .mbr-section-title {
  color: #ffffff;
}
.cid-tuCtn1PvR4 .mbr-section-subtitle {
  color: #bbbbbb;
}
.cid-tuCtn1PvR4 .main-title {
  color: #ffffff;
}
.cid-tuCtn1PvR4 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tuCtn1PvR4 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tuCtn2ryOV {
  padding-top: 0rem;
  padding-bottom: 6rem;
  background: #212428;
}
.cid-tuCtn2ryOV .team-card {
  margin-bottom: 2rem;
  transition: all 0.3s;
}
.cid-tuCtn2ryOV .team-card:hover {
  transform: translateY(-10px);
}
.cid-tuCtn2ryOV .card-wrap {
  background: #353535;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.3);
}
@media (max-width: 991px) {
  .cid-tuCtn2ryOV .card-wrap {
    margin-bottom: 2rem;
  }
}
.cid-tuCtn2ryOV .card-wrap .image-wrap img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}
@media (min-width: 768px) {
  .cid-tuCtn2ryOV .card-wrap .content-wrap {
    padding: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-tuCtn2ryOV .card-wrap .content-wrap {
    padding: 1rem;
  }
}
.cid-tuCtn2ryOV .card-text {
  padding-bottom: 1rem;
}
.cid-tuCtn2ryOV .social-row {
  text-align: center;
}
.cid-tuCtn2ryOV .social-row .soc-item {
  display: inline-block;
  text-align: center;
  border-radius: 12px;
  margin-right: 0.6rem;
  margin-bottom: 1rem;
  padding: 0.8rem;
  background: #403f83;
  transition: all 0.3s;
}
.cid-tuCtn2ryOV .social-row .soc-item .mbr-iconfont {
  transition: all 0.3s;
  display: flex;
  justify-content: center;
  align-content: center;
  color: #ffffff;
  font-size: 1.2rem;
}
.cid-tuCtn2ryOV .social-row .soc-item:hover {
  background: #ffffff;
}
.cid-tuCtn2ryOV .social-row .soc-item:hover .mbr-iconfont {
  color: #403f83;
}
.cid-tuCtn2ryOV .mbr-role,
.cid-tuCtn2ryOV .social-row {
  color: #ffffff;
}
.cid-tuCtn2ryOV .card-title,
.cid-tuCtn2ryOV .social-row {
  color: #e43f3f;
}
.cid-tuCtn2ryOV .card-text,
.cid-tuCtn2ryOV .mbr-section-btn,
.cid-tuCtn2ryOV .social-row {
  color: #bbbbbb;
}
.cid-tuCtn2ryOV .mbr-section-title {
  color: #ffffff;
}
.cid-tuCtn2ryOV .mbr-section-subtitle {
  color: #bbbbbb;
}
.cid-tuCtn2ryOV .main-title {
  color: #ffffff;
}
.cid-tuCtn2ryOV .mbr-fallback-image.disabled {
  display: none;
}
.cid-tuCtn2ryOV .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tv20JXf5Ez {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #282b2f;
}
.cid-tv20JXf5Ez svg {
  width: 100%;
  position: absolute;
  left: 0;
  top: -48px;
  height: 50px;
  transform-origin: bottom;
  animation: 1.5s ease-in-out infinite alternate svg2;
}
.cid-tv20JXf5Ez svg .st0 {
  fill: #282b2f;
}
@media (max-width: 992px) {
  .cid-tv20JXf5Ez svg {
    width: 1000px;
  }
}
@keyframes svg2 {
  from {
    transform: scaleX(1) scaleY(1.1) rotate(0deg);
  }
  to {
    transform: scaleX(1) scaleY(1.6) rotate(0deg);
  }
}
.cid-tv20JXf5Ez .list {
  list-style: none;
  padding-left: 0;
  color: #ffffff;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-tv20JXf5Ez .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tv20JXf5Ez .list {
    margin-bottom: 0rem;
  }
}
@media (max-width: 767px) {
  .cid-tv20JXf5Ez .row {
    text-align: center;
  }
}
@media (max-width: 991px) {
  .cid-tv20JXf5Ez div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-tv20JXf5Ez .copyright {
  color: #ffffff;
  text-align: center;
}
.cid-tO3ZaARX6J {
  z-index: 1000;
  width: 100%;
  position: relative;
}
.cid-tO3ZaARX6J .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;
}
@media (max-width: 767px) {
  .cid-tO3ZaARX6J .navbar-toggler {
    transform: scale(0.8);
  }
}
.cid-tO3ZaARX6J .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tO3ZaARX6J .navbar-brand img {
  max-width: 100%;
  max-height: 100%;
  border-radius: 0px !important;
}
.cid-tO3ZaARX6J .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tO3ZaARX6J .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tO3ZaARX6J .navbar-nav {
  margin: auto;
  margin-left: 0;
  margin-left: auto;
}
.cid-tO3ZaARX6J .navbar-nav .nav-item {
  padding: 0 !important;
  transition: .3s all !important;
}
.cid-tO3ZaARX6J .navbar-nav .nav-item .nav-link {
  padding: 16px !important;
  margin: 0 !important;
  border-radius: 1rem !important;
  transition: .3s all !important;
}
.cid-tO3ZaARX6J .navbar-nav .nav-item .nav-link:hover {
  background-color: rgba(27, 31, 10, 0.06);
}
.cid-tO3ZaARX6J .navbar-nav .open .nav-link::after {
  transform: rotate(180deg);
}
@media (min-width: 992px) {
  .cid-tO3ZaARX6J .navbar-nav .open .nav-link::before {
    content: "";
    width: 100%;
    height: 20px;
    top: 100%;
    background: transparent;
    position: absolute;
  }
}
.cid-tO3ZaARX6J .navbar-nav .dropdown-item {
  padding: 12px !important;
  border-radius: 0.5rem !important;
  margin: 0 8px !important;
  transition: .3s all !important;
}
.cid-tO3ZaARX6J .navbar-nav .dropdown-item:hover {
  background-color: rgba(27, 31, 10, 0.06);
}
@media (min-width: 992px) {
  .cid-tO3ZaARX6J .navbar-nav {
    padding-left: 1.5rem;
  }
}
.cid-tO3ZaARX6J .nav-link {
  width: fit-content;
  position: relative;
}
.cid-tO3ZaARX6J .navbar-logo {
  padding-left: 2rem;
  margin: 0 !important;
}
@media (max-width: 767px) {
  .cid-tO3ZaARX6J .navbar-logo {
    padding-left: 1rem;
  }
}
.cid-tO3ZaARX6J .navbar-caption {
  padding-left: 1rem;
  padding-right: .5rem;
}
@media (max-width: 767px) {
  .cid-tO3ZaARX6J .nav-dropdown {
    padding-bottom: 0.5rem;
  }
}
.cid-tO3ZaARX6J .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  transition: .3s all;
}
.cid-tO3ZaARX6J .container {
  display: flex;
  height: 90px;
  padding: 0.5rem 0.6rem;
  flex-wrap: nowrap;
  background: rgba(64, 63, 131, 0.8) !important;
  left: 0;
  right: 0;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: flex-end;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 100vw;
  margin-top: 1rem;
  background-color: #403f83;
  box-shadow: 0 30px 60px 0 rgba(27, 31, 10, 0.08);
}
@media (max-width: 992px) {
  .cid-tO3ZaARX6J .container {
    padding-right: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-tO3ZaARX6J .container {
    width: 95%;
    height: 56px !important;
    padding-right: 1rem;
    margin-top: 0rem;
  }
}
.cid-tO3ZaARX6J .iconfont-wrapper {
  color: #2469ea !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tO3ZaARX6J .dropdown-menu {
  flex-wrap: wrap;
  flex-direction: column;
  max-width: 100%;
  padding: 12px 4px !important;
  border-radius: 1.5rem;
  transition: .3s all !important;
  min-width: auto;
  background: #403f83;
  background: rgba(64, 63, 131, 0.8) !important;
}
.cid-tO3ZaARX6J .nav-item:focus,
.cid-tO3ZaARX6J .nav-link:focus {
  outline: none;
}
.cid-tO3ZaARX6J .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tO3ZaARX6J .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tO3ZaARX6J .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tO3ZaARX6J .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tO3ZaARX6J .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tO3ZaARX6J .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tO3ZaARX6J .navbar {
  min-height: 90px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: transparent !important;
  padding: 0 !important;
  border: none !important;
  box-shadow: none !important;
  border-radius: 0 !important;
}
.cid-tO3ZaARX6J .navbar.opened {
  transition: all 0.3s;
}
.cid-tO3ZaARX6J .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tO3ZaARX6J .navbar .navbar-logo img {
  width: auto;
}
.cid-tO3ZaARX6J .navbar .navbar-collapse {
  z-index: 1;
  justify-content: flex-end;
}
.cid-tO3ZaARX6J .navbar.collapsed {
  justify-content: center;
}
.cid-tO3ZaARX6J .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tO3ZaARX6J .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tO3ZaARX6J .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 2.7rem);
  }
}
.cid-tO3ZaARX6J .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tO3ZaARX6J .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tO3ZaARX6J .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-tO3ZaARX6J .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tO3ZaARX6J .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tO3ZaARX6J .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 767px) {
  .cid-tO3ZaARX6J .navbar {
    min-height: 72px;
  }
  .cid-tO3ZaARX6J .navbar .navbar-logo img {
    height: 2rem !important;
  }
}
@media (max-width: 991px) {
  .cid-tO3ZaARX6J .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tO3ZaARX6J .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tO3ZaARX6J .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tO3ZaARX6J .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tO3ZaARX6J .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-tO3ZaARX6J .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tO3ZaARX6J .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 10px;
  }
  .cid-tO3ZaARX6J .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tO3ZaARX6J .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tO3ZaARX6J .navbar.navbar-short .navbar-logo img {
  height: 2rem;
}
.cid-tO3ZaARX6J .dropdown-item.active,
.cid-tO3ZaARX6J .dropdown-item:active {
  background-color: transparent;
}
.cid-tO3ZaARX6J .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tO3ZaARX6J .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tO3ZaARX6J .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tO3ZaARX6J .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #403f83;
}
.cid-tO3ZaARX6J .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 105%;
  transform: none;
  top: -12px;
}
.cid-tO3ZaARX6J .navbar .dropdown.open > .dropdown-menu {
  display: flex;
}
.cid-tO3ZaARX6J ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tO3ZaARX6J .navbar-buttons {
  text-align: center;
  min-width: 140px;
}
@media (max-width: 992px) {
  .cid-tO3ZaARX6J .navbar-buttons {
    text-align: left;
  }
}
.cid-tO3ZaARX6J button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tO3ZaARX6J button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-tO3ZaARX6J button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tO3ZaARX6J button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tO3ZaARX6J button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tO3ZaARX6J button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tO3ZaARX6J nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tO3ZaARX6J nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tO3ZaARX6J nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tO3ZaARX6J nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tO3ZaARX6J .navbar-dropdown {
  padding: 0 1rem;
}
.cid-tO3ZaARX6J a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tO3ZaARX6J .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media (max-width: 992px) {
  .cid-tO3ZaARX6J .icons-menu {
    justify-content: flex-start;
    margin-bottom: .5rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tO3ZaARX6J .navbar {
    height: 70px;
  }
  .cid-tO3ZaARX6J .navbar.opened {
    height: auto;
  }
  .cid-tO3ZaARX6J .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tO3ZaARX6J .navbar .dropdown > .dropdown-menu {
  display: none;
  width: max-content;
  max-width: 500px !important;
  transform: translateX(-50%);
  top: calc(100% + 20px);
  left: 50%;
}
.cid-tO3ZaARX6J .navbar .dropdown > .dropdown-menu .dropdown-item {
  line-height: 1 !important;
}
.cid-tO3ZaARX6J .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item {
  align-items: center;
  display: flex;
  height: max-content !important;
  min-height: max-content !important;
}
.cid-tO3ZaARX6J .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item::after {
  display: inline-block;
  position: static;
  margin-left: 0.5rem;
  margin-top: 0;
  margin-right: 0;
  margin-bottom: 0;
  transition: .3s all;
  transform: rotate(-90deg);
}
.cid-tO3ZaARX6J .navbar .dropdown > .dropdown-menu .dropdown.open .dropdown-item::after {
  transform: rotate(0deg);
}
.cid-tO3ZaARX6J .mbr-section-btn {
  margin: -0.6rem -0.6rem;
}
.cid-tO3ZaARX6J .navbar-toggler {
  margin-left: 12px;
  margin-right: 8px;
  order: 1000;
}
@media (max-width: 991px) {
  .cid-tO3ZaARX6J .navbar-brand {
    margin-right: auto;
  }
  .cid-tO3ZaARX6J .navbar-collapse {
    z-index: -1 !important;
    position: absolute;
    top: 110%;
    left: 0;
    width: 100%;
    padding: 1rem;
    border-radius: 1.5rem;
    background: #403f83;
    opacity: 1;
    border-color: rgba(64, 63, 131, 0.8) !important;
    background: rgba(64, 63, 131, 0.8) !important;
    backdrop-filter: blur(8px);
  }
  .cid-tO3ZaARX6J .navbar-nav .nav-item .nav-link::after {
    margin-left: 10px;
  }
  .cid-tO3ZaARX6J .navbar-nav .dropdown-item:hover {
    background-color: rgba(27, 31, 10, 0.06);
  }
  .cid-tO3ZaARX6J .navbar .dropdown > .dropdown-menu {
    max-width: 100% !important;
    transform: translateX(0);
    top: 10px;
    left: 0;
    padding: 8px !important;
    border-radius: 1rem;
    background-color: rgba(27, 31, 10, 0.04) !important;
  }
  .cid-tO3ZaARX6J .navbar .dropdown > .dropdown-menu .dropdown-item {
    padding: 8px !important;
    line-height: 1 !important;
    margin-bottom: 4px !important;
  }
  .cid-tO3ZaARX6J .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item {
    align-items: center;
    display: flex;
    height: max-content !important;
    min-height: max-content !important;
  }
  .cid-tO3ZaARX6J .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item::after {
    display: inline-block;
    position: static;
    margin-left: 0.5rem;
    margin-top: 0;
    margin-right: 0;
    margin-bottom: 0;
    transition: .3s all;
    transform: rotate(0deg);
  }
  .cid-tO3ZaARX6J .navbar .dropdown > .dropdown-menu .dropdown.open .dropdown-item::after {
    transform: rotate(180deg);
  }
  .cid-tO3ZaARX6J .navbar .dropdown > .dropdown-menu .dropdown-submenu {
    position: static;
    width: 100%;
    max-width: 100% !important;
    transform: translateX(0) !important;
    top: 0;
    left: 0;
    padding: 8px !important;
    border-radius: 1rem;
    background-color: rgba(27, 31, 10, 0.04) !important;
  }
  .cid-tO3ZaARX6J .navbar .dropdown.open > .dropdown-menu {
    display: flex !important;
    flex-direction: column;
    align-items: flex-start;
  }
}
@media (max-width: 575px) {
  .cid-tO3ZaARX6J .navbar-collapse {
    padding: 1rem;
  }
}
.cid-tsyYEL7yze {
  background-image: url("../../../assets/images/host3-1920x1080.webp");
}
.cid-tsyYEL7yze img {
  width: 100%;
  border-radius: 30px;
}
.cid-tsyYEL7yze .mbr-section-title {
  color: #ffffff;
}
.cid-tsyYEL7yze .mbr-section-subtitle {
  background-color: #8364e2;
  padding: 0 1rem;
  border-radius: 5px;
  display: inline-block;
  font-family: 'IBM Plex Sans', sans-serif;
  font-weight: 900;
  color: #ffffff;
}
.cid-tsyYEL7yze .svg-1 {
  position: absolute;
  bottom: 0;
}
.cid-tsyYEL7yze .svg-1 path {
  fill: #212428;
}
.cid-tsyYEL7yze .container-fluid {
  max-width: 1200px;
}
.cid-tsyYEL7yze .mbr-arrow {
  z-index: 1;
}
.cid-tsyYEL7yze .mbr-section-btn {
  margin-top: 1.5rem;
}
@media (min-width: 768px) {
  .cid-tsyYEL7yze .container-fluid {
    padding: 0 1.5rem;
  }
}
@media (max-width: 992px) {
  .cid-tsyYEL7yze .imageContainer {
    margin-top: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-tsyYEL7yze .container-fluid {
    padding: 0 1rem;
  }
  .cid-tsyYEL7yze .mbr-section-subtitle {
    margin-bottom: 1.4rem;
  }
}
.cid-tECcTHKFwU {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #212428;
}
.cid-tECcTHKFwU .item-img {
  margin-bottom: 1rem;
}
.cid-tECcTHKFwU .item-img img {
  border-radius: 20px;
}
.cid-tECcTHKFwU .item-wrapper {
  position: relative;
  background: #1e2024;
  border-radius: 20px;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
  padding: 1.5rem;
  box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.3);
  padding-top: 2rem;
  padding-bottom: 3rem;
}
.cid-tECcTHKFwU .face-wrap {
  position: absolute;
  left: 1.5rem;
  top: 1rem;
  width: 70px;
  height: 70px;
  border-radius: 50%;
}
.cid-tECcTHKFwU .face-wrap:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #8364e2;
  border-radius: 50%;
  z-index: 1;
  transition: all 0.3s;
  transform: scale(0.99);
}
.cid-tECcTHKFwU .face-wrap .mbr-iconfont {
  position: absolute;
  right: 0;
  bottom: 0;
  font-size: 0.8rem;
  color: #ffffff;
  background: #8364e2;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 3;
}
.cid-tECcTHKFwU .face-wrap:hover .face {
  transform: scale(0.9);
}
.cid-tECcTHKFwU .face-wrap:hover:before {
  transform: scale(1.1);
}
.cid-tECcTHKFwU .face {
  object-fit: cover;
  position: relative;
  transition: all 0.3s;
  border-radius: 50%;
  z-index: 2;
}
.cid-tECcTHKFwU .item-img img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}
.cid-tECcTHKFwU .item:focus,
.cid-tECcTHKFwU span:focus {
  outline: none;
}
.cid-tECcTHKFwU .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-tECcTHKFwU .row {
  margin-left: 0;
  margin-right: 0;
}
.cid-tECcTHKFwU .item {
  padding: 0;
  margin: 0;
}
.cid-tECcTHKFwU .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tECcTHKFwU .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-tECcTHKFwU .mbr-text,
.cid-tECcTHKFwU .mbr-section-btn {
  text-align: center;
  color: #ffffff;
}
.cid-tECcTHKFwU .item-title {
  text-align: center;
  color: #ffffff;
}
.cid-tECcTHKFwU .item-subtitle {
  text-align: left;
  color: #ffffff;
}
.cid-tECcTHKFwU .mbr-link {
  color: #8364e2;
}
.cid-tECcTHKFwU .mbr-section-subtitle {
  color: #ffffff;
  text-align: center;
}
.cid-tsYkfJ1V2z {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #212428;
}
.cid-tsYkfJ1V2z .progress {
  width: 100%;
}
.cid-tsYkfJ1V2z p {
  margin-bottom: 0.4rem;
}
.cid-tsYkfJ1V2z .progressbar-title {
  padding-bottom: 1rem;
}
.cid-tsYkfJ1V2z .title-wrap {
  display: flex;
  justify-content: space-between;
  -webkit-justify-content: space-between;
}
.cid-tsYkfJ1V2z progress {
  height: 10px;
}
.cid-tsYkfJ1V2z .progressbar-number {
  display: inline-block;
  width: 50px;
}
.cid-tsYkfJ1V2z .progress-primary {
  background: rgba(206, 206, 206, 0.9);
  border: none;
  outline: none;
}
.cid-tsYkfJ1V2z .progress-primary::-webkit-progress-bar {
  background: rgba(206, 206, 206, 0.9);
}
.cid-tsYkfJ1V2z .progress_value {
  position: relative;
}
.cid-tsYkfJ1V2z .progress1 .progressbar-number:before,
.cid-tsYkfJ1V2z .progress2 .progressbar-number:before,
.cid-tsYkfJ1V2z .progress3 .progressbar-number:before,
.cid-tsYkfJ1V2z .progress4 .progressbar-number:before,
.cid-tsYkfJ1V2z .progress5 .progressbar-number:before {
  position: absolute;
  right: 15px;
  top: 0;
}
.cid-tsYkfJ1V2z progress[value]::-webkit-progress-bar {
  background: rgba(206, 206, 206, 0.4);
  margin: 0;
}
.cid-tsYkfJ1V2z progress::-webkit-progress-value {
  background: #6917c7;
}
.cid-tsYkfJ1V2z progress[value]::-moz-progress-bar {
  background: #6917c7;
}
.cid-tsYkfJ1V2z progress::-ms-fill {
  background: #6917c7;
}
.cid-tsYkfJ1V2z .progress1 .progressbar-number:before {
  content: "100";
}
.cid-tsYkfJ1V2z .progress2 .progressbar-number:before {
  content: "71";
}
.cid-tsYkfJ1V2z .progress3 .progressbar-number:before {
  content: "53";
}
.cid-tsYkfJ1V2z .progress4 .progressbar-number:before {
  content: "70";
}
.cid-tsYkfJ1V2z .progress5 .progressbar-number:before {
  content: "81";
}
.cid-tsYkfJ1V2z .section-content-text {
  color: #454545;
}
.cid-tsYkfJ1V2z .progressbar-title p,
.cid-tsYkfJ1V2z .progress_value {
  color: #ffffff;
  text-align: center;
}
.cid-tsYkfJ1V2z .mbr-section-subtitle {
  color: #454545;
}
.cid-tsYkfJ1V2z .section-content-title {
  text-align: center;
  color: #ffffff;
}
.cid-tsYkfJ1V2z .mbr-fallback-image.disabled {
  display: none;
}
.cid-tsYkfJ1V2z .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tEtqQMF5ZF {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #212428;
}
.cid-tEtqQMF5ZF .main-title {
  position: relative;
  width: fit-content;
  display: inline-block;
  color: #160830;
}
.cid-tEtqQMF5ZF .main-title:before {
  content: "";
  bottom: -1rem;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 2px;
  background: currentColor;
  position: absolute;
}
.cid-tEtqQMF5ZF img {
  width: 80px;
  margin: auto;
}
.cid-tEtqQMF5ZF .card-wrapper {
  transition: all 0.3s;
  border: 2px solid #5b3486;
  padding: 2rem 0;
  background: #5b3486;
  border-radius: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 2rem;
}
.cid-tEtqQMF5ZF .card-wrapper:hover {
  background: transparent;
}
.cid-tEtqQMF5ZF .card-title,
.cid-tEtqQMF5ZF .card-box {
  color: #ffffff;
  text-align: center;
}
.cid-tEtqQMF5ZF .main-title,
.cid-tEtqQMF5ZF .title-col {
  text-align: center;
  color: #ffffff;
}
.cid-tEtqQMF5ZF .card-text {
  color: #bbbbbb;
}
.cid-tEtqQMF5ZF .mbr-fallback-image.disabled {
  display: none;
}
.cid-tEtqQMF5ZF .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tEz7LdXy80 {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #212428;
}
.cid-tEz7LdXy80 .progress {
  width: 100%;
}
.cid-tEz7LdXy80 p {
  margin-bottom: 0.4rem;
}
.cid-tEz7LdXy80 .progressbar-title {
  padding-bottom: 1rem;
}
.cid-tEz7LdXy80 .title-wrap {
  display: flex;
  justify-content: space-between;
  -webkit-justify-content: space-between;
}
.cid-tEz7LdXy80 progress {
  height: 10px;
}
.cid-tEz7LdXy80 .progressbar-number {
  display: inline-block;
  width: 50px;
}
.cid-tEz7LdXy80 .progress-primary {
  background: rgba(206, 206, 206, 0.9);
  border: none;
  outline: none;
}
.cid-tEz7LdXy80 .progress-primary::-webkit-progress-bar {
  background: rgba(206, 206, 206, 0.9);
}
.cid-tEz7LdXy80 .progress_value {
  position: relative;
}
.cid-tEz7LdXy80 .progress1 .progressbar-number:before,
.cid-tEz7LdXy80 .progress2 .progressbar-number:before,
.cid-tEz7LdXy80 .progress3 .progressbar-number:before,
.cid-tEz7LdXy80 .progress4 .progressbar-number:before,
.cid-tEz7LdXy80 .progress5 .progressbar-number:before {
  position: absolute;
  right: 15px;
  top: 0;
}
.cid-tEz7LdXy80 progress[value]::-webkit-progress-bar {
  background: rgba(206, 206, 206, 0.4);
  margin: 0;
}
.cid-tEz7LdXy80 progress::-webkit-progress-value {
  background: #6917c7;
}
.cid-tEz7LdXy80 progress[value]::-moz-progress-bar {
  background: #6917c7;
}
.cid-tEz7LdXy80 progress::-ms-fill {
  background: #6917c7;
}
.cid-tEz7LdXy80 .progress1 .progressbar-number:before {
  content: "100";
}
.cid-tEz7LdXy80 .progress2 .progressbar-number:before {
  content: "71";
}
.cid-tEz7LdXy80 .progress3 .progressbar-number:before {
  content: "53";
}
.cid-tEz7LdXy80 .progress4 .progressbar-number:before {
  content: "70";
}
.cid-tEz7LdXy80 .progress5 .progressbar-number:before {
  content: "81";
}
.cid-tEz7LdXy80 .section-content-text {
  color: #454545;
}
.cid-tEz7LdXy80 .progressbar-title p,
.cid-tEz7LdXy80 .progress_value {
  color: #ffffff;
  text-align: center;
}
.cid-tEz7LdXy80 .mbr-section-subtitle {
  color: #454545;
}
.cid-tEz7LdXy80 .section-content-title {
  text-align: center;
  color: #ffffff;
}
.cid-tEz7LdXy80 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tEz7LdXy80 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tEtrbfyrSg {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/wallhaven-oxd7gp-1920x1080-1920x1080.webp");
}
@media (max-width: 991px) {
  .cid-tEtrbfyrSg .wrapper {
    padding: 0;
  }
}
@media (min-width: 992px) {
  .cid-tEtrbfyrSg .wrapper {
    padding: 4rem 6rem;
  }
}
.cid-tEtrbfyrSg .card-wrapper {
  background-color: #282b2f;
  border-radius: 30px;
  border: 3px solid;
  background: #282b2f;
  transition: all 0.5s;
  position: relative;
  padding: 10px 10px;
}
@media (max-width: 991px) {
  .cid-tEtrbfyrSg .card-wrapper {
    padding: 3rem 1rem;
  }
}
.cid-tEtrbfyrSg .color {
  color: #FFA29D;
}
.cid-tEtrbfyrSg .btn {
  border-radius: 30px;
  text-transform: uppercase;
  padding: 1rem 1rem;
}
@media (max-width: 768px) {
  .cid-tEtrbfyrSg .btn {
    width: 90%;
  }
}
.cid-tEtrbfyrSg .mbr-text {
  color: #ffffff;
  text-align: left;
}
.cid-tEtrbfyrSg .card-title {
  color: #ef9207;
}
.cid-tEtrbfyrSg .price {
  color: #ffffff;
  text-align: center;
}
.cid-tEtrbfyrSg .mbr-section-title {
  text-align: center;
  color: #ef9207;
}
.cid-tExekgh7F9 {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #212428;
}
.cid-tExekgh7F9 .progress {
  width: 100%;
}
.cid-tExekgh7F9 p {
  margin-bottom: 0.4rem;
}
.cid-tExekgh7F9 .progressbar-title {
  padding-bottom: 1rem;
}
.cid-tExekgh7F9 .title-wrap {
  display: flex;
  justify-content: space-between;
  -webkit-justify-content: space-between;
}
.cid-tExekgh7F9 progress {
  height: 10px;
}
.cid-tExekgh7F9 .progressbar-number {
  display: inline-block;
  width: 50px;
}
.cid-tExekgh7F9 .progress-primary {
  background: rgba(206, 206, 206, 0.9);
  border: none;
  outline: none;
}
.cid-tExekgh7F9 .progress-primary::-webkit-progress-bar {
  background: rgba(206, 206, 206, 0.9);
}
.cid-tExekgh7F9 .progress_value {
  position: relative;
}
.cid-tExekgh7F9 .progress1 .progressbar-number:before,
.cid-tExekgh7F9 .progress2 .progressbar-number:before,
.cid-tExekgh7F9 .progress3 .progressbar-number:before,
.cid-tExekgh7F9 .progress4 .progressbar-number:before,
.cid-tExekgh7F9 .progress5 .progressbar-number:before {
  position: absolute;
  right: 15px;
  top: 0;
}
.cid-tExekgh7F9 progress[value]::-webkit-progress-bar {
  background: rgba(206, 206, 206, 0.4);
  margin: 0;
}
.cid-tExekgh7F9 progress::-webkit-progress-value {
  background: #6917c7;
}
.cid-tExekgh7F9 progress[value]::-moz-progress-bar {
  background: #6917c7;
}
.cid-tExekgh7F9 progress::-ms-fill {
  background: #6917c7;
}
.cid-tExekgh7F9 .progress1 .progressbar-number:before {
  content: "100";
}
.cid-tExekgh7F9 .progress2 .progressbar-number:before {
  content: "71";
}
.cid-tExekgh7F9 .progress3 .progressbar-number:before {
  content: "53";
}
.cid-tExekgh7F9 .progress4 .progressbar-number:before {
  content: "70";
}
.cid-tExekgh7F9 .progress5 .progressbar-number:before {
  content: "81";
}
.cid-tExekgh7F9 .section-content-text {
  color: #454545;
}
.cid-tExekgh7F9 .progressbar-title p,
.cid-tExekgh7F9 .progress_value {
  color: #ffffff;
  text-align: center;
}
.cid-tExekgh7F9 .mbr-section-subtitle {
  color: #454545;
}
.cid-tExekgh7F9 .section-content-title {
  text-align: center;
  color: #ffffff;
}
.cid-tExekgh7F9 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tExekgh7F9 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tO4HYiBuzf {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #212428;
}
.cid-tO4HYiBuzf .mbr-iconfont {
  font-size: 1.4rem !important;
  font-family: "Moririse2" !important;
  color: #8364e2;
  margin-left: 1rem;
}
.cid-tO4HYiBuzf .panel-group,
.cid-tO4HYiBuzf .card-header {
  border: none;
}
.cid-tO4HYiBuzf .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-tO4HYiBuzf .card-header {
  background: transparent;
}
.cid-tO4HYiBuzf .panel-title-edit {
  color: #ef9207;
}
.cid-tO4HYiBuzf .card {
  background-color: #282b2f;
  margin-bottom: 0;
  padding: 1rem 1rem;
}
.cid-tO4HYiBuzf .panel-body {
  padding: 1rem 1rem;
}
.cid-tO4HYiBuzf .panel-text {
  color: #ffffff;
  margin: 0;
}
.cid-tO4HYiBuzf H3 {
  color: #ef9207;
}
.cid-tO4HYiBuzf H4 {
  color: #ffffff;
}
.cid-tO4HYiBuzf .mbr-fallback-image.disabled {
  display: none;
}
.cid-tO4HYiBuzf .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tEtx1qHkQN {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #212428;
}
.cid-tEtx1qHkQN .progress {
  width: 100%;
}
.cid-tEtx1qHkQN p {
  margin-bottom: 0.4rem;
}
.cid-tEtx1qHkQN .progressbar-title {
  padding-bottom: 1rem;
}
.cid-tEtx1qHkQN .title-wrap {
  display: flex;
  justify-content: space-between;
  -webkit-justify-content: space-between;
}
.cid-tEtx1qHkQN progress {
  height: 10px;
}
.cid-tEtx1qHkQN .progressbar-number {
  display: inline-block;
  width: 50px;
}
.cid-tEtx1qHkQN .progress-primary {
  background: rgba(206, 206, 206, 0.9);
  border: none;
  outline: none;
}
.cid-tEtx1qHkQN .progress-primary::-webkit-progress-bar {
  background: rgba(206, 206, 206, 0.9);
}
.cid-tEtx1qHkQN .progress_value {
  position: relative;
}
.cid-tEtx1qHkQN .progress1 .progressbar-number:before,
.cid-tEtx1qHkQN .progress2 .progressbar-number:before,
.cid-tEtx1qHkQN .progress3 .progressbar-number:before,
.cid-tEtx1qHkQN .progress4 .progressbar-number:before,
.cid-tEtx1qHkQN .progress5 .progressbar-number:before {
  position: absolute;
  right: 15px;
  top: 0;
}
.cid-tEtx1qHkQN progress[value]::-webkit-progress-bar {
  background: rgba(206, 206, 206, 0.4);
  margin: 0;
}
.cid-tEtx1qHkQN progress::-webkit-progress-value {
  background: #6917c7;
}
.cid-tEtx1qHkQN progress[value]::-moz-progress-bar {
  background: #6917c7;
}
.cid-tEtx1qHkQN progress::-ms-fill {
  background: #6917c7;
}
.cid-tEtx1qHkQN .progress1 .progressbar-number:before {
  content: "100";
}
.cid-tEtx1qHkQN .progress2 .progressbar-number:before {
  content: "71";
}
.cid-tEtx1qHkQN .progress3 .progressbar-number:before {
  content: "53";
}
.cid-tEtx1qHkQN .progress4 .progressbar-number:before {
  content: "70";
}
.cid-tEtx1qHkQN .progress5 .progressbar-number:before {
  content: "81";
}
.cid-tEtx1qHkQN .section-content-text {
  color: #454545;
}
.cid-tEtx1qHkQN .progressbar-title p,
.cid-tEtx1qHkQN .progress_value {
  color: #ffffff;
  text-align: center;
}
.cid-tEtx1qHkQN .mbr-section-subtitle {
  color: #454545;
}
.cid-tEtx1qHkQN .section-content-title {
  text-align: center;
  color: #ffffff;
}
.cid-tEtx1qHkQN .mbr-fallback-image.disabled {
  display: none;
}
.cid-tEtx1qHkQN .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tEtw9So09w {
  padding-top: 1rem;
  padding-bottom: 2rem;
  background-color: #212428;
}
.cid-tEtw9So09w .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-tEtw9So09w .card-title {
  margin-bottom: 26px;
  color: #8364e2;
}
.cid-tEtw9So09w .mbr-text {
  margin-bottom: 30px;
}
.cid-tEtw9So09w .iconfont-wrapper {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  border-top-right-radius: 0;
  display: inline-block;
  text-align: center;
  margin-bottom: 30px;
  position: relative;
  z-index: 1;
  box-shadow: 0px 14px 30px 0px rgba(148, 10, 36, 0.4);
  background-image: linear-gradient(125deg, #940a24 0%, #ef153e 100%);
}
.cid-tEtw9So09w .iconfont-wrapper .mbr-iconfont {
  color: #ffffff;
  font-size: 36px;
  line-height: 70px;
}
.cid-tEtw9So09w .btn_link {
  display: block;
  margin-bottom: 0;
  position: relative;
  font-weight: 700;
}
.cid-tEtw9So09w .btn_link span {
  display: inline-block;
  margin-left: .25rem;
  font-size: 16px;
  vertical-align: middle;
  transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.cid-tEtw9So09w .btn_link:hover {
  cursor: pointer;
}
.cid-tEtw9So09w .btn_link:hover a {
  color: #8364e2 !important;
}
.cid-tEtw9So09w .btn_link:hover span {
  transform: translatex(5px);
}
@media (min-width: 992px) {
  .cid-tEtw9So09w .text-wrapper {
    padding-right: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tEtw9So09w .text-wrapper {
    text-align: center;
  }
  .cid-tEtw9So09w .image-wrapper {
    margin-bottom: 40px;
  }
  .cid-tEtw9So09w .mbr-text {
    margin-bottom: 20px;
  }
  .cid-tEtw9So09w .iconfont-wrapper {
    margin-bottom: 20px;
  }
}
.cid-tEtw9So09w .mbr-text,
.cid-tEtw9So09w .btn_link {
  color: #ffffff;
  text-align: left;
}
.cid-tEtw9So09w .card-title,
.cid-tEtw9So09w .icon_block {
  text-align: left;
}
.cid-tv20JXf5Ez {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #282b2f;
}
.cid-tv20JXf5Ez svg {
  width: 100%;
  position: absolute;
  left: 0;
  top: -48px;
  height: 50px;
  transform-origin: bottom;
  animation: 1.5s ease-in-out infinite alternate svg2;
}
.cid-tv20JXf5Ez svg .st0 {
  fill: #282b2f;
}
@media (max-width: 992px) {
  .cid-tv20JXf5Ez svg {
    width: 1000px;
  }
}
@keyframes svg2 {
  from {
    transform: scaleX(1) scaleY(1.1) rotate(0deg);
  }
  to {
    transform: scaleX(1) scaleY(1.6) rotate(0deg);
  }
}
.cid-tv20JXf5Ez .list {
  list-style: none;
  padding-left: 0;
  color: #ffffff;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-tv20JXf5Ez .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tv20JXf5Ez .list {
    margin-bottom: 0rem;
  }
}
@media (max-width: 767px) {
  .cid-tv20JXf5Ez .row {
    text-align: center;
  }
}
@media (max-width: 991px) {
  .cid-tv20JXf5Ez div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-tv20JXf5Ez .copyright {
  color: #ffffff;
  text-align: center;
}
.cid-tO3ZaARX6J {
  z-index: 1000;
  width: 100%;
  position: relative;
}
.cid-tO3ZaARX6J .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;
}
@media (max-width: 767px) {
  .cid-tO3ZaARX6J .navbar-toggler {
    transform: scale(0.8);
  }
}
.cid-tO3ZaARX6J .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tO3ZaARX6J .navbar-brand img {
  max-width: 100%;
  max-height: 100%;
  border-radius: 0px !important;
}
.cid-tO3ZaARX6J .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tO3ZaARX6J .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tO3ZaARX6J .navbar-nav {
  margin: auto;
  margin-left: 0;
  margin-left: auto;
}
.cid-tO3ZaARX6J .navbar-nav .nav-item {
  padding: 0 !important;
  transition: .3s all !important;
}
.cid-tO3ZaARX6J .navbar-nav .nav-item .nav-link {
  padding: 16px !important;
  margin: 0 !important;
  border-radius: 1rem !important;
  transition: .3s all !important;
}
.cid-tO3ZaARX6J .navbar-nav .nav-item .nav-link:hover {
  background-color: rgba(27, 31, 10, 0.06);
}
.cid-tO3ZaARX6J .navbar-nav .open .nav-link::after {
  transform: rotate(180deg);
}
@media (min-width: 992px) {
  .cid-tO3ZaARX6J .navbar-nav .open .nav-link::before {
    content: "";
    width: 100%;
    height: 20px;
    top: 100%;
    background: transparent;
    position: absolute;
  }
}
.cid-tO3ZaARX6J .navbar-nav .dropdown-item {
  padding: 12px !important;
  border-radius: 0.5rem !important;
  margin: 0 8px !important;
  transition: .3s all !important;
}
.cid-tO3ZaARX6J .navbar-nav .dropdown-item:hover {
  background-color: rgba(27, 31, 10, 0.06);
}
@media (min-width: 992px) {
  .cid-tO3ZaARX6J .navbar-nav {
    padding-left: 1.5rem;
  }
}
.cid-tO3ZaARX6J .nav-link {
  width: fit-content;
  position: relative;
}
.cid-tO3ZaARX6J .navbar-logo {
  padding-left: 2rem;
  margin: 0 !important;
}
@media (max-width: 767px) {
  .cid-tO3ZaARX6J .navbar-logo {
    padding-left: 1rem;
  }
}
.cid-tO3ZaARX6J .navbar-caption {
  padding-left: 1rem;
  padding-right: .5rem;
}
@media (max-width: 767px) {
  .cid-tO3ZaARX6J .nav-dropdown {
    padding-bottom: 0.5rem;
  }
}
.cid-tO3ZaARX6J .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  transition: .3s all;
}
.cid-tO3ZaARX6J .container {
  display: flex;
  height: 90px;
  padding: 0.5rem 0.6rem;
  flex-wrap: nowrap;
  background: rgba(64, 63, 131, 0.8) !important;
  left: 0;
  right: 0;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: flex-end;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 100vw;
  margin-top: 1rem;
  background-color: #403f83;
  box-shadow: 0 30px 60px 0 rgba(27, 31, 10, 0.08);
}
@media (max-width: 992px) {
  .cid-tO3ZaARX6J .container {
    padding-right: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-tO3ZaARX6J .container {
    width: 95%;
    height: 56px !important;
    padding-right: 1rem;
    margin-top: 0rem;
  }
}
.cid-tO3ZaARX6J .iconfont-wrapper {
  color: #2469ea !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tO3ZaARX6J .dropdown-menu {
  flex-wrap: wrap;
  flex-direction: column;
  max-width: 100%;
  padding: 12px 4px !important;
  border-radius: 1.5rem;
  transition: .3s all !important;
  min-width: auto;
  background: #403f83;
  background: rgba(64, 63, 131, 0.8) !important;
}
.cid-tO3ZaARX6J .nav-item:focus,
.cid-tO3ZaARX6J .nav-link:focus {
  outline: none;
}
.cid-tO3ZaARX6J .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tO3ZaARX6J .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tO3ZaARX6J .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tO3ZaARX6J .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tO3ZaARX6J .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tO3ZaARX6J .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tO3ZaARX6J .navbar {
  min-height: 90px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: transparent !important;
  padding: 0 !important;
  border: none !important;
  box-shadow: none !important;
  border-radius: 0 !important;
}
.cid-tO3ZaARX6J .navbar.opened {
  transition: all 0.3s;
}
.cid-tO3ZaARX6J .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tO3ZaARX6J .navbar .navbar-logo img {
  width: auto;
}
.cid-tO3ZaARX6J .navbar .navbar-collapse {
  z-index: 1;
  justify-content: flex-end;
}
.cid-tO3ZaARX6J .navbar.collapsed {
  justify-content: center;
}
.cid-tO3ZaARX6J .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tO3ZaARX6J .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tO3ZaARX6J .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 2.7rem);
  }
}
.cid-tO3ZaARX6J .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tO3ZaARX6J .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tO3ZaARX6J .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-tO3ZaARX6J .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tO3ZaARX6J .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tO3ZaARX6J .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 767px) {
  .cid-tO3ZaARX6J .navbar {
    min-height: 72px;
  }
  .cid-tO3ZaARX6J .navbar .navbar-logo img {
    height: 2rem !important;
  }
}
@media (max-width: 991px) {
  .cid-tO3ZaARX6J .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tO3ZaARX6J .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tO3ZaARX6J .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tO3ZaARX6J .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tO3ZaARX6J .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-tO3ZaARX6J .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tO3ZaARX6J .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 10px;
  }
  .cid-tO3ZaARX6J .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tO3ZaARX6J .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tO3ZaARX6J .navbar.navbar-short .navbar-logo img {
  height: 2rem;
}
.cid-tO3ZaARX6J .dropdown-item.active,
.cid-tO3ZaARX6J .dropdown-item:active {
  background-color: transparent;
}
.cid-tO3ZaARX6J .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tO3ZaARX6J .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tO3ZaARX6J .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tO3ZaARX6J .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #403f83;
}
.cid-tO3ZaARX6J .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 105%;
  transform: none;
  top: -12px;
}
.cid-tO3ZaARX6J .navbar .dropdown.open > .dropdown-menu {
  display: flex;
}
.cid-tO3ZaARX6J ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tO3ZaARX6J .navbar-buttons {
  text-align: center;
  min-width: 140px;
}
@media (max-width: 992px) {
  .cid-tO3ZaARX6J .navbar-buttons {
    text-align: left;
  }
}
.cid-tO3ZaARX6J button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tO3ZaARX6J button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-tO3ZaARX6J button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tO3ZaARX6J button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tO3ZaARX6J button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tO3ZaARX6J button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tO3ZaARX6J nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tO3ZaARX6J nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tO3ZaARX6J nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tO3ZaARX6J nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tO3ZaARX6J .navbar-dropdown {
  padding: 0 1rem;
}
.cid-tO3ZaARX6J a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tO3ZaARX6J .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media (max-width: 992px) {
  .cid-tO3ZaARX6J .icons-menu {
    justify-content: flex-start;
    margin-bottom: .5rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tO3ZaARX6J .navbar {
    height: 70px;
  }
  .cid-tO3ZaARX6J .navbar.opened {
    height: auto;
  }
  .cid-tO3ZaARX6J .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tO3ZaARX6J .navbar .dropdown > .dropdown-menu {
  display: none;
  width: max-content;
  max-width: 500px !important;
  transform: translateX(-50%);
  top: calc(100% + 20px);
  left: 50%;
}
.cid-tO3ZaARX6J .navbar .dropdown > .dropdown-menu .dropdown-item {
  line-height: 1 !important;
}
.cid-tO3ZaARX6J .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item {
  align-items: center;
  display: flex;
  height: max-content !important;
  min-height: max-content !important;
}
.cid-tO3ZaARX6J .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item::after {
  display: inline-block;
  position: static;
  margin-left: 0.5rem;
  margin-top: 0;
  margin-right: 0;
  margin-bottom: 0;
  transition: .3s all;
  transform: rotate(-90deg);
}
.cid-tO3ZaARX6J .navbar .dropdown > .dropdown-menu .dropdown.open .dropdown-item::after {
  transform: rotate(0deg);
}
.cid-tO3ZaARX6J .mbr-section-btn {
  margin: -0.6rem -0.6rem;
}
.cid-tO3ZaARX6J .navbar-toggler {
  margin-left: 12px;
  margin-right: 8px;
  order: 1000;
}
@media (max-width: 991px) {
  .cid-tO3ZaARX6J .navbar-brand {
    margin-right: auto;
  }
  .cid-tO3ZaARX6J .navbar-collapse {
    z-index: -1 !important;
    position: absolute;
    top: 110%;
    left: 0;
    width: 100%;
    padding: 1rem;
    border-radius: 1.5rem;
    background: #403f83;
    opacity: 1;
    border-color: rgba(64, 63, 131, 0.8) !important;
    background: rgba(64, 63, 131, 0.8) !important;
    backdrop-filter: blur(8px);
  }
  .cid-tO3ZaARX6J .navbar-nav .nav-item .nav-link::after {
    margin-left: 10px;
  }
  .cid-tO3ZaARX6J .navbar-nav .dropdown-item:hover {
    background-color: rgba(27, 31, 10, 0.06);
  }
  .cid-tO3ZaARX6J .navbar .dropdown > .dropdown-menu {
    max-width: 100% !important;
    transform: translateX(0);
    top: 10px;
    left: 0;
    padding: 8px !important;
    border-radius: 1rem;
    background-color: rgba(27, 31, 10, 0.04) !important;
  }
  .cid-tO3ZaARX6J .navbar .dropdown > .dropdown-menu .dropdown-item {
    padding: 8px !important;
    line-height: 1 !important;
    margin-bottom: 4px !important;
  }
  .cid-tO3ZaARX6J .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item {
    align-items: center;
    display: flex;
    height: max-content !important;
    min-height: max-content !important;
  }
  .cid-tO3ZaARX6J .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item::after {
    display: inline-block;
    position: static;
    margin-left: 0.5rem;
    margin-top: 0;
    margin-right: 0;
    margin-bottom: 0;
    transition: .3s all;
    transform: rotate(0deg);
  }
  .cid-tO3ZaARX6J .navbar .dropdown > .dropdown-menu .dropdown.open .dropdown-item::after {
    transform: rotate(180deg);
  }
  .cid-tO3ZaARX6J .navbar .dropdown > .dropdown-menu .dropdown-submenu {
    position: static;
    width: 100%;
    max-width: 100% !important;
    transform: translateX(0) !important;
    top: 0;
    left: 0;
    padding: 8px !important;
    border-radius: 1rem;
    background-color: rgba(27, 31, 10, 0.04) !important;
  }
  .cid-tO3ZaARX6J .navbar .dropdown.open > .dropdown-menu {
    display: flex !important;
    flex-direction: column;
    align-items: flex-start;
  }
}
@media (max-width: 575px) {
  .cid-tO3ZaARX6J .navbar-collapse {
    padding: 1rem;
  }
}
.cid-tECcB354co {
  background-image: url("../../../assets/images/host3-1920x1080.webp");
}
.cid-tECcB354co img {
  width: 100%;
  border-radius: 30px;
}
.cid-tECcB354co .mbr-section-title {
  color: #ffffff;
}
.cid-tECcB354co .mbr-section-subtitle {
  background-color: #8364e2;
  padding: 0 1rem;
  border-radius: 5px;
  display: inline-block;
  font-family: 'IBM Plex Sans', sans-serif;
  font-weight: 900;
  color: #ffffff;
}
.cid-tECcB354co .svg-1 {
  position: absolute;
  bottom: 0;
}
.cid-tECcB354co .svg-1 path {
  fill: #212428;
}
.cid-tECcB354co .container-fluid {
  max-width: 1200px;
}
.cid-tECcB354co .mbr-arrow {
  z-index: 1;
}
.cid-tECcB354co .mbr-section-btn {
  margin-top: 1.5rem;
}
@media (min-width: 768px) {
  .cid-tECcB354co .container-fluid {
    padding: 0 1.5rem;
  }
}
@media (max-width: 992px) {
  .cid-tECcB354co .imageContainer {
    margin-top: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-tECcB354co .container-fluid {
    padding: 0 1rem;
  }
  .cid-tECcB354co .mbr-section-subtitle {
    margin-bottom: 1.4rem;
  }
}
.cid-tECgJRpe2U {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #212428;
}
.cid-tECgJRpe2U .item-img {
  margin-bottom: 1rem;
}
.cid-tECgJRpe2U .item-img img {
  border-radius: 20px;
}
.cid-tECgJRpe2U .item-wrapper {
  position: relative;
  background: #1e2024;
  border-radius: 20px;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
  padding: 1.5rem;
  box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.3);
  padding-top: 2rem;
  padding-bottom: 3rem;
}
.cid-tECgJRpe2U .face-wrap {
  position: absolute;
  left: 1.5rem;
  top: 1rem;
  width: 70px;
  height: 70px;
  border-radius: 50%;
}
.cid-tECgJRpe2U .face-wrap:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #8364e2;
  border-radius: 50%;
  z-index: 1;
  transition: all 0.3s;
  transform: scale(0.99);
}
.cid-tECgJRpe2U .face-wrap .mbr-iconfont {
  position: absolute;
  right: 0;
  bottom: 0;
  font-size: 0.8rem;
  color: #ffffff;
  background: #8364e2;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 3;
}
.cid-tECgJRpe2U .face-wrap:hover .face {
  transform: scale(0.9);
}
.cid-tECgJRpe2U .face-wrap:hover:before {
  transform: scale(1.1);
}
.cid-tECgJRpe2U .face {
  object-fit: cover;
  position: relative;
  transition: all 0.3s;
  border-radius: 50%;
  z-index: 2;
}
.cid-tECgJRpe2U .item-img img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}
.cid-tECgJRpe2U .item:focus,
.cid-tECgJRpe2U span:focus {
  outline: none;
}
.cid-tECgJRpe2U .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-tECgJRpe2U .row {
  margin-left: 0;
  margin-right: 0;
}
.cid-tECgJRpe2U .item {
  padding: 0;
  margin: 0;
}
.cid-tECgJRpe2U .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tECgJRpe2U .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-tECgJRpe2U .mbr-text,
.cid-tECgJRpe2U .mbr-section-btn {
  text-align: center;
  color: #ffffff;
}
.cid-tECgJRpe2U .item-title {
  text-align: center;
  color: #ffffff;
}
.cid-tECgJRpe2U .item-subtitle {
  text-align: left;
  color: #ffffff;
}
.cid-tECgJRpe2U .mbr-link {
  color: #8364e2;
}
.cid-tECgJRpe2U .mbr-section-subtitle {
  color: #ffffff;
  text-align: center;
}
.cid-tECcB3kwcA {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #212428;
}
.cid-tECcB3kwcA .progress {
  width: 100%;
}
.cid-tECcB3kwcA p {
  margin-bottom: 0.4rem;
}
.cid-tECcB3kwcA .progressbar-title {
  padding-bottom: 1rem;
}
.cid-tECcB3kwcA .title-wrap {
  display: flex;
  justify-content: space-between;
  -webkit-justify-content: space-between;
}
.cid-tECcB3kwcA progress {
  height: 10px;
}
.cid-tECcB3kwcA .progressbar-number {
  display: inline-block;
  width: 50px;
}
.cid-tECcB3kwcA .progress-primary {
  background: rgba(206, 206, 206, 0.9);
  border: none;
  outline: none;
}
.cid-tECcB3kwcA .progress-primary::-webkit-progress-bar {
  background: rgba(206, 206, 206, 0.9);
}
.cid-tECcB3kwcA .progress_value {
  position: relative;
}
.cid-tECcB3kwcA .progress1 .progressbar-number:before,
.cid-tECcB3kwcA .progress2 .progressbar-number:before,
.cid-tECcB3kwcA .progress3 .progressbar-number:before,
.cid-tECcB3kwcA .progress4 .progressbar-number:before,
.cid-tECcB3kwcA .progress5 .progressbar-number:before {
  position: absolute;
  right: 15px;
  top: 0;
}
.cid-tECcB3kwcA progress[value]::-webkit-progress-bar {
  background: rgba(206, 206, 206, 0.4);
  margin: 0;
}
.cid-tECcB3kwcA progress::-webkit-progress-value {
  background: #6917c7;
}
.cid-tECcB3kwcA progress[value]::-moz-progress-bar {
  background: #6917c7;
}
.cid-tECcB3kwcA progress::-ms-fill {
  background: #6917c7;
}
.cid-tECcB3kwcA .progress1 .progressbar-number:before {
  content: "100";
}
.cid-tECcB3kwcA .progress2 .progressbar-number:before {
  content: "71";
}
.cid-tECcB3kwcA .progress3 .progressbar-number:before {
  content: "53";
}
.cid-tECcB3kwcA .progress4 .progressbar-number:before {
  content: "70";
}
.cid-tECcB3kwcA .progress5 .progressbar-number:before {
  content: "81";
}
.cid-tECcB3kwcA .section-content-text {
  color: #454545;
}
.cid-tECcB3kwcA .progressbar-title p,
.cid-tECcB3kwcA .progress_value {
  color: #ffffff;
  text-align: center;
}
.cid-tECcB3kwcA .mbr-section-subtitle {
  color: #454545;
}
.cid-tECcB3kwcA .section-content-title {
  text-align: center;
  color: #ffffff;
}
.cid-tECcB3kwcA .mbr-fallback-image.disabled {
  display: none;
}
.cid-tECcB3kwcA .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tECcB3yGKU {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #212428;
}
.cid-tECcB3yGKU .main-title {
  position: relative;
  width: fit-content;
  display: inline-block;
  color: #160830;
}
.cid-tECcB3yGKU .main-title:before {
  content: "";
  bottom: -1rem;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 2px;
  background: currentColor;
  position: absolute;
}
.cid-tECcB3yGKU img {
  width: 80px;
  margin: auto;
}
.cid-tECcB3yGKU .card-wrapper {
  transition: all 0.3s;
  border: 2px solid #5b3486;
  padding: 2rem 0;
  background: #5b3486;
  border-radius: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 2rem;
}
.cid-tECcB3yGKU .card-wrapper:hover {
  background: transparent;
}
.cid-tECcB3yGKU .card-title,
.cid-tECcB3yGKU .card-box {
  color: #ffffff;
  text-align: center;
}
.cid-tECcB3yGKU .main-title,
.cid-tECcB3yGKU .title-col {
  text-align: center;
  color: #ffffff;
}
.cid-tECcB3yGKU .card-text {
  color: #bbbbbb;
}
.cid-tECcB3yGKU .mbr-fallback-image.disabled {
  display: none;
}
.cid-tECcB3yGKU .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tECcB3NGxb {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #212428;
}
.cid-tECcB3NGxb .progress {
  width: 100%;
}
.cid-tECcB3NGxb p {
  margin-bottom: 0.4rem;
}
.cid-tECcB3NGxb .progressbar-title {
  padding-bottom: 1rem;
}
.cid-tECcB3NGxb .title-wrap {
  display: flex;
  justify-content: space-between;
  -webkit-justify-content: space-between;
}
.cid-tECcB3NGxb progress {
  height: 10px;
}
.cid-tECcB3NGxb .progressbar-number {
  display: inline-block;
  width: 50px;
}
.cid-tECcB3NGxb .progress-primary {
  background: rgba(206, 206, 206, 0.9);
  border: none;
  outline: none;
}
.cid-tECcB3NGxb .progress-primary::-webkit-progress-bar {
  background: rgba(206, 206, 206, 0.9);
}
.cid-tECcB3NGxb .progress_value {
  position: relative;
}
.cid-tECcB3NGxb .progress1 .progressbar-number:before,
.cid-tECcB3NGxb .progress2 .progressbar-number:before,
.cid-tECcB3NGxb .progress3 .progressbar-number:before,
.cid-tECcB3NGxb .progress4 .progressbar-number:before,
.cid-tECcB3NGxb .progress5 .progressbar-number:before {
  position: absolute;
  right: 15px;
  top: 0;
}
.cid-tECcB3NGxb progress[value]::-webkit-progress-bar {
  background: rgba(206, 206, 206, 0.4);
  margin: 0;
}
.cid-tECcB3NGxb progress::-webkit-progress-value {
  background: #6917c7;
}
.cid-tECcB3NGxb progress[value]::-moz-progress-bar {
  background: #6917c7;
}
.cid-tECcB3NGxb progress::-ms-fill {
  background: #6917c7;
}
.cid-tECcB3NGxb .progress1 .progressbar-number:before {
  content: "100";
}
.cid-tECcB3NGxb .progress2 .progressbar-number:before {
  content: "71";
}
.cid-tECcB3NGxb .progress3 .progressbar-number:before {
  content: "53";
}
.cid-tECcB3NGxb .progress4 .progressbar-number:before {
  content: "70";
}
.cid-tECcB3NGxb .progress5 .progressbar-number:before {
  content: "81";
}
.cid-tECcB3NGxb .section-content-text {
  color: #454545;
}
.cid-tECcB3NGxb .progressbar-title p,
.cid-tECcB3NGxb .progress_value {
  color: #ffffff;
  text-align: center;
}
.cid-tECcB3NGxb .mbr-section-subtitle {
  color: #454545;
}
.cid-tECcB3NGxb .section-content-title {
  text-align: center;
  color: #ffffff;
}
.cid-tECcB3NGxb .mbr-fallback-image.disabled {
  display: none;
}
.cid-tECcB3NGxb .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tECcB4WJG8 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/wallhaven-q6vdzd-1920x1080-1920x1080.webp");
}
@media (max-width: 991px) {
  .cid-tECcB4WJG8 .wrapper {
    padding: 0;
  }
}
@media (min-width: 992px) {
  .cid-tECcB4WJG8 .wrapper {
    padding: 4rem 6rem;
  }
}
.cid-tECcB4WJG8 .card-wrapper {
  background-color: #282b2f;
  border-radius: 30px;
  border: 3px solid;
  background: #282b2f;
  transition: all 0.5s;
  position: relative;
  padding: 10px 10px;
}
@media (max-width: 991px) {
  .cid-tECcB4WJG8 .card-wrapper {
    padding: 3rem 1rem;
  }
}
.cid-tECcB4WJG8 .color {
  color: #FFA29D;
}
.cid-tECcB4WJG8 .btn {
  border-radius: 30px;
  text-transform: uppercase;
  padding: 1rem 1rem;
}
@media (max-width: 768px) {
  .cid-tECcB4WJG8 .btn {
    width: 90%;
  }
}
.cid-tECcB4WJG8 .mbr-text {
  color: #ffffff;
  text-align: left;
}
.cid-tECcB4WJG8 .card-title {
  color: #0c74ff;
}
.cid-tECcB4WJG8 .price {
  color: #ffffff;
  text-align: center;
}
.cid-tECcB4WJG8 .mbr-section-title {
  text-align: center;
  color: #0c74ff;
}
.cid-tECcB4F839 {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #212428;
}
.cid-tECcB4F839 .progress {
  width: 100%;
}
.cid-tECcB4F839 p {
  margin-bottom: 0.4rem;
}
.cid-tECcB4F839 .progressbar-title {
  padding-bottom: 1rem;
}
.cid-tECcB4F839 .title-wrap {
  display: flex;
  justify-content: space-between;
  -webkit-justify-content: space-between;
}
.cid-tECcB4F839 progress {
  height: 10px;
}
.cid-tECcB4F839 .progressbar-number {
  display: inline-block;
  width: 50px;
}
.cid-tECcB4F839 .progress-primary {
  background: rgba(206, 206, 206, 0.9);
  border: none;
  outline: none;
}
.cid-tECcB4F839 .progress-primary::-webkit-progress-bar {
  background: rgba(206, 206, 206, 0.9);
}
.cid-tECcB4F839 .progress_value {
  position: relative;
}
.cid-tECcB4F839 .progress1 .progressbar-number:before,
.cid-tECcB4F839 .progress2 .progressbar-number:before,
.cid-tECcB4F839 .progress3 .progressbar-number:before,
.cid-tECcB4F839 .progress4 .progressbar-number:before,
.cid-tECcB4F839 .progress5 .progressbar-number:before {
  position: absolute;
  right: 15px;
  top: 0;
}
.cid-tECcB4F839 progress[value]::-webkit-progress-bar {
  background: rgba(206, 206, 206, 0.4);
  margin: 0;
}
.cid-tECcB4F839 progress::-webkit-progress-value {
  background: #6917c7;
}
.cid-tECcB4F839 progress[value]::-moz-progress-bar {
  background: #6917c7;
}
.cid-tECcB4F839 progress::-ms-fill {
  background: #6917c7;
}
.cid-tECcB4F839 .progress1 .progressbar-number:before {
  content: "100";
}
.cid-tECcB4F839 .progress2 .progressbar-number:before {
  content: "71";
}
.cid-tECcB4F839 .progress3 .progressbar-number:before {
  content: "53";
}
.cid-tECcB4F839 .progress4 .progressbar-number:before {
  content: "70";
}
.cid-tECcB4F839 .progress5 .progressbar-number:before {
  content: "81";
}
.cid-tECcB4F839 .section-content-text {
  color: #454545;
}
.cid-tECcB4F839 .progressbar-title p,
.cid-tECcB4F839 .progress_value {
  color: #ffffff;
  text-align: center;
}
.cid-tECcB4F839 .mbr-section-subtitle {
  color: #454545;
}
.cid-tECcB4F839 .section-content-title {
  text-align: center;
  color: #ffffff;
}
.cid-tECcB4F839 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tECcB4F839 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tO4ITp1KO1 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #212428;
}
.cid-tO4ITp1KO1 .mbr-iconfont {
  font-size: 1.4rem !important;
  font-family: "Moririse2" !important;
  color: #8364e2;
  margin-left: 1rem;
}
.cid-tO4ITp1KO1 .panel-group,
.cid-tO4ITp1KO1 .card-header {
  border: none;
}
.cid-tO4ITp1KO1 .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-tO4ITp1KO1 .card-header {
  background: transparent;
}
.cid-tO4ITp1KO1 .panel-title-edit {
  color: #2469ea;
}
.cid-tO4ITp1KO1 .card {
  background-color: #282b2f;
  margin-bottom: 0;
  padding: 1rem 1rem;
}
.cid-tO4ITp1KO1 .panel-body {
  padding: 1rem 1rem;
}
.cid-tO4ITp1KO1 .panel-text {
  color: #ffffff;
  margin: 0;
}
.cid-tO4ITp1KO1 H3 {
  color: #2469ea;
}
.cid-tO4ITp1KO1 H4 {
  color: #ffffff;
}
.cid-tO4ITp1KO1 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tO4ITp1KO1 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tECcB5kMfh {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #212428;
}
.cid-tECcB5kMfh .progress {
  width: 100%;
}
.cid-tECcB5kMfh p {
  margin-bottom: 0.4rem;
}
.cid-tECcB5kMfh .progressbar-title {
  padding-bottom: 1rem;
}
.cid-tECcB5kMfh .title-wrap {
  display: flex;
  justify-content: space-between;
  -webkit-justify-content: space-between;
}
.cid-tECcB5kMfh progress {
  height: 10px;
}
.cid-tECcB5kMfh .progressbar-number {
  display: inline-block;
  width: 50px;
}
.cid-tECcB5kMfh .progress-primary {
  background: rgba(206, 206, 206, 0.9);
  border: none;
  outline: none;
}
.cid-tECcB5kMfh .progress-primary::-webkit-progress-bar {
  background: rgba(206, 206, 206, 0.9);
}
.cid-tECcB5kMfh .progress_value {
  position: relative;
}
.cid-tECcB5kMfh .progress1 .progressbar-number:before,
.cid-tECcB5kMfh .progress2 .progressbar-number:before,
.cid-tECcB5kMfh .progress3 .progressbar-number:before,
.cid-tECcB5kMfh .progress4 .progressbar-number:before,
.cid-tECcB5kMfh .progress5 .progressbar-number:before {
  position: absolute;
  right: 15px;
  top: 0;
}
.cid-tECcB5kMfh progress[value]::-webkit-progress-bar {
  background: rgba(206, 206, 206, 0.4);
  margin: 0;
}
.cid-tECcB5kMfh progress::-webkit-progress-value {
  background: #6917c7;
}
.cid-tECcB5kMfh progress[value]::-moz-progress-bar {
  background: #6917c7;
}
.cid-tECcB5kMfh progress::-ms-fill {
  background: #6917c7;
}
.cid-tECcB5kMfh .progress1 .progressbar-number:before {
  content: "100";
}
.cid-tECcB5kMfh .progress2 .progressbar-number:before {
  content: "71";
}
.cid-tECcB5kMfh .progress3 .progressbar-number:before {
  content: "53";
}
.cid-tECcB5kMfh .progress4 .progressbar-number:before {
  content: "70";
}
.cid-tECcB5kMfh .progress5 .progressbar-number:before {
  content: "81";
}
.cid-tECcB5kMfh .section-content-text {
  color: #454545;
}
.cid-tECcB5kMfh .progressbar-title p,
.cid-tECcB5kMfh .progress_value {
  color: #ffffff;
  text-align: center;
}
.cid-tECcB5kMfh .mbr-section-subtitle {
  color: #454545;
}
.cid-tECcB5kMfh .section-content-title {
  text-align: center;
  color: #ffffff;
}
.cid-tECcB5kMfh .mbr-fallback-image.disabled {
  display: none;
}
.cid-tECcB5kMfh .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tECcB5y1Pf {
  padding-top: 1rem;
  padding-bottom: 2rem;
  background-color: #212428;
}
.cid-tECcB5y1Pf .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-tECcB5y1Pf .card-title {
  margin-bottom: 26px;
  color: #8364e2;
}
.cid-tECcB5y1Pf .mbr-text {
  margin-bottom: 30px;
}
.cid-tECcB5y1Pf .iconfont-wrapper {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  border-top-right-radius: 0;
  display: inline-block;
  text-align: center;
  margin-bottom: 30px;
  position: relative;
  z-index: 1;
  box-shadow: 0px 14px 30px 0px rgba(148, 10, 36, 0.4);
  background-image: linear-gradient(125deg, #940a24 0%, #ef153e 100%);
}
.cid-tECcB5y1Pf .iconfont-wrapper .mbr-iconfont {
  color: #ffffff;
  font-size: 36px;
  line-height: 70px;
}
.cid-tECcB5y1Pf .btn_link {
  display: block;
  margin-bottom: 0;
  position: relative;
  font-weight: 700;
}
.cid-tECcB5y1Pf .btn_link span {
  display: inline-block;
  margin-left: .25rem;
  font-size: 16px;
  vertical-align: middle;
  transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.cid-tECcB5y1Pf .btn_link:hover {
  cursor: pointer;
}
.cid-tECcB5y1Pf .btn_link:hover a {
  color: #8364e2 !important;
}
.cid-tECcB5y1Pf .btn_link:hover span {
  transform: translatex(5px);
}
@media (min-width: 992px) {
  .cid-tECcB5y1Pf .text-wrapper {
    padding-right: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tECcB5y1Pf .text-wrapper {
    text-align: center;
  }
  .cid-tECcB5y1Pf .image-wrapper {
    margin-bottom: 40px;
  }
  .cid-tECcB5y1Pf .mbr-text {
    margin-bottom: 20px;
  }
  .cid-tECcB5y1Pf .iconfont-wrapper {
    margin-bottom: 20px;
  }
}
.cid-tECcB5y1Pf .mbr-text,
.cid-tECcB5y1Pf .btn_link {
  color: #ffffff;
  text-align: left;
}
.cid-tECcB5y1Pf .card-title,
.cid-tECcB5y1Pf .icon_block {
  text-align: left;
}
.cid-tECcB5PcCH {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #282b2f;
}
.cid-tECcB5PcCH svg {
  width: 100%;
  position: absolute;
  left: 0;
  top: -48px;
  height: 50px;
  transform-origin: bottom;
  animation: 1.5s ease-in-out infinite alternate svg2;
}
.cid-tECcB5PcCH svg .st0 {
  fill: #282b2f;
}
@media (max-width: 992px) {
  .cid-tECcB5PcCH svg {
    width: 1000px;
  }
}
@keyframes svg2 {
  from {
    transform: scaleX(1) scaleY(1.1) rotate(0deg);
  }
  to {
    transform: scaleX(1) scaleY(1.6) rotate(0deg);
  }
}
.cid-tECcB5PcCH .list {
  list-style: none;
  padding-left: 0;
  color: #ffffff;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-tECcB5PcCH .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tECcB5PcCH .list {
    margin-bottom: 0rem;
  }
}
@media (max-width: 767px) {
  .cid-tECcB5PcCH .row {
    text-align: center;
  }
}
@media (max-width: 991px) {
  .cid-tECcB5PcCH div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-tECcB5PcCH .copyright {
  color: #ffffff;
  text-align: center;
}
.cid-tO4M1NSak9 {
  z-index: 1000;
  width: 100%;
  position: relative;
}
.cid-tO4M1NSak9 .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;
}
@media (max-width: 767px) {
  .cid-tO4M1NSak9 .navbar-toggler {
    transform: scale(0.8);
  }
}
.cid-tO4M1NSak9 .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tO4M1NSak9 .navbar-brand img {
  max-width: 100%;
  max-height: 100%;
  border-radius: 0px !important;
}
.cid-tO4M1NSak9 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tO4M1NSak9 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tO4M1NSak9 .navbar-nav {
  margin: auto;
  margin-left: 0;
  margin-left: auto;
}
.cid-tO4M1NSak9 .navbar-nav .nav-item {
  padding: 0 !important;
  transition: .3s all !important;
}
.cid-tO4M1NSak9 .navbar-nav .nav-item .nav-link {
  padding: 16px !important;
  margin: 0 !important;
  border-radius: 1rem !important;
  transition: .3s all !important;
}
.cid-tO4M1NSak9 .navbar-nav .nav-item .nav-link:hover {
  background-color: rgba(27, 31, 10, 0.06);
}
.cid-tO4M1NSak9 .navbar-nav .open .nav-link::after {
  transform: rotate(180deg);
}
@media (min-width: 992px) {
  .cid-tO4M1NSak9 .navbar-nav .open .nav-link::before {
    content: "";
    width: 100%;
    height: 20px;
    top: 100%;
    background: transparent;
    position: absolute;
  }
}
.cid-tO4M1NSak9 .navbar-nav .dropdown-item {
  padding: 12px !important;
  border-radius: 0.5rem !important;
  margin: 0 8px !important;
  transition: .3s all !important;
}
.cid-tO4M1NSak9 .navbar-nav .dropdown-item:hover {
  background-color: rgba(27, 31, 10, 0.06);
}
@media (min-width: 992px) {
  .cid-tO4M1NSak9 .navbar-nav {
    padding-left: 1.5rem;
  }
}
.cid-tO4M1NSak9 .nav-link {
  width: fit-content;
  position: relative;
}
.cid-tO4M1NSak9 .navbar-logo {
  padding-left: 2rem;
  margin: 0 !important;
}
@media (max-width: 767px) {
  .cid-tO4M1NSak9 .navbar-logo {
    padding-left: 1rem;
  }
}
.cid-tO4M1NSak9 .navbar-caption {
  padding-left: 1rem;
  padding-right: .5rem;
}
@media (max-width: 767px) {
  .cid-tO4M1NSak9 .nav-dropdown {
    padding-bottom: 0.5rem;
  }
}
.cid-tO4M1NSak9 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  transition: .3s all;
}
.cid-tO4M1NSak9 .container {
  display: flex;
  height: 90px;
  padding: 0.5rem 0.6rem;
  flex-wrap: nowrap;
  background: rgba(64, 63, 131, 0.8) !important;
  left: 0;
  right: 0;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: flex-end;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 100vw;
  margin-top: 1rem;
  background-color: #403f83;
  box-shadow: 0 30px 60px 0 rgba(27, 31, 10, 0.08);
}
@media (max-width: 992px) {
  .cid-tO4M1NSak9 .container {
    padding-right: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-tO4M1NSak9 .container {
    width: 95%;
    height: 56px !important;
    padding-right: 1rem;
    margin-top: 0rem;
  }
}
.cid-tO4M1NSak9 .iconfont-wrapper {
  color: #2469ea !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tO4M1NSak9 .dropdown-menu {
  flex-wrap: wrap;
  flex-direction: column;
  max-width: 100%;
  padding: 12px 4px !important;
  border-radius: 1.5rem;
  transition: .3s all !important;
  min-width: auto;
  background: #403f83;
  background: rgba(64, 63, 131, 0.8) !important;
}
.cid-tO4M1NSak9 .nav-item:focus,
.cid-tO4M1NSak9 .nav-link:focus {
  outline: none;
}
.cid-tO4M1NSak9 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tO4M1NSak9 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tO4M1NSak9 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tO4M1NSak9 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tO4M1NSak9 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tO4M1NSak9 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tO4M1NSak9 .navbar {
  min-height: 90px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: transparent !important;
  padding: 0 !important;
  border: none !important;
  box-shadow: none !important;
  border-radius: 0 !important;
}
.cid-tO4M1NSak9 .navbar.opened {
  transition: all 0.3s;
}
.cid-tO4M1NSak9 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tO4M1NSak9 .navbar .navbar-logo img {
  width: auto;
}
.cid-tO4M1NSak9 .navbar .navbar-collapse {
  z-index: 1;
  justify-content: flex-end;
}
.cid-tO4M1NSak9 .navbar.collapsed {
  justify-content: center;
}
.cid-tO4M1NSak9 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tO4M1NSak9 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tO4M1NSak9 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 2.7rem);
  }
}
.cid-tO4M1NSak9 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tO4M1NSak9 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tO4M1NSak9 .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-tO4M1NSak9 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tO4M1NSak9 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tO4M1NSak9 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 767px) {
  .cid-tO4M1NSak9 .navbar {
    min-height: 72px;
  }
  .cid-tO4M1NSak9 .navbar .navbar-logo img {
    height: 2rem !important;
  }
}
@media (max-width: 991px) {
  .cid-tO4M1NSak9 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tO4M1NSak9 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tO4M1NSak9 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tO4M1NSak9 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tO4M1NSak9 .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-tO4M1NSak9 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tO4M1NSak9 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 10px;
  }
  .cid-tO4M1NSak9 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tO4M1NSak9 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tO4M1NSak9 .navbar.navbar-short .navbar-logo img {
  height: 2rem;
}
.cid-tO4M1NSak9 .dropdown-item.active,
.cid-tO4M1NSak9 .dropdown-item:active {
  background-color: transparent;
}
.cid-tO4M1NSak9 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tO4M1NSak9 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tO4M1NSak9 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tO4M1NSak9 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #403f83;
}
.cid-tO4M1NSak9 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 105%;
  transform: none;
  top: -12px;
}
.cid-tO4M1NSak9 .navbar .dropdown.open > .dropdown-menu {
  display: flex;
}
.cid-tO4M1NSak9 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tO4M1NSak9 .navbar-buttons {
  text-align: center;
  min-width: 140px;
}
@media (max-width: 992px) {
  .cid-tO4M1NSak9 .navbar-buttons {
    text-align: left;
  }
}
.cid-tO4M1NSak9 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tO4M1NSak9 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-tO4M1NSak9 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tO4M1NSak9 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tO4M1NSak9 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tO4M1NSak9 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tO4M1NSak9 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tO4M1NSak9 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tO4M1NSak9 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tO4M1NSak9 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tO4M1NSak9 .navbar-dropdown {
  padding: 0 1rem;
}
.cid-tO4M1NSak9 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tO4M1NSak9 .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media (max-width: 992px) {
  .cid-tO4M1NSak9 .icons-menu {
    justify-content: flex-start;
    margin-bottom: .5rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tO4M1NSak9 .navbar {
    height: 70px;
  }
  .cid-tO4M1NSak9 .navbar.opened {
    height: auto;
  }
  .cid-tO4M1NSak9 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tO4M1NSak9 .navbar .dropdown > .dropdown-menu {
  display: none;
  width: max-content;
  max-width: 500px !important;
  transform: translateX(-50%);
  top: calc(100% + 20px);
  left: 50%;
}
.cid-tO4M1NSak9 .navbar .dropdown > .dropdown-menu .dropdown-item {
  line-height: 1 !important;
}
.cid-tO4M1NSak9 .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item {
  align-items: center;
  display: flex;
  height: max-content !important;
  min-height: max-content !important;
}
.cid-tO4M1NSak9 .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item::after {
  display: inline-block;
  position: static;
  margin-left: 0.5rem;
  margin-top: 0;
  margin-right: 0;
  margin-bottom: 0;
  transition: .3s all;
  transform: rotate(-90deg);
}
.cid-tO4M1NSak9 .navbar .dropdown > .dropdown-menu .dropdown.open .dropdown-item::after {
  transform: rotate(0deg);
}
.cid-tO4M1NSak9 .mbr-section-btn {
  margin: -0.6rem -0.6rem;
}
.cid-tO4M1NSak9 .navbar-toggler {
  margin-left: 12px;
  margin-right: 8px;
  order: 1000;
}
@media (max-width: 991px) {
  .cid-tO4M1NSak9 .navbar-brand {
    margin-right: auto;
  }
  .cid-tO4M1NSak9 .navbar-collapse {
    z-index: -1 !important;
    position: absolute;
    top: 110%;
    left: 0;
    width: 100%;
    padding: 1rem;
    border-radius: 1.5rem;
    background: #403f83;
    opacity: 1;
    border-color: rgba(64, 63, 131, 0.8) !important;
    background: rgba(64, 63, 131, 0.8) !important;
    backdrop-filter: blur(8px);
  }
  .cid-tO4M1NSak9 .navbar-nav .nav-item .nav-link::after {
    margin-left: 10px;
  }
  .cid-tO4M1NSak9 .navbar-nav .dropdown-item:hover {
    background-color: rgba(27, 31, 10, 0.06);
  }
  .cid-tO4M1NSak9 .navbar .dropdown > .dropdown-menu {
    max-width: 100% !important;
    transform: translateX(0);
    top: 10px;
    left: 0;
    padding: 8px !important;
    border-radius: 1rem;
    background-color: rgba(27, 31, 10, 0.04) !important;
  }
  .cid-tO4M1NSak9 .navbar .dropdown > .dropdown-menu .dropdown-item {
    padding: 8px !important;
    line-height: 1 !important;
    margin-bottom: 4px !important;
  }
  .cid-tO4M1NSak9 .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item {
    align-items: center;
    display: flex;
    height: max-content !important;
    min-height: max-content !important;
  }
  .cid-tO4M1NSak9 .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item::after {
    display: inline-block;
    position: static;
    margin-left: 0.5rem;
    margin-top: 0;
    margin-right: 0;
    margin-bottom: 0;
    transition: .3s all;
    transform: rotate(0deg);
  }
  .cid-tO4M1NSak9 .navbar .dropdown > .dropdown-menu .dropdown.open .dropdown-item::after {
    transform: rotate(180deg);
  }
  .cid-tO4M1NSak9 .navbar .dropdown > .dropdown-menu .dropdown-submenu {
    position: static;
    width: 100%;
    max-width: 100% !important;
    transform: translateX(0) !important;
    top: 0;
    left: 0;
    padding: 8px !important;
    border-radius: 1rem;
    background-color: rgba(27, 31, 10, 0.04) !important;
  }
  .cid-tO4M1NSak9 .navbar .dropdown.open > .dropdown-menu {
    display: flex !important;
    flex-direction: column;
    align-items: flex-start;
  }
}
@media (max-width: 575px) {
  .cid-tO4M1NSak9 .navbar-collapse {
    padding: 1rem;
  }
}
.cid-tO4M1OohII {
  background-image: url("../../../assets/images/fundo-1280x640.webp");
}
.cid-tO4M1OohII img {
  width: 100%;
  border-radius: 30px;
}
.cid-tO4M1OohII .mbr-section-title {
  color: #ffffff;
}
.cid-tO4M1OohII .mbr-section-subtitle {
  background-color: #8364e2;
  padding: 0 1rem;
  border-radius: 5px;
  display: inline-block;
  font-family: 'IBM Plex Sans', sans-serif;
  font-weight: 900;
  color: #ffffff;
}
.cid-tO4M1OohII .svg-1 {
  position: absolute;
  bottom: 0;
}
.cid-tO4M1OohII .svg-1 path {
  fill: #212428;
}
.cid-tO4M1OohII .container-fluid {
  max-width: 1200px;
}
.cid-tO4M1OohII .mbr-arrow {
  z-index: 1;
}
.cid-tO4M1OohII .mbr-section-btn {
  margin-top: 1.5rem;
}
@media (min-width: 768px) {
  .cid-tO4M1OohII .container-fluid {
    padding: 0 1.5rem;
  }
}
@media (max-width: 992px) {
  .cid-tO4M1OohII .imageContainer {
    margin-top: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-tO4M1OohII .container-fluid {
    padding: 0 1rem;
  }
  .cid-tO4M1OohII .mbr-section-subtitle {
    margin-bottom: 1.4rem;
  }
}
.cid-tO4MwaEplS {
  padding-top: 0rem;
  padding-bottom: 4rem;
  background-color: #212428;
}
.cid-tO4MwaEplS .mbr-media {
  position: relative;
  border-radius: 1rem;
}
.cid-tO4MwaEplS .mbr-media img {
  width: 100%;
  object-fit: cover;
  border-radius: 1rem;
}
.cid-tO4MwaEplS .icon-wrap {
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  position: absolute;
}
.cid-tO4MwaEplS .mbr-media span {
  font-size: 5rem;
  transition: all 0.2s;
  color: #da2727;
}
.cid-tO4MwaEplS .mbr-media span:hover {
  color: #8364e2 !important;
}
.cid-tO4MwaEplS .modalWindow {
  position: fixed;
  z-index: 5000;
  left: 0;
  top: 0;
  background-color: rgba(61, 61, 61, 0.65);
  width: 100%;
  height: 100%;
}
.cid-tO4MwaEplS .modalWindow .modalWindow-container {
  display: table-cell;
  vertical-align: middle;
}
.cid-tO4MwaEplS .modalWindow .modalWindow-video {
  height: calc(44.9943757vw);
  width: 80vw;
  margin: 0 auto;
}
.cid-tO4MwaEplS .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-tO4MwaEplS .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-tO4MwaEplS .mbr-section-subtitle {
  color: #ffffff;
}
.cid-tO4MwaEplS .mbr-section-title {
  color: #ffffff;
}
.cid-tO4MwaEplS .mbr-fallback-image.disabled {
  display: none;
}
.cid-tO4MwaEplS .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tO4MwaEplS .mbr-section-subtitle DIV {
  text-align: left;
}
.cid-tO4M1PNqcT {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #282b2f;
}
.cid-tO4M1PNqcT svg {
  width: 100%;
  position: absolute;
  left: 0;
  top: -48px;
  height: 50px;
  transform-origin: bottom;
  animation: 1.5s ease-in-out infinite alternate svg2;
}
.cid-tO4M1PNqcT svg .st0 {
  fill: #282b2f;
}
@media (max-width: 992px) {
  .cid-tO4M1PNqcT svg {
    width: 1000px;
  }
}
@keyframes svg2 {
  from {
    transform: scaleX(1) scaleY(1.1) rotate(0deg);
  }
  to {
    transform: scaleX(1) scaleY(1.6) rotate(0deg);
  }
}
.cid-tO4M1PNqcT .list {
  list-style: none;
  padding-left: 0;
  color: #ffffff;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-tO4M1PNqcT .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tO4M1PNqcT .list {
    margin-bottom: 0rem;
  }
}
@media (max-width: 767px) {
  .cid-tO4M1PNqcT .row {
    text-align: center;
  }
}
@media (max-width: 991px) {
  .cid-tO4M1PNqcT div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-tO4M1PNqcT .copyright {
  color: #ffffff;
  text-align: center;
}
