.btn {
  border-width: 2px;
}
body {
  font-family: Jost;
}
.display-1 {
  font-family: 'DM Serif Display', serif;
  font-size: 5rem;
  line-height: 1.1;
}
.display-1 > .mbr-iconfont {
  font-size: 6.25rem;
}
.display-2 {
  font-family: 'DM Serif Display', serif;
  font-size: 2.8rem;
  line-height: 1.1;
}
.display-2 > .mbr-iconfont {
  font-size: 3.5rem;
}
.display-4 {
  font-family: 'DM Serif Display', serif;
  font-size: 1.1rem;
  line-height: 1.5;
}
.display-4 > .mbr-iconfont {
  font-size: 1.375rem;
}
.display-5 {
  font-family: 'DM Serif Display', serif;
  font-size: 1.6rem;
  line-height: 1.5;
}
.display-5 > .mbr-iconfont {
  font-size: 2rem;
}
.display-7 {
  font-family: 'DM Serif Display', serif;
  font-size: 1.1rem;
  line-height: 1.5;
}
.display-7 > .mbr-iconfont {
  font-size: 1.375rem;
}
/* ---- Fluid typography for mobile devices ---- */
/* 1.4 - font scale ratio ( bootstrap == 1.42857 ) */
/* 100vw - current viewport width */
/* (48 - 20)  48 == 48rem == 768px, 20 == 20rem == 320px(minimal supported viewport) */
/* 0.65 - min scale variable, may vary */
@media (max-width: 992px) {
  .display-1 {
    font-size: 4rem;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 3.5rem;
    font-size: calc( 2.4rem + (5 - 2.4) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (2.4rem + (5 - 2.4) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 2.24rem;
    font-size: calc( 1.63rem + (2.8 - 1.63) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.3 * (1.63rem + (2.8 - 1.63) * ((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.28rem;
    font-size: calc( 1.21rem + (1.6 - 1.21) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.21rem + (1.6 - 1.21) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-7 {
    font-size: 0.88rem;
    font-size: calc( 1.0350000000000001rem + (1.1 - 1.0350000000000001) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.0350000000000001rem + (1.1 - 1.0350000000000001) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* Buttons */
.btn {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-sm {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-md {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-lg {
  padding: 1rem 2.6rem;
  border-radius: 4px;
}
.bg-primary {
  background-color: #4d3af0 !important;
}
.bg-success {
  background-color: #40b0bf !important;
}
.bg-info {
  background-color: #47b5ed !important;
}
.bg-warning {
  background-color: #ffe161 !important;
}
.bg-danger {
  background-color: #f80707 !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #4d3af0 !important;
  border-color: #4d3af0 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus,
.btn-primary.active {
  color: #ffffff !important;
  background-color: #220fc4 !important;
  border-color: #220fc4 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #220fc4 !important;
  border-color: #220fc4 !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #b4dfe5 !important;
  border-color: #b4dfe5 !important;
  color: #286972 !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus,
.btn-secondary.active {
  color: #ffffff !important;
  background-color: #74c4cf !important;
  border-color: #74c4cf !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #286972 !important;
  background-color: #74c4cf !important;
  border-color: #74c4cf !important;
}
.btn-info,
.btn-info:active {
  background-color: #47b5ed !important;
  border-color: #47b5ed !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus,
.btn-info.active {
  color: #ffffff !important;
  background-color: #148cca !important;
  border-color: #148cca !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.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;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus,
.btn-success.active {
  color: #ffffff !important;
  background-color: #2a747e !important;
  border-color: #2a747e !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.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: #614f00 !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus,
.btn-warning.active {
  color: #0a0800 !important;
  background-color: #ffd10a !important;
  border-color: #ffd10a !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #614f00 !important;
  background-color: #ffd10a !important;
  border-color: #ffd10a !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #f80707 !important;
  border-color: #f80707 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus,
.btn-danger.active {
  color: #ffffff !important;
  background-color: #a40505 !important;
  border-color: #a40505 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #a40505 !important;
  border-color: #a40505 !important;
}
.btn-white,
.btn-white:active {
  background-color: #fafafa !important;
  border-color: #fafafa !important;
  color: #7a7a7a !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus,
.btn-white.active {
  color: #4f4f4f !important;
  background-color: #cfcfcf !important;
  border-color: #cfcfcf !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-white.disabled,
.btn-white:disabled {
  color: #7a7a7a !important;
  background-color: #cfcfcf !important;
  border-color: #cfcfcf !important;
}
.btn-black,
.btn-black:active {
  background-color: #232323 !important;
  border-color: #232323 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-black:hover,
.btn-black:focus,
.btn-black.focus,
.btn-black.active {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.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: #4d3af0;
  color: #4d3af0;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #220fc4 !important;
  background-color: transparent!important;
  border-color: #220fc4 !important;
  box-shadow: none!important;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #4d3af0 !important;
  border-color: #4d3af0 !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background-color: transparent !important;
  border-color: #b4dfe5;
  color: #b4dfe5;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #74c4cf !important;
  background-color: transparent!important;
  border-color: #74c4cf !important;
  box-shadow: none!important;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #286972 !important;
  background-color: #b4dfe5 !important;
  border-color: #b4dfe5 !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: #f80707;
  color: #f80707;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #a40505 !important;
  background-color: transparent!important;
  border-color: #a40505 !important;
  box-shadow: none!important;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #f80707 !important;
  border-color: #f80707 !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: #4d3af0 !important;
}
.text-secondary {
  color: #b4dfe5 !important;
}
.text-success {
  color: #40b0bf !important;
}
.text-info {
  color: #47b5ed !important;
}
.text-warning {
  color: #ffe161 !important;
}
.text-danger {
  color: #f80707 !important;
}
.text-white {
  color: #fafafa !important;
}
.text-black {
  color: #232323 !important;
}
a.text-primary:hover,
a.text-primary:focus,
a.text-primary.active {
  color: #1f0eb6 !important;
}
a.text-secondary:hover,
a.text-secondary:focus,
a.text-secondary.active {
  color: #68bfcb !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: #950404 !important;
}
a.text-white:hover,
a.text-white:focus,
a.text-white.active {
  color: #c7c7c7 !important;
}
a.text-black:hover,
a.text-black:focus,
a.text-black.active {
  color: #000000 !important;
}
a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption) {
  transition: 0.2s;
  position: relative;
  background-image: linear-gradient(currentColor 50%, currentColor 50%);
  background-size: 10000px 2px;
  background-repeat: no-repeat;
  background-position: 0 1.2em;
}
.nav-tabs .nav-link.active {
  color: #4d3af0;
}
.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: #f80707;
}
.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: #4d3af0;
  border-color: #4d3af0;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
.nav-tabs .nav-link {
  border-radius: 100px !important;
}
a,
a:hover {
  color: #4d3af0;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #f8f8fe;
}
.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: #fecdcd;
}
/* Scroll to top button*/
.scrollToTop_wraper {
  display: none;
}
.form-control {
  font-family: 'DM Serif Display', 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: #4d3af0 !important;
}
.form-control:-webkit-input-placeholder {
  font-family: 'DM Serif Display', 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: #4d3af0;
}
/* 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: #4d3af0;
  color: #ffffff;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #4d3af0;
}
.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: #4d3af0;
  border-bottom-color: #4d3af0;
}
.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: #4d3af0 !important;
  box-shadow: none !important;
}
.xdsoft_datetimepicker .xdsoft_calendar td:hover,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div:hover {
  color: #000000 !important;
  background: #b4dfe5 !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='%234d3af0' %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-usFRCL3YCp {
  padding-top: 12rem;
  padding-bottom: 0rem;
  background-color: #e2e7f8;
}
.cid-usFRCL3YCp .mbr-fallback-image.disabled {
  display: none;
}
.cid-usFRCL3YCp .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-usFRCL3YCp .container-fluid {
  padding: 10px 8px;
}
@media (max-width: 992px) {
  .cid-usFRCL3YCp .container {
    padding: 10px 8px;
  }
}
.cid-usFRCL3YCp .row {
  border-radius: 25px;
  background-color: #000000;
  padding: 40px;
  margin: 0;
  overflow: hidden;
}
@media (max-width: 768px) {
  .cid-usFRCL3YCp .row {
    padding: 40px 10px;
  }
}
.cid-usFRCL3YCp .row .card {
  padding: 0;
  justify-content: center;
}
.cid-usFRCL3YCp .content-wrapper {
  padding-right: 50px;
}
@media (max-width: 992px) {
  .cid-usFRCL3YCp .content-wrapper {
    padding: 0;
  }
}
.cid-usFRCL3YCp .content-wrapper .mbr-section-title {
  margin-bottom: 16px;
}
.cid-usFRCL3YCp .content-wrapper .mbr-section-title span {
  opacity: .8;
}
.cid-usFRCL3YCp .content-wrapper .mbr-text {
  margin-bottom: 32px;
}
.cid-usFRCL3YCp .content-wrapper .cards-wrap {
  margin-top: 60px;
}
@media (max-width: 992px) {
  .cid-usFRCL3YCp .content-wrapper .cards-wrap {
    margin: 32px 0 32px;
  }
}
.cid-usFRCL3YCp .content-wrapper .cards-wrap .card-wrap {
  display: inline-flex;
  width: 250px;
  border-radius: 25px;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(12px);
  margin-bottom: 16px;
  cursor: pointer;
}
@media (max-width: 1500px) {
  .cid-usFRCL3YCp .content-wrapper .cards-wrap .card-wrap {
    width: 200px;
  }
}
@media (max-width: 1280px) {
  .cid-usFRCL3YCp .content-wrapper .cards-wrap .card-wrap {
    width: 150px;
  }
}
@media (max-width: 992px) {
  .cid-usFRCL3YCp .content-wrapper .cards-wrap .card-wrap {
    width: 100%;
  }
}
@media (max-width: 768px) {
  .cid-usFRCL3YCp .content-wrapper .cards-wrap .card-wrap {
    border-radius: 17px;
  }
}
.cid-usFRCL3YCp .content-wrapper .cards-wrap .card-wrap::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #73abff;
  opacity: .8;
}
.cid-usFRCL3YCp .content-wrapper .cards-wrap .card-wrap .item-wrapper {
  position: relative;
  width: 100%;
}
.cid-usFRCL3YCp .content-wrapper .cards-wrap .card-wrap .item-wrapper .item-img {
  display: flex;
  justify-content: flex-end;
}
.cid-usFRCL3YCp .content-wrapper .cards-wrap .card-wrap .item-wrapper .item-img img {
  display: inline-flex;
  width: 70px;
  height: 70px;
  border-radius: 100% !important;
  margin: -4px -4px 0 0;
  object-fit: cover;
}
.cid-usFRCL3YCp .content-wrapper .cards-wrap .card-wrap .item-wrapper .item-content {
  padding: 30px;
}
@media (max-width: 768px) {
  .cid-usFRCL3YCp .content-wrapper .cards-wrap .card-wrap .item-wrapper .item-content {
    padding: 15px;
  }
}
.cid-usFRCL3YCp .content-wrapper .cards-wrap .card-wrap .item-wrapper .item-content .card-text {
  margin-bottom: 0;
}
.cid-usFRCL3YCp .image-wrapper .icon-wrapper {
  display: flex;
  justify-content: space-between;
}
.cid-usFRCL3YCp .image-wrapper .icon-wrapper .mbr-iconfont {
  width: 100px;
  height: 100px;
  font-size: 60px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 25px;
  color: #ffffff;
  background-color: #73abff;
  transform: rotate(-5deg);
  margin-top: 100px;
}
.cid-usFRCL3YCp .image-wrapper .icon-wrapper .mbr-iconfont:nth-child(2) {
  background-color: #e354e3;
  margin-top: 0;
}
.cid-usFRCL3YCp .image-wrapper .icon-wrapper .mbr-iconfont:nth-child(3) {
  background-color: #f85f32;
  transform: rotate(5deg);
}
@media (max-width: 768px) {
  .cid-usFRCL3YCp .image-wrapper .icon-wrapper .mbr-iconfont {
    width: 50px;
    height: 50px;
    margin-top: 30px;
    font-size: 25px;
  }
}
.cid-usFRCL3YCp .image-wrapper .image-wrap {
  display: flex;
  justify-content: center;
  margin-top: -8rem;
}
.cid-usFRCL3YCp .image-wrapper .image-wrap img {
  height: 650px;
  width: 650px;
  object-fit: cover;
  border-radius: 100% !important;
}
@media (max-width: 1199px) {
  .cid-usFRCL3YCp .image-wrapper .image-wrap img {
    height: 450px;
    width: 450px;
    min-width: 450px;
  }
}
.cid-usFRCL3YCp .image-wrapper .cards-wrapper {
  display: flex;
  justify-content: space-between;
  margin-top: -8rem;
}
@media (max-width: 992px) {
  .cid-usFRCL3YCp .image-wrapper .cards-wrapper {
    flex-direction: column;
  }
}
.cid-usFRCL3YCp .image-wrapper .cards-wrapper .card-wrapper {
  display: inline-flex;
  max-width: 250px;
  border-radius: 25px;
  position: relative;
  overflow: hidden;
  padding: 30px;
  backdrop-filter: blur(12px);
  height: fit-content;
}
@media (max-width: 1500px) {
  .cid-usFRCL3YCp .image-wrapper .cards-wrapper .card-wrapper {
    max-width: 200px;
  }
}
@media (max-width: 1280px) {
  .cid-usFRCL3YCp .image-wrapper .cards-wrapper .card-wrapper {
    max-width: 150px;
  }
}
@media (max-width: 992px) {
  .cid-usFRCL3YCp .image-wrapper .cards-wrapper .card-wrapper {
    display: block;
    max-width: 100%;
    width: 100%;
    margin-bottom: 16px;
  }
  .cid-usFRCL3YCp .image-wrapper .cards-wrapper .card-wrapper:last-child {
    margin-bottom: 0;
  }
}
@media (max-width: 768px) {
  .cid-usFRCL3YCp .image-wrapper .cards-wrapper .card-wrapper {
    padding: 15px;
    border-radius: 17px;
  }
}
.cid-usFRCL3YCp .image-wrapper .cards-wrapper .card-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #73abff;
  opacity: .8;
}
.cid-usFRCL3YCp .image-wrapper .cards-wrapper .card-wrapper:nth-child(2n) {
  margin-top: 60px;
}
@media (max-width: 992px) {
  .cid-usFRCL3YCp .image-wrapper .cards-wrapper .card-wrapper:nth-child(2n) {
    margin-top: 0;
  }
}
.cid-usFRCL3YCp .image-wrapper .cards-wrapper .card-wrapper .item-wrapper {
  position: relative;
  width: 100%;
}
.cid-usFRCL3YCp .image-wrapper .cards-wrapper .card-wrapper .item-wrapper .card-box .dot-wrapper {
  margin-bottom: 40px;
}
.cid-usFRCL3YCp .image-wrapper .cards-wrapper .card-wrapper .item-wrapper .card-box .dot-wrapper .dot-wrap {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #ffffff;
}
.cid-usFRCL3YCp .image-wrapper .cards-wrapper .card-wrapper .item-wrapper .card-box .card-text {
  margin-bottom: 0;
}
.cid-usFRCL3YCp .mbr-section-title {
  color: #ffffff;
}
.cid-usFRCL3YCp .mbr-text {
  color: #ffffff;
}
.cid-usFRCL3YCp .card-text {
  color: #ffffff;
}
.cid-sFHpMqcXGj .navbar-dropdown {
  position: relative !important;
}
.cid-sFHpMqcXGj .navbar-dropdown {
  position: absolute !important;
}
.cid-sFHpMqcXGj .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sFHpMqcXGj .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sFHpMqcXGj .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sFHpMqcXGj .dropdown-item:hover,
.cid-sFHpMqcXGj .dropdown-item:focus {
  background: #4d3af0 !important;
  color: white !important;
}
.cid-sFHpMqcXGj .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sFHpMqcXGj .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sFHpMqcXGj .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sFHpMqcXGj .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sFHpMqcXGj .nav-link {
  position: relative;
}
.cid-sFHpMqcXGj .container {
  display: flex;
  margin: auto;
}
.cid-sFHpMqcXGj .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sFHpMqcXGj .dropdown-menu,
.cid-sFHpMqcXGj .navbar.opened {
  background: #272727 !important;
}
.cid-sFHpMqcXGj .nav-item:focus,
.cid-sFHpMqcXGj .nav-link:focus {
  outline: none;
}
.cid-sFHpMqcXGj .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sFHpMqcXGj .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sFHpMqcXGj .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sFHpMqcXGj .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sFHpMqcXGj .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sFHpMqcXGj .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sFHpMqcXGj .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  position: absolute;
  background: #272727;
}
.cid-sFHpMqcXGj .navbar.opened {
  transition: all 0.3s;
}
.cid-sFHpMqcXGj .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sFHpMqcXGj .navbar .navbar-logo img {
  width: auto;
}
.cid-sFHpMqcXGj .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sFHpMqcXGj .navbar.collapsed {
  justify-content: center;
}
.cid-sFHpMqcXGj .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sFHpMqcXGj .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sFHpMqcXGj .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5.1rem);
  }
}
.cid-sFHpMqcXGj .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sFHpMqcXGj .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sFHpMqcXGj .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-sFHpMqcXGj .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sFHpMqcXGj .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sFHpMqcXGj .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sFHpMqcXGj .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sFHpMqcXGj .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sFHpMqcXGj .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sFHpMqcXGj .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sFHpMqcXGj .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-sFHpMqcXGj .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sFHpMqcXGj .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sFHpMqcXGj .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sFHpMqcXGj .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sFHpMqcXGj .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sFHpMqcXGj .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sFHpMqcXGj .navbar.navbar-short {
  min-height: 60px;
}
.cid-sFHpMqcXGj .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sFHpMqcXGj .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sFHpMqcXGj .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sFHpMqcXGj .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sFHpMqcXGj .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sFHpMqcXGj .dropdown-item.active,
.cid-sFHpMqcXGj .dropdown-item:active {
  background-color: transparent;
}
.cid-sFHpMqcXGj .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sFHpMqcXGj .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sFHpMqcXGj .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sFHpMqcXGj .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #272727;
}
.cid-sFHpMqcXGj .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sFHpMqcXGj .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sFHpMqcXGj ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sFHpMqcXGj .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sFHpMqcXGj button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sFHpMqcXGj button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-sFHpMqcXGj button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sFHpMqcXGj button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sFHpMqcXGj button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sFHpMqcXGj button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sFHpMqcXGj nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sFHpMqcXGj nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sFHpMqcXGj nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sFHpMqcXGj nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sFHpMqcXGj .navbar-dropdown {
  padding: 0 1rem;
}
.cid-sFHpMqcXGj a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sFHpMqcXGj .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sFHpMqcXGj .navbar {
    height: 70px;
  }
  .cid-sFHpMqcXGj .navbar.opened {
    height: auto;
  }
  .cid-sFHpMqcXGj .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-usG042MIUi {
  padding-top: 0rem;
  padding-bottom: 0rem;
  overflow: hidden;
  background-color: #181818;
}
.cid-usG042MIUi .mbr-fallback-image.disabled {
  display: none;
}
.cid-usG042MIUi .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-usG042MIUi .container-fluid {
  padding: 0;
}
@media (max-width: 992px) {
  .cid-usG042MIUi .container-fluid {
    padding: 0;
  }
}
@media (max-width: 992px) {
  .cid-usG042MIUi .container {
    padding: 0 16px;
  }
}
.cid-usG042MIUi .row {
  position: relative;
  margin: 0;
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-usG042MIUi .row {
    margin: 0;
  }
}
.cid-usG042MIUi .row .card {
  position: relative;
  padding: 0;
}
.cid-usG042MIUi .decor-wrapper_1 {
  height: 30px;
  background-color: #c62424;
  border-radius: 20px 20px 0 0;
}
.cid-usG042MIUi .decor-wrapper_2 {
  height: 30px;
  background-color: #181818;
}
.cid-usG042MIUi .decor-wrapper_3 {
  height: 30px;
  background-color: #c62424;
}
.cid-usG042MIUi .title-wrapper {
  margin: 0 20px;
  padding-top: 110px;
}
@media (max-width: 992px) {
  .cid-usG042MIUi .title-wrapper {
    padding-top: 50px;
  }
}
@media (max-width: 992px) {
  .cid-usG042MIUi .title-wrapper {
    margin: 0 10px;
  }
}
.cid-usG042MIUi .mbr-section-title {
  color: #fdfcfc;
  text-align: center;
}
.cid-usFZHuXfS7 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  position: relative;
  overflow: hidden;
  background-color: #fafafa;
}
.cid-usFZHuXfS7 .border-wrap {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 1000vh;
  height: 1px;
  background-color: #150764;
}
.cid-usFZHuXfS7 .mbr-fallback-image.disabled {
  display: none;
}
.cid-usFZHuXfS7 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-usFZHuXfS7 .content-wrap {
  margin: 0;
}
.cid-usFZHuXfS7 .content-wrap .card {
  padding: 0;
}
.cid-usFZHuXfS7 .image-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  overflow: hidden;
  background-color: #e2e7f8;
  padding: 40px 32px;
  border-right: 1px solid #150764;
}
@media (max-width: 1640px) {
  .cid-usFZHuXfS7 .image-wrapper {
    padding: 40px 24px;
  }
}
@media (max-width: 992px) {
  .cid-usFZHuXfS7 .image-wrapper {
    padding: 40px 0;
  }
}
@media (max-width: 992px) {
  .cid-usFZHuXfS7 .image-wrapper {
    border-right: none;
    border-bottom: 1px solid #150764;
  }
}
.cid-usFZHuXfS7 .image-wrapper img {
  height: 620px;
  width: 620px;
  object-fit: cover;
  border-radius: 100% !important;
}
@media (max-width: 1640px) {
  .cid-usFZHuXfS7 .image-wrapper img {
    height: 550px;
    width: 550px;
  }
}
@media (max-width: 1200px) {
  .cid-usFZHuXfS7 .image-wrapper img {
    height: 350px;
    width: 350px;
  }
}
@media (max-width: 768px) {
  .cid-usFZHuXfS7 .image-wrapper img {
    height: 250px;
    width: 250px;
  }
}
.cid-usFZHuXfS7 .content-wrapper {
  padding: 40px 72px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}
@media (max-width: 1640px) {
  .cid-usFZHuXfS7 .content-wrapper {
    padding: 40px 24px;
  }
}
@media (max-width: 992px) {
  .cid-usFZHuXfS7 .content-wrapper {
    padding: 40px 0;
  }
}
.cid-usFZHuXfS7 .content-wrapper .mbr-section-title {
  margin-bottom: 16px;
}
.cid-usFZHuXfS7 .content-wrapper .text-wrapper .text-wrap .mbr-text {
  display: inline-block;
  width: 50%;
  margin-bottom: 22px;
}
@media (max-width: 992px) {
  .cid-usFZHuXfS7 .content-wrapper .text-wrapper .text-wrap .mbr-text {
    width: 100%;
    margin-bottom: 16px;
  }
}
.cid-usFZHuXfS7 .mbr-section-title {
  color: #150764;
}
.cid-usFZHuXfS7 .mbr-text {
  color: #150764;
}
.cid-usFZHuXfS7 .mbr-section-title,
.cid-usFZHuXfS7 .mbr-section-btn {
  color: #000000;
}
.cid-usFZHuXfS7 .mbr-text,
.cid-usFZHuXfS7 .text-wrap {
  color: #272727;
}
.cid-usG0iJPIQ2 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #353535;
}
.cid-usG0iJPIQ2 .mbr-fallback-image.disabled {
  display: none;
}
.cid-usG0iJPIQ2 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-usG0iJPIQ2 .container-fluid {
  padding: 0 50px;
}
@media (max-width: 992px) {
  .cid-usG0iJPIQ2 .container-fluid {
    padding: 0 30px;
  }
}
@media (max-width: 992px) {
  .cid-usG0iJPIQ2 .container {
    padding: 0 30px;
  }
}
.cid-usG0iJPIQ2 .title-wrapper .mbr-section-title {
  margin-bottom: 70px;
}
@media (max-width: 992px) {
  .cid-usG0iJPIQ2 .title-wrapper .mbr-section-title {
    margin-bottom: 30px;
  }
}
.cid-usG0iJPIQ2 .card-wrapper {
  display: flex;
  justify-content: space-between;
  padding: 70px 70px 70px 230px;
  background-color: #ffffff;
  border-radius: 16em 3em;
}
@media (max-width: 992px) {
  .cid-usG0iJPIQ2 .card-wrapper {
    border-radius: 3em 0 3em 0;
    padding: 30px 20px;
    display: block;
  }
}
.cid-usG0iJPIQ2 .card-wrapper .mbr-number {
  margin: 0 0 0 50px;
  width: 100%;
  white-space: nowrap;
}
@media (max-width: 992px) {
  .cid-usG0iJPIQ2 .card-wrapper .mbr-number {
    margin: 0 0 16px 0;
  }
}
.cid-usG0iJPIQ2 .card-wrapper .content-wrap .mbr-card-title {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-usG0iJPIQ2 .card-wrapper .content-wrap .mbr-card-title {
    margin-bottom: 20px;
  }
}
.cid-usG0iJPIQ2 .card-wrapper .content-wrap .mbr-text {
  margin-bottom: 0;
}
.cid-usG0iJPIQ2 .mbr-section-title {
  color: #ffffff;
}
.cid-usG0iJPIQ2 .mbr-card-title {
  color: #2b2b2b;
}
.cid-usG0iJPIQ2 .mbr-text {
  color: #4E4E4E;
}
.cid-usG0iJPIQ2 .mbr-number {
  color: #FE5115;
}
.cid-usG0ncZZVO {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #e2e7f8;
}
.cid-usG0ncZZVO .mbr-fallback-image.disabled {
  display: none;
}
.cid-usG0ncZZVO .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-usG0ncZZVO .content-wrapper {
  padding: 80px 90px;
  background-color: #181818;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 992px) {
  .cid-usG0ncZZVO .content-wrapper {
    display: block;
    padding: 32px 16px;
  }
}
.cid-usG0ncZZVO .content-wrapper .content-wrap {
  width: 50%;
}
@media (max-width: 992px) {
  .cid-usG0ncZZVO .content-wrapper .content-wrap {
    margin-bottom: 24px;
    width: 100%;
  }
}
.cid-usG0ncZZVO .content-wrapper .content-wrap .card-wrapper {
  position: relative;
  padding: 48px;
  -webkit-flex: inherit;
  width: 100%;
  background-color: #e2e7f8;
}
@media (max-width: 1200px) {
  .cid-usG0ncZZVO .content-wrapper .content-wrap .card-wrapper {
    padding: 48px 16px;
  }
}
@media (max-width: 992px) {
  .cid-usG0ncZZVO .content-wrapper .content-wrap .card-wrapper {
    padding: 32px 16px;
  }
}
.cid-usG0ncZZVO .content-wrapper .content-wrap .card-wrapper .mbr-section-title {
  margin-bottom: 32px;
}
@media (max-width: 992px) {
  .cid-usG0ncZZVO .content-wrapper .content-wrap .card-wrapper .mbr-section-title {
    margin-bottom: 24px;
  }
}
.cid-usG0ncZZVO .content-wrapper .content-wrap .card-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-usG0ncZZVO .content-wrapper .content-wrap .card-wrapper .icon-wrapper {
  position: absolute;
  bottom: -1.8rem;
  left: 0;
  width: 100%;
  padding: 0 48px;
}
@media (max-width: 992px) {
  .cid-usG0ncZZVO .content-wrapper .content-wrap .card-wrapper .icon-wrapper {
    padding: 0 16px;
    bottom: -1rem;
  }
}
.cid-usG0ncZZVO .content-wrapper .content-wrap .card-wrapper .icon-wrapper .mbr-iconfont {
  font-size: 70px;
  -webkit-text-stroke-width: .125rem;
  -webkit-text-stroke-color: #050f0f;
  color: #ffb2ef;
}
@media (max-width: 992px) {
  .cid-usG0ncZZVO .content-wrapper .content-wrap .card-wrapper .icon-wrapper .mbr-iconfont {
    font-size: 48px;
    -webkit-text-stroke-width: .1rem;
  }
}
.cid-usG0ncZZVO .content-wrapper .content-wrap .mbr-section-btn {
  margin-top: 54px;
}
@media (max-width: 992px) {
  .cid-usG0ncZZVO .content-wrapper .content-wrap .mbr-section-btn {
    margin-top: 16px;
  }
}
.cid-usG0ncZZVO .content-wrapper .image-wrapper {
  width: 45%;
}
@media (max-width: 992px) {
  .cid-usG0ncZZVO .content-wrapper .image-wrapper {
    width: 100%;
  }
}
.cid-usG0ncZZVO .content-wrapper .image-wrapper img {
  height: 580px;
  width: 100%;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-usG0ncZZVO .content-wrapper .image-wrapper img {
    height: 350px;
  }
}
.cid-usG0ncZZVO .mbr-section-title {
  color: #050f0f;
}
.cid-usG0ncZZVO .mbr-text {
  color: #050f0f;
}
.cid-usG0ncZZVO .mbr-section-btn {
  text-align: center;
}
.cid-usG0ncZZVO .icon-wrapper {
  text-align: right;
}
.cid-sFHuaHz0Qy {
  padding-top: 2rem;
  padding-bottom: 7rem;
  background-color: #000000;
}
.cid-sFHuaHz0Qy .card-wrapper {
  background: #e2e7f8;
  border-radius: 4px;
}
@media (max-width: 767px) {
  .cid-sFHuaHz0Qy .card-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-sFHuaHz0Qy .card-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-sFHuaHz0Qy .card-wrapper {
    padding: 4rem;
  }
}
.cid-sFHuaHz0Qy .mbr-text,
.cid-sFHuaHz0Qy .mbr-section-btn {
  color: #353535;
}
.cid-sFHuaHz0Qy .card-title,
.cid-sFHuaHz0Qy .card-box {
  text-align: left;
  color: #000000;
}
.cid-usG2ZpGhpT {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #181818;
}
.cid-usG2ZpGhpT .mbr-fallback-image.disabled {
  display: none;
}
.cid-usG2ZpGhpT .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-usG2ZpGhpT .container-fluid {
  padding: 0 50px;
}
@media (max-width: 992px) {
  .cid-usG2ZpGhpT .container-fluid {
    padding: 0 30px;
  }
}
@media (max-width: 992px) {
  .cid-usG2ZpGhpT .container {
    padding: 0 30px;
  }
}
.cid-usG2ZpGhpT .card-wrapper {
  display: flex;
  padding: 70px 0;
  border-top: 10px solid #e2e7f8;
  border-bottom: 10px solid #e2e7f8;
}
@media (max-width: 992px) {
  .cid-usG2ZpGhpT .card-wrapper {
    padding: 45px 0;
  }
}
@media (max-width: 992px) {
  .cid-usG2ZpGhpT .card-wrapper {
    display: block;
  }
}
.cid-usG2ZpGhpT .card-wrapper .title-wrapper {
  width: 50%;
  margin-right: 50px;
}
@media (max-width: 992px) {
  .cid-usG2ZpGhpT .card-wrapper .title-wrapper {
    width: 100%;
    margin: 0;
  }
}
.cid-usG2ZpGhpT .card-wrapper .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-usG2ZpGhpT .card-wrapper .title-wrapper .mbr-section-title {
    margin-bottom: 40px;
  }
}
.cid-usG2ZpGhpT .card-wrapper .text-wrapper {
  width: 50%;
}
@media (max-width: 992px) {
  .cid-usG2ZpGhpT .card-wrapper .text-wrapper {
    width: 100%;
  }
}
.cid-usG2ZpGhpT .card-wrapper .text-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-usG2ZpGhpT .mbr-section-title {
  color: #fafafa;
}
.cid-usG2ZpGhpT .mbr-text {
  color: #ffffff;
}
.cid-uAOIheMQQt {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uAOIheMQQt .mbr-fallback-image.disabled {
  display: none;
}
.cid-uAOIheMQQt .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-uAOIheMQQt .container {
    padding: 0 16px;
  }
}
.cid-uAOIheMQQt .card {
  justify-content: space-between;
}
@media (max-width: 992px) {
  .cid-uAOIheMQQt .image-wrapper {
    margin-bottom: 32px;
  }
}
.cid-uAOIheMQQt .image-wrapper img {
  height: 410px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-uAOIheMQQt .image-wrapper img {
    height: 350px;
  }
}
.cid-uAOIheMQQt .title-wrapper {
  padding-left: 64px;
}
@media (max-width: 992px) {
  .cid-uAOIheMQQt .title-wrapper {
    padding-left: 0;
  }
}
.cid-uAOIheMQQt .title-wrapper .subtitle-wrapper .mbr-section-subtitle {
  display: inline-flex;
  margin-bottom: 56px;
  padding: 4px 12px;
  border-radius: 8px !important;
  box-shadow: 3px 4px 0 0 #000000;
  background-color: #e2e7f8;
}
@media (max-width: 992px) {
  .cid-uAOIheMQQt .title-wrapper .subtitle-wrapper .mbr-section-subtitle {
    margin-bottom: 32px;
  }
}
.cid-uAOIheMQQt .title-wrapper .mbr-section-title {
  margin-bottom: 32px;
}
.cid-uAOIheMQQt .mbr-desc {
  margin-bottom: 0;
  padding-left: 64px;
  color: #000000;
}
@media (max-width: 992px) {
  .cid-uAOIheMQQt .mbr-desc {
    padding-left: 0;
  }
}
.cid-uAOIheMQQt .mbr-section-title {
  color: #000000;
}
.cid-uAOIheMQQt .mbr-section-subtitle {
  color: #000000;
}
.cid-uAOIAoLHUi {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #e2e7f8;
}
.cid-uAOIAoLHUi .mbr-fallback-image.disabled {
  display: none;
}
.cid-uAOIAoLHUi .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-uAOIAoLHUi .container {
    padding: 0 15px;
  }
}
.cid-uAOIAoLHUi .content-wrapper {
  padding-right: 130px;
}
@media (max-width: 1440px) {
  .cid-uAOIAoLHUi .content-wrapper {
    padding-right: 60px;
  }
}
@media (max-width: 1200px) {
  .cid-uAOIAoLHUi .content-wrapper {
    padding-right: 0;
  }
}
.cid-uAOIAoLHUi .content-wrap {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 992px) {
  .cid-uAOIAoLHUi .content-wrap {
    display: block;
  }
}
.cid-uAOIAoLHUi .content-wrap .mbr-section-title {
  width: 50%;
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .cid-uAOIAoLHUi .content-wrap .mbr-section-title {
    margin-bottom: 40px;
    width: 100%;
  }
}
.cid-uAOIAoLHUi .content-wrap .mbr-text {
  width: 38%;
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .cid-uAOIAoLHUi .content-wrap .mbr-text {
    margin-bottom: 40px;
    width: 100%;
  }
}
.cid-uAOIAoLHUi .border-wrap {
  position: relative;
  display: flex;
  align-items: center;
  height: 1px;
  background-color: #68707c;
}
.cid-uAOIAoLHUi .border-wrap::before {
  content: '';
  position: absolute;
  left: 0;
  width: 1px;
  height: 15px;
  background-color: #68707c;
  transform: rotate(20deg);
}
.cid-uAOIAoLHUi .mbr-section-title {
  color: #3f1819;
}
.cid-uAOIAoLHUi .mbr-desc,
.cid-uAOIAoLHUi .desc-wrapper {
  color: #3f1819;
}
.cid-uAOIQhWiU2 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  overflow: hidden;
  background-color: #181818;
}
.cid-uAOIQhWiU2 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uAOIQhWiU2 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uAOIQhWiU2 .container-fluid {
  padding: 0 40px;
}
@media (max-width: 992px) {
  .cid-uAOIQhWiU2 .container-fluid {
    padding: 0 24px;
  }
}
@media (max-width: 992px) {
  .cid-uAOIQhWiU2 .container {
    padding: 0 24px;
  }
}
.cid-uAOIQhWiU2 .card {
  justify-content: center;
}
.cid-uAOIQhWiU2 .content-wrapper {
  display: flex;
  justify-content: space-between;
  background-color: #ffffff;
  border-radius: .6rem !important;
  padding: 82px 76px;
}
@media (max-width: 992px) {
  .cid-uAOIQhWiU2 .content-wrapper {
    display: block;
    padding: 20px;
  }
}
.cid-uAOIQhWiU2 .content-wrapper .content-wrap {
  width: 40%;
}
@media (max-width: 992px) {
  .cid-uAOIQhWiU2 .content-wrapper .content-wrap {
    width: 100%;
    margin-bottom: 40px;
  }
}
.cid-uAOIQhWiU2 .content-wrapper .content-wrap .mbr-section-title {
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .cid-uAOIQhWiU2 .content-wrapper .content-wrap .mbr-section-title {
    margin-bottom: 28px;
  }
}
.cid-uAOIQhWiU2 .content-wrapper .content-wrap .list-wrapper .list {
  display: inline-block;
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-uAOIQhWiU2 .content-wrapper .content-wrap .list-wrapper .list .item-wrap {
  position: relative;
  margin-bottom: 20px;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}
.cid-uAOIQhWiU2 .content-wrapper .content-wrap .list-wrapper .list .item-wrap::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  height: 1px;
  width: 0;
  background-color: #202020;
  transition: all 0.3s ease-in-out;
}
.cid-uAOIQhWiU2 .content-wrapper .content-wrap .list-wrapper .list .item-wrap:hover::before,
.cid-uAOIQhWiU2 .content-wrapper .content-wrap .list-wrapper .list .item-wrap:focus::before {
  width: 100%;
}
.cid-uAOIQhWiU2 .content-wrapper .content-wrap .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-uAOIQhWiU2 .content-wrapper .image-wrapper {
  width: 40%;
}
@media (max-width: 992px) {
  .cid-uAOIQhWiU2 .content-wrapper .image-wrapper {
    width: 100%;
    margin-bottom: 40px;
  }
}
.cid-uAOIQhWiU2 .content-wrapper .image-wrapper img {
  height: 440px;
  object-fit: cover;
  border-radius: .6rem !important;
}
@media (max-width: 992px) {
  .cid-uAOIQhWiU2 .content-wrapper .image-wrapper img {
    height: 350px;
  }
}
.cid-uAOIQhWiU2 .mbr-section-title {
  color: #202020;
}
.cid-uAOIQhWiU2 .list {
  color: #202020;
}
.cid-uAOIUcX5OK {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #232323;
  overflow: hidden;
}
.cid-sFHpMqcXGj .navbar-dropdown {
  position: relative !important;
}
.cid-sFHpMqcXGj .navbar-dropdown {
  position: absolute !important;
}
.cid-sFHpMqcXGj .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sFHpMqcXGj .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sFHpMqcXGj .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sFHpMqcXGj .dropdown-item:hover,
.cid-sFHpMqcXGj .dropdown-item:focus {
  background: #4d3af0 !important;
  color: white !important;
}
.cid-sFHpMqcXGj .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sFHpMqcXGj .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sFHpMqcXGj .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sFHpMqcXGj .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sFHpMqcXGj .nav-link {
  position: relative;
}
.cid-sFHpMqcXGj .container {
  display: flex;
  margin: auto;
}
.cid-sFHpMqcXGj .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sFHpMqcXGj .dropdown-menu,
.cid-sFHpMqcXGj .navbar.opened {
  background: #272727 !important;
}
.cid-sFHpMqcXGj .nav-item:focus,
.cid-sFHpMqcXGj .nav-link:focus {
  outline: none;
}
.cid-sFHpMqcXGj .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sFHpMqcXGj .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sFHpMqcXGj .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sFHpMqcXGj .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sFHpMqcXGj .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sFHpMqcXGj .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sFHpMqcXGj .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  position: absolute;
  background: #272727;
}
.cid-sFHpMqcXGj .navbar.opened {
  transition: all 0.3s;
}
.cid-sFHpMqcXGj .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sFHpMqcXGj .navbar .navbar-logo img {
  width: auto;
}
.cid-sFHpMqcXGj .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sFHpMqcXGj .navbar.collapsed {
  justify-content: center;
}
.cid-sFHpMqcXGj .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sFHpMqcXGj .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sFHpMqcXGj .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5.1rem);
  }
}
.cid-sFHpMqcXGj .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sFHpMqcXGj .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sFHpMqcXGj .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-sFHpMqcXGj .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sFHpMqcXGj .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sFHpMqcXGj .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sFHpMqcXGj .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sFHpMqcXGj .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sFHpMqcXGj .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sFHpMqcXGj .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sFHpMqcXGj .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-sFHpMqcXGj .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sFHpMqcXGj .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sFHpMqcXGj .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sFHpMqcXGj .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sFHpMqcXGj .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sFHpMqcXGj .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sFHpMqcXGj .navbar.navbar-short {
  min-height: 60px;
}
.cid-sFHpMqcXGj .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sFHpMqcXGj .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sFHpMqcXGj .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sFHpMqcXGj .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sFHpMqcXGj .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sFHpMqcXGj .dropdown-item.active,
.cid-sFHpMqcXGj .dropdown-item:active {
  background-color: transparent;
}
.cid-sFHpMqcXGj .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sFHpMqcXGj .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sFHpMqcXGj .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sFHpMqcXGj .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #272727;
}
.cid-sFHpMqcXGj .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sFHpMqcXGj .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sFHpMqcXGj ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sFHpMqcXGj .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sFHpMqcXGj button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sFHpMqcXGj button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-sFHpMqcXGj button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sFHpMqcXGj button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sFHpMqcXGj button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sFHpMqcXGj button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sFHpMqcXGj nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sFHpMqcXGj nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sFHpMqcXGj nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sFHpMqcXGj nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sFHpMqcXGj .navbar-dropdown {
  padding: 0 1rem;
}
.cid-sFHpMqcXGj a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sFHpMqcXGj .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sFHpMqcXGj .navbar {
    height: 70px;
  }
  .cid-sFHpMqcXGj .navbar.opened {
    height: auto;
  }
  .cid-sFHpMqcXGj .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-usFQAV0prB {
  padding-top: 12rem;
  padding-bottom: 5rem;
  position: relative;
  overflow: hidden;
  background-color: #000000;
}
.cid-usFQAV0prB .border-wrap {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 1000vh;
  height: 1px;
  background-color: #150764;
}
.cid-usFQAV0prB .mbr-fallback-image.disabled {
  display: none;
}
.cid-usFQAV0prB .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-usFQAV0prB .content-wrap {
  align-items: center;
  justify-content: space-between;
}
.cid-usFQAV0prB .content-wrap .card {
  justify-content: space-between;
}
.cid-usFQAV0prB .content-wrapper {
  padding: 0 28px 0 120px;
}
@media (max-width: 1640px) {
  .cid-usFQAV0prB .content-wrapper {
    padding: 0 24px;
  }
}
@media (max-width: 992px) {
  .cid-usFQAV0prB .content-wrapper {
    padding: 0;
    margin-bottom: 40px;
  }
}
.cid-usFQAV0prB .content-wrapper .mbr-section-title {
  margin-bottom: 32px;
}
@media (max-width: 992px) {
  .cid-usFQAV0prB .content-wrapper .mbr-section-title {
    margin-bottom: 16px;
  }
}
.cid-usFQAV0prB .content-wrapper .text-wrapper .mbr-text {
  margin-bottom: 22px;
}
@media (max-width: 992px) {
  .cid-usFQAV0prB .content-wrapper .text-wrapper .mbr-text {
    margin-bottom: 16px;
  }
}
.cid-usFQAV0prB .image-wrap {
  padding: 0 120px 0 28px;
}
@media (max-width: 1640px) {
  .cid-usFQAV0prB .image-wrap {
    padding: 0 24px;
  }
}
@media (max-width: 992px) {
  .cid-usFQAV0prB .image-wrap {
    padding: 0;
  }
}
.cid-usFQAV0prB .image-wrap img {
  height: 480px;
  width: 100%;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-usFQAV0prB .image-wrap img {
    height: 350px;
    object-fit: cover;
  }
}
.cid-usFQAV0prB .mbr-section-title {
  color: #150764;
}
.cid-usFQAV0prB .mbr-text {
  color: #fafafa;
}
.cid-usFQAV0prB .mbr-section-title,
.cid-usFQAV0prB .mbr-section-btn {
  color: #fafafa;
}
.cid-usDQZJoC0I {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #e2e7f8;
}
.cid-usDQZJoC0I .mbr-fallback-image.disabled {
  display: none;
}
.cid-usDQZJoC0I .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-usDQZJoC0I .content-wrapper {
  position: relative;
  padding: 80px 60px;
  display: flex;
  justify-content: center;
  border: 2px solid #87ceeb;
}
@media (max-width: 992px) {
  .cid-usDQZJoC0I .content-wrapper {
    display: block;
    padding: 32px 16px;
  }
}
.cid-usDQZJoC0I .content-wrapper .image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.cid-usDQZJoC0I .content-wrapper .image-wrapper img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .5;
}
.cid-usDQZJoC0I .content-wrapper .card-wrapper {
  position: relative;
  z-index: 1;
  width: 75%;
  padding: 48px;
  background-color: #000000;
  border: 3px solid #000000;
  box-shadow: 4px 4px 0 0 #000000;
  -webkit-flex: inherit;
}
@media (max-width: 992px) {
  .cid-usDQZJoC0I .content-wrapper .card-wrapper {
    width: 100%;
    padding: 32px 16px;
  }
}
.cid-usDQZJoC0I .content-wrapper .card-wrapper .mbr-section-title {
  margin-bottom: 32px;
}
@media (max-width: 992px) {
  .cid-usDQZJoC0I .content-wrapper .card-wrapper .mbr-section-title {
    margin-bottom: 24px;
  }
}
.cid-usDQZJoC0I .content-wrapper .card-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-usDQZJoC0I .mbr-section-title {
  color: #ff9063;
  text-align: center;
}
.cid-usDQZJoC0I .mbr-text {
  color: #ffffff;
  text-align: center;
}
.cid-uAP66v1N11 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  overflow: hidden;
  background-color: #181818;
}
.cid-uAP66v1N11 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uAP66v1N11 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uAP66v1N11 .container-fluid {
  padding: 0 40px;
}
@media (max-width: 992px) {
  .cid-uAP66v1N11 .container-fluid {
    padding: 0 24px;
  }
}
@media (max-width: 992px) {
  .cid-uAP66v1N11 .container {
    padding: 0 24px;
  }
}
.cid-uAP66v1N11 .card {
  justify-content: center;
}
.cid-uAP66v1N11 .content-wrapper {
  display: flex;
  justify-content: space-between;
  background-color: #ffffff;
  border-radius: .6rem !important;
  padding: 82px 76px;
}
@media (max-width: 992px) {
  .cid-uAP66v1N11 .content-wrapper {
    display: block;
    padding: 20px;
  }
}
.cid-uAP66v1N11 .content-wrapper .content-wrap {
  width: 40%;
}
@media (max-width: 992px) {
  .cid-uAP66v1N11 .content-wrapper .content-wrap {
    width: 100%;
    margin-bottom: 40px;
  }
}
.cid-uAP66v1N11 .content-wrapper .content-wrap .mbr-section-title {
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .cid-uAP66v1N11 .content-wrapper .content-wrap .mbr-section-title {
    margin-bottom: 28px;
  }
}
.cid-uAP66v1N11 .content-wrapper .content-wrap .list-wrapper .list {
  display: inline-block;
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-uAP66v1N11 .content-wrapper .content-wrap .list-wrapper .list .item-wrap {
  position: relative;
  margin-bottom: 20px;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}
.cid-uAP66v1N11 .content-wrapper .content-wrap .list-wrapper .list .item-wrap::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  height: 1px;
  width: 0;
  background-color: #202020;
  transition: all 0.3s ease-in-out;
}
.cid-uAP66v1N11 .content-wrapper .content-wrap .list-wrapper .list .item-wrap:hover::before,
.cid-uAP66v1N11 .content-wrapper .content-wrap .list-wrapper .list .item-wrap:focus::before {
  width: 100%;
}
.cid-uAP66v1N11 .content-wrapper .content-wrap .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-uAP66v1N11 .content-wrapper .image-wrapper {
  width: 40%;
}
@media (max-width: 992px) {
  .cid-uAP66v1N11 .content-wrapper .image-wrapper {
    width: 100%;
    margin-bottom: 40px;
  }
}
.cid-uAP66v1N11 .content-wrapper .image-wrapper img {
  height: 440px;
  object-fit: cover;
  border-radius: .6rem !important;
}
@media (max-width: 992px) {
  .cid-uAP66v1N11 .content-wrapper .image-wrapper img {
    height: 350px;
  }
}
.cid-uAP66v1N11 .mbr-section-title {
  color: #202020;
}
.cid-uAP66v1N11 .list {
  color: #202020;
}
.cid-uAOIUcX5OK {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #232323;
  overflow: hidden;
}
.cid-uAP7uRvdew .navbar-dropdown {
  position: relative !important;
}
.cid-uAP7uRvdew .navbar-dropdown {
  position: absolute !important;
}
.cid-uAP7uRvdew .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uAP7uRvdew .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uAP7uRvdew .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uAP7uRvdew .dropdown-item:hover,
.cid-uAP7uRvdew .dropdown-item:focus {
  background: #4d3af0 !important;
  color: white !important;
}
.cid-uAP7uRvdew .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uAP7uRvdew .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uAP7uRvdew .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uAP7uRvdew .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uAP7uRvdew .nav-link {
  position: relative;
}
.cid-uAP7uRvdew .container {
  display: flex;
  margin: auto;
}
.cid-uAP7uRvdew .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uAP7uRvdew .dropdown-menu,
.cid-uAP7uRvdew .navbar.opened {
  background: #272727 !important;
}
.cid-uAP7uRvdew .nav-item:focus,
.cid-uAP7uRvdew .nav-link:focus {
  outline: none;
}
.cid-uAP7uRvdew .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uAP7uRvdew .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uAP7uRvdew .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uAP7uRvdew .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uAP7uRvdew .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uAP7uRvdew .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uAP7uRvdew .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  position: absolute;
  background: #272727;
}
.cid-uAP7uRvdew .navbar.opened {
  transition: all 0.3s;
}
.cid-uAP7uRvdew .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uAP7uRvdew .navbar .navbar-logo img {
  width: auto;
}
.cid-uAP7uRvdew .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uAP7uRvdew .navbar.collapsed {
  justify-content: center;
}
.cid-uAP7uRvdew .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uAP7uRvdew .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uAP7uRvdew .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5.1rem);
  }
}
.cid-uAP7uRvdew .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uAP7uRvdew .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uAP7uRvdew .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-uAP7uRvdew .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uAP7uRvdew .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uAP7uRvdew .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uAP7uRvdew .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uAP7uRvdew .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uAP7uRvdew .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uAP7uRvdew .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uAP7uRvdew .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-uAP7uRvdew .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uAP7uRvdew .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uAP7uRvdew .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uAP7uRvdew .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uAP7uRvdew .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uAP7uRvdew .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uAP7uRvdew .navbar.navbar-short {
  min-height: 60px;
}
.cid-uAP7uRvdew .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uAP7uRvdew .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uAP7uRvdew .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uAP7uRvdew .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uAP7uRvdew .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uAP7uRvdew .dropdown-item.active,
.cid-uAP7uRvdew .dropdown-item:active {
  background-color: transparent;
}
.cid-uAP7uRvdew .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uAP7uRvdew .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uAP7uRvdew .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uAP7uRvdew .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #272727;
}
.cid-uAP7uRvdew .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uAP7uRvdew .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uAP7uRvdew ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uAP7uRvdew .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uAP7uRvdew button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uAP7uRvdew button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uAP7uRvdew button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uAP7uRvdew button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uAP7uRvdew button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uAP7uRvdew button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uAP7uRvdew nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uAP7uRvdew nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uAP7uRvdew nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uAP7uRvdew nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uAP7uRvdew .navbar-dropdown {
  padding: 0 1rem;
}
.cid-uAP7uRvdew a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uAP7uRvdew .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uAP7uRvdew .navbar {
    height: 70px;
  }
  .cid-uAP7uRvdew .navbar.opened {
    height: auto;
  }
  .cid-uAP7uRvdew .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uAP7uRNcK1 {
  padding-top: 12rem;
  padding-bottom: 5rem;
  position: relative;
  overflow: hidden;
  background-color: #000000;
}
.cid-uAP7uRNcK1 .border-wrap {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 1000vh;
  height: 1px;
  background-color: #150764;
}
.cid-uAP7uRNcK1 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uAP7uRNcK1 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uAP7uRNcK1 .content-wrap {
  align-items: center;
  justify-content: space-between;
}
.cid-uAP7uRNcK1 .content-wrap .card {
  justify-content: space-between;
}
.cid-uAP7uRNcK1 .content-wrapper {
  padding: 0 28px 0 120px;
}
@media (max-width: 1640px) {
  .cid-uAP7uRNcK1 .content-wrapper {
    padding: 0 24px;
  }
}
@media (max-width: 992px) {
  .cid-uAP7uRNcK1 .content-wrapper {
    padding: 0;
    margin-bottom: 40px;
  }
}
.cid-uAP7uRNcK1 .content-wrapper .mbr-section-title {
  margin-bottom: 32px;
}
@media (max-width: 992px) {
  .cid-uAP7uRNcK1 .content-wrapper .mbr-section-title {
    margin-bottom: 16px;
  }
}
.cid-uAP7uRNcK1 .content-wrapper .text-wrapper .mbr-text {
  margin-bottom: 22px;
}
@media (max-width: 992px) {
  .cid-uAP7uRNcK1 .content-wrapper .text-wrapper .mbr-text {
    margin-bottom: 16px;
  }
}
.cid-uAP7uRNcK1 .image-wrap {
  padding: 0 120px 0 28px;
}
@media (max-width: 1640px) {
  .cid-uAP7uRNcK1 .image-wrap {
    padding: 0 24px;
  }
}
@media (max-width: 992px) {
  .cid-uAP7uRNcK1 .image-wrap {
    padding: 0;
  }
}
.cid-uAP7uRNcK1 .image-wrap img {
  height: 480px;
  width: 100%;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-uAP7uRNcK1 .image-wrap img {
    height: 350px;
    object-fit: cover;
  }
}
.cid-uAP7uRNcK1 .mbr-section-title {
  color: #150764;
}
.cid-uAP7uRNcK1 .mbr-text {
  color: #fafafa;
}
.cid-uAP7uRNcK1 .mbr-section-title,
.cid-uAP7uRNcK1 .mbr-section-btn {
  color: #fafafa;
}
.cid-uAP7uS6ma0 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #e2e7f8;
}
.cid-uAP7uS6ma0 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uAP7uS6ma0 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uAP7uS6ma0 .content-wrapper {
  position: relative;
  padding: 80px 60px;
  display: flex;
  justify-content: center;
  border: 2px solid #87ceeb;
}
@media (max-width: 992px) {
  .cid-uAP7uS6ma0 .content-wrapper {
    display: block;
    padding: 32px 16px;
  }
}
.cid-uAP7uS6ma0 .content-wrapper .image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.cid-uAP7uS6ma0 .content-wrapper .image-wrapper img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .5;
}
.cid-uAP7uS6ma0 .content-wrapper .card-wrapper {
  position: relative;
  z-index: 1;
  width: 75%;
  padding: 48px;
  background-color: #000000;
  border: 3px solid #000000;
  box-shadow: 4px 4px 0 0 #000000;
  -webkit-flex: inherit;
}
@media (max-width: 992px) {
  .cid-uAP7uS6ma0 .content-wrapper .card-wrapper {
    width: 100%;
    padding: 32px 16px;
  }
}
.cid-uAP7uS6ma0 .content-wrapper .card-wrapper .mbr-section-title {
  margin-bottom: 32px;
}
@media (max-width: 992px) {
  .cid-uAP7uS6ma0 .content-wrapper .card-wrapper .mbr-section-title {
    margin-bottom: 24px;
  }
}
.cid-uAP7uS6ma0 .content-wrapper .card-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-uAP7uS6ma0 .mbr-section-title {
  color: #ff9063;
  text-align: center;
}
.cid-uAP7uS6ma0 .mbr-text {
  color: #ffffff;
  text-align: center;
}
.cid-uAP7uSioBZ {
  padding-top: 5rem;
  padding-bottom: 5rem;
  overflow: hidden;
  background-color: #181818;
}
.cid-uAP7uSioBZ .mbr-fallback-image.disabled {
  display: none;
}
.cid-uAP7uSioBZ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uAP7uSioBZ .container-fluid {
  padding: 0 40px;
}
@media (max-width: 992px) {
  .cid-uAP7uSioBZ .container-fluid {
    padding: 0 24px;
  }
}
@media (max-width: 992px) {
  .cid-uAP7uSioBZ .container {
    padding: 0 24px;
  }
}
.cid-uAP7uSioBZ .card {
  justify-content: center;
}
.cid-uAP7uSioBZ .content-wrapper {
  display: flex;
  justify-content: space-between;
  background-color: #ffffff;
  border-radius: .6rem !important;
  padding: 82px 76px;
}
@media (max-width: 992px) {
  .cid-uAP7uSioBZ .content-wrapper {
    display: block;
    padding: 20px;
  }
}
.cid-uAP7uSioBZ .content-wrapper .content-wrap {
  width: 40%;
}
@media (max-width: 992px) {
  .cid-uAP7uSioBZ .content-wrapper .content-wrap {
    width: 100%;
    margin-bottom: 40px;
  }
}
.cid-uAP7uSioBZ .content-wrapper .content-wrap .mbr-section-title {
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .cid-uAP7uSioBZ .content-wrapper .content-wrap .mbr-section-title {
    margin-bottom: 28px;
  }
}
.cid-uAP7uSioBZ .content-wrapper .content-wrap .list-wrapper .list {
  display: inline-block;
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-uAP7uSioBZ .content-wrapper .content-wrap .list-wrapper .list .item-wrap {
  position: relative;
  margin-bottom: 20px;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}
.cid-uAP7uSioBZ .content-wrapper .content-wrap .list-wrapper .list .item-wrap::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  height: 1px;
  width: 0;
  background-color: #202020;
  transition: all 0.3s ease-in-out;
}
.cid-uAP7uSioBZ .content-wrapper .content-wrap .list-wrapper .list .item-wrap:hover::before,
.cid-uAP7uSioBZ .content-wrapper .content-wrap .list-wrapper .list .item-wrap:focus::before {
  width: 100%;
}
.cid-uAP7uSioBZ .content-wrapper .content-wrap .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-uAP7uSioBZ .content-wrapper .image-wrapper {
  width: 40%;
}
@media (max-width: 992px) {
  .cid-uAP7uSioBZ .content-wrapper .image-wrapper {
    width: 100%;
    margin-bottom: 40px;
  }
}
.cid-uAP7uSioBZ .content-wrapper .image-wrapper img {
  height: 440px;
  object-fit: cover;
  border-radius: .6rem !important;
}
@media (max-width: 992px) {
  .cid-uAP7uSioBZ .content-wrapper .image-wrapper img {
    height: 350px;
  }
}
.cid-uAP7uSioBZ .mbr-section-title {
  color: #202020;
}
.cid-uAP7uSioBZ .list {
  color: #202020;
}
.cid-uAP7uStAgP {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #232323;
  overflow: hidden;
}
.cid-uAP7viGCK3 .navbar-dropdown {
  position: relative !important;
}
.cid-uAP7viGCK3 .navbar-dropdown {
  position: absolute !important;
}
.cid-uAP7viGCK3 .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uAP7viGCK3 .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uAP7viGCK3 .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uAP7viGCK3 .dropdown-item:hover,
.cid-uAP7viGCK3 .dropdown-item:focus {
  background: #4d3af0 !important;
  color: white !important;
}
.cid-uAP7viGCK3 .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uAP7viGCK3 .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uAP7viGCK3 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uAP7viGCK3 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uAP7viGCK3 .nav-link {
  position: relative;
}
.cid-uAP7viGCK3 .container {
  display: flex;
  margin: auto;
}
.cid-uAP7viGCK3 .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uAP7viGCK3 .dropdown-menu,
.cid-uAP7viGCK3 .navbar.opened {
  background: #272727 !important;
}
.cid-uAP7viGCK3 .nav-item:focus,
.cid-uAP7viGCK3 .nav-link:focus {
  outline: none;
}
.cid-uAP7viGCK3 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uAP7viGCK3 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uAP7viGCK3 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uAP7viGCK3 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uAP7viGCK3 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uAP7viGCK3 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uAP7viGCK3 .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  position: absolute;
  background: #272727;
}
.cid-uAP7viGCK3 .navbar.opened {
  transition: all 0.3s;
}
.cid-uAP7viGCK3 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uAP7viGCK3 .navbar .navbar-logo img {
  width: auto;
}
.cid-uAP7viGCK3 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uAP7viGCK3 .navbar.collapsed {
  justify-content: center;
}
.cid-uAP7viGCK3 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uAP7viGCK3 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uAP7viGCK3 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5.1rem);
  }
}
.cid-uAP7viGCK3 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uAP7viGCK3 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uAP7viGCK3 .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-uAP7viGCK3 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uAP7viGCK3 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uAP7viGCK3 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uAP7viGCK3 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uAP7viGCK3 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uAP7viGCK3 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uAP7viGCK3 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uAP7viGCK3 .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-uAP7viGCK3 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uAP7viGCK3 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uAP7viGCK3 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uAP7viGCK3 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uAP7viGCK3 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uAP7viGCK3 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uAP7viGCK3 .navbar.navbar-short {
  min-height: 60px;
}
.cid-uAP7viGCK3 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uAP7viGCK3 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uAP7viGCK3 .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uAP7viGCK3 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uAP7viGCK3 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uAP7viGCK3 .dropdown-item.active,
.cid-uAP7viGCK3 .dropdown-item:active {
  background-color: transparent;
}
.cid-uAP7viGCK3 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uAP7viGCK3 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uAP7viGCK3 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uAP7viGCK3 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #272727;
}
.cid-uAP7viGCK3 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uAP7viGCK3 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uAP7viGCK3 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uAP7viGCK3 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uAP7viGCK3 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uAP7viGCK3 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uAP7viGCK3 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uAP7viGCK3 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uAP7viGCK3 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uAP7viGCK3 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uAP7viGCK3 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uAP7viGCK3 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uAP7viGCK3 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uAP7viGCK3 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uAP7viGCK3 .navbar-dropdown {
  padding: 0 1rem;
}
.cid-uAP7viGCK3 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uAP7viGCK3 .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uAP7viGCK3 .navbar {
    height: 70px;
  }
  .cid-uAP7viGCK3 .navbar.opened {
    height: auto;
  }
  .cid-uAP7viGCK3 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uAP7vj2MYR {
  padding-top: 12rem;
  padding-bottom: 5rem;
  position: relative;
  overflow: hidden;
  background-color: #000000;
}
.cid-uAP7vj2MYR .border-wrap {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 1000vh;
  height: 1px;
  background-color: #150764;
}
.cid-uAP7vj2MYR .mbr-fallback-image.disabled {
  display: none;
}
.cid-uAP7vj2MYR .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uAP7vj2MYR .content-wrap {
  align-items: center;
  justify-content: space-between;
}
.cid-uAP7vj2MYR .content-wrap .card {
  justify-content: space-between;
}
.cid-uAP7vj2MYR .content-wrapper {
  padding: 0 28px 0 120px;
}
@media (max-width: 1640px) {
  .cid-uAP7vj2MYR .content-wrapper {
    padding: 0 24px;
  }
}
@media (max-width: 992px) {
  .cid-uAP7vj2MYR .content-wrapper {
    padding: 0;
    margin-bottom: 40px;
  }
}
.cid-uAP7vj2MYR .content-wrapper .mbr-section-title {
  margin-bottom: 32px;
}
@media (max-width: 992px) {
  .cid-uAP7vj2MYR .content-wrapper .mbr-section-title {
    margin-bottom: 16px;
  }
}
.cid-uAP7vj2MYR .content-wrapper .text-wrapper .mbr-text {
  margin-bottom: 22px;
}
@media (max-width: 992px) {
  .cid-uAP7vj2MYR .content-wrapper .text-wrapper .mbr-text {
    margin-bottom: 16px;
  }
}
.cid-uAP7vj2MYR .image-wrap {
  padding: 0 120px 0 28px;
}
@media (max-width: 1640px) {
  .cid-uAP7vj2MYR .image-wrap {
    padding: 0 24px;
  }
}
@media (max-width: 992px) {
  .cid-uAP7vj2MYR .image-wrap {
    padding: 0;
  }
}
.cid-uAP7vj2MYR .image-wrap img {
  height: 480px;
  width: 100%;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-uAP7vj2MYR .image-wrap img {
    height: 350px;
    object-fit: cover;
  }
}
.cid-uAP7vj2MYR .mbr-section-title {
  color: #150764;
}
.cid-uAP7vj2MYR .mbr-text {
  color: #fafafa;
}
.cid-uAP7vj2MYR .mbr-section-title,
.cid-uAP7vj2MYR .mbr-section-btn {
  color: #fafafa;
}
.cid-uAP7vjhdiT {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #e2e7f8;
}
.cid-uAP7vjhdiT .mbr-fallback-image.disabled {
  display: none;
}
.cid-uAP7vjhdiT .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uAP7vjhdiT .content-wrapper {
  position: relative;
  padding: 80px 60px;
  display: flex;
  justify-content: center;
  border: 2px solid #87ceeb;
}
@media (max-width: 992px) {
  .cid-uAP7vjhdiT .content-wrapper {
    display: block;
    padding: 32px 16px;
  }
}
.cid-uAP7vjhdiT .content-wrapper .image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.cid-uAP7vjhdiT .content-wrapper .image-wrapper img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .5;
}
.cid-uAP7vjhdiT .content-wrapper .card-wrapper {
  position: relative;
  z-index: 1;
  width: 75%;
  padding: 48px;
  background-color: #000000;
  border: 3px solid #000000;
  box-shadow: 4px 4px 0 0 #000000;
  -webkit-flex: inherit;
}
@media (max-width: 992px) {
  .cid-uAP7vjhdiT .content-wrapper .card-wrapper {
    width: 100%;
    padding: 32px 16px;
  }
}
.cid-uAP7vjhdiT .content-wrapper .card-wrapper .mbr-section-title {
  margin-bottom: 32px;
}
@media (max-width: 992px) {
  .cid-uAP7vjhdiT .content-wrapper .card-wrapper .mbr-section-title {
    margin-bottom: 24px;
  }
}
.cid-uAP7vjhdiT .content-wrapper .card-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-uAP7vjhdiT .mbr-section-title {
  color: #ff9063;
  text-align: center;
}
.cid-uAP7vjhdiT .mbr-text {
  color: #ffffff;
  text-align: center;
}
.cid-uAP7vjuo35 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  overflow: hidden;
  background-color: #181818;
}
.cid-uAP7vjuo35 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uAP7vjuo35 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uAP7vjuo35 .container-fluid {
  padding: 0 40px;
}
@media (max-width: 992px) {
  .cid-uAP7vjuo35 .container-fluid {
    padding: 0 24px;
  }
}
@media (max-width: 992px) {
  .cid-uAP7vjuo35 .container {
    padding: 0 24px;
  }
}
.cid-uAP7vjuo35 .card {
  justify-content: center;
}
.cid-uAP7vjuo35 .content-wrapper {
  display: flex;
  justify-content: space-between;
  background-color: #ffffff;
  border-radius: .6rem !important;
  padding: 82px 76px;
}
@media (max-width: 992px) {
  .cid-uAP7vjuo35 .content-wrapper {
    display: block;
    padding: 20px;
  }
}
.cid-uAP7vjuo35 .content-wrapper .content-wrap {
  width: 40%;
}
@media (max-width: 992px) {
  .cid-uAP7vjuo35 .content-wrapper .content-wrap {
    width: 100%;
    margin-bottom: 40px;
  }
}
.cid-uAP7vjuo35 .content-wrapper .content-wrap .mbr-section-title {
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .cid-uAP7vjuo35 .content-wrapper .content-wrap .mbr-section-title {
    margin-bottom: 28px;
  }
}
.cid-uAP7vjuo35 .content-wrapper .content-wrap .list-wrapper .list {
  display: inline-block;
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-uAP7vjuo35 .content-wrapper .content-wrap .list-wrapper .list .item-wrap {
  position: relative;
  margin-bottom: 20px;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}
.cid-uAP7vjuo35 .content-wrapper .content-wrap .list-wrapper .list .item-wrap::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  height: 1px;
  width: 0;
  background-color: #202020;
  transition: all 0.3s ease-in-out;
}
.cid-uAP7vjuo35 .content-wrapper .content-wrap .list-wrapper .list .item-wrap:hover::before,
.cid-uAP7vjuo35 .content-wrapper .content-wrap .list-wrapper .list .item-wrap:focus::before {
  width: 100%;
}
.cid-uAP7vjuo35 .content-wrapper .content-wrap .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-uAP7vjuo35 .content-wrapper .image-wrapper {
  width: 40%;
}
@media (max-width: 992px) {
  .cid-uAP7vjuo35 .content-wrapper .image-wrapper {
    width: 100%;
    margin-bottom: 40px;
  }
}
.cid-uAP7vjuo35 .content-wrapper .image-wrapper img {
  height: 440px;
  object-fit: cover;
  border-radius: .6rem !important;
}
@media (max-width: 992px) {
  .cid-uAP7vjuo35 .content-wrapper .image-wrapper img {
    height: 350px;
  }
}
.cid-uAP7vjuo35 .mbr-section-title {
  color: #202020;
}
.cid-uAP7vjuo35 .list {
  color: #202020;
}
.cid-uAP7vjG5y5 {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #232323;
  overflow: hidden;
}
