body {
  font-family: Jost;
}
.display-1 {
  font-family: 'Jost', sans-serif;
  font-size: 4.6rem;
  line-height: 1.1;
}
.display-1 > .mbr-iconfont {
  font-size: 5.75rem;
}
.display-2 {
  font-family: 'Jost', sans-serif;
  font-size: 3rem;
  line-height: 1.1;
}
.display-2 > .mbr-iconfont {
  font-size: 3.75rem;
}
.display-4 {
  font-family: 'Jost', sans-serif;
  font-size: 1rem;
  line-height: 1.5;
}
.display-4 > .mbr-iconfont {
  font-size: 1.25rem;
}
.display-5 {
  font-family: 'Jost', sans-serif;
  font-size: 2rem;
  line-height: 1.5;
}
.display-5 > .mbr-iconfont {
  font-size: 2.5rem;
}
.display-7 {
  font-family: 'Jost', sans-serif;
  font-size: 1.2rem;
  line-height: 1.5;
}
.display-7 > .mbr-iconfont {
  font-size: 1.5rem;
}
/* ---- Fluid typography for mobile devices ---- */
/* 1.4 - font scale ratio ( bootstrap == 1.42857 ) */
/* 100vw - current viewport width */
/* (48 - 20)  48 == 48rem == 768px, 20 == 20rem == 320px(minimal supported viewport) */
/* 0.65 - min scale variable, may vary */
@media (max-width: 992px) {
  .display-1 {
    font-size: 3.68rem;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 3.22rem;
    font-size: calc( 2.26rem + (4.6 - 2.26) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (2.26rem + (4.6 - 2.26) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 2.4rem;
    font-size: calc( 1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.3 * (1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 0.8rem;
    font-size: calc( 1rem + (1 - 1) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1rem + (1 - 1) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 1.6rem;
    font-size: calc( 1.35rem + (2 - 1.35) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.35rem + (2 - 1.35) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-7 {
    font-size: 0.96rem;
    font-size: calc( 1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* Buttons */
.btn {
  padding: 0.6rem 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: #6592e6 !important;
}
.bg-success {
  background-color: #40b0bf !important;
}
.bg-info {
  background-color: #47b5ed !important;
}
.bg-warning {
  background-color: #ffe161 !important;
}
.bg-danger {
  background-color: #ff9966 !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #6592e6 !important;
  border-color: #6592e6 !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: #2260d2 !important;
  border-color: #2260d2 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #2260d2 !important;
  border-color: #2260d2 !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #ff6666 !important;
  border-color: #ff6666 !important;
  color: #ffffff !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: #ff0f0f !important;
  border-color: #ff0f0f !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #ff0f0f !important;
  border-color: #ff0f0f !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: #ff9966 !important;
  border-color: #ff9966 !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: #ff5f0f !important;
  border-color: #ff5f0f !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #ff5f0f !important;
  border-color: #ff5f0f !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: transparent;
  color: #6592e6;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #2260d2 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #6592e6 !important;
  border-color: #6592e6 !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ff6666;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #ff0f0f !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #ff6666 !important;
  border-color: #ff6666 !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  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: transparent!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: transparent;
  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: transparent!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: transparent;
  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: transparent!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: transparent;
  color: #ff9966;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #ff5f0f !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #ff9966 !important;
  border-color: #ff9966 !important;
}
.btn-black-outline,
.btn-black-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  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: transparent!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: transparent;
  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: transparent!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: #6592e6 !important;
}
.text-secondary {
  color: #ff6666 !important;
}
.text-success {
  color: #40b0bf !important;
}
.text-info {
  color: #47b5ed !important;
}
.text-warning {
  color: #ffe161 !important;
}
.text-danger {
  color: #ff9966 !important;
}
.text-white {
  color: #fafafa !important;
}
.text-black {
  color: #232323 !important;
}
a.text-primary:hover,
a.text-primary:focus,
a.text-primary.active {
  color: #205ac5 !important;
}
a.text-secondary:hover,
a.text-secondary:focus,
a.text-secondary.active {
  color: #ff0000 !important;
}
a.text-success:hover,
a.text-success:focus,
a.text-success.active {
  color: #266a73 !important;
}
a.text-info:hover,
a.text-info:focus,
a.text-info.active {
  color: #1283bc !important;
}
a.text-warning:hover,
a.text-warning:focus,
a.text-warning.active {
  color: #facb00 !important;
}
a.text-danger:hover,
a.text-danger:focus,
a.text-danger.active {
  color: #ff5500 !important;
}
a.text-white:hover,
a.text-white:focus,
a.text-white.active {
  color: #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) {
  position: relative;
  background-image: transparent;
  background-size: 10000px 2px;
  background-repeat: no-repeat;
  background-position: 0px 1.2em;
  background-position: -10000px 1.2em;
}
a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  transition: background-position 2s ease-in-out;
  background-image: linear-gradient(currentColor 50%, currentColor 50%);
  background-position: 0px 1.2em;
}
.nav-tabs .nav-link.active {
  color: #6592e6;
}
.nav-tabs .nav-link:not(.active) {
  color: #232323;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #47b5ed;
}
.alert-warning {
  background-color: #ffe161;
}
.alert-danger {
  background-color: #ff9966;
}
.mbr-gallery-filter li.active .btn {
  background-color: #6592e6;
  border-color: #6592e6;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
a,
a:hover {
  color: #6592e6;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #a0d8df;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #ffffff;
}
/* Scroll to top button*/
.scrollToTop_wraper {
  display: none;
}
.form-control {
  font-family: 'Jost', sans-serif;
  font-size: 1rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control > .mbr-iconfont {
  font-size: 1.25rem;
}
.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: #6592e6 !important;
}
.form-control:-webkit-input-placeholder {
  font-family: 'Jost', sans-serif;
  font-size: 1rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control:-webkit-input-placeholder > .mbr-iconfont {
  font-size: 1.25rem;
}
blockquote {
  border-color: #6592e6;
}
/* Forms */
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #6592e6;
  color: #ffffff;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #6592e6;
}
.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: #6592e6;
  border-bottom-color: #6592e6;
}
.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: #6592e6 !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: #ff6666 !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='%236592e6' %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-vqBLlsTzUg {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-vqBLlsTzUg nav.navbar {
  position: fixed;
}
.cid-vqBLlsTzUg .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-vqBLlsTzUg .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-vqBLlsTzUg .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-vqBLlsTzUg .dropdown-item:hover,
.cid-vqBLlsTzUg .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-vqBLlsTzUg .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-vqBLlsTzUg .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-vqBLlsTzUg .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-vqBLlsTzUg .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-vqBLlsTzUg .nav-link {
  position: relative;
}
.cid-vqBLlsTzUg .container {
  display: flex;
  margin: auto;
}
.cid-vqBLlsTzUg .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-vqBLlsTzUg .dropdown-menu,
.cid-vqBLlsTzUg .navbar.opened {
  background: #2b0a68 !important;
}
.cid-vqBLlsTzUg .nav-item:focus,
.cid-vqBLlsTzUg .nav-link:focus {
  outline: none;
}
.cid-vqBLlsTzUg .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-vqBLlsTzUg .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-vqBLlsTzUg .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-vqBLlsTzUg .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-vqBLlsTzUg .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-vqBLlsTzUg .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-vqBLlsTzUg .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #2b0a68;
}
.cid-vqBLlsTzUg .navbar.opened {
  transition: all 0.3s;
}
.cid-vqBLlsTzUg .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-vqBLlsTzUg .navbar .navbar-logo img {
  width: auto;
}
.cid-vqBLlsTzUg .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-vqBLlsTzUg .navbar.collapsed {
  justify-content: center;
}
.cid-vqBLlsTzUg .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-vqBLlsTzUg .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-vqBLlsTzUg .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-vqBLlsTzUg .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-vqBLlsTzUg .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-vqBLlsTzUg .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-vqBLlsTzUg .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-vqBLlsTzUg .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-vqBLlsTzUg .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-vqBLlsTzUg .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-vqBLlsTzUg .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-vqBLlsTzUg .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-vqBLlsTzUg .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-vqBLlsTzUg .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-vqBLlsTzUg .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-vqBLlsTzUg .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-vqBLlsTzUg .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-vqBLlsTzUg .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-vqBLlsTzUg .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-vqBLlsTzUg .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-vqBLlsTzUg .navbar.navbar-short {
  min-height: 60px;
}
.cid-vqBLlsTzUg .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-vqBLlsTzUg .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-vqBLlsTzUg .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-vqBLlsTzUg .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-vqBLlsTzUg .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-vqBLlsTzUg .dropdown-item.active,
.cid-vqBLlsTzUg .dropdown-item:active {
  background-color: transparent;
}
.cid-vqBLlsTzUg .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-vqBLlsTzUg .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-vqBLlsTzUg .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-vqBLlsTzUg .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #2b0a68;
}
.cid-vqBLlsTzUg .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-vqBLlsTzUg .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-vqBLlsTzUg ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-vqBLlsTzUg .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-vqBLlsTzUg button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-vqBLlsTzUg button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-vqBLlsTzUg button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-vqBLlsTzUg button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-vqBLlsTzUg button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-vqBLlsTzUg button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-vqBLlsTzUg nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-vqBLlsTzUg nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-vqBLlsTzUg nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-vqBLlsTzUg nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-vqBLlsTzUg .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-vqBLlsTzUg a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-vqBLlsTzUg .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-vqBLlsTzUg .navbar {
    height: 70px;
  }
  .cid-vqBLlsTzUg .navbar.opened {
    height: auto;
  }
  .cid-vqBLlsTzUg .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-vqBPLihPgp {
  background-color: #2b0a68;
  display: block;
  padding-top: 6rem;
  padding-bottom: 0rem;
}
@media (min-width: 768px) {
  .cid-vqBPLihPgp .carousel {
    height: 800px;
  }
}
@media (max-width: 767px) {
  .cid-vqBPLihPgp .carousel {
    height: 100vh;
  }
}
.cid-vqBPLihPgp .carousel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-vqBPLihPgp .carousel-item,
.cid-vqBPLihPgp .carousel-inner {
  height: 100%;
}
.cid-vqBPLihPgp .carousel-caption {
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
@media (max-width: 767px) {
  .cid-vqBPLihPgp .carousel-caption {
    right: 5%;
    left: 5%;
  }
}
.cid-vqBPLihPgp .mbr-section-title {
  letter-spacing: 12px;
  margin-bottom: 25px;
}
@media (min-width: 1400px) {
  .cid-vqBPLihPgp .mbr-section-title.display-1 {
    font-size: 90px;
    line-height: 160px;
  }
}
.cid-vqBPLihPgp .mbr-section-btn {
  margin-top: 42px;
}
.cid-vqBPLihPgp .mobi-mbri-arrow-next {
  margin-left: 5px;
}
.cid-vqBPLihPgp .mobi-mbri-arrow-prev {
  margin-right: 5px;
}
.cid-vqBPLihPgp .carousel-control:hover.carousel-control-prev .mobi-mbri {
  transform: translateX(3px);
}
.cid-vqBPLihPgp .carousel-control:hover.carousel-control-next .mobi-mbri {
  transform: translateX(-3px);
}
.cid-vqBPLihPgp .item-wrapper {
  width: 100%;
}
@media (max-width: 767px) {
  .cid-vqBPLihPgp .container .carousel-control {
    margin-bottom: 0;
  }
  .cid-vqBPLihPgp .content-slider-wrap {
    width: 100% !important;
  }
}
.cid-vqBPLihPgp .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-vqBPLihPgp .carousel-control {
  top: 50%;
  width: 92px;
  height: 92px;
  margin-top: -1.5rem;
  font-size: 21px;
  border-radius: 50%;
  color: #202020;
  background-color: transparent;
  border: 1px solid #ffffff;
  transition: all 0.2s ease-out;
  opacity: 1;
}
.cid-vqBPLihPgp .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
  color: #ffffff !important;
}
.cid-vqBPLihPgp .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
  color: #ffffff !important;
}
.cid-vqBPLihPgp .carousel-control .mobi-mbri {
  transition: all 0.2s ease-out;
}
@media (max-width: 768px) {
  .cid-vqBPLihPgp .carousel-control {
    display: none !important;
  }
}
.cid-vqBPLihPgp .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 2rem !important;
  align-items: center;
}
.cid-vqBPLihPgp .carousel-indicators li {
  max-width: 10px;
  max-height: 10px;
  height: 6px;
  width: 6px;
  margin: 15px;
  background-color: #ffffff;
  border: none;
  border-radius: 50%;
  opacity: 1;
  transition: all 0.2s ease-in-out;
}
.cid-vqBPLihPgp .carousel-indicators li.active,
.cid-vqBPLihPgp .carousel-indicators li:hover {
  transform: scale(1.6);
}
.cid-vqBPLihPgp .carousel-indicators li::after,
.cid-vqBPLihPgp .carousel-indicators li::before {
  content: none;
}
.cid-vqBPLihPgp .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-vqBPLihPgp .carousel-indicators {
    display: none !important;
  }
}
.cid-vqBPLihPgp .mbr-section-text,
.cid-vqBPLihPgp .mbr-section-btn {
  text-align: center;
}
.cid-vqIE9bXlSY {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #ffffff;
}
.cid-vqIE9bXlSY .mbr-section-subtitle {
  text-align: center;
}
.cid-vqIE9bXlSY .mbr-section-title {
  text-align: center;
}
.cid-vqLffyPu06.popup-builder {
  background-color: #ffffff;
}
.cid-vqLffyPu06.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-vqLffyPu06.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-vqLffyPu06 .modal-content,
.cid-vqLffyPu06 .modal-dialog {
  height: auto;
}
.cid-vqLffyPu06 .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-vqLffyPu06 .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-vqLffyPu06 .form-wrapper .mbr-form .form-group,
  .cid-vqLffyPu06 .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-vqLffyPu06 .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-vqLffyPu06 .mbr-figure img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}
.cid-vqLffyPu06 .mbr-text {
  text-align: center;
}
.cid-vqLffyPu06 .pt-0 {
  padding-top: 0 !important;
}
.cid-vqLffyPu06 .pb-0 {
  padding-bottom: 0 !important;
}
.cid-vqLffyPu06 .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-vqLffyPu06 .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-vqLffyPu06 .modal-open {
  overflow: hidden;
}
.cid-vqLffyPu06 .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-vqLffyPu06 .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-vqLffyPu06 .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-vqLffyPu06 .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
.cid-vqLffyPu06 .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-vqLffyPu06 .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-vqLffyPu06 .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-vqLffyPu06 .modal-content {
  background: #ffffff;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  outline: 0;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.cid-vqLffyPu06 .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-vqLffyPu06 .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-vqLffyPu06 .modal-backdrop.fade {
  opacity: 0;
}
.cid-vqLffyPu06 .modal-backdrop.show {
  opacity: .5;
}
.cid-vqLffyPu06 .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border-bottom: none;
}
@media (min-width: 992px) {
  .cid-vqLffyPu06 .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-vqLffyPu06 .modal-header {
    padding: 1rem;
  }
}
.cid-vqLffyPu06 .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-vqLffyPu06 .modal-header .close svg {
  fill: #353535;
}
.cid-vqLffyPu06 .modal-header .close:hover {
  opacity: 1;
}
.cid-vqLffyPu06 .modal-header .close:focus {
  outline: none;
}
.cid-vqLffyPu06 .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
}
.cid-vqLffyPu06 .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-vqLffyPu06 .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-vqLffyPu06 .modal-body {
    padding: 1rem;
  }
}
.cid-vqLffyPu06 .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-top: none;
  text-align: center;
}
@media (min-width: 992px) {
  .cid-vqLffyPu06 .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-vqLffyPu06 .modal-footer {
    padding: 1rem;
  }
}
.cid-vqLffyPu06 .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-vqLffyPu06 .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-vqLffyPu06 .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-vqLffyPu06 .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-vqLffyPu06 .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-vqLffyPu06 .modal-lg,
  .cid-vqLffyPu06 .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-vqLffyPu06 .modal-xl {
    max-width: 1140px;
  }
}
.cid-vqLffyPu06 .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-vqLffyPu06 .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.cid-vqLffyPu06 .form-group {
  margin-bottom: 1rem;
}
.cid-vqLffyPu06 .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-vqLffyPu06 .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-vqLffyPu06 .col-md-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.cid-vqLffyPu06 .mbr-section-btn {
  margin: 0;
}
.cid-vqLffyPu06 .mbr-section-btn .btn {
  margin: 0;
}
.cid-vqGgSSMa8S {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #2b0a68;
}
.cid-vqGgSSMa8S svg {
  width: 100%;
  position: absolute;
  left: 0;
  top: -48px;
  height: 50px;
  transform-origin: bottom;
  animation: 1.5s ease-in-out infinite alternate svg2;
}
.cid-vqGgSSMa8S svg .st0 {
  fill: #2b0a68;
}
@media (max-width: 992px) {
  .cid-vqGgSSMa8S svg {
    width: 1000px;
  }
}
@keyframes svg2 {
  from {
    transform: scaleX(1) scaleY(1.1) rotate(0deg);
  }
  to {
    transform: scaleX(1) scaleY(1.6) rotate(0deg);
  }
}
.cid-vqGgSSMa8S .list {
  list-style: none;
  padding-left: 0;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-vqGgSSMa8S .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-vqGgSSMa8S .list {
    margin-bottom: 0rem;
  }
}
@media (max-width: 767px) {
  .cid-vqGgSSMa8S .row {
    text-align: center;
  }
}
@media (max-width: 991px) {
  .cid-vqGgSSMa8S div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-vqGgSSMa8S .copyright {
  color: #ffffff;
}
.cid-vqFXQpq2tt {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-vqFXQpq2tt nav.navbar {
  position: fixed;
}
.cid-vqFXQpq2tt .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-vqFXQpq2tt .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-vqFXQpq2tt .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-vqFXQpq2tt .dropdown-item:hover,
.cid-vqFXQpq2tt .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-vqFXQpq2tt .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-vqFXQpq2tt .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-vqFXQpq2tt .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-vqFXQpq2tt .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-vqFXQpq2tt .nav-link {
  position: relative;
}
.cid-vqFXQpq2tt .container {
  display: flex;
  margin: auto;
}
.cid-vqFXQpq2tt .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-vqFXQpq2tt .dropdown-menu,
.cid-vqFXQpq2tt .navbar.opened {
  background: #2b0a68 !important;
}
.cid-vqFXQpq2tt .nav-item:focus,
.cid-vqFXQpq2tt .nav-link:focus {
  outline: none;
}
.cid-vqFXQpq2tt .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-vqFXQpq2tt .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-vqFXQpq2tt .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-vqFXQpq2tt .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-vqFXQpq2tt .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-vqFXQpq2tt .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-vqFXQpq2tt .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #2b0a68;
}
.cid-vqFXQpq2tt .navbar.opened {
  transition: all 0.3s;
}
.cid-vqFXQpq2tt .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-vqFXQpq2tt .navbar .navbar-logo img {
  width: auto;
}
.cid-vqFXQpq2tt .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-vqFXQpq2tt .navbar.collapsed {
  justify-content: center;
}
.cid-vqFXQpq2tt .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-vqFXQpq2tt .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-vqFXQpq2tt .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-vqFXQpq2tt .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-vqFXQpq2tt .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-vqFXQpq2tt .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-vqFXQpq2tt .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-vqFXQpq2tt .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-vqFXQpq2tt .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-vqFXQpq2tt .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-vqFXQpq2tt .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-vqFXQpq2tt .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-vqFXQpq2tt .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-vqFXQpq2tt .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-vqFXQpq2tt .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-vqFXQpq2tt .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-vqFXQpq2tt .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-vqFXQpq2tt .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-vqFXQpq2tt .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-vqFXQpq2tt .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-vqFXQpq2tt .navbar.navbar-short {
  min-height: 60px;
}
.cid-vqFXQpq2tt .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-vqFXQpq2tt .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-vqFXQpq2tt .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-vqFXQpq2tt .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-vqFXQpq2tt .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-vqFXQpq2tt .dropdown-item.active,
.cid-vqFXQpq2tt .dropdown-item:active {
  background-color: transparent;
}
.cid-vqFXQpq2tt .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-vqFXQpq2tt .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-vqFXQpq2tt .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-vqFXQpq2tt .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #2b0a68;
}
.cid-vqFXQpq2tt .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-vqFXQpq2tt .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-vqFXQpq2tt ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-vqFXQpq2tt .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-vqFXQpq2tt button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-vqFXQpq2tt button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-vqFXQpq2tt button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-vqFXQpq2tt button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-vqFXQpq2tt button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-vqFXQpq2tt button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-vqFXQpq2tt nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-vqFXQpq2tt nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-vqFXQpq2tt nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-vqFXQpq2tt nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-vqFXQpq2tt .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-vqFXQpq2tt a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-vqFXQpq2tt .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-vqFXQpq2tt .navbar {
    height: 70px;
  }
  .cid-vqFXQpq2tt .navbar.opened {
    height: auto;
  }
  .cid-vqFXQpq2tt .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-vqFXQrCpEX {
  background-color: #ffffff;
  display: block;
  padding-top: 4rem;
  padding-bottom: 0rem;
}
@media (min-width: 768px) {
  .cid-vqFXQrCpEX .carousel {
    height: 800px;
  }
}
@media (max-width: 767px) {
  .cid-vqFXQrCpEX .carousel {
    height: 100vh;
  }
}
.cid-vqFXQrCpEX .carousel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-vqFXQrCpEX .carousel-item,
.cid-vqFXQrCpEX .carousel-inner {
  height: 100%;
}
.cid-vqFXQrCpEX .carousel-caption {
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
@media (max-width: 767px) {
  .cid-vqFXQrCpEX .carousel-caption {
    right: 5%;
    left: 5%;
  }
}
.cid-vqFXQrCpEX .mbr-section-title {
  letter-spacing: 12px;
  margin-bottom: 25px;
}
@media (min-width: 1400px) {
  .cid-vqFXQrCpEX .mbr-section-title.display-1 {
    font-size: 90px;
    line-height: 160px;
  }
}
.cid-vqFXQrCpEX .mbr-section-btn {
  margin-top: 42px;
}
.cid-vqFXQrCpEX .mobi-mbri-arrow-next {
  margin-left: 5px;
}
.cid-vqFXQrCpEX .mobi-mbri-arrow-prev {
  margin-right: 5px;
}
.cid-vqFXQrCpEX .carousel-control:hover.carousel-control-prev .mobi-mbri {
  transform: translateX(3px);
}
.cid-vqFXQrCpEX .carousel-control:hover.carousel-control-next .mobi-mbri {
  transform: translateX(-3px);
}
.cid-vqFXQrCpEX .item-wrapper {
  width: 100%;
}
@media (max-width: 767px) {
  .cid-vqFXQrCpEX .container .carousel-control {
    margin-bottom: 0;
  }
  .cid-vqFXQrCpEX .content-slider-wrap {
    width: 100% !important;
  }
}
.cid-vqFXQrCpEX .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-vqFXQrCpEX .carousel-control {
  top: 50%;
  width: 92px;
  height: 92px;
  margin-top: -1.5rem;
  font-size: 21px;
  border-radius: 50%;
  color: #202020;
  background-color: transparent;
  border: 1px solid #ffffff;
  transition: all 0.2s ease-out;
  opacity: 1;
}
.cid-vqFXQrCpEX .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
  color: #ffffff !important;
}
.cid-vqFXQrCpEX .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
  color: #ffffff !important;
}
.cid-vqFXQrCpEX .carousel-control .mobi-mbri {
  transition: all 0.2s ease-out;
}
@media (max-width: 768px) {
  .cid-vqFXQrCpEX .carousel-control {
    display: none !important;
  }
}
.cid-vqFXQrCpEX .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 2rem !important;
  align-items: center;
}
.cid-vqFXQrCpEX .carousel-indicators li {
  max-width: 10px;
  max-height: 10px;
  height: 6px;
  width: 6px;
  margin: 15px;
  background-color: #ffffff;
  border: none;
  border-radius: 50%;
  opacity: 1;
  transition: all 0.2s ease-in-out;
}
.cid-vqFXQrCpEX .carousel-indicators li.active,
.cid-vqFXQrCpEX .carousel-indicators li:hover {
  transform: scale(1.6);
}
.cid-vqFXQrCpEX .carousel-indicators li::after,
.cid-vqFXQrCpEX .carousel-indicators li::before {
  content: none;
}
.cid-vqFXQrCpEX .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-vqFXQrCpEX .carousel-indicators {
    display: none !important;
  }
}
.cid-vqFXQrCpEX .mbr-section-text,
.cid-vqFXQrCpEX .mbr-section-btn {
  text-align: center;
}
.cid-vqGlZP6vtc {
  padding-top: 5rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-vqGuPDiaUb {
  padding-top: 60px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-vqGuPDiaUb .row {
  align-items: stretch;
  justify-content: center;
}
.cid-vqGuPDiaUb .img-item {
  position: relative;
}
.cid-vqGuPDiaUb .img-item img {
  width: 100%;
  object-fit: cover;
}
.cid-vqGuPDiaUb .img-item .img-description {
  position: absolute;
  bottom: 0;
  width: 100%;
  z-index: 2;
  padding: .5rem 1rem .5rem;
  word-break: break-word;
}
.cid-vqGuPDiaUb .img-item .img-description p {
  margin-bottom: 0;
}
.cid-vqHNSImP7D {
  padding-top: 1rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-vqHNSImP7D blockquote {
  border-color: #6592e6;
  border-radius: 4px;
  background-color: #fafafa;
}
.cid-vqGgSSMa8S {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #2b0a68;
}
.cid-vqGgSSMa8S svg {
  width: 100%;
  position: absolute;
  left: 0;
  top: -48px;
  height: 50px;
  transform-origin: bottom;
  animation: 1.5s ease-in-out infinite alternate svg2;
}
.cid-vqGgSSMa8S svg .st0 {
  fill: #2b0a68;
}
@media (max-width: 992px) {
  .cid-vqGgSSMa8S svg {
    width: 1000px;
  }
}
@keyframes svg2 {
  from {
    transform: scaleX(1) scaleY(1.1) rotate(0deg);
  }
  to {
    transform: scaleX(1) scaleY(1.6) rotate(0deg);
  }
}
.cid-vqGgSSMa8S .list {
  list-style: none;
  padding-left: 0;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-vqGgSSMa8S .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-vqGgSSMa8S .list {
    margin-bottom: 0rem;
  }
}
@media (max-width: 767px) {
  .cid-vqGgSSMa8S .row {
    text-align: center;
  }
}
@media (max-width: 991px) {
  .cid-vqGgSSMa8S div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-vqGgSSMa8S .copyright {
  color: #ffffff;
}
.cid-vqFXUxrivu {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-vqFXUxrivu nav.navbar {
  position: fixed;
}
.cid-vqFXUxrivu .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-vqFXUxrivu .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-vqFXUxrivu .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-vqFXUxrivu .dropdown-item:hover,
.cid-vqFXUxrivu .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-vqFXUxrivu .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-vqFXUxrivu .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-vqFXUxrivu .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-vqFXUxrivu .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-vqFXUxrivu .nav-link {
  position: relative;
}
.cid-vqFXUxrivu .container {
  display: flex;
  margin: auto;
}
.cid-vqFXUxrivu .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-vqFXUxrivu .dropdown-menu,
.cid-vqFXUxrivu .navbar.opened {
  background: #2b0a68 !important;
}
.cid-vqFXUxrivu .nav-item:focus,
.cid-vqFXUxrivu .nav-link:focus {
  outline: none;
}
.cid-vqFXUxrivu .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-vqFXUxrivu .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-vqFXUxrivu .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-vqFXUxrivu .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-vqFXUxrivu .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-vqFXUxrivu .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-vqFXUxrivu .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #2b0a68;
}
.cid-vqFXUxrivu .navbar.opened {
  transition: all 0.3s;
}
.cid-vqFXUxrivu .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-vqFXUxrivu .navbar .navbar-logo img {
  width: auto;
}
.cid-vqFXUxrivu .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-vqFXUxrivu .navbar.collapsed {
  justify-content: center;
}
.cid-vqFXUxrivu .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-vqFXUxrivu .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-vqFXUxrivu .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-vqFXUxrivu .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-vqFXUxrivu .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-vqFXUxrivu .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-vqFXUxrivu .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-vqFXUxrivu .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-vqFXUxrivu .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-vqFXUxrivu .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-vqFXUxrivu .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-vqFXUxrivu .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-vqFXUxrivu .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-vqFXUxrivu .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-vqFXUxrivu .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-vqFXUxrivu .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-vqFXUxrivu .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-vqFXUxrivu .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-vqFXUxrivu .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-vqFXUxrivu .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-vqFXUxrivu .navbar.navbar-short {
  min-height: 60px;
}
.cid-vqFXUxrivu .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-vqFXUxrivu .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-vqFXUxrivu .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-vqFXUxrivu .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-vqFXUxrivu .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-vqFXUxrivu .dropdown-item.active,
.cid-vqFXUxrivu .dropdown-item:active {
  background-color: transparent;
}
.cid-vqFXUxrivu .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-vqFXUxrivu .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-vqFXUxrivu .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-vqFXUxrivu .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #2b0a68;
}
.cid-vqFXUxrivu .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-vqFXUxrivu .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-vqFXUxrivu ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-vqFXUxrivu .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-vqFXUxrivu button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-vqFXUxrivu button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-vqFXUxrivu button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-vqFXUxrivu button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-vqFXUxrivu button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-vqFXUxrivu button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-vqFXUxrivu nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-vqFXUxrivu nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-vqFXUxrivu nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-vqFXUxrivu nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-vqFXUxrivu .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-vqFXUxrivu a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-vqFXUxrivu .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-vqFXUxrivu .navbar {
    height: 70px;
  }
  .cid-vqFXUxrivu .navbar.opened {
    height: auto;
  }
  .cid-vqFXUxrivu .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-vqFXUy4pWQ {
  background-color: #ffffff;
  display: block;
  padding-top: 0rem;
  padding-bottom: 0rem;
}
@media (min-width: 768px) {
  .cid-vqFXUy4pWQ .carousel {
    height: 800px;
  }
}
@media (max-width: 767px) {
  .cid-vqFXUy4pWQ .carousel {
    height: 100vh;
  }
}
.cid-vqFXUy4pWQ .carousel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-vqFXUy4pWQ .carousel-item,
.cid-vqFXUy4pWQ .carousel-inner {
  height: 100%;
}
.cid-vqFXUy4pWQ .carousel-caption {
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
@media (max-width: 767px) {
  .cid-vqFXUy4pWQ .carousel-caption {
    right: 5%;
    left: 5%;
  }
}
.cid-vqFXUy4pWQ .mbr-section-title {
  letter-spacing: 12px;
  margin-bottom: 25px;
}
@media (min-width: 1400px) {
  .cid-vqFXUy4pWQ .mbr-section-title.display-1 {
    font-size: 90px;
    line-height: 160px;
  }
}
.cid-vqFXUy4pWQ .mbr-section-btn {
  margin-top: 42px;
}
.cid-vqFXUy4pWQ .mobi-mbri-arrow-next {
  margin-left: 5px;
}
.cid-vqFXUy4pWQ .mobi-mbri-arrow-prev {
  margin-right: 5px;
}
.cid-vqFXUy4pWQ .carousel-control:hover.carousel-control-prev .mobi-mbri {
  transform: translateX(3px);
}
.cid-vqFXUy4pWQ .carousel-control:hover.carousel-control-next .mobi-mbri {
  transform: translateX(-3px);
}
.cid-vqFXUy4pWQ .item-wrapper {
  width: 100%;
}
@media (max-width: 767px) {
  .cid-vqFXUy4pWQ .container .carousel-control {
    margin-bottom: 0;
  }
  .cid-vqFXUy4pWQ .content-slider-wrap {
    width: 100% !important;
  }
}
.cid-vqFXUy4pWQ .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-vqFXUy4pWQ .carousel-control {
  top: 50%;
  width: 92px;
  height: 92px;
  margin-top: -1.5rem;
  font-size: 21px;
  border-radius: 50%;
  color: #202020;
  background-color: transparent;
  border: 1px solid #ffffff;
  transition: all 0.2s ease-out;
  opacity: 1;
}
.cid-vqFXUy4pWQ .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
  color: #ffffff !important;
}
.cid-vqFXUy4pWQ .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
  color: #ffffff !important;
}
.cid-vqFXUy4pWQ .carousel-control .mobi-mbri {
  transition: all 0.2s ease-out;
}
@media (max-width: 768px) {
  .cid-vqFXUy4pWQ .carousel-control {
    display: none !important;
  }
}
.cid-vqFXUy4pWQ .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 2rem !important;
  align-items: center;
}
.cid-vqFXUy4pWQ .carousel-indicators li {
  max-width: 10px;
  max-height: 10px;
  height: 6px;
  width: 6px;
  margin: 15px;
  background-color: #ffffff;
  border: none;
  border-radius: 50%;
  opacity: 1;
  transition: all 0.2s ease-in-out;
}
.cid-vqFXUy4pWQ .carousel-indicators li.active,
.cid-vqFXUy4pWQ .carousel-indicators li:hover {
  transform: scale(1.6);
}
.cid-vqFXUy4pWQ .carousel-indicators li::after,
.cid-vqFXUy4pWQ .carousel-indicators li::before {
  content: none;
}
.cid-vqFXUy4pWQ .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-vqFXUy4pWQ .carousel-indicators {
    display: none !important;
  }
}
.cid-vqFXUy4pWQ .mbr-section-text,
.cid-vqFXUy4pWQ .mbr-section-btn {
  text-align: center;
}
.cid-vqGm8tWmp4 {
  padding-top: 3rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-vqGm8tWmp4 ul {
  list-style: none;
  margin: 0;
  padding-left: 2.5rem;
}
.cid-vqGm8tWmp4 li {
  position: relative;
  margin-bottom: 1rem;
}
.cid-vqGm8tWmp4 ul li::before {
  position: absolute;
  left: -1.6rem;
  content: "\2022";
  color: #6592e6;
  font-weight: bold;
  font-size: 2rem;
  width: 1.6rem;
}
.cid-vqIxtCkn1I.popup-builder {
  background-color: #ffffff;
}
.cid-vqIxtCkn1I.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-vqIxtCkn1I.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-vqIxtCkn1I .modal-content,
.cid-vqIxtCkn1I .modal-dialog {
  height: auto;
}
.cid-vqIxtCkn1I .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-vqIxtCkn1I .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-vqIxtCkn1I .form-wrapper .mbr-form .form-group,
  .cid-vqIxtCkn1I .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-vqIxtCkn1I .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-vqIxtCkn1I .mbr-figure img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}
.cid-vqIxtCkn1I .mbr-text {
  text-align: center;
}
.cid-vqIxtCkn1I .pt-0 {
  padding-top: 0 !important;
}
.cid-vqIxtCkn1I .pb-0 {
  padding-bottom: 0 !important;
}
.cid-vqIxtCkn1I .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-vqIxtCkn1I .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-vqIxtCkn1I .modal-open {
  overflow: hidden;
}
.cid-vqIxtCkn1I .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-vqIxtCkn1I .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-vqIxtCkn1I .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-vqIxtCkn1I .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
.cid-vqIxtCkn1I .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-vqIxtCkn1I .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-vqIxtCkn1I .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-vqIxtCkn1I .modal-content {
  background: #ffffff;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  outline: 0;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.cid-vqIxtCkn1I .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-vqIxtCkn1I .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-vqIxtCkn1I .modal-backdrop.fade {
  opacity: 0;
}
.cid-vqIxtCkn1I .modal-backdrop.show {
  opacity: .5;
}
.cid-vqIxtCkn1I .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border-bottom: none;
}
@media (min-width: 992px) {
  .cid-vqIxtCkn1I .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-vqIxtCkn1I .modal-header {
    padding: 1rem;
  }
}
.cid-vqIxtCkn1I .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-vqIxtCkn1I .modal-header .close svg {
  fill: #353535;
}
.cid-vqIxtCkn1I .modal-header .close:hover {
  opacity: 1;
}
.cid-vqIxtCkn1I .modal-header .close:focus {
  outline: none;
}
.cid-vqIxtCkn1I .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
}
.cid-vqIxtCkn1I .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-vqIxtCkn1I .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-vqIxtCkn1I .modal-body {
    padding: 1rem;
  }
}
.cid-vqIxtCkn1I .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-top: none;
  text-align: center;
}
@media (min-width: 992px) {
  .cid-vqIxtCkn1I .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-vqIxtCkn1I .modal-footer {
    padding: 1rem;
  }
}
.cid-vqIxtCkn1I .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-vqIxtCkn1I .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-vqIxtCkn1I .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-vqIxtCkn1I .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-vqIxtCkn1I .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-vqIxtCkn1I .modal-lg,
  .cid-vqIxtCkn1I .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-vqIxtCkn1I .modal-xl {
    max-width: 1140px;
  }
}
.cid-vqIxtCkn1I .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-vqIxtCkn1I .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.cid-vqIxtCkn1I .form-group {
  margin-bottom: 1rem;
}
.cid-vqIxtCkn1I .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-vqIxtCkn1I .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-vqIxtCkn1I .col-md-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.cid-vqIxtCkn1I .mbr-section-btn {
  margin: 0;
}
.cid-vqIxtCkn1I .mbr-section-btn .btn {
  margin: 0;
}
.cid-vqGgSSMa8S {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #2b0a68;
}
.cid-vqGgSSMa8S svg {
  width: 100%;
  position: absolute;
  left: 0;
  top: -48px;
  height: 50px;
  transform-origin: bottom;
  animation: 1.5s ease-in-out infinite alternate svg2;
}
.cid-vqGgSSMa8S svg .st0 {
  fill: #2b0a68;
}
@media (max-width: 992px) {
  .cid-vqGgSSMa8S svg {
    width: 1000px;
  }
}
@keyframes svg2 {
  from {
    transform: scaleX(1) scaleY(1.1) rotate(0deg);
  }
  to {
    transform: scaleX(1) scaleY(1.6) rotate(0deg);
  }
}
.cid-vqGgSSMa8S .list {
  list-style: none;
  padding-left: 0;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-vqGgSSMa8S .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-vqGgSSMa8S .list {
    margin-bottom: 0rem;
  }
}
@media (max-width: 767px) {
  .cid-vqGgSSMa8S .row {
    text-align: center;
  }
}
@media (max-width: 991px) {
  .cid-vqGgSSMa8S div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-vqGgSSMa8S .copyright {
  color: #ffffff;
}
.cid-vqGqGd9BXa {
  padding-top: 7rem;
  padding-bottom: 4rem;
  background-color: #694c8b;
}
.cid-vqGqGd9BXa img {
  width: 100%;
  object-fit: cover;
  height: 450px;
  min-height: 400px;
}
.cid-vqGqGd9BXa .mbr-section-title {
  margin-bottom: 18px;
  color: #ffffff;
}
.cid-vqGqGd9BXa .mbr-section-subtitle {
  color: #ffffff;
}
.cid-vqGqGd9BXa .main_header {
  position: relative;
}
.cid-vqGqGd9BXa .content_box {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 1;
  padding: 3rem;
  width: 100%;
}
@media (max-width: 767px) {
  .cid-vqGqGd9BXa .content_box {
    padding: 1rem;
    text-align: center;
  }
}
.cid-vqFXXl3JUT {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-vqFXXl3JUT nav.navbar {
  position: fixed;
}
.cid-vqFXXl3JUT .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-vqFXXl3JUT .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-vqFXXl3JUT .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-vqFXXl3JUT .dropdown-item:hover,
.cid-vqFXXl3JUT .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-vqFXXl3JUT .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-vqFXXl3JUT .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-vqFXXl3JUT .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-vqFXXl3JUT .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-vqFXXl3JUT .nav-link {
  position: relative;
}
.cid-vqFXXl3JUT .container {
  display: flex;
  margin: auto;
}
.cid-vqFXXl3JUT .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-vqFXXl3JUT .dropdown-menu,
.cid-vqFXXl3JUT .navbar.opened {
  background: #2b0a68 !important;
}
.cid-vqFXXl3JUT .nav-item:focus,
.cid-vqFXXl3JUT .nav-link:focus {
  outline: none;
}
.cid-vqFXXl3JUT .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-vqFXXl3JUT .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-vqFXXl3JUT .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-vqFXXl3JUT .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-vqFXXl3JUT .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-vqFXXl3JUT .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-vqFXXl3JUT .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #2b0a68;
}
.cid-vqFXXl3JUT .navbar.opened {
  transition: all 0.3s;
}
.cid-vqFXXl3JUT .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-vqFXXl3JUT .navbar .navbar-logo img {
  width: auto;
}
.cid-vqFXXl3JUT .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-vqFXXl3JUT .navbar.collapsed {
  justify-content: center;
}
.cid-vqFXXl3JUT .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-vqFXXl3JUT .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-vqFXXl3JUT .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-vqFXXl3JUT .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-vqFXXl3JUT .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-vqFXXl3JUT .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-vqFXXl3JUT .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-vqFXXl3JUT .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-vqFXXl3JUT .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-vqFXXl3JUT .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-vqFXXl3JUT .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-vqFXXl3JUT .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-vqFXXl3JUT .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-vqFXXl3JUT .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-vqFXXl3JUT .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-vqFXXl3JUT .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-vqFXXl3JUT .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-vqFXXl3JUT .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-vqFXXl3JUT .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-vqFXXl3JUT .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-vqFXXl3JUT .navbar.navbar-short {
  min-height: 60px;
}
.cid-vqFXXl3JUT .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-vqFXXl3JUT .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-vqFXXl3JUT .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-vqFXXl3JUT .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-vqFXXl3JUT .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-vqFXXl3JUT .dropdown-item.active,
.cid-vqFXXl3JUT .dropdown-item:active {
  background-color: transparent;
}
.cid-vqFXXl3JUT .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-vqFXXl3JUT .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-vqFXXl3JUT .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-vqFXXl3JUT .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #2b0a68;
}
.cid-vqFXXl3JUT .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-vqFXXl3JUT .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-vqFXXl3JUT ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-vqFXXl3JUT .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-vqFXXl3JUT button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-vqFXXl3JUT button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-vqFXXl3JUT button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-vqFXXl3JUT button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-vqFXXl3JUT button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-vqFXXl3JUT button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-vqFXXl3JUT nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-vqFXXl3JUT nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-vqFXXl3JUT nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-vqFXXl3JUT nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-vqFXXl3JUT .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-vqFXXl3JUT a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-vqFXXl3JUT .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-vqFXXl3JUT .navbar {
    height: 70px;
  }
  .cid-vqFXXl3JUT .navbar.opened {
    height: auto;
  }
  .cid-vqFXXl3JUT .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-vqGnJmUQbH {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-vqGnJmUQbH .mbr-section-title {
  margin-bottom: 50px;
  color: #000000;
  text-align: center;
  font-weight: 600;
  text-transform: uppercase;
}
.cid-vqGnJmUQbH .line {
  width: 100%;
  background-color: #e9e9e9;
  height: 1px;
  margin: 36px 0;
  padding: 0;
}
.cid-vqGnJmUQbH .date {
  color: #000000;
  font-weight: 600;
}
.cid-vqGnJmUQbH .workplace {
  color: #000000;
  padding-left: 50px;
}
.cid-vqGnJmUQbH .inline {
  align-items: center;
}
.cid-vqGnJmUQbH .button {
  text-align: end;
}
.cid-vqGnJmUQbH .btn {
  font-weight: 500;
}
.cid-vqGnJmUQbH .btn:hover {
  transform: translateY(-5px);
}
.cid-vqGnJmUQbH .container {
  max-width: 770px;
}
@media (max-width: 575px) {
  .cid-vqGnJmUQbH .workplace {
    padding-left: 0px;
    text-align: center;
    margin: 15px auto;
  }
  .cid-vqGnJmUQbH .button {
    text-align: center;
  }
  .cid-vqGnJmUQbH .date {
    text-align: center;
  }
}
.cid-vqIyANlrqy {
  padding-top: 1rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-vqIyANlrqy .landscape {
  aspect-ratio: 1.25;
}
.cid-vqIyANlrqy .portrait {
  aspect-ratio: 0.5625;
}
.cid-vqIyANlrqy img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 15px;
}
.cid-vqIyANlrqy .item-title {
  text-align: end;
  margin-bottom: 1rem;
}
.cid-vqIyANlrqy .item-subtitle {
  margin-bottom: 1rem;
  text-align: end;
}
@media (min-width: 992px) {
  .cid-vqIyANlrqy .item-content {
    padding: 1rem 0.5rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-vqIyANlrqy .item-content {
    padding: 1rem 0.5rem 3rem;
  }
}
@media (max-width: 767px) {
  .cid-vqIyANlrqy .item-content {
    padding: 1rem 0.5rem 2rem;
  }
}
.cid-vqLu49yM3i.popup-builder {
  background-color: #ffffff;
}
.cid-vqLu49yM3i.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-vqLu49yM3i.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-vqLu49yM3i .modal-content,
.cid-vqLu49yM3i .modal-dialog {
  height: auto;
}
.cid-vqLu49yM3i .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-vqLu49yM3i .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-vqLu49yM3i .form-wrapper .mbr-form .form-group,
  .cid-vqLu49yM3i .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-vqLu49yM3i .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-vqLu49yM3i .mbr-figure img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}
.cid-vqLu49yM3i .mbr-text {
  text-align: center;
}
.cid-vqLu49yM3i .pt-0 {
  padding-top: 0 !important;
}
.cid-vqLu49yM3i .pb-0 {
  padding-bottom: 0 !important;
}
.cid-vqLu49yM3i .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-vqLu49yM3i .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-vqLu49yM3i .modal-open {
  overflow: hidden;
}
.cid-vqLu49yM3i .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-vqLu49yM3i .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-vqLu49yM3i .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-vqLu49yM3i .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
.cid-vqLu49yM3i .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-vqLu49yM3i .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-vqLu49yM3i .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-vqLu49yM3i .modal-content {
  background: #ffffff;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  outline: 0;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.cid-vqLu49yM3i .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-vqLu49yM3i .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-vqLu49yM3i .modal-backdrop.fade {
  opacity: 0;
}
.cid-vqLu49yM3i .modal-backdrop.show {
  opacity: .5;
}
.cid-vqLu49yM3i .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border-bottom: none;
}
@media (min-width: 992px) {
  .cid-vqLu49yM3i .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-vqLu49yM3i .modal-header {
    padding: 1rem;
  }
}
.cid-vqLu49yM3i .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-vqLu49yM3i .modal-header .close svg {
  fill: #353535;
}
.cid-vqLu49yM3i .modal-header .close:hover {
  opacity: 1;
}
.cid-vqLu49yM3i .modal-header .close:focus {
  outline: none;
}
.cid-vqLu49yM3i .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
}
.cid-vqLu49yM3i .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-vqLu49yM3i .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-vqLu49yM3i .modal-body {
    padding: 1rem;
  }
}
.cid-vqLu49yM3i .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-top: none;
  text-align: center;
}
@media (min-width: 992px) {
  .cid-vqLu49yM3i .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-vqLu49yM3i .modal-footer {
    padding: 1rem;
  }
}
.cid-vqLu49yM3i .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-vqLu49yM3i .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-vqLu49yM3i .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-vqLu49yM3i .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-vqLu49yM3i .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-vqLu49yM3i .modal-lg,
  .cid-vqLu49yM3i .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-vqLu49yM3i .modal-xl {
    max-width: 1140px;
  }
}
.cid-vqLu49yM3i .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-vqLu49yM3i .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.cid-vqLu49yM3i .form-group {
  margin-bottom: 1rem;
}
.cid-vqLu49yM3i .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-vqLu49yM3i .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-vqLu49yM3i .col-md-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.cid-vqLu49yM3i .mbr-section-btn {
  margin: 0;
}
.cid-vqLu49yM3i .mbr-section-btn .btn {
  margin: 0;
}
.cid-vqGgSSMa8S {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #2b0a68;
}
.cid-vqGgSSMa8S svg {
  width: 100%;
  position: absolute;
  left: 0;
  top: -48px;
  height: 50px;
  transform-origin: bottom;
  animation: 1.5s ease-in-out infinite alternate svg2;
}
.cid-vqGgSSMa8S svg .st0 {
  fill: #2b0a68;
}
@media (max-width: 992px) {
  .cid-vqGgSSMa8S svg {
    width: 1000px;
  }
}
@keyframes svg2 {
  from {
    transform: scaleX(1) scaleY(1.1) rotate(0deg);
  }
  to {
    transform: scaleX(1) scaleY(1.6) rotate(0deg);
  }
}
.cid-vqGgSSMa8S .list {
  list-style: none;
  padding-left: 0;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-vqGgSSMa8S .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-vqGgSSMa8S .list {
    margin-bottom: 0rem;
  }
}
@media (max-width: 767px) {
  .cid-vqGgSSMa8S .row {
    text-align: center;
  }
}
@media (max-width: 991px) {
  .cid-vqGgSSMa8S div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-vqGgSSMa8S .copyright {
  color: #ffffff;
}
.cid-vqFY3HGOdg {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-vqFY3HGOdg nav.navbar {
  position: fixed;
}
.cid-vqFY3HGOdg .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-vqFY3HGOdg .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-vqFY3HGOdg .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-vqFY3HGOdg .dropdown-item:hover,
.cid-vqFY3HGOdg .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-vqFY3HGOdg .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-vqFY3HGOdg .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-vqFY3HGOdg .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-vqFY3HGOdg .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-vqFY3HGOdg .nav-link {
  position: relative;
}
.cid-vqFY3HGOdg .container {
  display: flex;
  margin: auto;
}
.cid-vqFY3HGOdg .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-vqFY3HGOdg .dropdown-menu,
.cid-vqFY3HGOdg .navbar.opened {
  background: #2b0a68 !important;
}
.cid-vqFY3HGOdg .nav-item:focus,
.cid-vqFY3HGOdg .nav-link:focus {
  outline: none;
}
.cid-vqFY3HGOdg .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-vqFY3HGOdg .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-vqFY3HGOdg .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-vqFY3HGOdg .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-vqFY3HGOdg .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-vqFY3HGOdg .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-vqFY3HGOdg .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #2b0a68;
}
.cid-vqFY3HGOdg .navbar.opened {
  transition: all 0.3s;
}
.cid-vqFY3HGOdg .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-vqFY3HGOdg .navbar .navbar-logo img {
  width: auto;
}
.cid-vqFY3HGOdg .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-vqFY3HGOdg .navbar.collapsed {
  justify-content: center;
}
.cid-vqFY3HGOdg .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-vqFY3HGOdg .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-vqFY3HGOdg .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-vqFY3HGOdg .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-vqFY3HGOdg .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-vqFY3HGOdg .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-vqFY3HGOdg .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-vqFY3HGOdg .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-vqFY3HGOdg .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-vqFY3HGOdg .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-vqFY3HGOdg .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-vqFY3HGOdg .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-vqFY3HGOdg .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-vqFY3HGOdg .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-vqFY3HGOdg .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-vqFY3HGOdg .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-vqFY3HGOdg .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-vqFY3HGOdg .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-vqFY3HGOdg .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-vqFY3HGOdg .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-vqFY3HGOdg .navbar.navbar-short {
  min-height: 60px;
}
.cid-vqFY3HGOdg .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-vqFY3HGOdg .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-vqFY3HGOdg .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-vqFY3HGOdg .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-vqFY3HGOdg .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-vqFY3HGOdg .dropdown-item.active,
.cid-vqFY3HGOdg .dropdown-item:active {
  background-color: transparent;
}
.cid-vqFY3HGOdg .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-vqFY3HGOdg .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-vqFY3HGOdg .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-vqFY3HGOdg .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #2b0a68;
}
.cid-vqFY3HGOdg .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-vqFY3HGOdg .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-vqFY3HGOdg ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-vqFY3HGOdg .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-vqFY3HGOdg button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-vqFY3HGOdg button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-vqFY3HGOdg button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-vqFY3HGOdg button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-vqFY3HGOdg button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-vqFY3HGOdg button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-vqFY3HGOdg nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-vqFY3HGOdg nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-vqFY3HGOdg nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-vqFY3HGOdg nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-vqFY3HGOdg .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-vqFY3HGOdg a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-vqFY3HGOdg .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-vqFY3HGOdg .navbar {
    height: 70px;
  }
  .cid-vqFY3HGOdg .navbar.opened {
    height: auto;
  }
  .cid-vqFY3HGOdg .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-vqI6dnn8Gd {
  padding-top: 7rem;
  padding-bottom: 4rem;
  background-color: #694c8b;
}
.cid-vqI6dnn8Gd img {
  width: 100%;
  object-fit: cover;
  height: 450px;
  min-height: 400px;
}
.cid-vqI6dnn8Gd .mbr-section-title {
  margin-bottom: 18px;
  color: #ffffff;
}
.cid-vqI6dnn8Gd .mbr-section-subtitle {
  color: #ffffff;
}
.cid-vqI6dnn8Gd .main_header {
  position: relative;
}
.cid-vqI6dnn8Gd .content_box {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 1;
  padding: 3rem;
  width: 100%;
}
@media (max-width: 767px) {
  .cid-vqI6dnn8Gd .content_box {
    padding: 1rem;
    text-align: center;
  }
}
.cid-vqI0AB7e3z {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #694c8b;
}
.cid-vqI0AB7e3z .card {
  border-radius: 0;
}
@media (min-width: 992px) {
  .cid-vqI0AB7e3z .card {
    border-right: 1px solid white;
  }
}
@media (max-width: 991px) {
  .cid-vqI0AB7e3z .card {
    border-right: 0px;
    border-bottom: 1px solid white;
  }
}
.cid-vqI0AB7e3z .wrapper {
  padding: 30px 0;
}
.cid-vqI0AB7e3z .mbr-section-title {
  color: #fafafa;
}
.cid-vqI0AB7e3z .mbr-text,
.cid-vqI0AB7e3z .mbr-section-btn {
  color: #ffffff;
}
.cid-vqI0AB7e3z H3 {
  color: #000000;
}
.cid-vqI56LdlcC {
  padding-top: 5rem;
  padding-bottom: 9rem;
  background-color: #ffffff;
}
.cid-vqI56LdlcC .line {
  background-color: #ffffff;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-vqI56LdlcC .mbr-text {
  text-align: center;
}
.cid-vqGgSSMa8S {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #2b0a68;
}
.cid-vqGgSSMa8S svg {
  width: 100%;
  position: absolute;
  left: 0;
  top: -48px;
  height: 50px;
  transform-origin: bottom;
  animation: 1.5s ease-in-out infinite alternate svg2;
}
.cid-vqGgSSMa8S svg .st0 {
  fill: #2b0a68;
}
@media (max-width: 992px) {
  .cid-vqGgSSMa8S svg {
    width: 1000px;
  }
}
@keyframes svg2 {
  from {
    transform: scaleX(1) scaleY(1.1) rotate(0deg);
  }
  to {
    transform: scaleX(1) scaleY(1.6) rotate(0deg);
  }
}
.cid-vqGgSSMa8S .list {
  list-style: none;
  padding-left: 0;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-vqGgSSMa8S .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-vqGgSSMa8S .list {
    margin-bottom: 0rem;
  }
}
@media (max-width: 767px) {
  .cid-vqGgSSMa8S .row {
    text-align: center;
  }
}
@media (max-width: 991px) {
  .cid-vqGgSSMa8S div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-vqGgSSMa8S .copyright {
  color: #ffffff;
}
.cid-vqFY6xcurT {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-vqFY6xcurT nav.navbar {
  position: fixed;
}
.cid-vqFY6xcurT .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-vqFY6xcurT .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-vqFY6xcurT .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-vqFY6xcurT .dropdown-item:hover,
.cid-vqFY6xcurT .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-vqFY6xcurT .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-vqFY6xcurT .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-vqFY6xcurT .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-vqFY6xcurT .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-vqFY6xcurT .nav-link {
  position: relative;
}
.cid-vqFY6xcurT .container {
  display: flex;
  margin: auto;
}
.cid-vqFY6xcurT .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-vqFY6xcurT .dropdown-menu,
.cid-vqFY6xcurT .navbar.opened {
  background: #2b0a68 !important;
}
.cid-vqFY6xcurT .nav-item:focus,
.cid-vqFY6xcurT .nav-link:focus {
  outline: none;
}
.cid-vqFY6xcurT .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-vqFY6xcurT .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-vqFY6xcurT .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-vqFY6xcurT .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-vqFY6xcurT .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-vqFY6xcurT .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-vqFY6xcurT .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #2b0a68;
}
.cid-vqFY6xcurT .navbar.opened {
  transition: all 0.3s;
}
.cid-vqFY6xcurT .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-vqFY6xcurT .navbar .navbar-logo img {
  width: auto;
}
.cid-vqFY6xcurT .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-vqFY6xcurT .navbar.collapsed {
  justify-content: center;
}
.cid-vqFY6xcurT .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-vqFY6xcurT .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-vqFY6xcurT .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-vqFY6xcurT .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-vqFY6xcurT .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-vqFY6xcurT .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-vqFY6xcurT .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-vqFY6xcurT .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-vqFY6xcurT .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-vqFY6xcurT .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-vqFY6xcurT .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-vqFY6xcurT .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-vqFY6xcurT .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-vqFY6xcurT .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-vqFY6xcurT .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-vqFY6xcurT .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-vqFY6xcurT .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-vqFY6xcurT .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-vqFY6xcurT .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-vqFY6xcurT .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-vqFY6xcurT .navbar.navbar-short {
  min-height: 60px;
}
.cid-vqFY6xcurT .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-vqFY6xcurT .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-vqFY6xcurT .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-vqFY6xcurT .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-vqFY6xcurT .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-vqFY6xcurT .dropdown-item.active,
.cid-vqFY6xcurT .dropdown-item:active {
  background-color: transparent;
}
.cid-vqFY6xcurT .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-vqFY6xcurT .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-vqFY6xcurT .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-vqFY6xcurT .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #2b0a68;
}
.cid-vqFY6xcurT .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-vqFY6xcurT .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-vqFY6xcurT ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-vqFY6xcurT .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-vqFY6xcurT button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-vqFY6xcurT button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-vqFY6xcurT button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-vqFY6xcurT button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-vqFY6xcurT button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-vqFY6xcurT button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-vqFY6xcurT nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-vqFY6xcurT nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-vqFY6xcurT nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-vqFY6xcurT nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-vqFY6xcurT .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-vqFY6xcurT a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-vqFY6xcurT .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-vqFY6xcurT .navbar {
    height: 70px;
  }
  .cid-vqFY6xcurT .navbar.opened {
    height: auto;
  }
  .cid-vqFY6xcurT .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-vqG3sW21Lk {
  padding-top: 7rem;
  padding-bottom: 4rem;
  background-color: #694c8b;
}
.cid-vqG3sW21Lk img {
  width: 100%;
  object-fit: cover;
  height: 450px;
  min-height: 400px;
}
.cid-vqG3sW21Lk .mbr-section-title {
  margin-bottom: 18px;
  color: #ffffff;
}
.cid-vqG3sW21Lk .mbr-section-subtitle {
  color: #ffffff;
}
.cid-vqG3sW21Lk .main_header {
  position: relative;
}
.cid-vqG3sW21Lk .content_box {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 1;
  padding: 3rem;
  width: 100%;
}
@media (max-width: 767px) {
  .cid-vqG3sW21Lk .content_box {
    padding: 1rem;
    text-align: center;
  }
}
.cid-vqGbyI7ZO9 {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-vqGbyI7ZO9 .items {
  display: flex;
  flex-wrap: wrap;
}
.cid-vqGbyI7ZO9 .item {
  width: 33.33333%;
  padding: 15px;
  aspect-ratio: 1;
}
.cid-vqGbyI7ZO9 .item .item-wrapper {
  width: 100%;
  height: 100%;
}
.cid-vqGbyI7ZO9 .item .item-img {
  width: 100%;
  height: 100%;
}
.cid-vqGbyI7ZO9 .item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (max-width: 768px) {
  .cid-vqGbyI7ZO9 .item {
    width: 50%;
  }
}
@media (max-width: 680px) {
  .cid-vqGbyI7ZO9 .item {
    width: 100%;
    padding-left: 0;
    padding-right: 0;
  }
}
.cid-vqGvDsrgN1 {
  padding-top: 4rem;
  padding-bottom: 2rem;
  background-color: #fffdf7;
}
.cid-vqGvDsrgN1 .container-fluid {
  padding-left: 12px;
  padding-right: 12px;
}
@media (min-width: 992px) {
  .cid-vqGvDsrgN1 .container-fluid {
    padding-left: 16px;
    padding-right: 16px;
  }
}
.cid-vqGvDsrgN1 .item:focus,
.cid-vqGvDsrgN1 span:focus {
  outline: none;
}
.cid-vqGvDsrgN1 .main-container {
  display: flex;
  flex-direction: column;
  width: 82%;
  padding: 0;
  margin: 0 auto;
}
@media (min-width: 576px) {
  .cid-vqGvDsrgN1 .main-container {
    width: 91%;
  }
}
@media (min-width: 768px) {
  .cid-vqGvDsrgN1 .main-container {
    flex-direction: row;
  }
}
@media (min-width: 1400px) {
  .cid-vqGvDsrgN1 .main-container {
    width: 1300px;
  }
}
.cid-vqGvDsrgN1 .item {
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
  margin-bottom: 30px;
  padding: 0;
}
@media (max-width: 767px) {
  .cid-vqGvDsrgN1 .item {
    margin-bottom: 50px;
  }
}
.cid-vqGvDsrgN1 .item-img {
  display: flex;
  transition: border-color 200ms ease;
  width: 100%;
  margin-bottom: 8px;
  overflow: hidden;
}
.cid-vqGvDsrgN1 .item-img img {
  object-fit: cover;
  height: auto;
  min-width: 100%;
  transform-style: preserve-3d;
}
.cid-vqGvDsrgN1 .item-left {
  align-items: flex-start;
}
@media (min-width: 768px) {
  .cid-vqGvDsrgN1 .item-left {
    padding: 0 4.66666667% 0 0;
  }
}
.cid-vqGvDsrgN1 .item-center {
  align-items: center;
}
@media (min-width: 768px) {
  .cid-vqGvDsrgN1 .item-center {
    padding: 5.5% 2.33333333% 0 2.33333333%;
  }
}
.cid-vqGvDsrgN1 .item-right {
  align-items: flex-end;
}
@media (min-width: 768px) {
  .cid-vqGvDsrgN1 .item-right {
    padding: 0 0 0 4.66666667%;
  }
}
.cid-vqGvDsrgN1 .item-wrap {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  position: relative;
  background: transparent;
  height: 100%;
  max-width: 344px;
  flex-flow: column nowrap;
}
.cid-vqGvDsrgN1 .item-content {
  width: 100%;
}
.cid-vqGvDsrgN1 .mbr-section-title {
  color: #000000;
}
.cid-vqGvDsrgN1 .item-title {
  color: #000000;
  margin-bottom: 0;
  text-align: left;
}
.cid-vqGvDsrgN1 .mbr-text,
.cid-vqGvDsrgN1 .mbr-section-btn {
  text-align: left;
}
.cid-vqGvDsrgN1 .item-subtitle {
  text-align: center;
}
.cid-vqGvDsrgN1 .text-client {
  color: #3d3d3d;
  width: 100%;
}
.cid-vqGvDsrgN1 .text-client span {
  padding: 0 4px;
  min-height: 21px;
  border: 1px solid currentColor;
  border-radius: 50%;
}
.cid-vqGvDsrgN1 .btn {
  padding: 3px 22px;
  border-radius: 20px;
  min-height: 38px;
}
.cid-vqGvDsrgN1 .btn-black-outline {
  border: 1px solid #000000;
}
.cid-vqGvDsrgN1 .btn-black-outline:hover {
  border: 1px solid #000000;
  background: #000000 !important;
  color: #ffffff !important;
}
.cid-vqHDp8w3mO {
  padding-top: 1rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-vqHDp8w3mO .landscape {
  aspect-ratio: 1.25;
}
.cid-vqHDp8w3mO .portrait {
  aspect-ratio: 0.5625;
}
.cid-vqHDp8w3mO img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 15px;
}
.cid-vqHDp8w3mO .item-title {
  text-align: end;
  margin-bottom: 1rem;
}
.cid-vqHDp8w3mO .item-subtitle {
  margin-bottom: 1rem;
  text-align: end;
}
@media (min-width: 992px) {
  .cid-vqHDp8w3mO .item-content {
    padding: 1rem 0.5rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-vqHDp8w3mO .item-content {
    padding: 1rem 0.5rem 3rem;
  }
}
@media (max-width: 767px) {
  .cid-vqHDp8w3mO .item-content {
    padding: 1rem 0.5rem 2rem;
  }
}
.cid-vqGbMXY8as {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-vqGbMXY8as .items {
  display: flex;
  flex-wrap: wrap;
}
.cid-vqGbMXY8as .item {
  width: 33.33333%;
  padding: 15px;
  aspect-ratio: 1;
}
.cid-vqGbMXY8as .item .item-wrapper {
  width: 100%;
  height: 100%;
}
.cid-vqGbMXY8as .item .item-img {
  width: 100%;
  height: 100%;
}
.cid-vqGbMXY8as .item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (max-width: 768px) {
  .cid-vqGbMXY8as .item {
    width: 50%;
  }
}
@media (max-width: 680px) {
  .cid-vqGbMXY8as .item {
    width: 100%;
    padding-left: 0;
    padding-right: 0;
  }
}
.cid-vqGbNzXQkD {
  padding-top: 0rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-vqGbNzXQkD .items {
  display: flex;
  flex-wrap: wrap;
}
.cid-vqGbNzXQkD .item {
  width: 33.33333%;
  padding: 15px;
  aspect-ratio: 1;
}
.cid-vqGbNzXQkD .item .item-wrapper {
  width: 100%;
  height: 100%;
}
.cid-vqGbNzXQkD .item .item-img {
  width: 100%;
  height: 100%;
}
.cid-vqGbNzXQkD .item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (max-width: 768px) {
  .cid-vqGbNzXQkD .item {
    width: 50%;
  }
}
@media (max-width: 680px) {
  .cid-vqGbNzXQkD .item {
    width: 100%;
    padding-left: 0;
    padding-right: 0;
  }
}
.cid-vqGgSSMa8S {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #2b0a68;
}
.cid-vqGgSSMa8S svg {
  width: 100%;
  position: absolute;
  left: 0;
  top: -48px;
  height: 50px;
  transform-origin: bottom;
  animation: 1.5s ease-in-out infinite alternate svg2;
}
.cid-vqGgSSMa8S svg .st0 {
  fill: #2b0a68;
}
@media (max-width: 992px) {
  .cid-vqGgSSMa8S svg {
    width: 1000px;
  }
}
@keyframes svg2 {
  from {
    transform: scaleX(1) scaleY(1.1) rotate(0deg);
  }
  to {
    transform: scaleX(1) scaleY(1.6) rotate(0deg);
  }
}
.cid-vqGgSSMa8S .list {
  list-style: none;
  padding-left: 0;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-vqGgSSMa8S .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-vqGgSSMa8S .list {
    margin-bottom: 0rem;
  }
}
@media (max-width: 767px) {
  .cid-vqGgSSMa8S .row {
    text-align: center;
  }
}
@media (max-width: 991px) {
  .cid-vqGgSSMa8S div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-vqGgSSMa8S .copyright {
  color: #ffffff;
}
