.btn {
  border-width: 2px;
}
body {
  font-family: 'Lexend', sans-serif;
}
.display-1 {
  font-family: 'Lexend', sans-serif;
  font-size: 2.6rem;
  line-height: 1.1;
}
.display-1 > .mbr-iconfont {
  font-size: 3.25rem;
}
.display-2 {
  font-family: 'Lexend', sans-serif;
  font-size: 1.8rem;
  line-height: 1.1;
}
.display-2 > .mbr-iconfont {
  font-size: 2.25rem;
}
.display-4 {
  font-family: 'Lexend', sans-serif;
  font-size: 0.8rem;
  line-height: 1.5;
}
.display-4 > .mbr-iconfont {
  font-size: 1rem;
}
.display-5 {
  font-family: 'Lexend', sans-serif;
  font-size: 1.4rem;
  line-height: 1.5;
}
.display-5 > .mbr-iconfont {
  font-size: 1.75rem;
}
.display-7 {
  font-family: 'Lexend', sans-serif;
  font-size: 1rem;
  line-height: 1.5;
}
.display-7 > .mbr-iconfont {
  font-size: 1.25rem;
}
/* ---- Fluid typography for mobile devices ---- */
/* 1.4 - font scale ratio ( bootstrap == 1.42857 ) */
/* 100vw - current viewport width */
/* (48 - 20)  48 == 48rem == 768px, 20 == 20rem == 320px(minimal supported viewport) */
/* 0.65 - min scale variable, may vary */
@media (max-width: 992px) {
  .display-1 {
    font-size: 2.08rem;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 1.82rem;
    font-size: calc( 1.56rem + (2.6 - 1.56) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (1.56rem + (2.6 - 1.56) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 1.44rem;
    font-size: calc( 1.28rem + (1.8 - 1.28) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.3 * (1.28rem + (1.8 - 1.28) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 0.64rem;
    font-size: calc( 0.93rem + (0.8 - 0.93) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (0.93rem + (0.8 - 0.93) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 1.12rem;
    font-size: calc( 1.14rem + (1.4 - 1.14) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.14rem + (1.4 - 1.14) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-7 {
    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))));
  }
}
/* 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: #a148ff !important;
}
.bg-success {
  background-color: #263d5a !important;
}
.bg-info {
  background-color: #47b5ed !important;
}
.bg-warning {
  background-color: #ffe161 !important;
}
.bg-danger {
  background-color: #ff9966 !important;
}
.btn-primary {
  background-color: #a148ff !important;
  background: linear-gradient(90deg, #a148ff 0%, #ff6f45 100%);
  border: none;
  transition: all 0.3s;
}
.btn-primary,
.btn-primary:active {
  background-color: #a148ff;
  color: #ffffff !important;
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus,
.btn-primary.active {
  color: #ffffff !important;
  background-color: #7500f0;
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #7500f0;
}
.btn-primary:hover {
  transform: translateY(-3px);
}
.btn-secondary {
  background-color: #ff6f45 !important;
  background: linear-gradient(90deg, #ff6f45 0%, #ff6f45 100%);
  border: none;
  transition: all 0.3s;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #ff6f45;
  color: #ffffff !important;
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus,
.btn-secondary.active {
  color: #ffffff !important;
  background-color: #ed3600;
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #ed3600;
}
.btn-secondary:hover {
  transform: translateY(-3px);
}
.btn-info {
  background-color: #47b5ed !important;
  background: linear-gradient(90deg, #47b5ed 0%, #ff6f45 100%);
  border: none;
  transition: all 0.3s;
}
.btn-info,
.btn-info:active {
  background-color: #47b5ed;
  color: #ffffff !important;
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus,
.btn-info.active {
  color: #ffffff !important;
  background-color: #148cca;
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #148cca;
}
.btn-info:hover {
  transform: translateY(-3px);
}
.btn-success {
  background-color: #263d5a !important;
  background: linear-gradient(90deg, #263d5a 0%, #ff6f45 100%);
  border: none;
  transition: all 0.3s;
}
.btn-success,
.btn-success:active {
  background-color: #263d5a;
  color: #ffffff !important;
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus,
.btn-success.active {
  color: #ffffff !important;
  background-color: #0c141d;
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #0c141d;
}
.btn-success:hover {
  transform: translateY(-3px);
}
.btn-warning {
  background-color: #ffe161 !important;
  background: linear-gradient(90deg, #ffe161 0%, #ff6f45 100%);
  border: none;
  transition: all 0.3s;
}
.btn-warning,
.btn-warning:active {
  background-color: #ffe161;
  color: #614f00 !important;
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus,
.btn-warning.active {
  color: #0a0800 !important;
  background-color: #ffd10a;
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #614f00 !important;
  background-color: #ffd10a;
}
.btn-warning:hover {
  transform: translateY(-3px);
}
.btn-danger {
  background-color: #ff9966 !important;
  background: linear-gradient(90deg, #ff9966 0%, #ff6f45 100%);
  border: none;
  transition: all 0.3s;
}
.btn-danger,
.btn-danger:active {
  background-color: #ff9966;
  color: #ffffff !important;
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus,
.btn-danger.active {
  color: #ffffff !important;
  background-color: #ff5f0f;
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #ff5f0f;
}
.btn-danger:hover {
  transform: translateY(-3px);
}
.btn-white {
  background-color: #fafafa !important;
  background: linear-gradient(90deg, #fafafa 0%, #ff6f45 100%);
  border: none;
  transition: all 0.3s;
}
.btn-white,
.btn-white:active {
  background-color: #fafafa;
  color: #7a7a7a !important;
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus,
.btn-white.active {
  color: #4f4f4f !important;
  background-color: #cfcfcf;
}
.btn-white.disabled,
.btn-white:disabled {
  color: #7a7a7a !important;
  background-color: #cfcfcf;
}
.btn-white:hover {
  transform: translateY(-3px);
}
.btn-black {
  background-color: #232323 !important;
  background: linear-gradient(90deg, #232323 0%, #ff6f45 100%);
  border: none;
  transition: all 0.3s;
}
.btn-black,
.btn-black:active {
  background-color: #232323;
  color: #ffffff !important;
}
.btn-black:hover,
.btn-black:focus,
.btn-black.focus,
.btn-black.active {
  color: #ffffff !important;
  background-color: #000000;
}
.btn-black.disabled,
.btn-black:disabled {
  color: #ffffff !important;
  background-color: #000000;
}
.btn-black:hover {
  transform: translateY(-3px);
}
.btn-primary-outline,
.btn-primary-outline:active {
  background-color: transparent !important;
  border-color: #a148ff;
  color: #a148ff;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #7500f0 !important;
  background-color: transparent!important;
  border-color: #7500f0 !important;
  box-shadow: none!important;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #a148ff !important;
  border-color: #a148ff !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background-color: transparent !important;
  border-color: #ff6f45;
  color: #ff6f45;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #ed3600 !important;
  background-color: transparent!important;
  border-color: #ed3600 !important;
  box-shadow: none!important;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #ff6f45 !important;
  border-color: #ff6f45 !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background-color: transparent !important;
  border-color: #47b5ed;
  color: #47b5ed;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #148cca !important;
  background-color: transparent!important;
  border-color: #148cca !important;
  box-shadow: none!important;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #47b5ed !important;
  border-color: #47b5ed !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background-color: transparent !important;
  border-color: #263d5a;
  color: #263d5a;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #0c141d !important;
  background-color: transparent!important;
  border-color: #0c141d !important;
  box-shadow: none!important;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #ffffff !important;
  background-color: #263d5a !important;
  border-color: #263d5a !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background-color: transparent !important;
  border-color: #ffe161;
  color: #ffe161;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #ffd10a !important;
  background-color: transparent!important;
  border-color: #ffd10a !important;
  box-shadow: none!important;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #614f00 !important;
  background-color: #ffe161 !important;
  border-color: #ffe161 !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background-color: transparent !important;
  border-color: #ff9966;
  color: #ff9966;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #ff5f0f !important;
  background-color: transparent!important;
  border-color: #ff5f0f !important;
  box-shadow: none!important;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #ff9966 !important;
  border-color: #ff9966 !important;
}
.btn-black-outline,
.btn-black-outline:active {
  background-color: transparent !important;
  border-color: #232323;
  color: #232323;
}
.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.focus,
.btn-black-outline.active {
  color: #000000 !important;
  background-color: transparent!important;
  border-color: #000000 !important;
  box-shadow: none!important;
}
.btn-black-outline.disabled,
.btn-black-outline:disabled {
  color: #ffffff !important;
  background-color: #232323 !important;
  border-color: #232323 !important;
}
.btn-white-outline,
.btn-white-outline:active {
  background-color: transparent !important;
  border-color: #fafafa;
  color: #fafafa;
}
.btn-white-outline:hover,
.btn-white-outline:focus,
.btn-white-outline.focus,
.btn-white-outline.active {
  color: #cfcfcf !important;
  background-color: transparent!important;
  border-color: #cfcfcf !important;
  box-shadow: none!important;
}
.btn-white-outline.disabled,
.btn-white-outline:disabled {
  color: #7a7a7a !important;
  background-color: #fafafa !important;
  border-color: #fafafa !important;
}
.text-primary {
  color: #a148ff !important;
}
.text-secondary {
  color: #ff6f45 !important;
}
.text-success {
  color: #263d5a !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: #6d00e1 !important;
}
a.text-secondary:hover,
a.text-secondary:focus,
a.text-secondary.active {
  color: #de3200 !important;
}
a.text-success:hover,
a.text-success:focus,
a.text-success.active {
  color: #080c12 !important;
}
a.text-info:hover,
a.text-info:focus,
a.text-info.active {
  color: #1283bc !important;
}
a.text-warning:hover,
a.text-warning:focus,
a.text-warning.active {
  color: #facb00 !important;
}
a.text-danger:hover,
a.text-danger:focus,
a.text-danger.active {
  color: #ff5500 !important;
}
a.text-white:hover,
a.text-white:focus,
a.text-white.active {
  color: #fafafa !important;
}
a.text-black:hover,
a.text-black:focus,
a.text-black.active {
  color: #000000 !important;
}
a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption) {
  position: relative;
  background-image: transparent;
  background-size: 10000px 2px;
  background-repeat: no-repeat;
  background-position: 0px 1.2em;
  background-position: -10000px 1.2em;
}
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: #a148ff;
}
.nav-tabs .nav-link:not(.active) {
  color: #232323;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #47b5ed;
}
.alert-warning {
  background-color: #ffe161;
}
.alert-danger {
  background-color: #ff9966;
}
.mbr-section-btn a.btn:not(.btn-form) {
  border-radius: 100px;
}
.mbr-gallery-filter li a {
  border-radius: 100px !important;
}
.mbr-gallery-filter li.active .btn {
  background-color: #a148ff;
  border-color: #a148ff;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
.nav-tabs .nav-link {
  border-radius: 100px !important;
}
a,
a:hover {
  color: #a148ff;
}
.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: #4c7ab3;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #ffffff;
}
/* Scroll to top button*/
#scrollToTop a {
  border-radius: 100px;
}
.form-control {
  font-family: 'Lexend', sans-serif;
  font-size: 0.8rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control > .mbr-iconfont {
  font-size: 1rem;
}
.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: #a148ff !important;
}
.form-control:-webkit-input-placeholder {
  font-family: 'Lexend', sans-serif;
  font-size: 0.8rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control:-webkit-input-placeholder > .mbr-iconfont {
  font-size: 1rem;
}
blockquote {
  border-color: #a148ff;
}
/* Forms */
.mbr-form .input-group-btn a.btn {
  border-radius: 100px !important;
}
.mbr-form .input-group-btn a.btn:hover {
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.mbr-form .input-group-btn button[type="submit"] {
  border-radius: 100px !important;
  padding: 1rem 3rem;
}
.mbr-form .input-group-btn button[type="submit"]:hover {
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #a148ff;
  color: #ffffff;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #a148ff;
}
.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: #a148ff;
  border-bottom-color: #a148ff;
}
.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: #a148ff !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: #ff6f45 !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='%23a148ff' %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;
}
html,
body {
  overflow-x: hidden;
}
a {
  transition: color 0.6s;
}
@media (max-width: 445px) {
  .container-banner {
    height: 11.5rem!important;
  }
}
.cid-ufoRBqpH5e {
  z-index: 1000;
  width: 100%;
}
.cid-ufoRBqpH5e nav.navbar {
  position: fixed;
}
.cid-ufoRBqpH5e .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-ufoRBqpH5e .dropdown-menu {
  padding: 15px 0;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-ufoRBqpH5e .dropdown-item {
  position: relative !important;
  padding: 2px 40px !important;
}
.cid-ufoRBqpH5e .dropdown-item:after {
  right: 1rem !important;
}
.cid-ufoRBqpH5e .dropdown-item:before {
  content: "";
  display: block !important;
  position: absolute;
  left: 40px;
  bottom: 2px;
  top: auto !important;
  height: 1px;
  width: 0;
  overflow: visible !important;
  transform: scale(1) !important;
  background-color: currentColor;
  transition: 0.4s cubic-bezier(0.33, 0.52, 0.05, 0.96);
}
.cid-ufoRBqpH5e .dropdown-item:hover:before,
.cid-ufoRBqpH5e .dropdown-item:focus:before {
  width: calc(100% - 80px);
}
.cid-ufoRBqpH5e .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-ufoRBqpH5e .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-ufoRBqpH5e .nav-link {
  position: relative;
}
.cid-ufoRBqpH5e .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-ufoRBqpH5e .container {
    flex-wrap: nowrap;
  }
}
.cid-ufoRBqpH5e .navbar-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  margin-right: auto;
  min-height: 98px;
}
.cid-ufoRBqpH5e .navbar-nav .nav-item {
  margin: 0;
}
.cid-ufoRBqpH5e .navbar-nav .nav-link {
  position: relative;
  padding: 0 !important;
  margin: 10px 20px !important;
  transition: .4s all;
  font-weight: 700 !important;
}
.cid-ufoRBqpH5e .navbar-nav .nav-link:before {
  content: "";
  display: block !important;
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  width: 0;
  background-color: currentColor;
  transition: 0.4s cubic-bezier(0.33, 0.52, 0.05, 0.96);
}
.cid-ufoRBqpH5e .navbar-nav .nav-link:hover:before {
  width: 100%;
}
.cid-ufoRBqpH5e .dropdown-menu,
.cid-ufoRBqpH5e .navbar.opened {
  background: #ffffff !important;
}
.cid-ufoRBqpH5e .nav-item:focus,
.cid-ufoRBqpH5e .nav-link:focus {
  outline: none;
}
.cid-ufoRBqpH5e .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-ufoRBqpH5e .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-ufoRBqpH5e .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-ufoRBqpH5e .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-ufoRBqpH5e .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-ufoRBqpH5e .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-ufoRBqpH5e .navbar {
  min-height: 100px;
  transition: all 0.3s;
  border-bottom: none !important;
  background: rgba(255, 255, 255, 0.2);
  box-shadow: none !important;
  padding: 0 !important;
}
.cid-ufoRBqpH5e .navbar.opened {
  transition: all 0.3s;
}
.cid-ufoRBqpH5e .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-ufoRBqpH5e .navbar .navbar-logo {
  margin-right: 0.5rem !important;
}
.cid-ufoRBqpH5e .navbar .navbar-logo img {
  width: auto;
}
.cid-ufoRBqpH5e .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-ufoRBqpH5e .navbar.collapsed {
  justify-content: center;
}
.cid-ufoRBqpH5e .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-ufoRBqpH5e .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-ufoRBqpH5e .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.9rem);
  }
}
.cid-ufoRBqpH5e .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-ufoRBqpH5e .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-ufoRBqpH5e .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-ufoRBqpH5e .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-ufoRBqpH5e .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-ufoRBqpH5e .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-ufoRBqpH5e .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-ufoRBqpH5e .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-ufoRBqpH5e .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-ufoRBqpH5e .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-ufoRBqpH5e .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-ufoRBqpH5e .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-ufoRBqpH5e .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-ufoRBqpH5e .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-ufoRBqpH5e .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-ufoRBqpH5e .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-ufoRBqpH5e .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-ufoRBqpH5e .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-ufoRBqpH5e .navbar.navbar-short {
  min-height: 100px;
}
.cid-ufoRBqpH5e .navbar.navbar-short .navbar-brand {
  min-height: 98px;
  padding: 0;
}
.cid-ufoRBqpH5e .navbar-brand {
  min-height: 98px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
  padding-right: 50px !important;
}
.cid-ufoRBqpH5e .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-ufoRBqpH5e .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-ufoRBqpH5e .dropdown-item.active,
.cid-ufoRBqpH5e .dropdown-item:active {
  background-color: transparent;
}
.cid-ufoRBqpH5e .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-ufoRBqpH5e .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-ufoRBqpH5e .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-ufoRBqpH5e .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-ufoRBqpH5e .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-ufoRBqpH5e .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-ufoRBqpH5e ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-ufoRBqpH5e .navbar-buttons {
  text-align: center;
}
.cid-ufoRBqpH5e button.navbar-toggler {
  outline: none;
  width: 24px;
  height: 24px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  padding: 0 !important;
  border: none !important;
}
.cid-ufoRBqpH5e button.navbar-toggler .hamburger div {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: absolute;
  right: 0;
  width: 100%;
  height: 4px;
  background-color: transparent;
  opacity: 1;
}
.cid-ufoRBqpH5e button.navbar-toggler .hamburger div:nth-child(1) {
  top: 0;
  transition: all 0.3s;
}
.cid-ufoRBqpH5e button.navbar-toggler .hamburger div:nth-child(2) {
  top: 10px;
  transition: all 0.25s;
}
.cid-ufoRBqpH5e button.navbar-toggler .hamburger div:nth-child(3) {
  top: 10px;
  transition: all 0.25s;
}
.cid-ufoRBqpH5e button.navbar-toggler .hamburger div:nth-child(4) {
  top: 20px;
  transition: all 0.3s;
}
.cid-ufoRBqpH5e button.navbar-toggler .hamburger span {
  width: 4px;
  height: 4px;
  background-color: #a148ff;
  border-radius: 50%;
}
.cid-ufoRBqpH5e button.navbar-toggler:hover .hamburger div:nth-child(1) {
  top: 10px;
  opacity: 0;
  transition: all 0.3s;
}
.cid-ufoRBqpH5e button.navbar-toggler:hover .hamburger div:nth-child(2) {
  top: 10px;
  transition: all 0.25s;
  opacity: 1;
}
.cid-ufoRBqpH5e button.navbar-toggler:hover .hamburger div:nth-child(3) {
  top: 10px;
  opacity: 1;
  transition: all 0.25s;
}
.cid-ufoRBqpH5e button.navbar-toggler:hover .hamburger div:nth-child(4) {
  top: 10px;
  opacity: 0;
  transition: all 0.3s;
}
.cid-ufoRBqpH5e nav.opened .hamburger div:nth-child(1) {
  top: 10px;
  opacity: 0;
}
.cid-ufoRBqpH5e nav.opened .hamburger div:nth-child(2) {
  top: 10px;
  opacity: 1;
  transform: rotate(45deg);
  background-color: #a148ff;
}
.cid-ufoRBqpH5e nav.opened .hamburger div:nth-child(3) {
  top: 10px;
  opacity: 1;
  transform: rotate(-45deg);
  background-color: #a148ff;
}
.cid-ufoRBqpH5e nav.opened .hamburger div:nth-child(4) {
  top: 10px;
  opacity: 0;
  transition: all 0.3s;
}
.cid-ufoRBqpH5e nav.opened button.navbar-toggler:hover {
  transform: rotate(90deg);
}
.cid-ufoRBqpH5e .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-ufoRBqpH5e a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-ufoRBqpH5e .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-ufoRBqpH5e .navbar {
    height: 70px;
  }
  .cid-ufoRBqpH5e .navbar.opened {
    height: auto;
  }
  .cid-ufoRBqpH5e .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-ufoRBqpH5e .container,
.cid-ufoRBqpH5e .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-ufoRBqpH5e .container,
  .cid-ufoRBqpH5e .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-ufoRBqpH5e .container-fluid {
  max-width: 100%;
  padding: 0 60px;
}
.cid-ufoRBqpH5e .navbar-collapse {
  min-height: 98px;
}
.cid-ufoRBqpH5e .mbr-section-btn {
  max-width: 35%;
}
.cid-ufoRBqpH5e .mbr-section-btn .btn {
  min-width: auto;
  max-width: 100%;
}
@media (max-width: 991px) {
  .cid-ufoRBqpH5e {
    min-height: 70px !important;
  }
  .cid-ufoRBqpH5e .navbar {
    min-height: 70px !important;
  }
  .cid-ufoRBqpH5e .container-fluid {
    padding: 0 7%;
  }
  .cid-ufoRBqpH5e .navbar-brand {
    width: calc(100% - 24px) !important;
    min-height: 68px !important;
    padding-right: 0 !important;
  }
  .cid-ufoRBqpH5e .navbar-collapse {
    width: 100%;
    min-height: auto;
    padding-bottom: 30px;
    order: 5;
  }
  .cid-ufoRBqpH5e .navbar-nav {
    width: 100%;
    padding-top: 30px;
    align-items: flex-start;
  }
  .cid-ufoRBqpH5e .navbar-nav li {
    margin: 0 !important;
  }
  .cid-ufoRBqpH5e .navbar-nav .nav-link {
    width: max-content !important;
    max-width: 100% !important;
    margin: 5px 0 !important;
  }
  .cid-ufoRBqpH5e .navbar .navbar-collapse .dropdown .dropdown-menu {
    padding: 8px 0 !important;
    box-shadow: none !important;
    background: transparent !important;
    border: none !important;
  }
  .cid-ufoRBqpH5e .navbar .navbar-collapse .dropdown .dropdown-menu .dropdown-item {
    padding: 2px 0 !important;
    width: max-content !important;
    max-width: 100% !important;
  }
  .cid-ufoRBqpH5e .navbar .navbar-collapse .dropdown .dropdown-menu .dropdown-item:before {
    left: 0 !important;
    bottom: 2px !important;
  }
  .cid-ufoRBqpH5e .navbar .navbar-collapse .dropdown .dropdown-menu .dropdown-item:hover:before {
    width: 100% !important;
  }
  .cid-ufoRBqpH5e .mbr-section-btn {
    max-width: 100%;
    margin-top: 10px;
  }
}
.cid-tMIYX4xkoa {
  padding-top: 6rem;
  padding-bottom: 7rem;
  background-image: url("../../../assets/images/mbr-1-1920x1920.webp");
}
.cid-tMIYX4xkoa .mbr-fallback-image.disabled {
  display: none;
}
.cid-tMIYX4xkoa .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tMIYX4xkoa .mbr-section-title {
  color: #FFFFFF;
}
.cid-tMIYX4xkoa .mbr-text {
  color: #FFFFFF;
  margin-top: 20px;
}
.cid-tMIYX4xkoa .mbr-section-btn {
  margin-top: 30px;
}
.cid-tIdCq4mLMF {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-image: url("../../../assets/images/magictouch-807x606.webp");
}
.cid-tIdCq4mLMF .mbr-media {
  position: relative;
}
.cid-tIdCq4mLMF .mbr-media img {
  width: 100%;
  object-fit: cover;
}
.cid-tIdCq4mLMF .box {
  min-height: 600px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 10px;
  background-size: cover;
  background-position: center;
}
@media (max-width: 767px) {
  .cid-tIdCq4mLMF .box {
    min-height: 300px;
  }
}
.cid-tIdCq4mLMF .icon-wrap {
  position: relative;
  margin: auto;
  width: 100px;
  height: 100px;
  background: #ffffff;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-tIdCq4mLMF .icon-wrap a {
  height: 20px;
}
.cid-tIdCq4mLMF .icon-wrap:before {
  position: absolute;
  content: '';
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100px;
  height: 100px;
  background: #ffffff;
  opacity: 0.8;
  border-radius: 50%;
  animation-duration: 1s;
  animation-name: icons;
  animation-iteration-count: infinite;
  z-index: 1;
}
@keyframes icons {
  from {
    width: 100px;
    height: 100px;
    opacity: 0.8;
  }
  to {
    width: 160px;
    height: 160px;
    opacity: 0;
  }
}
.cid-tIdCq4mLMF .mbr-media span {
  font-size: 1.5rem;
  transition: all 0.2s;
  z-index: 2;
  padding-left: 4px;
  position: relative;
  color: #ff6666;
}
.cid-tIdCq4mLMF .modalWindow {
  position: fixed;
  z-index: 5000;
  left: 0;
  top: 0;
  background-color: rgba(61, 61, 61, 0.65);
  width: 100%;
  height: 100%;
}
.cid-tIdCq4mLMF .modalWindow .modalWindow-container {
  display: table-cell;
  vertical-align: middle;
}
.cid-tIdCq4mLMF .modalWindow .modalWindow-video {
  height: calc(44.9943757vw);
  width: 80vw;
  margin: 0 auto;
}
.cid-tIdCq4mLMF .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-tIdCq4mLMF .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-tIdCq4mLMF .mbr-section-title {
  color: #ffffff;
}
.cid-ufoGAt6nI4 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/background2.webp");
}
.cid-ufoGAt6nI4 .mbr-overlay {
  backdrop-filter: blur(3.5px);
}
.cid-ufoGAt6nI4 .card-wrapper {
  background: linear-gradient(0deg, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0.6) 100%);
  backdrop-filter: blur(3.5px);
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.1);
  border-radius: 30px;
  padding: 6rem 3rem;
  margin: 0;
  overflow: visible;
  position: relative;
  justify-content: center;
}
@media (max-width: 767px) {
  .cid-ufoGAt6nI4 .card-wrapper {
    padding: 2rem 1rem;
  }
}
.cid-ufoGAt6nI4 .card-wrapper:before {
  content: '';
  position: absolute;
  top: 0px;
  left: 0px;
  opacity: 0.3;
  height: 100%;
  width: 100%;
  pointer-events: none;
  border: 2px solid white;
  border-radius: 30px;
}
.cid-ufoGAt6nI4 .col-12 {
  position: relative;
}
.cid-ufoGAt6nI4 .round {
  position: absolute;
  top: -60px;
  right: -150px;
  width: 280px;
  height: 280px;
  background: linear-gradient(0deg, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0.6) 100%);
  backdrop-filter: blur(3.5px);
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.1);
  border-radius: 50%;
  z-index: 2;
}
@media (max-width: 767px) {
  .cid-ufoGAt6nI4 .round {
    top: -30px;
    right: -110px;
    width: 180px;
    height: 180px;
  }
}
.cid-ufoGAt6nI4 .round:before {
  content: '';
  position: absolute;
  top: 0px;
  left: 0px;
  opacity: 0.3;
  height: 100%;
  width: 100%;
  pointer-events: none;
  border: 2px solid white;
  border-radius: 50%;
}
.cid-ufoGAt6nI4 .round2 {
  top: auto;
  right: auto;
  bottom: -30px;
  left: -30px;
  width: 120px;
  height: 120px;
  z-index: 0;
}
.cid-ufoGAt6nI4 .mbr-section-title {
  color: #263d5a;
  text-align: center;
}
.cid-ufoGAt6nI4 .mbr-text,
.cid-ufoGAt6nI4 .mbr-section-btn {
  color: #263d5a;
  text-align: center;
}
.cid-tIdDkzrOaF {
  padding-top: 2rem;
  padding-bottom: 3rem;
  background-color: #141414;
}
.cid-tIdDkzrOaF .row {
  display: flex;
  flex-direction: row-reverse;
  border: 1px solid #ffffff;
  margin-top: -1px;
}
.cid-tIdDkzrOaF .title-wrapper {
  padding: 0 12px;
}
.cid-tIdDkzrOaF .text-block {
  padding: 48px 24px;
}
.cid-tIdDkzrOaF .video-wrapper iframe {
  width: 100%;
}
.cid-tIdDkzrOaF .video-block {
  border-left: 1px solid #ffffff;
  padding: 0;
}
.cid-tIdDkzrOaF .mbr-section-title {
  text-align: center;
  color: #FFFFFF;
}
.cid-tIdDkzrOaF .mbr-description {
  text-align: center;
  color: #FFFFFF;
  padding: 16px;
}
@media (min-width: 992px) {
  .cid-tIdDkzrOaF .mbr-description {
    padding: 16px 60px 16px;
  }
}
.cid-tIdDkzrOaF .mbr-text,
.cid-tIdDkzrOaF .mbr-section-subtitle {
  color: #FFFFFF;
}
@media (max-width: 991px) {
  .cid-tIdDkzrOaF .video-block {
    border-left: none;
  }
  .cid-tIdDkzrOaF .text-block {
    border-top: 1px solid #ffffff;
  }
}
@media (min-width: 992px) {
  .cid-tIdDkzrOaF .title-wrapper {
    padding: 0 48px;
  }
  .cid-tIdDkzrOaF .text-block {
    padding: 60px;
    border-right: 1px solid #ffffff;
    margin-right: -1px;
    margin-bottom: auto;
  }
}
.cid-tIdDgXGBbc {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-image: url("../../../assets/images/background1-1.webp");
}
.cid-tIdDgXGBbc .date {
  margin: 67px 0 14px;
  color: #1d1d1f;
  font-weight: 700;
  text-align: center;
}
.cid-tIdDgXGBbc .mbr-section-title {
  color: #000000;
  margin-bottom: 62px;
  font-weight: 700;
}
.cid-tIdDgXGBbc .link {
  margin-top: 22px;
}
.cid-tIdDgXGBbc .card-heading {
  line-height: 1.2;
  margin: 0px;
  font-weight: 500;
}
@media (max-width: 600px) {
  .cid-tIdDgXGBbc .header {
    margin-bottom: 20px;
  }
  .cid-tIdDgXGBbc .link {
    margin-top: 20px;
    margin-bottom: 20px;
    opacity: 1;
    transform: none;
  }
  .cid-tIdDgXGBbc .button {
    text-align: left;
  }
}
@media (min-width: 600px) and (max-width: 1000px) {
  .cid-tIdDgXGBbc .link {
    margin-bottom: 40px;
  }
}
.cid-tIdDgXGBbc .mbr-section-btn {
  position: absolute;
  right: 0;
}
.cid-tIdDgXGBbc .mbr-section-subtitle {
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 5px;
  color: #4c4c4c;
}
.cid-tIdDgXGBbc .part {
  align-items: start;
}
.cid-tIdDgXGBbc H3 {
  text-align: center;
}
.cid-tIdDgXGBbc a {
  transition: color 0.2s ease-out, background-color 0.2s ease-out, border-color 0.2s ease-out;
}
.cid-tIdDgXGBbc rect {
  transform: translateX(-13px);
  transform-origin: right;
  stroke: currentColor;
  stroke-width: .5;
}
.cid-tIdDgXGBbc .qodef-button-cap-fake {
  animation: qode-button-cap-fake-out 0.35s linear;
}
.cid-tIdDgXGBbc svg {
  margin-left: 15px;
}
.cid-tIdDgXGBbc path {
  animation: qode-button-cap-out 0.35s ease-in-out;
  transform: translateX(-13px);
  transform-origin: right;
  fill: currentColor;
}
.cid-tIdDgXGBbc .link:hover rect {
  animation: qode-button-line 0.7s ease forwards;
}
.cid-tIdDgXGBbc .link:hover path {
  animation: qode-button-cap 0.7s ease forwards;
}
@keyframes qode-button-cap-fake-out {
  0% {
    clip-path: inset(0 0 0 0);
  }
  49%,
  51% {
    clip-path: inset(50% 0 50% 0);
  }
  100% {
    clip-path: inset(0 0 0 0);
  }
}
@keyframes qode-button-line {
  0%,
  100% {
    transform: translateX(-13px) scaleX(1);
  }
  10% {
    transform: translateX(-13px) scaleX(1);
  }
  46%,
  55% {
    transform: translateX(0) scaleX(0.5);
  }
  99% {
    transform: translateX(-13px) scaleX(0.6);
  }
}
@keyframes qode-button-cap-out {
  0%,
  50% {
    transform: translateX(-35px) scaleX(-1);
  }
  100%,
  51% {
    transform: translateX(-13px) scaleX(1);
  }
}
@keyframes qode-button-cap {
  0% {
    -webkit-transform: translateX(-13px) scaleX(1);
    transform: translateX(-13px) scaleX(1);
    -webkit-clip-path: inset(0 0 0 0);
    clip-path: inset(0 0 0 0);
  }
  54% {
    -webkit-transform: translateX(-1px) scaleX(1);
    transform: translateX(-1px) scaleX(1);
    -webkit-clip-path: inset(50% 0 50% 0);
    clip-path: inset(50% 0 50% 0);
  }
  55% {
    -webkit-transform: translateX(-20px) scaleX(-1);
    transform: translateX(-20px) scaleX(-1);
    -webkit-clip-path: inset(50% 0 50% 0);
    clip-path: inset(50% 0 50% 0);
  }
  100% {
    -webkit-transform: translateX(-35px) scaleX(-1);
    transform: translateX(-35px) scaleX(-1);
    -webkit-clip-path: inset(0 0 0 0);
    clip-path: inset(0 0 0 0);
  }
}
.cid-tIdDgXGBbc .card-heading,
.cid-tIdDgXGBbc .link {
  color: #4c4c4c;
}
@media (max-width: 770px) {
  .cid-tIdDgXGBbc .top {
    padding-top: 60px;
  }
}
@media (max-width: 575px) {
  .cid-tIdDgXGBbc .top1 {
    padding-top: 60px;
  }
}
.cid-tIdDgXGBbc .card-heading,
.cid-tIdDgXGBbc .link DIV {
  text-align: center;
}
.cid-ufpBxOY853 {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-image: url("../../../assets/images/background1-1.webp");
}
.cid-ufpBxOY853 .date {
  margin: 67px 0 14px;
  color: #1d1d1f;
  font-weight: 700;
  text-align: center;
}
.cid-ufpBxOY853 .mbr-section-title {
  color: #000000;
  margin-bottom: 62px;
  font-weight: 700;
}
.cid-ufpBxOY853 .link {
  margin-top: 22px;
}
.cid-ufpBxOY853 .card-heading {
  line-height: 1.2;
  margin: 0px;
  font-weight: 500;
}
@media (max-width: 600px) {
  .cid-ufpBxOY853 .header {
    margin-bottom: 20px;
  }
  .cid-ufpBxOY853 .link {
    margin-top: 20px;
    margin-bottom: 20px;
    opacity: 1;
    transform: none;
  }
  .cid-ufpBxOY853 .button {
    text-align: left;
  }
}
@media (min-width: 600px) and (max-width: 1000px) {
  .cid-ufpBxOY853 .link {
    margin-bottom: 40px;
  }
}
.cid-ufpBxOY853 .mbr-section-btn {
  position: absolute;
  right: 0;
}
.cid-ufpBxOY853 .mbr-section-subtitle {
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 5px;
  color: #4c4c4c;
}
.cid-ufpBxOY853 .part {
  align-items: start;
}
.cid-ufpBxOY853 H3 {
  text-align: center;
}
.cid-ufpBxOY853 a {
  transition: color 0.2s ease-out, background-color 0.2s ease-out, border-color 0.2s ease-out;
}
.cid-ufpBxOY853 rect {
  transform: translateX(-13px);
  transform-origin: right;
  stroke: currentColor;
  stroke-width: .5;
}
.cid-ufpBxOY853 .qodef-button-cap-fake {
  animation: qode-button-cap-fake-out 0.35s linear;
}
.cid-ufpBxOY853 svg {
  margin-left: 15px;
}
.cid-ufpBxOY853 path {
  animation: qode-button-cap-out 0.35s ease-in-out;
  transform: translateX(-13px);
  transform-origin: right;
  fill: currentColor;
}
.cid-ufpBxOY853 .link:hover rect {
  animation: qode-button-line 0.7s ease forwards;
}
.cid-ufpBxOY853 .link:hover path {
  animation: qode-button-cap 0.7s ease forwards;
}
@keyframes qode-button-cap-fake-out {
  0% {
    clip-path: inset(0 0 0 0);
  }
  49%,
  51% {
    clip-path: inset(50% 0 50% 0);
  }
  100% {
    clip-path: inset(0 0 0 0);
  }
}
@keyframes qode-button-line {
  0%,
  100% {
    transform: translateX(-13px) scaleX(1);
  }
  10% {
    transform: translateX(-13px) scaleX(1);
  }
  46%,
  55% {
    transform: translateX(0) scaleX(0.5);
  }
  99% {
    transform: translateX(-13px) scaleX(0.6);
  }
}
@keyframes qode-button-cap-out {
  0%,
  50% {
    transform: translateX(-35px) scaleX(-1);
  }
  100%,
  51% {
    transform: translateX(-13px) scaleX(1);
  }
}
@keyframes qode-button-cap {
  0% {
    -webkit-transform: translateX(-13px) scaleX(1);
    transform: translateX(-13px) scaleX(1);
    -webkit-clip-path: inset(0 0 0 0);
    clip-path: inset(0 0 0 0);
  }
  54% {
    -webkit-transform: translateX(-1px) scaleX(1);
    transform: translateX(-1px) scaleX(1);
    -webkit-clip-path: inset(50% 0 50% 0);
    clip-path: inset(50% 0 50% 0);
  }
  55% {
    -webkit-transform: translateX(-20px) scaleX(-1);
    transform: translateX(-20px) scaleX(-1);
    -webkit-clip-path: inset(50% 0 50% 0);
    clip-path: inset(50% 0 50% 0);
  }
  100% {
    -webkit-transform: translateX(-35px) scaleX(-1);
    transform: translateX(-35px) scaleX(-1);
    -webkit-clip-path: inset(0 0 0 0);
    clip-path: inset(0 0 0 0);
  }
}
.cid-ufpBxOY853 .card-heading,
.cid-ufpBxOY853 .link {
  color: #4c4c4c;
}
@media (max-width: 770px) {
  .cid-ufpBxOY853 .top {
    padding-top: 60px;
  }
}
@media (max-width: 575px) {
  .cid-ufpBxOY853 .top1 {
    padding-top: 60px;
  }
}
.cid-ufpLhlIWxg {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/background5.webp");
}
.cid-ufpLhlIWxg .mbr-iconfont {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
  color: #820cfe;
  margin-bottom: 2rem;
  width: 115px;
  height: 115px;
}
.cid-ufpLhlIWxg .card-wrapper {
  background: linear-gradient(0deg, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0.6) 100%);
  backdrop-filter: blur(3.5px);
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.1);
  border-radius: 30px;
  padding: 3rem 3rem;
  margin: 0;
  overflow: visible;
  transition: all 0.3s;
  position: relative;
  justify-content: center;
}
@media (max-width: 1400px) {
  .cid-ufpLhlIWxg .card-wrapper {
    padding: 3rem 1.5rem;
  }
}
@media (max-width: 767px) {
  .cid-ufpLhlIWxg .card-wrapper {
    padding: 2rem 1rem;
  }
}
@media (max-width: 992px) {
  .cid-ufpLhlIWxg .card-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-ufpLhlIWxg .card-wrapper:before {
  content: '';
  position: absolute;
  top: 0px;
  left: 0px;
  opacity: 0.3;
  height: 100%;
  width: 100%;
  border: 2px solid white;
  border-radius: 30px;
  pointer-events: none;
}
.cid-ufpLhlIWxg .card-wrapper:hover {
  transform: translateY(-5px);
}
.cid-ufpLhlIWxg .row {
  justify-content: center;
}
.cid-ufpLhlIWxg .card-text {
  color: #263d5a;
}
.cid-ufpLhlIWxg .card-title,
.cid-ufpLhlIWxg .iconfont-wrapper {
  color: #263d5a;
}
.cid-ufpLhlIWxg .mbr-section-subtitle {
  color: #263d5a;
}
.cid-ufpLhlIWxg .mbr-section-title {
  color: #263d5a;
}
.cid-ufpN6FehQU {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffe885;
}
.cid-ufpN6FehQU .date {
  margin: 67px 0 14px;
  color: #1d1d1f;
  font-weight: 700;
  text-align: center;
}
.cid-ufpN6FehQU .mbr-section-title {
  color: #000000;
  margin-bottom: 62px;
  font-weight: 700;
}
.cid-ufpN6FehQU .link {
  margin-top: 22px;
}
.cid-ufpN6FehQU .card-heading {
  line-height: 1.2;
  margin: 0px;
  font-weight: 500;
}
@media (max-width: 600px) {
  .cid-ufpN6FehQU .header {
    margin-bottom: 20px;
  }
  .cid-ufpN6FehQU .link {
    margin-top: 20px;
    margin-bottom: 20px;
    opacity: 1;
    transform: none;
  }
  .cid-ufpN6FehQU .button {
    text-align: left;
  }
}
@media (min-width: 600px) and (max-width: 1000px) {
  .cid-ufpN6FehQU .link {
    margin-bottom: 40px;
  }
}
.cid-ufpN6FehQU .mbr-section-btn {
  position: absolute;
  right: 0;
}
.cid-ufpN6FehQU .mbr-section-subtitle {
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 5px;
  color: #4c4c4c;
}
.cid-ufpN6FehQU .part {
  align-items: start;
}
.cid-ufpN6FehQU H3 {
  text-align: center;
}
.cid-ufpN6FehQU a {
  transition: color 0.2s ease-out, background-color 0.2s ease-out, border-color 0.2s ease-out;
}
.cid-ufpN6FehQU rect {
  transform: translateX(-13px);
  transform-origin: right;
  stroke: currentColor;
  stroke-width: .5;
}
.cid-ufpN6FehQU .qodef-button-cap-fake {
  animation: qode-button-cap-fake-out 0.35s linear;
}
.cid-ufpN6FehQU svg {
  margin-left: 15px;
}
.cid-ufpN6FehQU path {
  animation: qode-button-cap-out 0.35s ease-in-out;
  transform: translateX(-13px);
  transform-origin: right;
  fill: currentColor;
}
.cid-ufpN6FehQU .link:hover rect {
  animation: qode-button-line 0.7s ease forwards;
}
.cid-ufpN6FehQU .link:hover path {
  animation: qode-button-cap 0.7s ease forwards;
}
@keyframes qode-button-cap-fake-out {
  0% {
    clip-path: inset(0 0 0 0);
  }
  49%,
  51% {
    clip-path: inset(50% 0 50% 0);
  }
  100% {
    clip-path: inset(0 0 0 0);
  }
}
@keyframes qode-button-line {
  0%,
  100% {
    transform: translateX(-13px) scaleX(1);
  }
  10% {
    transform: translateX(-13px) scaleX(1);
  }
  46%,
  55% {
    transform: translateX(0) scaleX(0.5);
  }
  99% {
    transform: translateX(-13px) scaleX(0.6);
  }
}
@keyframes qode-button-cap-out {
  0%,
  50% {
    transform: translateX(-35px) scaleX(-1);
  }
  100%,
  51% {
    transform: translateX(-13px) scaleX(1);
  }
}
@keyframes qode-button-cap {
  0% {
    -webkit-transform: translateX(-13px) scaleX(1);
    transform: translateX(-13px) scaleX(1);
    -webkit-clip-path: inset(0 0 0 0);
    clip-path: inset(0 0 0 0);
  }
  54% {
    -webkit-transform: translateX(-1px) scaleX(1);
    transform: translateX(-1px) scaleX(1);
    -webkit-clip-path: inset(50% 0 50% 0);
    clip-path: inset(50% 0 50% 0);
  }
  55% {
    -webkit-transform: translateX(-20px) scaleX(-1);
    transform: translateX(-20px) scaleX(-1);
    -webkit-clip-path: inset(50% 0 50% 0);
    clip-path: inset(50% 0 50% 0);
  }
  100% {
    -webkit-transform: translateX(-35px) scaleX(-1);
    transform: translateX(-35px) scaleX(-1);
    -webkit-clip-path: inset(0 0 0 0);
    clip-path: inset(0 0 0 0);
  }
}
.cid-ufpN6FehQU .card-heading,
.cid-ufpN6FehQU .link {
  color: #4c4c4c;
}
@media (max-width: 770px) {
  .cid-ufpN6FehQU .top {
    padding-top: 60px;
  }
}
@media (max-width: 575px) {
  .cid-ufpN6FehQU .top1 {
    padding-top: 60px;
  }
}
.cid-ufpP5IAPTS {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffe885;
}
@media (min-width: 992px) {
  .cid-ufpP5IAPTS .wrapper {
    position: relative;
    overflow: hidden;
    max-height: 585px;
    padding-left: 30px;
    padding-right: 20px;
  }
}
.cid-ufpP5IAPTS img {
  object-fit: cover;
  max-height: 585px;
}
.cid-ufpP5IAPTS .wrap {
  border: 1px solid #41392e;
}
@media (min-width: 992px) {
  .cid-ufpP5IAPTS .wrap {
    height: 100%;
    padding: 65px 2rem 0px;
  }
}
@media (min-width: 1400px) {
  .cid-ufpP5IAPTS .wrap {
    max-height: 100%;
    padding-top: 8rem;
  }
}
@media (min-width: 1800px) {
  .cid-ufpP5IAPTS .wrap {
    max-height: 585px;
    padding: 160px 225px 0 130px;
  }
}
@media (max-width: 991px) {
  .cid-ufpP5IAPTS .wrap {
    padding: 2rem 1rem;
    margin-top: 2rem;
  }
}
.cid-ufpP5IAPTS .card-text {
  color: #767676;
}
.cid-ufpP5IAPTS .main-sub-title {
  color: #ffffff;
}
.cid-ufpP5IAPTS .main-text {
  font-family: "EB Garamond";
  color: #c0bcb7;
}
.cid-ufpP5IAPTS .btn {
  font-family: "Cormorant Garamond";
  padding: 0.8rem 4rem;
  position: relative;
  -webkit-box-shadow: preserve-3d;
  -moz-box-shadow: preserve-3d;
  transform-style: preserve-3d;
}
.cid-ufpP5IAPTS span {
  -webkit-box-shadow: translateZ(-1px);
  -moz-box-shadow: translateZ(-1px);
  transform: translateZ(-1px);
  position: absolute;
  width: 105%;
  height: 85%;
  border: 1px solid #41392e;
}
.cid-ufpP5IAPTS span::before {
  content: "";
  left: 0;
  position: absolute;
  width: 100%;
  height: 100%;
  border-top: 1px solid #41392e;
  border-left: 1px solid #41392e;
  transform-origin: top left;
  transform: scale3d(0, 0, 1);
  transition: all 0.7s;
}
.cid-ufpP5IAPTS span::after {
  content: "";
  right: -1px;
  position: absolute;
  width: 100%;
  height: 101%;
  transform-origin: bottom right;
  border-bottom: 1px solid #41392e;
  border-right: 1px solid #41392e;
  transform: scale3d(0, 0, 1);
  transition: all 0.7s;
}
.cid-ufpP5IAPTS .btn:hover span::before {
  border-top: 1px solid #a148ff;
  border-left: 1px solid #a148ff;
  transform: scale3d(1, 1, 1);
}
.cid-ufpP5IAPTS .btn:hover span::after {
  border-bottom: 1px solid #a148ff;
  border-right: 1px solid #a148ff;
  transform: scale3d(1, 1, 1);
}
.cid-ufpP5IAPTS .main-title {
  color: #000000;
}
.cid-ufpP5IAPTS .main-text,
.cid-ufpP5IAPTS .link-align-wrapper,
.cid-ufpP5IAPTS .mbr-section-btn {
  color: #000000;
}
.cid-ufpQkfOwID {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffe885;
}
.cid-ufpQkfOwID .card-wrapper {
  background: linear-gradient(0deg, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0.6) 100%);
  backdrop-filter: blur(3.5px);
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.1);
  border-radius: 30px;
  padding: 3rem 3rem;
  margin: 0;
  overflow: visible;
  position: relative;
  justify-content: center;
}
@media (max-width: 767px) {
  .cid-ufpQkfOwID .card-wrapper {
    padding: 2rem 1rem;
  }
}
.cid-ufpQkfOwID .card-wrapper:before {
  content: '';
  position: absolute;
  top: 0px;
  left: 0px;
  opacity: 0.3;
  height: 100%;
  width: 100%;
  border: 2px solid white;
  border-radius: 30px;
  pointer-events: none;
}
.cid-ufpQkfOwID .mbr-text,
.cid-ufpQkfOwID .mbr-section-btn {
  color: #263d5a;
}
.cid-ufpQkfOwID .mbr-section-title {
  color: #263d5a;
}
.cid-ufpRSAymgp {
  padding-top: 90px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/background7.webp");
}
.cid-ufpRSAymgp .header-text {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-ufpRSAymgp .row {
  max-width: 900px;
  margin: auto;
  background: linear-gradient(0deg, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0.6) 100%);
  backdrop-filter: blur(3.5px);
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.1);
  border-radius: 30px;
  padding: 4rem 3rem;
  overflow: visible;
  position: relative;
}
@media (max-width: 767px) {
  .cid-ufpRSAymgp .row {
    padding: 2rem 1rem;
  }
}
.cid-ufpRSAymgp .row:before {
  content: '';
  position: absolute;
  top: 0px;
  left: 0px;
  opacity: 0.3;
  height: 100%;
  width: 100%;
  border: 2px solid white;
  border-radius: 30px;
  pointer-events: none;
}
.cid-ufpRSAymgp .card-header {
  border-bottom: 1px solid #e4e4e4;
  margin-bottom: 0px!important;
}
.cid-ufpRSAymgp span {
  transform: rotate(45deg);
  transition: all 0.3s;
}
.cid-ufpRSAymgp .collapsed span {
  transform: rotate(0deg);
}
.cid-ufpRSAymgp .accordion-content {
  -webkit-flex-basis: 100%;
  flex-basis: 100%;
}
.cid-ufpRSAymgp .panel-group {
  width: 100%;
}
.cid-ufpRSAymgp .sign {
  color: currentColor;
  font-family: 'Moririse2' !important;
}
.cid-ufpRSAymgp .card {
  border-radius: 0px;
}
.cid-ufpRSAymgp .card .card-header {
  border-radius: 0px;
  padding: 0;
  background-color: transparent;
}
.cid-ufpRSAymgp .card .card-header a.panel-title {
  -webkit-justify-content: space-between;
  justify-content: space-between;
  transition: all .3s;
  margin-bottom: 0;
  font-style: normal;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  text-decoration: none !important;
  line-height: normal;
}
.cid-ufpRSAymgp .card .card-header a.panel-title:focus {
  text-decoration: none !important;
}
.cid-ufpRSAymgp .card .card-header a.panel-title h4 {
  padding: 1.5rem 1rem 13px 0px;
  margin-bottom: 0;
}
.cid-ufpRSAymgp .panel-text {
  color: #263d5a;
}
.cid-ufpRSAymgp .header-text,
.cid-ufpRSAymgp .sign {
  color: #263d5a;
  text-align: right;
}
.cid-ufpRSAymgp .mbr-section-title {
  color: #263d5a;
}
.cid-ufpRSAymgp .header-text,
.cid-ufpRSAymgp .sign,
.cid-ufpRSAymgp .card-header {
  color: #263d5a;
}
.cid-ufpRSAymgp .mbr-section-subtitle {
  color: #263d5a;
}
.cid-tIdFw9DCBj {
  padding-top: 7rem;
  padding-bottom: 2rem;
  background-color: #232323;
}
.cid-tIdFw9DCBj .row-links {
  width: 100%;
  justify-content: center;
}
.cid-tIdFw9DCBj .social-row {
  width: 100%;
  justify-content: center;
}
.cid-tIdFw9DCBj .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-tIdFw9DCBj .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-tIdFw9DCBj .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-tIdFw9DCBj .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-tIdFw9DCBj .media-container-row .social-list {
  width: auto;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-tIdFw9DCBj .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-tIdFw9DCBj .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-tIdFw9DCBj .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-tIdFw9DCBj .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-tIdFw9DCBj .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-tIdFw9DCBj .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-tIdFw9DCBj .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-tIdFDPZyrT.popup-builder {
  background-color: #ffffff;
}
.cid-tIdFDPZyrT.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-tIdFDPZyrT.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-tIdFDPZyrT .modal-content,
.cid-tIdFDPZyrT .modal-dialog {
  height: auto;
}
.cid-tIdFDPZyrT .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-tIdFDPZyrT .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-tIdFDPZyrT .form-wrapper .mbr-form .form-group,
  .cid-tIdFDPZyrT .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-tIdFDPZyrT .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-tIdFDPZyrT .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-tIdFDPZyrT .mbr-text {
  text-align: center;
  color: #000000;
}
.cid-tIdFDPZyrT .pt-0 {
  padding-top: 0 !important;
}
.cid-tIdFDPZyrT .pb-0 {
  padding-bottom: 0 !important;
}
.cid-tIdFDPZyrT .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-tIdFDPZyrT .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-tIdFDPZyrT .modal-open {
  overflow: hidden;
}
.cid-tIdFDPZyrT .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-tIdFDPZyrT .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-tIdFDPZyrT .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-tIdFDPZyrT .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-tIdFDPZyrT .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-tIdFDPZyrT .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-tIdFDPZyrT .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-tIdFDPZyrT .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-tIdFDPZyrT .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-tIdFDPZyrT .modal-backdrop.fade {
  opacity: 0;
}
.cid-tIdFDPZyrT .modal-backdrop.show {
  opacity: .5;
}
.cid-tIdFDPZyrT .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 1rem;
  border-bottom: none;
}
.cid-tIdFDPZyrT .modal-header .close {
  position: absolute;
  top: auto;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-tIdFDPZyrT .modal-header .close:hover {
  opacity: 1;
}
.cid-tIdFDPZyrT .modal-header .close:focus {
  outline: none;
}
.cid-tIdFDPZyrT .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
}
.cid-tIdFDPZyrT .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  padding: 1rem;
  min-height: 100%;
}
.cid-tIdFDPZyrT .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 1rem;
  border-top: none;
  text-align: center;
}
.cid-tIdFDPZyrT .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-tIdFDPZyrT .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-tIdFDPZyrT .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-tIdFDPZyrT .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-tIdFDPZyrT .modal-sm {
    max-width: 300px;
  }
  .cid-tIdFDPZyrT .container {
    max-width: 540px;
  }
}
@media (min-width: 992px) {
  .cid-tIdFDPZyrT .modal-lg,
  .cid-tIdFDPZyrT .modal-xl {
    max-width: 800px;
  }
  .cid-tIdFDPZyrT .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .cid-tIdFDPZyrT .modal-xl {
    max-width: 1140px;
  }
  .cid-tIdFDPZyrT .container {
    max-width: 1140px;
  }
}
.cid-tIdFDPZyrT .container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 768px) {
  .cid-tIdFDPZyrT .container {
    max-width: 720px;
  }
}
.cid-tIdFDPZyrT .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-tIdFDPZyrT .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-tIdFDPZyrT .form-group {
  margin-bottom: 1rem;
}
.cid-tIdFDPZyrT .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-tIdFDPZyrT .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-tIdFDPZyrT .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-tIdKvCCRKV.popup-builder {
  background-color: #ffffff;
}
.cid-tIdKvCCRKV.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-tIdKvCCRKV.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-tIdKvCCRKV .modal-content,
.cid-tIdKvCCRKV .modal-dialog {
  height: auto;
}
.cid-tIdKvCCRKV .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-tIdKvCCRKV .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-tIdKvCCRKV .form-wrapper .mbr-form .form-group,
  .cid-tIdKvCCRKV .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-tIdKvCCRKV .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-tIdKvCCRKV .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-tIdKvCCRKV .mbr-text {
  text-align: center;
}
.cid-tIdKvCCRKV .pt-0 {
  padding-top: 0 !important;
}
.cid-tIdKvCCRKV .pb-0 {
  padding-bottom: 0 !important;
}
.cid-tIdKvCCRKV .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-tIdKvCCRKV .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-tIdKvCCRKV .modal-open {
  overflow: hidden;
}
.cid-tIdKvCCRKV .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-tIdKvCCRKV .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-tIdKvCCRKV .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-tIdKvCCRKV .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-tIdKvCCRKV .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-tIdKvCCRKV .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-tIdKvCCRKV .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-tIdKvCCRKV .modal-content {
  background: #55b4d4;
  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-tIdKvCCRKV .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-tIdKvCCRKV .modal-backdrop.fade {
  opacity: 0;
}
.cid-tIdKvCCRKV .modal-backdrop.show {
  opacity: .5;
}
.cid-tIdKvCCRKV .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 1rem;
  border-bottom: none;
}
.cid-tIdKvCCRKV .modal-header .close {
  position: absolute;
  top: auto;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-tIdKvCCRKV .modal-header .close:hover {
  opacity: 1;
}
.cid-tIdKvCCRKV .modal-header .close:focus {
  outline: none;
}
.cid-tIdKvCCRKV .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
  color: #000000;
}
.cid-tIdKvCCRKV .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  padding: 1rem;
  min-height: 100%;
}
.cid-tIdKvCCRKV .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 1rem;
  border-top: none;
  text-align: center;
}
.cid-tIdKvCCRKV .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-tIdKvCCRKV .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-tIdKvCCRKV .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-tIdKvCCRKV .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-tIdKvCCRKV .modal-sm {
    max-width: 300px;
  }
  .cid-tIdKvCCRKV .container {
    max-width: 540px;
  }
}
@media (min-width: 992px) {
  .cid-tIdKvCCRKV .modal-lg,
  .cid-tIdKvCCRKV .modal-xl {
    max-width: 800px;
  }
  .cid-tIdKvCCRKV .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .cid-tIdKvCCRKV .modal-xl {
    max-width: 1140px;
  }
  .cid-tIdKvCCRKV .container {
    max-width: 1140px;
  }
}
.cid-tIdKvCCRKV .container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 768px) {
  .cid-tIdKvCCRKV .container {
    max-width: 720px;
  }
}
.cid-tIdKvCCRKV .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-tIdKvCCRKV .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-tIdKvCCRKV .form-group {
  margin-bottom: 1rem;
}
.cid-tIdKvCCRKV .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-tIdKvCCRKV .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-tIdKvCCRKV .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-ufpldox8ex.popup-builder {
  background-color: #ffffff;
}
.cid-ufpldox8ex.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-ufpldox8ex.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-ufpldox8ex .modal-content,
.cid-ufpldox8ex .modal-dialog {
  height: auto;
}
.cid-ufpldox8ex .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-ufpldox8ex .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-ufpldox8ex .form-wrapper .mbr-form .form-group,
  .cid-ufpldox8ex .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-ufpldox8ex .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-ufpldox8ex .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-ufpldox8ex .mbr-text {
  text-align: center;
}
.cid-ufpldox8ex .pt-0 {
  padding-top: 0 !important;
}
.cid-ufpldox8ex .pb-0 {
  padding-bottom: 0 !important;
}
.cid-ufpldox8ex .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-ufpldox8ex .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-ufpldox8ex .modal-open {
  overflow: hidden;
}
.cid-ufpldox8ex .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-ufpldox8ex .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-ufpldox8ex .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-ufpldox8ex .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-ufpldox8ex .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-ufpldox8ex .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-ufpldox8ex .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-ufpldox8ex .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-ufpldox8ex .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-ufpldox8ex .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-ufpldox8ex .modal-backdrop.fade {
  opacity: 0;
}
.cid-ufpldox8ex .modal-backdrop.show {
  opacity: .5;
}
.cid-ufpldox8ex .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-ufpldox8ex .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-ufpldox8ex .modal-header {
    padding: 1rem;
  }
}
.cid-ufpldox8ex .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-ufpldox8ex .modal-header .close svg {
  fill: #353535;
}
.cid-ufpldox8ex .modal-header .close:hover {
  opacity: 1;
}
.cid-ufpldox8ex .modal-header .close:focus {
  outline: none;
}
.cid-ufpldox8ex .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
}
.cid-ufpldox8ex .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-ufpldox8ex .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-ufpldox8ex .modal-body {
    padding: 1rem;
  }
}
.cid-ufpldox8ex .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-ufpldox8ex .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-ufpldox8ex .modal-footer {
    padding: 1rem;
  }
}
.cid-ufpldox8ex .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-ufpldox8ex .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-ufpldox8ex .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-ufpldox8ex .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-ufpldox8ex .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-ufpldox8ex .modal-lg,
  .cid-ufpldox8ex .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-ufpldox8ex .modal-xl {
    max-width: 1140px;
  }
}
.cid-ufpldox8ex .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-ufpldox8ex .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-ufpldox8ex .form-group {
  margin-bottom: 1rem;
}
.cid-ufpldox8ex .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-ufpldox8ex .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-ufpldox8ex .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-ufpldox8ex .mbr-section-btn {
  margin: 0;
}
.cid-ufpldox8ex .mbr-section-btn .btn {
  margin: 0;
}
.cid-ufpmnrEvYG.popup-builder {
  background-color: #ffffff;
}
.cid-ufpmnrEvYG.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-ufpmnrEvYG.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-ufpmnrEvYG .modal-content,
.cid-ufpmnrEvYG .modal-dialog {
  height: auto;
}
.cid-ufpmnrEvYG .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-ufpmnrEvYG .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-ufpmnrEvYG .form-wrapper .mbr-form .form-group,
  .cid-ufpmnrEvYG .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-ufpmnrEvYG .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-ufpmnrEvYG .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-ufpmnrEvYG .mbr-text {
  text-align: center;
}
.cid-ufpmnrEvYG .pt-0 {
  padding-top: 0 !important;
}
.cid-ufpmnrEvYG .pb-0 {
  padding-bottom: 0 !important;
}
.cid-ufpmnrEvYG .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-ufpmnrEvYG .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-ufpmnrEvYG .modal-open {
  overflow: hidden;
}
.cid-ufpmnrEvYG .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-ufpmnrEvYG .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-ufpmnrEvYG .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-ufpmnrEvYG .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-ufpmnrEvYG .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-ufpmnrEvYG .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-ufpmnrEvYG .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-ufpmnrEvYG .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-ufpmnrEvYG .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-ufpmnrEvYG .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-ufpmnrEvYG .modal-backdrop.fade {
  opacity: 0;
}
.cid-ufpmnrEvYG .modal-backdrop.show {
  opacity: .5;
}
.cid-ufpmnrEvYG .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-ufpmnrEvYG .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-ufpmnrEvYG .modal-header {
    padding: 1rem;
  }
}
.cid-ufpmnrEvYG .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-ufpmnrEvYG .modal-header .close svg {
  fill: #353535;
}
.cid-ufpmnrEvYG .modal-header .close:hover {
  opacity: 1;
}
.cid-ufpmnrEvYG .modal-header .close:focus {
  outline: none;
}
.cid-ufpmnrEvYG .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
}
.cid-ufpmnrEvYG .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-ufpmnrEvYG .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-ufpmnrEvYG .modal-body {
    padding: 1rem;
  }
}
.cid-ufpmnrEvYG .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-ufpmnrEvYG .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-ufpmnrEvYG .modal-footer {
    padding: 1rem;
  }
}
.cid-ufpmnrEvYG .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-ufpmnrEvYG .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-ufpmnrEvYG .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-ufpmnrEvYG .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-ufpmnrEvYG .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-ufpmnrEvYG .modal-lg,
  .cid-ufpmnrEvYG .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-ufpmnrEvYG .modal-xl {
    max-width: 1140px;
  }
}
.cid-ufpmnrEvYG .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-ufpmnrEvYG .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-ufpmnrEvYG .form-group {
  margin-bottom: 1rem;
}
.cid-ufpmnrEvYG .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-ufpmnrEvYG .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-ufpmnrEvYG .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-ufpmnrEvYG .mbr-section-btn {
  margin: 0;
}
.cid-ufpmnrEvYG .mbr-section-btn .btn {
  margin: 0;
}
.cid-ufpnh3um5h.popup-builder {
  background-color: #ffffff;
}
.cid-ufpnh3um5h.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-ufpnh3um5h.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-ufpnh3um5h .modal-content,
.cid-ufpnh3um5h .modal-dialog {
  height: auto;
}
.cid-ufpnh3um5h .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-ufpnh3um5h .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-ufpnh3um5h .form-wrapper .mbr-form .form-group,
  .cid-ufpnh3um5h .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-ufpnh3um5h .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-ufpnh3um5h .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-ufpnh3um5h .mbr-text {
  text-align: center;
}
.cid-ufpnh3um5h .pt-0 {
  padding-top: 0 !important;
}
.cid-ufpnh3um5h .pb-0 {
  padding-bottom: 0 !important;
}
.cid-ufpnh3um5h .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-ufpnh3um5h .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-ufpnh3um5h .modal-open {
  overflow: hidden;
}
.cid-ufpnh3um5h .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-ufpnh3um5h .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-ufpnh3um5h .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-ufpnh3um5h .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-ufpnh3um5h .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-ufpnh3um5h .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-ufpnh3um5h .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-ufpnh3um5h .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-ufpnh3um5h .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-ufpnh3um5h .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-ufpnh3um5h .modal-backdrop.fade {
  opacity: 0;
}
.cid-ufpnh3um5h .modal-backdrop.show {
  opacity: .5;
}
.cid-ufpnh3um5h .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-ufpnh3um5h .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-ufpnh3um5h .modal-header {
    padding: 1rem;
  }
}
.cid-ufpnh3um5h .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-ufpnh3um5h .modal-header .close svg {
  fill: #353535;
}
.cid-ufpnh3um5h .modal-header .close:hover {
  opacity: 1;
}
.cid-ufpnh3um5h .modal-header .close:focus {
  outline: none;
}
.cid-ufpnh3um5h .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
}
.cid-ufpnh3um5h .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-ufpnh3um5h .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-ufpnh3um5h .modal-body {
    padding: 1rem;
  }
}
.cid-ufpnh3um5h .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-ufpnh3um5h .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-ufpnh3um5h .modal-footer {
    padding: 1rem;
  }
}
.cid-ufpnh3um5h .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-ufpnh3um5h .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-ufpnh3um5h .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-ufpnh3um5h .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-ufpnh3um5h .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-ufpnh3um5h .modal-lg,
  .cid-ufpnh3um5h .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-ufpnh3um5h .modal-xl {
    max-width: 1140px;
  }
}
.cid-ufpnh3um5h .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-ufpnh3um5h .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-ufpnh3um5h .form-group {
  margin-bottom: 1rem;
}
.cid-ufpnh3um5h .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-ufpnh3um5h .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-ufpnh3um5h .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-ufpnh3um5h .mbr-section-btn {
  margin: 0;
}
.cid-ufpnh3um5h .mbr-section-btn .btn {
  margin: 0;
}
.cid-ufpoif5jjc.popup-builder {
  background-color: #ffffff;
}
.cid-ufpoif5jjc.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-ufpoif5jjc.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-ufpoif5jjc .modal-content,
.cid-ufpoif5jjc .modal-dialog {
  height: auto;
}
.cid-ufpoif5jjc .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-ufpoif5jjc .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-ufpoif5jjc .form-wrapper .mbr-form .form-group,
  .cid-ufpoif5jjc .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-ufpoif5jjc .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-ufpoif5jjc .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-ufpoif5jjc .mbr-text {
  text-align: center;
}
.cid-ufpoif5jjc .pt-0 {
  padding-top: 0 !important;
}
.cid-ufpoif5jjc .pb-0 {
  padding-bottom: 0 !important;
}
.cid-ufpoif5jjc .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-ufpoif5jjc .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-ufpoif5jjc .modal-open {
  overflow: hidden;
}
.cid-ufpoif5jjc .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-ufpoif5jjc .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-ufpoif5jjc .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-ufpoif5jjc .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-ufpoif5jjc .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-ufpoif5jjc .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-ufpoif5jjc .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-ufpoif5jjc .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-ufpoif5jjc .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-ufpoif5jjc .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-ufpoif5jjc .modal-backdrop.fade {
  opacity: 0;
}
.cid-ufpoif5jjc .modal-backdrop.show {
  opacity: .5;
}
.cid-ufpoif5jjc .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-ufpoif5jjc .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-ufpoif5jjc .modal-header {
    padding: 1rem;
  }
}
.cid-ufpoif5jjc .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-ufpoif5jjc .modal-header .close svg {
  fill: #353535;
}
.cid-ufpoif5jjc .modal-header .close:hover {
  opacity: 1;
}
.cid-ufpoif5jjc .modal-header .close:focus {
  outline: none;
}
.cid-ufpoif5jjc .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
}
.cid-ufpoif5jjc .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-ufpoif5jjc .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-ufpoif5jjc .modal-body {
    padding: 1rem;
  }
}
.cid-ufpoif5jjc .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-ufpoif5jjc .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-ufpoif5jjc .modal-footer {
    padding: 1rem;
  }
}
.cid-ufpoif5jjc .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-ufpoif5jjc .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-ufpoif5jjc .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-ufpoif5jjc .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-ufpoif5jjc .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-ufpoif5jjc .modal-lg,
  .cid-ufpoif5jjc .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-ufpoif5jjc .modal-xl {
    max-width: 1140px;
  }
}
.cid-ufpoif5jjc .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-ufpoif5jjc .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-ufpoif5jjc .form-group {
  margin-bottom: 1rem;
}
.cid-ufpoif5jjc .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-ufpoif5jjc .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-ufpoif5jjc .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-ufpoif5jjc .mbr-section-btn {
  margin: 0;
}
.cid-ufpoif5jjc .mbr-section-btn .btn {
  margin: 0;
}
.cid-ufoRBqpH5e {
  z-index: 1000;
  width: 100%;
}
.cid-ufoRBqpH5e nav.navbar {
  position: fixed;
}
.cid-ufoRBqpH5e .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-ufoRBqpH5e .dropdown-menu {
  padding: 15px 0;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-ufoRBqpH5e .dropdown-item {
  position: relative !important;
  padding: 2px 40px !important;
}
.cid-ufoRBqpH5e .dropdown-item:after {
  right: 1rem !important;
}
.cid-ufoRBqpH5e .dropdown-item:before {
  content: "";
  display: block !important;
  position: absolute;
  left: 40px;
  bottom: 2px;
  top: auto !important;
  height: 1px;
  width: 0;
  overflow: visible !important;
  transform: scale(1) !important;
  background-color: currentColor;
  transition: 0.4s cubic-bezier(0.33, 0.52, 0.05, 0.96);
}
.cid-ufoRBqpH5e .dropdown-item:hover:before,
.cid-ufoRBqpH5e .dropdown-item:focus:before {
  width: calc(100% - 80px);
}
.cid-ufoRBqpH5e .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-ufoRBqpH5e .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-ufoRBqpH5e .nav-link {
  position: relative;
}
.cid-ufoRBqpH5e .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-ufoRBqpH5e .container {
    flex-wrap: nowrap;
  }
}
.cid-ufoRBqpH5e .navbar-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  margin-right: auto;
  min-height: 98px;
}
.cid-ufoRBqpH5e .navbar-nav .nav-item {
  margin: 0;
}
.cid-ufoRBqpH5e .navbar-nav .nav-link {
  position: relative;
  padding: 0 !important;
  margin: 10px 20px !important;
  transition: .4s all;
  font-weight: 700 !important;
}
.cid-ufoRBqpH5e .navbar-nav .nav-link:before {
  content: "";
  display: block !important;
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  width: 0;
  background-color: currentColor;
  transition: 0.4s cubic-bezier(0.33, 0.52, 0.05, 0.96);
}
.cid-ufoRBqpH5e .navbar-nav .nav-link:hover:before {
  width: 100%;
}
.cid-ufoRBqpH5e .dropdown-menu,
.cid-ufoRBqpH5e .navbar.opened {
  background: #ffffff !important;
}
.cid-ufoRBqpH5e .nav-item:focus,
.cid-ufoRBqpH5e .nav-link:focus {
  outline: none;
}
.cid-ufoRBqpH5e .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-ufoRBqpH5e .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-ufoRBqpH5e .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-ufoRBqpH5e .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-ufoRBqpH5e .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-ufoRBqpH5e .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-ufoRBqpH5e .navbar {
  min-height: 100px;
  transition: all 0.3s;
  border-bottom: none !important;
  background: rgba(255, 255, 255, 0.2);
  box-shadow: none !important;
  padding: 0 !important;
}
.cid-ufoRBqpH5e .navbar.opened {
  transition: all 0.3s;
}
.cid-ufoRBqpH5e .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-ufoRBqpH5e .navbar .navbar-logo {
  margin-right: 0.5rem !important;
}
.cid-ufoRBqpH5e .navbar .navbar-logo img {
  width: auto;
}
.cid-ufoRBqpH5e .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-ufoRBqpH5e .navbar.collapsed {
  justify-content: center;
}
.cid-ufoRBqpH5e .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-ufoRBqpH5e .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-ufoRBqpH5e .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.7rem);
  }
}
.cid-ufoRBqpH5e .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-ufoRBqpH5e .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-ufoRBqpH5e .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-ufoRBqpH5e .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-ufoRBqpH5e .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-ufoRBqpH5e .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-ufoRBqpH5e .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-ufoRBqpH5e .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-ufoRBqpH5e .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-ufoRBqpH5e .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-ufoRBqpH5e .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-ufoRBqpH5e .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-ufoRBqpH5e .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-ufoRBqpH5e .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-ufoRBqpH5e .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-ufoRBqpH5e .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-ufoRBqpH5e .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-ufoRBqpH5e .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-ufoRBqpH5e .navbar.navbar-short {
  min-height: 100px;
}
.cid-ufoRBqpH5e .navbar.navbar-short .navbar-brand {
  min-height: 98px;
  padding: 0;
}
.cid-ufoRBqpH5e .navbar-brand {
  min-height: 98px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
  padding-right: 50px !important;
}
.cid-ufoRBqpH5e .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-ufoRBqpH5e .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-ufoRBqpH5e .dropdown-item.active,
.cid-ufoRBqpH5e .dropdown-item:active {
  background-color: transparent;
}
.cid-ufoRBqpH5e .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-ufoRBqpH5e .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-ufoRBqpH5e .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-ufoRBqpH5e .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-ufoRBqpH5e .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-ufoRBqpH5e .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-ufoRBqpH5e ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-ufoRBqpH5e .navbar-buttons {
  text-align: center;
}
.cid-ufoRBqpH5e button.navbar-toggler {
  outline: none;
  width: 24px;
  height: 24px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  padding: 0 !important;
  border: none !important;
}
.cid-ufoRBqpH5e button.navbar-toggler .hamburger div {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: absolute;
  right: 0;
  width: 100%;
  height: 4px;
  background-color: transparent;
  opacity: 1;
}
.cid-ufoRBqpH5e button.navbar-toggler .hamburger div:nth-child(1) {
  top: 0;
  transition: all 0.3s;
}
.cid-ufoRBqpH5e button.navbar-toggler .hamburger div:nth-child(2) {
  top: 10px;
  transition: all 0.25s;
}
.cid-ufoRBqpH5e button.navbar-toggler .hamburger div:nth-child(3) {
  top: 10px;
  transition: all 0.25s;
}
.cid-ufoRBqpH5e button.navbar-toggler .hamburger div:nth-child(4) {
  top: 20px;
  transition: all 0.3s;
}
.cid-ufoRBqpH5e button.navbar-toggler .hamburger span {
  width: 4px;
  height: 4px;
  background-color: #a148ff;
  border-radius: 50%;
}
.cid-ufoRBqpH5e button.navbar-toggler:hover .hamburger div:nth-child(1) {
  top: 10px;
  opacity: 0;
  transition: all 0.3s;
}
.cid-ufoRBqpH5e button.navbar-toggler:hover .hamburger div:nth-child(2) {
  top: 10px;
  transition: all 0.25s;
  opacity: 1;
}
.cid-ufoRBqpH5e button.navbar-toggler:hover .hamburger div:nth-child(3) {
  top: 10px;
  opacity: 1;
  transition: all 0.25s;
}
.cid-ufoRBqpH5e button.navbar-toggler:hover .hamburger div:nth-child(4) {
  top: 10px;
  opacity: 0;
  transition: all 0.3s;
}
.cid-ufoRBqpH5e nav.opened .hamburger div:nth-child(1) {
  top: 10px;
  opacity: 0;
}
.cid-ufoRBqpH5e nav.opened .hamburger div:nth-child(2) {
  top: 10px;
  opacity: 1;
  transform: rotate(45deg);
  background-color: #a148ff;
}
.cid-ufoRBqpH5e nav.opened .hamburger div:nth-child(3) {
  top: 10px;
  opacity: 1;
  transform: rotate(-45deg);
  background-color: #a148ff;
}
.cid-ufoRBqpH5e nav.opened .hamburger div:nth-child(4) {
  top: 10px;
  opacity: 0;
  transition: all 0.3s;
}
.cid-ufoRBqpH5e nav.opened button.navbar-toggler:hover {
  transform: rotate(90deg);
}
.cid-ufoRBqpH5e .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-ufoRBqpH5e a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-ufoRBqpH5e .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-ufoRBqpH5e .navbar {
    height: 70px;
  }
  .cid-ufoRBqpH5e .navbar.opened {
    height: auto;
  }
  .cid-ufoRBqpH5e .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-ufoRBqpH5e .container,
.cid-ufoRBqpH5e .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-ufoRBqpH5e .container,
  .cid-ufoRBqpH5e .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-ufoRBqpH5e .container-fluid {
  max-width: 100%;
  padding: 0 60px;
}
.cid-ufoRBqpH5e .navbar-collapse {
  min-height: 98px;
}
.cid-ufoRBqpH5e .mbr-section-btn {
  max-width: 35%;
}
.cid-ufoRBqpH5e .mbr-section-btn .btn {
  min-width: auto;
  max-width: 100%;
}
@media (max-width: 991px) {
  .cid-ufoRBqpH5e {
    min-height: 70px !important;
  }
  .cid-ufoRBqpH5e .navbar {
    min-height: 70px !important;
  }
  .cid-ufoRBqpH5e .container-fluid {
    padding: 0 7%;
  }
  .cid-ufoRBqpH5e .navbar-brand {
    width: calc(100% - 24px) !important;
    min-height: 68px !important;
    padding-right: 0 !important;
  }
  .cid-ufoRBqpH5e .navbar-collapse {
    width: 100%;
    min-height: auto;
    padding-bottom: 30px;
    order: 5;
  }
  .cid-ufoRBqpH5e .navbar-nav {
    width: 100%;
    padding-top: 30px;
    align-items: flex-start;
  }
  .cid-ufoRBqpH5e .navbar-nav li {
    margin: 0 !important;
  }
  .cid-ufoRBqpH5e .navbar-nav .nav-link {
    width: max-content !important;
    max-width: 100% !important;
    margin: 5px 0 !important;
  }
  .cid-ufoRBqpH5e .navbar .navbar-collapse .dropdown .dropdown-menu {
    padding: 8px 0 !important;
    box-shadow: none !important;
    background: transparent !important;
    border: none !important;
  }
  .cid-ufoRBqpH5e .navbar .navbar-collapse .dropdown .dropdown-menu .dropdown-item {
    padding: 2px 0 !important;
    width: max-content !important;
    max-width: 100% !important;
  }
  .cid-ufoRBqpH5e .navbar .navbar-collapse .dropdown .dropdown-menu .dropdown-item:before {
    left: 0 !important;
    bottom: 2px !important;
  }
  .cid-ufoRBqpH5e .navbar .navbar-collapse .dropdown .dropdown-menu .dropdown-item:hover:before {
    width: 100% !important;
  }
  .cid-ufoRBqpH5e .mbr-section-btn {
    max-width: 100%;
    margin-top: 10px;
  }
}
.cid-ufvCR0d0HD {
  display: flex;
  padding-top: 6rem;
  padding-bottom: 0rem;
  background-color: #fffcee;
}
.cid-ufvCR0d0HD .mbr-fallback-image.disabled {
  display: none;
}
.cid-ufvCR0d0HD .dot {
  margin-top: 0.8rem;
  width: 20px;
  height: 20px;
  background: #a148ff;
  border-radius: 50%;
  margin-bottom: 1rem;
}
.cid-ufvCR0d0HD h1 {
  margin-bottom: 5rem;
}
@media (max-width: 992px) {
  .cid-ufvCR0d0HD h1 {
    margin-bottom: 1rem;
  }
}
.cid-ufvCR0d0HD p {
  margin-right: 0;
  margin-left: auto;
}
@media (max-width: 992px) {
  .cid-ufvCR0d0HD p {
    margin-bottom: 2rem;
  }
}
.cid-ufvCR0d0HD .line {
  width: 100%;
  height: 1px;
  background: currentColor;
  margin-bottom: 3rem;
}
.cid-ufvCR0d0HD .image-wrapper,
.cid-ufvCR0d0HD img {
  height: 100%;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-ufvCR0d0HD .image-wrapper,
  .cid-ufvCR0d0HD img {
    padding-bottom: 0.5rem;
  }
}
.cid-ufvCR0d0HD .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-ufvCR0d0HD .content-wrap {
    min-width: 50%;
  }
}
@media (max-width: 767px) {
  .cid-ufvCR0d0HD {
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-ufvCR0d0HD .mbr-row {
    -webkit-justify-content: center;
    justify-content: center;
  }
  .cid-ufvCR0d0HD .content-wrap {
    width: 100%;
  }
}
.cid-ufvCR0d0HD .mbr-section-subtitle,
.cid-ufvCR0d0HD .line {
  color: #291f1e;
}
.cid-ufvCR0d0HD .mbr-text,
.cid-ufvCR0d0HD .mbr-section-btn {
  text-align: right;
  color: #291f1e;
}
.cid-ufvCR0d0HD .mbr-section-title {
  color: #291f1e;
}
.cid-ufvCR0d0HD .mbr-section-title,
.cid-ufvCR0d0HD .mbr-section-btn,
.cid-ufvCR0d0HD .line {
  text-align: left;
  color: #291f1e;
}
.cid-ufvCR0d0HD .mbr-text {
  text-align: left;
}
.cid-ufvD9szhAv {
  display: flex;
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #fffcee;
}
.cid-ufvD9szhAv .mbr-fallback-image.disabled {
  display: none;
}
.cid-ufvD9szhAv .dot {
  margin-top: 0.8rem;
  width: 20px;
  height: 20px;
  background: #a148ff;
  border-radius: 50%;
  margin-bottom: 1rem;
}
.cid-ufvD9szhAv h1 {
  margin-bottom: 5rem;
}
@media (max-width: 992px) {
  .cid-ufvD9szhAv h1 {
    margin-bottom: 1rem;
  }
}
.cid-ufvD9szhAv p {
  margin-right: 0;
  margin-left: auto;
}
@media (max-width: 992px) {
  .cid-ufvD9szhAv p {
    margin-bottom: 2rem;
  }
}
.cid-ufvD9szhAv .line {
  width: 100%;
  height: 1px;
  background: currentColor;
  margin-bottom: 3rem;
}
.cid-ufvD9szhAv .image-wrapper,
.cid-ufvD9szhAv img {
  height: 100%;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-ufvD9szhAv .image-wrapper,
  .cid-ufvD9szhAv img {
    padding-bottom: 0.5rem;
  }
}
.cid-ufvD9szhAv .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-ufvD9szhAv .content-wrap {
    min-width: 50%;
  }
}
@media (max-width: 767px) {
  .cid-ufvD9szhAv {
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-ufvD9szhAv .mbr-row {
    -webkit-justify-content: center;
    justify-content: center;
  }
  .cid-ufvD9szhAv .content-wrap {
    width: 100%;
  }
}
.cid-ufvD9szhAv .mbr-section-subtitle,
.cid-ufvD9szhAv .line {
  color: #291f1e;
}
.cid-ufvD9szhAv .mbr-text,
.cid-ufvD9szhAv .mbr-section-btn {
  text-align: right;
  color: #291f1e;
}
.cid-ufvD9szhAv .mbr-section-title {
  color: #291f1e;
}
.cid-ufvD9szhAv .mbr-section-title,
.cid-ufvD9szhAv .mbr-section-btn,
.cid-ufvD9szhAv .line {
  text-align: left;
  color: #291f1e;
}
.cid-ufvD9szhAv .mbr-text {
  text-align: left;
}
.cid-ufvESMnMXq {
  display: flex;
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #fffcee;
}
.cid-ufvESMnMXq .mbr-fallback-image.disabled {
  display: none;
}
.cid-ufvESMnMXq .dot {
  margin-top: 0.8rem;
  width: 20px;
  height: 20px;
  background: #a148ff;
  border-radius: 50%;
  margin-bottom: 1rem;
}
.cid-ufvESMnMXq h1 {
  margin-bottom: 5rem;
}
@media (max-width: 992px) {
  .cid-ufvESMnMXq h1 {
    margin-bottom: 1rem;
  }
}
.cid-ufvESMnMXq p {
  margin-right: 0;
  margin-left: auto;
}
@media (max-width: 992px) {
  .cid-ufvESMnMXq p {
    margin-bottom: 2rem;
  }
}
.cid-ufvESMnMXq .line {
  width: 100%;
  height: 1px;
  background: currentColor;
  margin-bottom: 3rem;
}
.cid-ufvESMnMXq .image-wrapper,
.cid-ufvESMnMXq img {
  height: 100%;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-ufvESMnMXq .image-wrapper,
  .cid-ufvESMnMXq img {
    padding-bottom: 0.5rem;
  }
}
.cid-ufvESMnMXq .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-ufvESMnMXq .content-wrap {
    min-width: 50%;
  }
}
@media (max-width: 767px) {
  .cid-ufvESMnMXq {
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-ufvESMnMXq .mbr-row {
    -webkit-justify-content: center;
    justify-content: center;
  }
  .cid-ufvESMnMXq .content-wrap {
    width: 100%;
  }
}
.cid-ufvESMnMXq .mbr-section-subtitle,
.cid-ufvESMnMXq .line {
  color: #291f1e;
}
.cid-ufvESMnMXq .mbr-text,
.cid-ufvESMnMXq .mbr-section-btn {
  text-align: right;
  color: #291f1e;
}
.cid-ufvESMnMXq .mbr-section-title {
  color: #291f1e;
}
.cid-ufvESMnMXq .mbr-section-title,
.cid-ufvESMnMXq .mbr-section-btn,
.cid-ufvESMnMXq .line {
  text-align: left;
  color: #291f1e;
}
.cid-ufvESMnMXq .mbr-text {
  text-align: left;
}
.cid-ufrH7303ux {
  padding-top: 10rem;
  padding-bottom: 10rem;
  background-image: url("../../../assets/images/motion2-1.webp");
}
.cid-ufrH7303ux .mbr-section-subtitle {
  margin-bottom: 1.5rem;
}
.cid-ufrH7303ux .linkBtn {
  margin-top: 2.5rem;
}
.cid-ufrH7303ux b,
.cid-ufrH7303ux strong {
  font-weight: 500;
  color: #ff6f45;
}
@media (max-width: 767px) {
  .cid-ufrH7303ux .mbr-section-subtitle {
    margin-bottom: 0.75rem;
  }
  .cid-ufrH7303ux .linkBtn {
    margin-top: 1.5rem;
    text-align: left;
  }
}
.cid-tIdFw9DCBj {
  padding-top: 7rem;
  padding-bottom: 2rem;
  background-color: #232323;
}
.cid-tIdFw9DCBj .row-links {
  width: 100%;
  justify-content: center;
}
.cid-tIdFw9DCBj .social-row {
  width: 100%;
  justify-content: center;
}
.cid-tIdFw9DCBj .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-tIdFw9DCBj .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-tIdFw9DCBj .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-tIdFw9DCBj .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-tIdFw9DCBj .media-container-row .social-list {
  width: auto;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-tIdFw9DCBj .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-tIdFw9DCBj .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-tIdFw9DCBj .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-tIdFw9DCBj .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-tIdFw9DCBj .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-tIdFw9DCBj .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-tIdFw9DCBj .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-ufoRBqpH5e {
  z-index: 1000;
  width: 100%;
}
.cid-ufoRBqpH5e nav.navbar {
  position: fixed;
}
.cid-ufoRBqpH5e .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-ufoRBqpH5e .dropdown-menu {
  padding: 15px 0;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-ufoRBqpH5e .dropdown-item {
  position: relative !important;
  padding: 2px 40px !important;
}
.cid-ufoRBqpH5e .dropdown-item:after {
  right: 1rem !important;
}
.cid-ufoRBqpH5e .dropdown-item:before {
  content: "";
  display: block !important;
  position: absolute;
  left: 40px;
  bottom: 2px;
  top: auto !important;
  height: 1px;
  width: 0;
  overflow: visible !important;
  transform: scale(1) !important;
  background-color: currentColor;
  transition: 0.4s cubic-bezier(0.33, 0.52, 0.05, 0.96);
}
.cid-ufoRBqpH5e .dropdown-item:hover:before,
.cid-ufoRBqpH5e .dropdown-item:focus:before {
  width: calc(100% - 80px);
}
.cid-ufoRBqpH5e .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-ufoRBqpH5e .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-ufoRBqpH5e .nav-link {
  position: relative;
}
.cid-ufoRBqpH5e .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-ufoRBqpH5e .container {
    flex-wrap: nowrap;
  }
}
.cid-ufoRBqpH5e .navbar-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  margin-right: auto;
  min-height: 98px;
}
.cid-ufoRBqpH5e .navbar-nav .nav-item {
  margin: 0;
}
.cid-ufoRBqpH5e .navbar-nav .nav-link {
  position: relative;
  padding: 0 !important;
  margin: 10px 20px !important;
  transition: .4s all;
  font-weight: 700 !important;
}
.cid-ufoRBqpH5e .navbar-nav .nav-link:before {
  content: "";
  display: block !important;
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  width: 0;
  background-color: currentColor;
  transition: 0.4s cubic-bezier(0.33, 0.52, 0.05, 0.96);
}
.cid-ufoRBqpH5e .navbar-nav .nav-link:hover:before {
  width: 100%;
}
.cid-ufoRBqpH5e .dropdown-menu,
.cid-ufoRBqpH5e .navbar.opened {
  background: #ffffff !important;
}
.cid-ufoRBqpH5e .nav-item:focus,
.cid-ufoRBqpH5e .nav-link:focus {
  outline: none;
}
.cid-ufoRBqpH5e .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-ufoRBqpH5e .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-ufoRBqpH5e .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-ufoRBqpH5e .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-ufoRBqpH5e .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-ufoRBqpH5e .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-ufoRBqpH5e .navbar {
  min-height: 100px;
  transition: all 0.3s;
  border-bottom: none !important;
  background: rgba(255, 255, 255, 0.2);
  box-shadow: none !important;
  padding: 0 !important;
}
.cid-ufoRBqpH5e .navbar.opened {
  transition: all 0.3s;
}
.cid-ufoRBqpH5e .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-ufoRBqpH5e .navbar .navbar-logo {
  margin-right: 0.5rem !important;
}
.cid-ufoRBqpH5e .navbar .navbar-logo img {
  width: auto;
}
.cid-ufoRBqpH5e .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-ufoRBqpH5e .navbar.collapsed {
  justify-content: center;
}
.cid-ufoRBqpH5e .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-ufoRBqpH5e .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-ufoRBqpH5e .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.7rem);
  }
}
.cid-ufoRBqpH5e .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-ufoRBqpH5e .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-ufoRBqpH5e .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-ufoRBqpH5e .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-ufoRBqpH5e .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-ufoRBqpH5e .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-ufoRBqpH5e .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-ufoRBqpH5e .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-ufoRBqpH5e .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-ufoRBqpH5e .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-ufoRBqpH5e .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-ufoRBqpH5e .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-ufoRBqpH5e .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-ufoRBqpH5e .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-ufoRBqpH5e .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-ufoRBqpH5e .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-ufoRBqpH5e .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-ufoRBqpH5e .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-ufoRBqpH5e .navbar.navbar-short {
  min-height: 100px;
}
.cid-ufoRBqpH5e .navbar.navbar-short .navbar-brand {
  min-height: 98px;
  padding: 0;
}
.cid-ufoRBqpH5e .navbar-brand {
  min-height: 98px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
  padding-right: 50px !important;
}
.cid-ufoRBqpH5e .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-ufoRBqpH5e .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-ufoRBqpH5e .dropdown-item.active,
.cid-ufoRBqpH5e .dropdown-item:active {
  background-color: transparent;
}
.cid-ufoRBqpH5e .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-ufoRBqpH5e .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-ufoRBqpH5e .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-ufoRBqpH5e .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-ufoRBqpH5e .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-ufoRBqpH5e .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-ufoRBqpH5e ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-ufoRBqpH5e .navbar-buttons {
  text-align: center;
}
.cid-ufoRBqpH5e button.navbar-toggler {
  outline: none;
  width: 24px;
  height: 24px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  padding: 0 !important;
  border: none !important;
}
.cid-ufoRBqpH5e button.navbar-toggler .hamburger div {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: absolute;
  right: 0;
  width: 100%;
  height: 4px;
  background-color: transparent;
  opacity: 1;
}
.cid-ufoRBqpH5e button.navbar-toggler .hamburger div:nth-child(1) {
  top: 0;
  transition: all 0.3s;
}
.cid-ufoRBqpH5e button.navbar-toggler .hamburger div:nth-child(2) {
  top: 10px;
  transition: all 0.25s;
}
.cid-ufoRBqpH5e button.navbar-toggler .hamburger div:nth-child(3) {
  top: 10px;
  transition: all 0.25s;
}
.cid-ufoRBqpH5e button.navbar-toggler .hamburger div:nth-child(4) {
  top: 20px;
  transition: all 0.3s;
}
.cid-ufoRBqpH5e button.navbar-toggler .hamburger span {
  width: 4px;
  height: 4px;
  background-color: #a148ff;
  border-radius: 50%;
}
.cid-ufoRBqpH5e button.navbar-toggler:hover .hamburger div:nth-child(1) {
  top: 10px;
  opacity: 0;
  transition: all 0.3s;
}
.cid-ufoRBqpH5e button.navbar-toggler:hover .hamburger div:nth-child(2) {
  top: 10px;
  transition: all 0.25s;
  opacity: 1;
}
.cid-ufoRBqpH5e button.navbar-toggler:hover .hamburger div:nth-child(3) {
  top: 10px;
  opacity: 1;
  transition: all 0.25s;
}
.cid-ufoRBqpH5e button.navbar-toggler:hover .hamburger div:nth-child(4) {
  top: 10px;
  opacity: 0;
  transition: all 0.3s;
}
.cid-ufoRBqpH5e nav.opened .hamburger div:nth-child(1) {
  top: 10px;
  opacity: 0;
}
.cid-ufoRBqpH5e nav.opened .hamburger div:nth-child(2) {
  top: 10px;
  opacity: 1;
  transform: rotate(45deg);
  background-color: #a148ff;
}
.cid-ufoRBqpH5e nav.opened .hamburger div:nth-child(3) {
  top: 10px;
  opacity: 1;
  transform: rotate(-45deg);
  background-color: #a148ff;
}
.cid-ufoRBqpH5e nav.opened .hamburger div:nth-child(4) {
  top: 10px;
  opacity: 0;
  transition: all 0.3s;
}
.cid-ufoRBqpH5e nav.opened button.navbar-toggler:hover {
  transform: rotate(90deg);
}
.cid-ufoRBqpH5e .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-ufoRBqpH5e a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-ufoRBqpH5e .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-ufoRBqpH5e .navbar {
    height: 70px;
  }
  .cid-ufoRBqpH5e .navbar.opened {
    height: auto;
  }
  .cid-ufoRBqpH5e .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-ufoRBqpH5e .container,
.cid-ufoRBqpH5e .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-ufoRBqpH5e .container,
  .cid-ufoRBqpH5e .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-ufoRBqpH5e .container-fluid {
  max-width: 100%;
  padding: 0 60px;
}
.cid-ufoRBqpH5e .navbar-collapse {
  min-height: 98px;
}
.cid-ufoRBqpH5e .mbr-section-btn {
  max-width: 35%;
}
.cid-ufoRBqpH5e .mbr-section-btn .btn {
  min-width: auto;
  max-width: 100%;
}
@media (max-width: 991px) {
  .cid-ufoRBqpH5e {
    min-height: 70px !important;
  }
  .cid-ufoRBqpH5e .navbar {
    min-height: 70px !important;
  }
  .cid-ufoRBqpH5e .container-fluid {
    padding: 0 7%;
  }
  .cid-ufoRBqpH5e .navbar-brand {
    width: calc(100% - 24px) !important;
    min-height: 68px !important;
    padding-right: 0 !important;
  }
  .cid-ufoRBqpH5e .navbar-collapse {
    width: 100%;
    min-height: auto;
    padding-bottom: 30px;
    order: 5;
  }
  .cid-ufoRBqpH5e .navbar-nav {
    width: 100%;
    padding-top: 30px;
    align-items: flex-start;
  }
  .cid-ufoRBqpH5e .navbar-nav li {
    margin: 0 !important;
  }
  .cid-ufoRBqpH5e .navbar-nav .nav-link {
    width: max-content !important;
    max-width: 100% !important;
    margin: 5px 0 !important;
  }
  .cid-ufoRBqpH5e .navbar .navbar-collapse .dropdown .dropdown-menu {
    padding: 8px 0 !important;
    box-shadow: none !important;
    background: transparent !important;
    border: none !important;
  }
  .cid-ufoRBqpH5e .navbar .navbar-collapse .dropdown .dropdown-menu .dropdown-item {
    padding: 2px 0 !important;
    width: max-content !important;
    max-width: 100% !important;
  }
  .cid-ufoRBqpH5e .navbar .navbar-collapse .dropdown .dropdown-menu .dropdown-item:before {
    left: 0 !important;
    bottom: 2px !important;
  }
  .cid-ufoRBqpH5e .navbar .navbar-collapse .dropdown .dropdown-menu .dropdown-item:hover:before {
    width: 100% !important;
  }
  .cid-ufoRBqpH5e .mbr-section-btn {
    max-width: 100%;
    margin-top: 10px;
  }
}
.cid-ufvkA9Ld14 {
  padding-top: 9rem;
  padding-bottom: 1rem;
  background-image: url("../../../assets/images/background5.webp");
}
.cid-ufvkA9Ld14 .mbr-overlay {
  backdrop-filter: blur(3.5px);
}
.cid-ufvkA9Ld14 img {
  width: 100%;
  transform: scale(2) translateX(-2rem);
  z-index: 0;
  border-radius: 30px;
}
@media (max-width: 992px) {
  .cid-ufvkA9Ld14 img {
    transform: scale(1) translateX(0);
  }
}
.cid-ufvkA9Ld14 .card-wrapper {
  background: linear-gradient(0deg, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0.6) 100%);
  backdrop-filter: blur(3.5px);
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.1);
  border-radius: 30px;
  padding: 6rem 3rem;
  margin: 0;
  z-index: 1;
  overflow: visible;
  position: relative;
  justify-content: center;
}
@media (max-width: 767px) {
  .cid-ufvkA9Ld14 .card-wrapper {
    padding: 2rem 1rem;
  }
}
.cid-ufvkA9Ld14 .card-wrapper:before {
  content: '';
  position: absolute;
  top: 0px;
  left: 0px;
  opacity: 0.3;
  height: 100%;
  width: 100%;
  pointer-events: none;
  border: 2px solid white;
  border-radius: 30px;
}
@media (max-width: 992px) {
  .cid-ufvkA9Ld14 .card-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-ufvkA9Ld14 .col-12 {
  position: relative;
}
.cid-ufvkA9Ld14 .round {
  position: absolute;
  top: -60px;
  right: -150px;
  width: 280px;
  height: 280px;
  background: linear-gradient(0deg, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0.6) 100%);
  backdrop-filter: blur(3.5px);
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.1);
  border-radius: 50%;
  z-index: 2;
}
@media (max-width: 767px) {
  .cid-ufvkA9Ld14 .round {
    top: -30px;
    right: -110px;
    width: 180px;
    height: 180px;
  }
}
.cid-ufvkA9Ld14 .round:before {
  content: '';
  position: absolute;
  top: 0px;
  left: 0px;
  opacity: 0.3;
  height: 100%;
  width: 100%;
  pointer-events: none;
  border: 2px solid white;
  border-radius: 50%;
}
.cid-ufvkA9Ld14 .round2 {
  top: auto;
  right: auto;
  bottom: -30px;
  left: -30px;
  width: 120px;
  height: 120px;
  z-index: 0;
}
.cid-ufvkA9Ld14 .mbr-section-title {
  color: #263d5a;
}
.cid-ufvkA9Ld14 .mbr-text,
.cid-ufvkA9Ld14 .mbr-section-btn {
  color: #263d5a;
}
.cid-ufvkA9Ld14 .mbr-section-subtitle {
  color: #263d5a;
}
.cid-ufvlqqSM4s {
  padding-top: 1rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/background5.webp");
}
.cid-ufvlqqSM4s .mbr-iconfont {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
  color: #379eeb;
  margin-bottom: 2rem;
  background: linear-gradient(0deg, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0.6) 100%);
  border-radius: 50%;
  width: 115px;
  height: 115px;
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.1);
  overflow: visible;
}
.cid-ufvlqqSM4s .row {
  background: linear-gradient(0deg, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0.6) 100%);
  backdrop-filter: blur(3.5px);
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.1);
  border-radius: 30px;
  padding: 3rem 3rem;
  margin: 0;
  overflow: visible;
  position: relative;
  justify-content: center;
}
@media (max-width: 767px) {
  .cid-ufvlqqSM4s .row {
    padding: 2rem 1rem;
  }
}
.cid-ufvlqqSM4s .row:before {
  content: '';
  position: absolute;
  top: 0px;
  left: 0px;
  opacity: 0.3;
  height: 100%;
  width: 100%;
  border: 2px solid white;
  border-radius: 30px;
  pointer-events: none;
}
.cid-ufvlqqSM4s .card-wrapper {
  overflow: visible;
}
.cid-ufvlqqSM4s .card-text {
  color: #263d5a;
}
.cid-ufvlqqSM4s .card-title,
.cid-ufvlqqSM4s .iconfont-wrapper {
  color: #263d5a;
}
.cid-ufvlqqSM4s .mbr-section-subtitle {
  color: #263d5a;
}
.cid-ufvlqqSM4s .mbr-section-title {
  color: #263d5a;
}
@media (max-width: 992px) {
  .cid-ufvlqqSM4s .card-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-tIdFw9DCBj {
  padding-top: 7rem;
  padding-bottom: 2rem;
  background-color: #232323;
}
.cid-tIdFw9DCBj .row-links {
  width: 100%;
  justify-content: center;
}
.cid-tIdFw9DCBj .social-row {
  width: 100%;
  justify-content: center;
}
.cid-tIdFw9DCBj .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-tIdFw9DCBj .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-tIdFw9DCBj .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-tIdFw9DCBj .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-tIdFw9DCBj .media-container-row .social-list {
  width: auto;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-tIdFw9DCBj .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-tIdFw9DCBj .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-tIdFw9DCBj .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-tIdFw9DCBj .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-tIdFw9DCBj .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-tIdFw9DCBj .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-tIdFw9DCBj .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-ufoRBqpH5e {
  z-index: 1000;
  width: 100%;
}
.cid-ufoRBqpH5e nav.navbar {
  position: fixed;
}
.cid-ufoRBqpH5e .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-ufoRBqpH5e .dropdown-menu {
  padding: 15px 0;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-ufoRBqpH5e .dropdown-item {
  position: relative !important;
  padding: 2px 40px !important;
}
.cid-ufoRBqpH5e .dropdown-item:after {
  right: 1rem !important;
}
.cid-ufoRBqpH5e .dropdown-item:before {
  content: "";
  display: block !important;
  position: absolute;
  left: 40px;
  bottom: 2px;
  top: auto !important;
  height: 1px;
  width: 0;
  overflow: visible !important;
  transform: scale(1) !important;
  background-color: currentColor;
  transition: 0.4s cubic-bezier(0.33, 0.52, 0.05, 0.96);
}
.cid-ufoRBqpH5e .dropdown-item:hover:before,
.cid-ufoRBqpH5e .dropdown-item:focus:before {
  width: calc(100% - 80px);
}
.cid-ufoRBqpH5e .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-ufoRBqpH5e .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-ufoRBqpH5e .nav-link {
  position: relative;
}
.cid-ufoRBqpH5e .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-ufoRBqpH5e .container {
    flex-wrap: nowrap;
  }
}
.cid-ufoRBqpH5e .navbar-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  margin-right: auto;
  min-height: 98px;
}
.cid-ufoRBqpH5e .navbar-nav .nav-item {
  margin: 0;
}
.cid-ufoRBqpH5e .navbar-nav .nav-link {
  position: relative;
  padding: 0 !important;
  margin: 10px 20px !important;
  transition: .4s all;
  font-weight: 700 !important;
}
.cid-ufoRBqpH5e .navbar-nav .nav-link:before {
  content: "";
  display: block !important;
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  width: 0;
  background-color: currentColor;
  transition: 0.4s cubic-bezier(0.33, 0.52, 0.05, 0.96);
}
.cid-ufoRBqpH5e .navbar-nav .nav-link:hover:before {
  width: 100%;
}
.cid-ufoRBqpH5e .dropdown-menu,
.cid-ufoRBqpH5e .navbar.opened {
  background: #ffffff !important;
}
.cid-ufoRBqpH5e .nav-item:focus,
.cid-ufoRBqpH5e .nav-link:focus {
  outline: none;
}
.cid-ufoRBqpH5e .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-ufoRBqpH5e .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-ufoRBqpH5e .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-ufoRBqpH5e .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-ufoRBqpH5e .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-ufoRBqpH5e .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-ufoRBqpH5e .navbar {
  min-height: 100px;
  transition: all 0.3s;
  border-bottom: none !important;
  background: rgba(255, 255, 255, 0.2);
  box-shadow: none !important;
  padding: 0 !important;
}
.cid-ufoRBqpH5e .navbar.opened {
  transition: all 0.3s;
}
.cid-ufoRBqpH5e .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-ufoRBqpH5e .navbar .navbar-logo {
  margin-right: 0.5rem !important;
}
.cid-ufoRBqpH5e .navbar .navbar-logo img {
  width: auto;
}
.cid-ufoRBqpH5e .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-ufoRBqpH5e .navbar.collapsed {
  justify-content: center;
}
.cid-ufoRBqpH5e .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-ufoRBqpH5e .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-ufoRBqpH5e .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.7rem);
  }
}
.cid-ufoRBqpH5e .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-ufoRBqpH5e .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-ufoRBqpH5e .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-ufoRBqpH5e .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-ufoRBqpH5e .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-ufoRBqpH5e .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-ufoRBqpH5e .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-ufoRBqpH5e .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-ufoRBqpH5e .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-ufoRBqpH5e .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-ufoRBqpH5e .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-ufoRBqpH5e .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-ufoRBqpH5e .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-ufoRBqpH5e .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-ufoRBqpH5e .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-ufoRBqpH5e .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-ufoRBqpH5e .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-ufoRBqpH5e .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-ufoRBqpH5e .navbar.navbar-short {
  min-height: 100px;
}
.cid-ufoRBqpH5e .navbar.navbar-short .navbar-brand {
  min-height: 98px;
  padding: 0;
}
.cid-ufoRBqpH5e .navbar-brand {
  min-height: 98px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
  padding-right: 50px !important;
}
.cid-ufoRBqpH5e .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-ufoRBqpH5e .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-ufoRBqpH5e .dropdown-item.active,
.cid-ufoRBqpH5e .dropdown-item:active {
  background-color: transparent;
}
.cid-ufoRBqpH5e .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-ufoRBqpH5e .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-ufoRBqpH5e .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-ufoRBqpH5e .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-ufoRBqpH5e .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-ufoRBqpH5e .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-ufoRBqpH5e ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-ufoRBqpH5e .navbar-buttons {
  text-align: center;
}
.cid-ufoRBqpH5e button.navbar-toggler {
  outline: none;
  width: 24px;
  height: 24px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  padding: 0 !important;
  border: none !important;
}
.cid-ufoRBqpH5e button.navbar-toggler .hamburger div {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: absolute;
  right: 0;
  width: 100%;
  height: 4px;
  background-color: transparent;
  opacity: 1;
}
.cid-ufoRBqpH5e button.navbar-toggler .hamburger div:nth-child(1) {
  top: 0;
  transition: all 0.3s;
}
.cid-ufoRBqpH5e button.navbar-toggler .hamburger div:nth-child(2) {
  top: 10px;
  transition: all 0.25s;
}
.cid-ufoRBqpH5e button.navbar-toggler .hamburger div:nth-child(3) {
  top: 10px;
  transition: all 0.25s;
}
.cid-ufoRBqpH5e button.navbar-toggler .hamburger div:nth-child(4) {
  top: 20px;
  transition: all 0.3s;
}
.cid-ufoRBqpH5e button.navbar-toggler .hamburger span {
  width: 4px;
  height: 4px;
  background-color: #a148ff;
  border-radius: 50%;
}
.cid-ufoRBqpH5e button.navbar-toggler:hover .hamburger div:nth-child(1) {
  top: 10px;
  opacity: 0;
  transition: all 0.3s;
}
.cid-ufoRBqpH5e button.navbar-toggler:hover .hamburger div:nth-child(2) {
  top: 10px;
  transition: all 0.25s;
  opacity: 1;
}
.cid-ufoRBqpH5e button.navbar-toggler:hover .hamburger div:nth-child(3) {
  top: 10px;
  opacity: 1;
  transition: all 0.25s;
}
.cid-ufoRBqpH5e button.navbar-toggler:hover .hamburger div:nth-child(4) {
  top: 10px;
  opacity: 0;
  transition: all 0.3s;
}
.cid-ufoRBqpH5e nav.opened .hamburger div:nth-child(1) {
  top: 10px;
  opacity: 0;
}
.cid-ufoRBqpH5e nav.opened .hamburger div:nth-child(2) {
  top: 10px;
  opacity: 1;
  transform: rotate(45deg);
  background-color: #a148ff;
}
.cid-ufoRBqpH5e nav.opened .hamburger div:nth-child(3) {
  top: 10px;
  opacity: 1;
  transform: rotate(-45deg);
  background-color: #a148ff;
}
.cid-ufoRBqpH5e nav.opened .hamburger div:nth-child(4) {
  top: 10px;
  opacity: 0;
  transition: all 0.3s;
}
.cid-ufoRBqpH5e nav.opened button.navbar-toggler:hover {
  transform: rotate(90deg);
}
.cid-ufoRBqpH5e .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-ufoRBqpH5e a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-ufoRBqpH5e .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-ufoRBqpH5e .navbar {
    height: 70px;
  }
  .cid-ufoRBqpH5e .navbar.opened {
    height: auto;
  }
  .cid-ufoRBqpH5e .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-ufoRBqpH5e .container,
.cid-ufoRBqpH5e .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-ufoRBqpH5e .container,
  .cid-ufoRBqpH5e .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-ufoRBqpH5e .container-fluid {
  max-width: 100%;
  padding: 0 60px;
}
.cid-ufoRBqpH5e .navbar-collapse {
  min-height: 98px;
}
.cid-ufoRBqpH5e .mbr-section-btn {
  max-width: 35%;
}
.cid-ufoRBqpH5e .mbr-section-btn .btn {
  min-width: auto;
  max-width: 100%;
}
@media (max-width: 991px) {
  .cid-ufoRBqpH5e {
    min-height: 70px !important;
  }
  .cid-ufoRBqpH5e .navbar {
    min-height: 70px !important;
  }
  .cid-ufoRBqpH5e .container-fluid {
    padding: 0 7%;
  }
  .cid-ufoRBqpH5e .navbar-brand {
    width: calc(100% - 24px) !important;
    min-height: 68px !important;
    padding-right: 0 !important;
  }
  .cid-ufoRBqpH5e .navbar-collapse {
    width: 100%;
    min-height: auto;
    padding-bottom: 30px;
    order: 5;
  }
  .cid-ufoRBqpH5e .navbar-nav {
    width: 100%;
    padding-top: 30px;
    align-items: flex-start;
  }
  .cid-ufoRBqpH5e .navbar-nav li {
    margin: 0 !important;
  }
  .cid-ufoRBqpH5e .navbar-nav .nav-link {
    width: max-content !important;
    max-width: 100% !important;
    margin: 5px 0 !important;
  }
  .cid-ufoRBqpH5e .navbar .navbar-collapse .dropdown .dropdown-menu {
    padding: 8px 0 !important;
    box-shadow: none !important;
    background: transparent !important;
    border: none !important;
  }
  .cid-ufoRBqpH5e .navbar .navbar-collapse .dropdown .dropdown-menu .dropdown-item {
    padding: 2px 0 !important;
    width: max-content !important;
    max-width: 100% !important;
  }
  .cid-ufoRBqpH5e .navbar .navbar-collapse .dropdown .dropdown-menu .dropdown-item:before {
    left: 0 !important;
    bottom: 2px !important;
  }
  .cid-ufoRBqpH5e .navbar .navbar-collapse .dropdown .dropdown-menu .dropdown-item:hover:before {
    width: 100% !important;
  }
  .cid-ufoRBqpH5e .mbr-section-btn {
    max-width: 100%;
    margin-top: 10px;
  }
}
.cid-ufvuYfJTKZ {
  padding-top: 8rem;
  padding-bottom: 5rem;
  background-color: #ededed;
  position: relative;
  overflow: hidden;
}
.cid-ufvuYfJTKZ::before {
  content: '';
  position: absolute;
  right: -5%;
  top: 22%;
  width: 240px;
  height: 240px;
  border-radius: 100%;
  background-image: linear-gradient(225deg, #f1634f -10%, transparent 80%);
}
.cid-ufvuYfJTKZ::after {
  content: '';
  position: absolute;
  top: 0;
  left: -5%;
  width: 240px;
  height: 240px;
  border-radius: 100%;
  background-image: linear-gradient(135deg, #e59e4d -10%, transparent 80%);
}
.cid-ufvuYfJTKZ .mbr-fallback-image.disabled {
  display: none;
}
.cid-ufvuYfJTKZ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 768px) {
  .cid-ufvuYfJTKZ .container {
    padding: 0 16px;
  }
}
.cid-ufvuYfJTKZ .row {
  justify-content: center;
  position: relative;
  z-index: 1;
  margin: 0 -12px;
}
.cid-ufvuYfJTKZ .row .card {
  justify-content: flex-end;
  padding: 0 12px;
}
.cid-ufvuYfJTKZ .content-wrapper {
  margin-bottom: 80px;
}
.cid-ufvuYfJTKZ .content-wrapper .mbr-section-title {
  margin-bottom: 24px;
}
.cid-ufvuYfJTKZ .content-wrapper .mbr-section-title span {
  color: #f1634f;
}
.cid-ufvuYfJTKZ .content-wrapper .text-wrapper .mbr-text {
  display: inline-flex;
  width: 40%;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-ufvuYfJTKZ .content-wrapper .text-wrapper .mbr-text {
    width: 100%;
  }
}
.cid-ufvuYfJTKZ .item {
  padding: 0 12px;
  margin-bottom: 24px;
}
.cid-ufvuYfJTKZ .item .item-wrapper {
  background-color: #fafafa;
  height: 100%;
  padding: 50px;
  border-radius: 14px !important;
}
@media (max-width: 992px) {
  .cid-ufvuYfJTKZ .item .item-wrapper {
    padding: 32px;
  }
}
.cid-ufvuYfJTKZ .item .item-wrapper .card-box .item-desc {
  margin-bottom: 16px;
}
.cid-ufvuYfJTKZ .item .item-wrapper .card-box .item-title {
  margin-bottom: 16px;
}
.cid-ufvuYfJTKZ .item .item-wrapper .card-box .item-price {
  margin-bottom: 16px;
}
.cid-ufvuYfJTKZ .item .item-wrapper .card-box .mbr-section-btn {
  width: 100%;
}
.cid-ufvuYfJTKZ .item .item-wrapper .card-box .mbr-section-btn .btn {
  width: 100%;
}
.cid-ufvuYfJTKZ .item .item-wrapper .card-box .list-wrapper {
  margin-top: 40px;
}
.cid-ufvuYfJTKZ .item .item-wrapper .card-box .list-wrapper .mbr-list-title {
  margin-bottom: 24px;
}
.cid-ufvuYfJTKZ .item .item-wrapper .card-box .list-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-ufvuYfJTKZ .item .item-wrapper .card-box .list-wrapper .list .item-wrap {
  margin-bottom: 24px;
  position: relative;
  padding-left: 28px;
}
.cid-ufvuYfJTKZ .item .item-wrapper .card-box .list-wrapper .list .item-wrap:before {
  content: '✓';
  position: absolute;
  top: 0;
  left: 0;
  font-size: 18px;
  color: #f1634f;
}
.cid-ufvuYfJTKZ .item .item-wrapper .card-box .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-ufvuYfJTKZ .mbr-section-title {
  color: #000000;
  text-align: center;
}
.cid-ufvuYfJTKZ .mbr-text,
.cid-ufvuYfJTKZ .text-wrapper {
  color: #6f6f6f;
  text-align: center;
}
.cid-ufvuYfJTKZ .item-desc {
  color: #6f6f6f;
}
.cid-ufvuYfJTKZ .item-title {
  color: #f1634f;
}
.cid-ufvuYfJTKZ .item-price {
  color: #000000;
}
.cid-ufvuYfJTKZ .mbr-list-title {
  color: #000000;
}
.cid-ufvuYfJTKZ .list {
  color: #000000;
}
.cid-ufw7QpLlwO {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #000000;
}
@media (min-width: 992px) {
  .cid-ufw7QpLlwO .wrapper {
    position: relative;
    overflow: hidden;
    max-height: 585px;
    padding-left: 30px;
    padding-right: 20px;
  }
}
.cid-ufw7QpLlwO img {
  object-fit: cover;
  max-height: 585px;
}
.cid-ufw7QpLlwO .wrap {
  border: 1px solid #41392e;
}
@media (min-width: 992px) {
  .cid-ufw7QpLlwO .wrap {
    height: 100%;
    padding: 65px 2rem 0px;
  }
}
@media (min-width: 1400px) {
  .cid-ufw7QpLlwO .wrap {
    max-height: 100%;
    padding-top: 8rem;
  }
}
@media (min-width: 1800px) {
  .cid-ufw7QpLlwO .wrap {
    max-height: 585px;
    padding: 160px 225px 0 130px;
  }
}
@media (max-width: 991px) {
  .cid-ufw7QpLlwO .wrap {
    padding: 2rem 1rem;
    margin-top: 2rem;
  }
}
.cid-ufw7QpLlwO .card-text {
  color: #767676;
}
.cid-ufw7QpLlwO .main-sub-title {
  color: #ffffff;
}
.cid-ufw7QpLlwO .main-text {
  font-family: "EB Garamond";
  color: #c0bcb7;
}
.cid-ufw7QpLlwO .btn {
  font-family: "Cormorant Garamond";
  padding: 0.8rem 4rem;
  position: relative;
  -webkit-box-shadow: preserve-3d;
  -moz-box-shadow: preserve-3d;
  transform-style: preserve-3d;
}
.cid-ufw7QpLlwO span {
  -webkit-box-shadow: translateZ(-1px);
  -moz-box-shadow: translateZ(-1px);
  transform: translateZ(-1px);
  position: absolute;
  width: 105%;
  height: 85%;
  border: 1px solid #41392e;
}
.cid-ufw7QpLlwO span::before {
  content: "";
  left: 0;
  position: absolute;
  width: 100%;
  height: 100%;
  border-top: 1px solid #41392e;
  border-left: 1px solid #41392e;
  transform-origin: top left;
  transform: scale3d(0, 0, 1);
  transition: all 0.7s;
}
.cid-ufw7QpLlwO span::after {
  content: "";
  right: -1px;
  position: absolute;
  width: 100%;
  height: 101%;
  transform-origin: bottom right;
  border-bottom: 1px solid #41392e;
  border-right: 1px solid #41392e;
  transform: scale3d(0, 0, 1);
  transition: all 0.7s;
}
.cid-ufw7QpLlwO .btn:hover span::before {
  border-top: 1px solid #a148ff;
  border-left: 1px solid #a148ff;
  transform: scale3d(1, 1, 1);
}
.cid-ufw7QpLlwO .btn:hover span::after {
  border-bottom: 1px solid #a148ff;
  border-right: 1px solid #a148ff;
  transform: scale3d(1, 1, 1);
}
.cid-tIdFw9DCBj {
  padding-top: 7rem;
  padding-bottom: 2rem;
  background-color: #232323;
}
.cid-tIdFw9DCBj .row-links {
  width: 100%;
  justify-content: center;
}
.cid-tIdFw9DCBj .social-row {
  width: 100%;
  justify-content: center;
}
.cid-tIdFw9DCBj .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-tIdFw9DCBj .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-tIdFw9DCBj .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-tIdFw9DCBj .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-tIdFw9DCBj .media-container-row .social-list {
  width: auto;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-tIdFw9DCBj .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-tIdFw9DCBj .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-tIdFw9DCBj .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-tIdFw9DCBj .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-tIdFw9DCBj .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-tIdFw9DCBj .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-tIdFw9DCBj .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-ufoRBqpH5e {
  z-index: 1000;
  width: 100%;
}
.cid-ufoRBqpH5e nav.navbar {
  position: fixed;
}
.cid-ufoRBqpH5e .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-ufoRBqpH5e .dropdown-menu {
  padding: 15px 0;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-ufoRBqpH5e .dropdown-item {
  position: relative !important;
  padding: 2px 40px !important;
}
.cid-ufoRBqpH5e .dropdown-item:after {
  right: 1rem !important;
}
.cid-ufoRBqpH5e .dropdown-item:before {
  content: "";
  display: block !important;
  position: absolute;
  left: 40px;
  bottom: 2px;
  top: auto !important;
  height: 1px;
  width: 0;
  overflow: visible !important;
  transform: scale(1) !important;
  background-color: currentColor;
  transition: 0.4s cubic-bezier(0.33, 0.52, 0.05, 0.96);
}
.cid-ufoRBqpH5e .dropdown-item:hover:before,
.cid-ufoRBqpH5e .dropdown-item:focus:before {
  width: calc(100% - 80px);
}
.cid-ufoRBqpH5e .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-ufoRBqpH5e .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-ufoRBqpH5e .nav-link {
  position: relative;
}
.cid-ufoRBqpH5e .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-ufoRBqpH5e .container {
    flex-wrap: nowrap;
  }
}
.cid-ufoRBqpH5e .navbar-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  margin-right: auto;
  min-height: 98px;
}
.cid-ufoRBqpH5e .navbar-nav .nav-item {
  margin: 0;
}
.cid-ufoRBqpH5e .navbar-nav .nav-link {
  position: relative;
  padding: 0 !important;
  margin: 10px 20px !important;
  transition: .4s all;
  font-weight: 700 !important;
}
.cid-ufoRBqpH5e .navbar-nav .nav-link:before {
  content: "";
  display: block !important;
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  width: 0;
  background-color: currentColor;
  transition: 0.4s cubic-bezier(0.33, 0.52, 0.05, 0.96);
}
.cid-ufoRBqpH5e .navbar-nav .nav-link:hover:before {
  width: 100%;
}
.cid-ufoRBqpH5e .dropdown-menu,
.cid-ufoRBqpH5e .navbar.opened {
  background: #ffffff !important;
}
.cid-ufoRBqpH5e .nav-item:focus,
.cid-ufoRBqpH5e .nav-link:focus {
  outline: none;
}
.cid-ufoRBqpH5e .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-ufoRBqpH5e .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-ufoRBqpH5e .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-ufoRBqpH5e .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-ufoRBqpH5e .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-ufoRBqpH5e .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-ufoRBqpH5e .navbar {
  min-height: 100px;
  transition: all 0.3s;
  border-bottom: none !important;
  background: rgba(255, 255, 255, 0.2);
  box-shadow: none !important;
  padding: 0 !important;
}
.cid-ufoRBqpH5e .navbar.opened {
  transition: all 0.3s;
}
.cid-ufoRBqpH5e .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-ufoRBqpH5e .navbar .navbar-logo {
  margin-right: 0.5rem !important;
}
.cid-ufoRBqpH5e .navbar .navbar-logo img {
  width: auto;
}
.cid-ufoRBqpH5e .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-ufoRBqpH5e .navbar.collapsed {
  justify-content: center;
}
.cid-ufoRBqpH5e .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-ufoRBqpH5e .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-ufoRBqpH5e .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.7rem);
  }
}
.cid-ufoRBqpH5e .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-ufoRBqpH5e .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-ufoRBqpH5e .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-ufoRBqpH5e .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-ufoRBqpH5e .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-ufoRBqpH5e .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-ufoRBqpH5e .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-ufoRBqpH5e .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-ufoRBqpH5e .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-ufoRBqpH5e .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-ufoRBqpH5e .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-ufoRBqpH5e .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-ufoRBqpH5e .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-ufoRBqpH5e .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-ufoRBqpH5e .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-ufoRBqpH5e .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-ufoRBqpH5e .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-ufoRBqpH5e .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-ufoRBqpH5e .navbar.navbar-short {
  min-height: 100px;
}
.cid-ufoRBqpH5e .navbar.navbar-short .navbar-brand {
  min-height: 98px;
  padding: 0;
}
.cid-ufoRBqpH5e .navbar-brand {
  min-height: 98px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
  padding-right: 50px !important;
}
.cid-ufoRBqpH5e .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-ufoRBqpH5e .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-ufoRBqpH5e .dropdown-item.active,
.cid-ufoRBqpH5e .dropdown-item:active {
  background-color: transparent;
}
.cid-ufoRBqpH5e .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-ufoRBqpH5e .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-ufoRBqpH5e .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-ufoRBqpH5e .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-ufoRBqpH5e .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-ufoRBqpH5e .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-ufoRBqpH5e ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-ufoRBqpH5e .navbar-buttons {
  text-align: center;
}
.cid-ufoRBqpH5e button.navbar-toggler {
  outline: none;
  width: 24px;
  height: 24px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  padding: 0 !important;
  border: none !important;
}
.cid-ufoRBqpH5e button.navbar-toggler .hamburger div {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: absolute;
  right: 0;
  width: 100%;
  height: 4px;
  background-color: transparent;
  opacity: 1;
}
.cid-ufoRBqpH5e button.navbar-toggler .hamburger div:nth-child(1) {
  top: 0;
  transition: all 0.3s;
}
.cid-ufoRBqpH5e button.navbar-toggler .hamburger div:nth-child(2) {
  top: 10px;
  transition: all 0.25s;
}
.cid-ufoRBqpH5e button.navbar-toggler .hamburger div:nth-child(3) {
  top: 10px;
  transition: all 0.25s;
}
.cid-ufoRBqpH5e button.navbar-toggler .hamburger div:nth-child(4) {
  top: 20px;
  transition: all 0.3s;
}
.cid-ufoRBqpH5e button.navbar-toggler .hamburger span {
  width: 4px;
  height: 4px;
  background-color: #a148ff;
  border-radius: 50%;
}
.cid-ufoRBqpH5e button.navbar-toggler:hover .hamburger div:nth-child(1) {
  top: 10px;
  opacity: 0;
  transition: all 0.3s;
}
.cid-ufoRBqpH5e button.navbar-toggler:hover .hamburger div:nth-child(2) {
  top: 10px;
  transition: all 0.25s;
  opacity: 1;
}
.cid-ufoRBqpH5e button.navbar-toggler:hover .hamburger div:nth-child(3) {
  top: 10px;
  opacity: 1;
  transition: all 0.25s;
}
.cid-ufoRBqpH5e button.navbar-toggler:hover .hamburger div:nth-child(4) {
  top: 10px;
  opacity: 0;
  transition: all 0.3s;
}
.cid-ufoRBqpH5e nav.opened .hamburger div:nth-child(1) {
  top: 10px;
  opacity: 0;
}
.cid-ufoRBqpH5e nav.opened .hamburger div:nth-child(2) {
  top: 10px;
  opacity: 1;
  transform: rotate(45deg);
  background-color: #a148ff;
}
.cid-ufoRBqpH5e nav.opened .hamburger div:nth-child(3) {
  top: 10px;
  opacity: 1;
  transform: rotate(-45deg);
  background-color: #a148ff;
}
.cid-ufoRBqpH5e nav.opened .hamburger div:nth-child(4) {
  top: 10px;
  opacity: 0;
  transition: all 0.3s;
}
.cid-ufoRBqpH5e nav.opened button.navbar-toggler:hover {
  transform: rotate(90deg);
}
.cid-ufoRBqpH5e .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-ufoRBqpH5e a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-ufoRBqpH5e .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-ufoRBqpH5e .navbar {
    height: 70px;
  }
  .cid-ufoRBqpH5e .navbar.opened {
    height: auto;
  }
  .cid-ufoRBqpH5e .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-ufoRBqpH5e .container,
.cid-ufoRBqpH5e .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-ufoRBqpH5e .container,
  .cid-ufoRBqpH5e .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-ufoRBqpH5e .container-fluid {
  max-width: 100%;
  padding: 0 60px;
}
.cid-ufoRBqpH5e .navbar-collapse {
  min-height: 98px;
}
.cid-ufoRBqpH5e .mbr-section-btn {
  max-width: 35%;
}
.cid-ufoRBqpH5e .mbr-section-btn .btn {
  min-width: auto;
  max-width: 100%;
}
@media (max-width: 991px) {
  .cid-ufoRBqpH5e {
    min-height: 70px !important;
  }
  .cid-ufoRBqpH5e .navbar {
    min-height: 70px !important;
  }
  .cid-ufoRBqpH5e .container-fluid {
    padding: 0 7%;
  }
  .cid-ufoRBqpH5e .navbar-brand {
    width: calc(100% - 24px) !important;
    min-height: 68px !important;
    padding-right: 0 !important;
  }
  .cid-ufoRBqpH5e .navbar-collapse {
    width: 100%;
    min-height: auto;
    padding-bottom: 30px;
    order: 5;
  }
  .cid-ufoRBqpH5e .navbar-nav {
    width: 100%;
    padding-top: 30px;
    align-items: flex-start;
  }
  .cid-ufoRBqpH5e .navbar-nav li {
    margin: 0 !important;
  }
  .cid-ufoRBqpH5e .navbar-nav .nav-link {
    width: max-content !important;
    max-width: 100% !important;
    margin: 5px 0 !important;
  }
  .cid-ufoRBqpH5e .navbar .navbar-collapse .dropdown .dropdown-menu {
    padding: 8px 0 !important;
    box-shadow: none !important;
    background: transparent !important;
    border: none !important;
  }
  .cid-ufoRBqpH5e .navbar .navbar-collapse .dropdown .dropdown-menu .dropdown-item {
    padding: 2px 0 !important;
    width: max-content !important;
    max-width: 100% !important;
  }
  .cid-ufoRBqpH5e .navbar .navbar-collapse .dropdown .dropdown-menu .dropdown-item:before {
    left: 0 !important;
    bottom: 2px !important;
  }
  .cid-ufoRBqpH5e .navbar .navbar-collapse .dropdown .dropdown-menu .dropdown-item:hover:before {
    width: 100% !important;
  }
  .cid-ufoRBqpH5e .mbr-section-btn {
    max-width: 100%;
    margin-top: 10px;
  }
}
.cid-ufXDPcaQHg {
  padding-top: 7rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-ufXDPcaQHg .mbr-fallback-image.disabled {
  display: none;
}
.cid-ufXDPcaQHg .mbr-section-subtitle {
  width: fit-content;
  position: relative;
  display: inline-block;
  z-index: 2;
}
.cid-ufXDPcaQHg .mbr-section-subtitle:before {
  position: absolute;
  content: '';
  left: 0;
  bottom: 10%;
  width: 100%;
  height: 9px;
  background: #c6ffe0;
  z-index: -1;
}
.cid-ufXDPcaQHg img {
  border-radius: 1rem;
}
.cid-ufXDPcaQHg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ufXDPcaQHg .row {
  flex-direction: row-reverse;
}
.cid-ufXDPcaQHg .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-ufXDPcaQHg .image-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-ufXDPcaQHg .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-ufXDPcaQHg .mbr-section-title {
  color: #19303d;
}
.cid-ufXDPcaQHg .mbr-section-subtitle,
.cid-ufXDPcaQHg .subtitle-wrap {
  color: #19303d;
}
.cid-ufXDPcaQHg .mbr-text,
.cid-ufXDPcaQHg .mbr-section-btn {
  color: #19303d;
}
.cid-ufXEOzsI0J {
  padding-top: 10rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-ufXEOzsI0J .mbr-section-subtitle {
  margin-bottom: 1.5rem;
}
.cid-ufXEOzsI0J .linkBtn {
  margin-top: 2.5rem;
}
.cid-ufXEOzsI0J b,
.cid-ufXEOzsI0J strong {
  font-weight: 500;
  color: #ff6f45;
}
@media (max-width: 767px) {
  .cid-ufXEOzsI0J .mbr-section-subtitle {
    margin-bottom: 0.75rem;
  }
  .cid-ufXEOzsI0J .linkBtn {
    margin-top: 1.5rem;
    text-align: left;
  }
}
.cid-tIdFw9DCBj {
  padding-top: 7rem;
  padding-bottom: 2rem;
  background-color: #232323;
}
.cid-tIdFw9DCBj .row-links {
  width: 100%;
  justify-content: center;
}
.cid-tIdFw9DCBj .social-row {
  width: 100%;
  justify-content: center;
}
.cid-tIdFw9DCBj .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-tIdFw9DCBj .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-tIdFw9DCBj .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-tIdFw9DCBj .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-tIdFw9DCBj .media-container-row .social-list {
  width: auto;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-tIdFw9DCBj .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-tIdFw9DCBj .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-tIdFw9DCBj .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-tIdFw9DCBj .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-tIdFw9DCBj .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-tIdFw9DCBj .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-tIdFw9DCBj .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-ufoRBqpH5e {
  z-index: 1000;
  width: 100%;
}
.cid-ufoRBqpH5e nav.navbar {
  position: fixed;
}
.cid-ufoRBqpH5e .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-ufoRBqpH5e .dropdown-menu {
  padding: 15px 0;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-ufoRBqpH5e .dropdown-item {
  position: relative !important;
  padding: 2px 40px !important;
}
.cid-ufoRBqpH5e .dropdown-item:after {
  right: 1rem !important;
}
.cid-ufoRBqpH5e .dropdown-item:before {
  content: "";
  display: block !important;
  position: absolute;
  left: 40px;
  bottom: 2px;
  top: auto !important;
  height: 1px;
  width: 0;
  overflow: visible !important;
  transform: scale(1) !important;
  background-color: currentColor;
  transition: 0.4s cubic-bezier(0.33, 0.52, 0.05, 0.96);
}
.cid-ufoRBqpH5e .dropdown-item:hover:before,
.cid-ufoRBqpH5e .dropdown-item:focus:before {
  width: calc(100% - 80px);
}
.cid-ufoRBqpH5e .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-ufoRBqpH5e .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-ufoRBqpH5e .nav-link {
  position: relative;
}
.cid-ufoRBqpH5e .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-ufoRBqpH5e .container {
    flex-wrap: nowrap;
  }
}
.cid-ufoRBqpH5e .navbar-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  margin-right: auto;
  min-height: 98px;
}
.cid-ufoRBqpH5e .navbar-nav .nav-item {
  margin: 0;
}
.cid-ufoRBqpH5e .navbar-nav .nav-link {
  position: relative;
  padding: 0 !important;
  margin: 10px 20px !important;
  transition: .4s all;
  font-weight: 700 !important;
}
.cid-ufoRBqpH5e .navbar-nav .nav-link:before {
  content: "";
  display: block !important;
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  width: 0;
  background-color: currentColor;
  transition: 0.4s cubic-bezier(0.33, 0.52, 0.05, 0.96);
}
.cid-ufoRBqpH5e .navbar-nav .nav-link:hover:before {
  width: 100%;
}
.cid-ufoRBqpH5e .dropdown-menu,
.cid-ufoRBqpH5e .navbar.opened {
  background: #ffffff !important;
}
.cid-ufoRBqpH5e .nav-item:focus,
.cid-ufoRBqpH5e .nav-link:focus {
  outline: none;
}
.cid-ufoRBqpH5e .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-ufoRBqpH5e .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-ufoRBqpH5e .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-ufoRBqpH5e .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-ufoRBqpH5e .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-ufoRBqpH5e .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-ufoRBqpH5e .navbar {
  min-height: 100px;
  transition: all 0.3s;
  border-bottom: none !important;
  background: rgba(255, 255, 255, 0.2);
  box-shadow: none !important;
  padding: 0 !important;
}
.cid-ufoRBqpH5e .navbar.opened {
  transition: all 0.3s;
}
.cid-ufoRBqpH5e .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-ufoRBqpH5e .navbar .navbar-logo {
  margin-right: 0.5rem !important;
}
.cid-ufoRBqpH5e .navbar .navbar-logo img {
  width: auto;
}
.cid-ufoRBqpH5e .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-ufoRBqpH5e .navbar.collapsed {
  justify-content: center;
}
.cid-ufoRBqpH5e .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-ufoRBqpH5e .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-ufoRBqpH5e .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.7rem);
  }
}
.cid-ufoRBqpH5e .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-ufoRBqpH5e .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-ufoRBqpH5e .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-ufoRBqpH5e .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-ufoRBqpH5e .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-ufoRBqpH5e .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-ufoRBqpH5e .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-ufoRBqpH5e .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-ufoRBqpH5e .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-ufoRBqpH5e .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-ufoRBqpH5e .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-ufoRBqpH5e .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-ufoRBqpH5e .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-ufoRBqpH5e .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-ufoRBqpH5e .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-ufoRBqpH5e .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-ufoRBqpH5e .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-ufoRBqpH5e .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-ufoRBqpH5e .navbar.navbar-short {
  min-height: 100px;
}
.cid-ufoRBqpH5e .navbar.navbar-short .navbar-brand {
  min-height: 98px;
  padding: 0;
}
.cid-ufoRBqpH5e .navbar-brand {
  min-height: 98px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
  padding-right: 50px !important;
}
.cid-ufoRBqpH5e .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-ufoRBqpH5e .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-ufoRBqpH5e .dropdown-item.active,
.cid-ufoRBqpH5e .dropdown-item:active {
  background-color: transparent;
}
.cid-ufoRBqpH5e .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-ufoRBqpH5e .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-ufoRBqpH5e .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-ufoRBqpH5e .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-ufoRBqpH5e .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-ufoRBqpH5e .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-ufoRBqpH5e ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-ufoRBqpH5e .navbar-buttons {
  text-align: center;
}
.cid-ufoRBqpH5e button.navbar-toggler {
  outline: none;
  width: 24px;
  height: 24px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  padding: 0 !important;
  border: none !important;
}
.cid-ufoRBqpH5e button.navbar-toggler .hamburger div {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: absolute;
  right: 0;
  width: 100%;
  height: 4px;
  background-color: transparent;
  opacity: 1;
}
.cid-ufoRBqpH5e button.navbar-toggler .hamburger div:nth-child(1) {
  top: 0;
  transition: all 0.3s;
}
.cid-ufoRBqpH5e button.navbar-toggler .hamburger div:nth-child(2) {
  top: 10px;
  transition: all 0.25s;
}
.cid-ufoRBqpH5e button.navbar-toggler .hamburger div:nth-child(3) {
  top: 10px;
  transition: all 0.25s;
}
.cid-ufoRBqpH5e button.navbar-toggler .hamburger div:nth-child(4) {
  top: 20px;
  transition: all 0.3s;
}
.cid-ufoRBqpH5e button.navbar-toggler .hamburger span {
  width: 4px;
  height: 4px;
  background-color: #a148ff;
  border-radius: 50%;
}
.cid-ufoRBqpH5e button.navbar-toggler:hover .hamburger div:nth-child(1) {
  top: 10px;
  opacity: 0;
  transition: all 0.3s;
}
.cid-ufoRBqpH5e button.navbar-toggler:hover .hamburger div:nth-child(2) {
  top: 10px;
  transition: all 0.25s;
  opacity: 1;
}
.cid-ufoRBqpH5e button.navbar-toggler:hover .hamburger div:nth-child(3) {
  top: 10px;
  opacity: 1;
  transition: all 0.25s;
}
.cid-ufoRBqpH5e button.navbar-toggler:hover .hamburger div:nth-child(4) {
  top: 10px;
  opacity: 0;
  transition: all 0.3s;
}
.cid-ufoRBqpH5e nav.opened .hamburger div:nth-child(1) {
  top: 10px;
  opacity: 0;
}
.cid-ufoRBqpH5e nav.opened .hamburger div:nth-child(2) {
  top: 10px;
  opacity: 1;
  transform: rotate(45deg);
  background-color: #a148ff;
}
.cid-ufoRBqpH5e nav.opened .hamburger div:nth-child(3) {
  top: 10px;
  opacity: 1;
  transform: rotate(-45deg);
  background-color: #a148ff;
}
.cid-ufoRBqpH5e nav.opened .hamburger div:nth-child(4) {
  top: 10px;
  opacity: 0;
  transition: all 0.3s;
}
.cid-ufoRBqpH5e nav.opened button.navbar-toggler:hover {
  transform: rotate(90deg);
}
.cid-ufoRBqpH5e .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-ufoRBqpH5e a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-ufoRBqpH5e .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-ufoRBqpH5e .navbar {
    height: 70px;
  }
  .cid-ufoRBqpH5e .navbar.opened {
    height: auto;
  }
  .cid-ufoRBqpH5e .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-ufoRBqpH5e .container,
.cid-ufoRBqpH5e .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-ufoRBqpH5e .container,
  .cid-ufoRBqpH5e .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-ufoRBqpH5e .container-fluid {
  max-width: 100%;
  padding: 0 60px;
}
.cid-ufoRBqpH5e .navbar-collapse {
  min-height: 98px;
}
.cid-ufoRBqpH5e .mbr-section-btn {
  max-width: 35%;
}
.cid-ufoRBqpH5e .mbr-section-btn .btn {
  min-width: auto;
  max-width: 100%;
}
@media (max-width: 991px) {
  .cid-ufoRBqpH5e {
    min-height: 70px !important;
  }
  .cid-ufoRBqpH5e .navbar {
    min-height: 70px !important;
  }
  .cid-ufoRBqpH5e .container-fluid {
    padding: 0 7%;
  }
  .cid-ufoRBqpH5e .navbar-brand {
    width: calc(100% - 24px) !important;
    min-height: 68px !important;
    padding-right: 0 !important;
  }
  .cid-ufoRBqpH5e .navbar-collapse {
    width: 100%;
    min-height: auto;
    padding-bottom: 30px;
    order: 5;
  }
  .cid-ufoRBqpH5e .navbar-nav {
    width: 100%;
    padding-top: 30px;
    align-items: flex-start;
  }
  .cid-ufoRBqpH5e .navbar-nav li {
    margin: 0 !important;
  }
  .cid-ufoRBqpH5e .navbar-nav .nav-link {
    width: max-content !important;
    max-width: 100% !important;
    margin: 5px 0 !important;
  }
  .cid-ufoRBqpH5e .navbar .navbar-collapse .dropdown .dropdown-menu {
    padding: 8px 0 !important;
    box-shadow: none !important;
    background: transparent !important;
    border: none !important;
  }
  .cid-ufoRBqpH5e .navbar .navbar-collapse .dropdown .dropdown-menu .dropdown-item {
    padding: 2px 0 !important;
    width: max-content !important;
    max-width: 100% !important;
  }
  .cid-ufoRBqpH5e .navbar .navbar-collapse .dropdown .dropdown-menu .dropdown-item:before {
    left: 0 !important;
    bottom: 2px !important;
  }
  .cid-ufoRBqpH5e .navbar .navbar-collapse .dropdown .dropdown-menu .dropdown-item:hover:before {
    width: 100% !important;
  }
  .cid-ufoRBqpH5e .mbr-section-btn {
    max-width: 100%;
    margin-top: 10px;
  }
}
.cid-uhR7apcv7Y {
  display: flex;
  padding-top: 7rem;
  padding-bottom: 1rem;
  background-color: #fffcee;
}
.cid-uhR7apcv7Y .mbr-fallback-image.disabled {
  display: none;
}
.cid-uhR7apcv7Y .dot {
  margin-top: 0.8rem;
  width: 20px;
  height: 20px;
  background: #a148ff;
  border-radius: 50%;
  margin-bottom: 1rem;
}
.cid-uhR7apcv7Y h1 {
  margin-bottom: 5rem;
}
@media (max-width: 992px) {
  .cid-uhR7apcv7Y h1 {
    margin-bottom: 1rem;
  }
}
.cid-uhR7apcv7Y p {
  margin-right: 0;
  margin-left: auto;
}
@media (max-width: 992px) {
  .cid-uhR7apcv7Y p {
    margin-bottom: 2rem;
  }
}
.cid-uhR7apcv7Y .line {
  width: 100%;
  height: 1px;
  background: currentColor;
  margin-bottom: 3rem;
}
.cid-uhR7apcv7Y .image-wrapper,
.cid-uhR7apcv7Y img {
  height: 100%;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-uhR7apcv7Y .image-wrapper,
  .cid-uhR7apcv7Y img {
    padding-bottom: 0.5rem;
  }
}
.cid-uhR7apcv7Y .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-uhR7apcv7Y .content-wrap {
    min-width: 50%;
  }
}
@media (max-width: 767px) {
  .cid-uhR7apcv7Y {
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-uhR7apcv7Y .mbr-row {
    -webkit-justify-content: center;
    justify-content: center;
  }
  .cid-uhR7apcv7Y .content-wrap {
    width: 100%;
  }
}
.cid-uhR7apcv7Y .mbr-section-subtitle,
.cid-uhR7apcv7Y .line {
  color: #291f1e;
}
.cid-uhR7apcv7Y .mbr-text,
.cid-uhR7apcv7Y .mbr-section-btn {
  text-align: right;
  color: #291f1e;
}
.cid-uhR7apcv7Y .mbr-section-title {
  color: #291f1e;
}
.cid-uhR7apcv7Y .mbr-section-title,
.cid-uhR7apcv7Y .mbr-section-btn,
.cid-uhR7apcv7Y .line {
  text-align: left;
  color: #291f1e;
}
.cid-uhR7apcv7Y .mbr-text {
  text-align: left;
  color: #000000;
}
.cid-uhR8F4yHsv {
  display: flex;
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #fffcee;
}
.cid-uhR8F4yHsv .mbr-fallback-image.disabled {
  display: none;
}
.cid-uhR8F4yHsv .dot {
  margin-top: 0.8rem;
  width: 20px;
  height: 20px;
  background: #a148ff;
  border-radius: 50%;
  margin-bottom: 1rem;
}
.cid-uhR8F4yHsv h1 {
  margin-bottom: 5rem;
}
@media (max-width: 992px) {
  .cid-uhR8F4yHsv h1 {
    margin-bottom: 1rem;
  }
}
.cid-uhR8F4yHsv p {
  margin-right: 0;
  margin-left: auto;
}
@media (max-width: 992px) {
  .cid-uhR8F4yHsv p {
    margin-bottom: 2rem;
  }
}
.cid-uhR8F4yHsv .line {
  width: 100%;
  height: 1px;
  background: currentColor;
  margin-bottom: 3rem;
}
.cid-uhR8F4yHsv .image-wrapper,
.cid-uhR8F4yHsv img {
  height: 100%;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-uhR8F4yHsv .image-wrapper,
  .cid-uhR8F4yHsv img {
    padding-bottom: 0.5rem;
  }
}
.cid-uhR8F4yHsv .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-uhR8F4yHsv .content-wrap {
    min-width: 50%;
  }
}
@media (max-width: 767px) {
  .cid-uhR8F4yHsv {
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-uhR8F4yHsv .mbr-row {
    -webkit-justify-content: center;
    justify-content: center;
  }
  .cid-uhR8F4yHsv .content-wrap {
    width: 100%;
  }
}
.cid-uhR8F4yHsv .mbr-section-subtitle,
.cid-uhR8F4yHsv .line {
  color: #291f1e;
}
.cid-uhR8F4yHsv .mbr-text,
.cid-uhR8F4yHsv .mbr-section-btn {
  text-align: right;
  color: #291f1e;
}
.cid-uhR8F4yHsv .mbr-section-title {
  color: #291f1e;
}
.cid-uhR8F4yHsv .mbr-section-title,
.cid-uhR8F4yHsv .mbr-section-btn,
.cid-uhR8F4yHsv .line {
  text-align: left;
  color: #291f1e;
}
.cid-uhR8F4yHsv .mbr-text {
  text-align: left;
  color: #000000;
}
.cid-ufq9Fsj2PF {
  padding-top: 3rem;
  padding-bottom: 4rem;
  background-color: #ffffff;
}
.cid-ufq9Fsj2PF .mbr-fallback-image.disabled {
  display: none;
}
.cid-ufq9Fsj2PF .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-ufq9Fsj2PF .container {
    padding: 0 30px;
  }
}
.cid-ufq9Fsj2PF .row {
  justify-content: center;
}
.cid-ufq9Fsj2PF .content-wrapper .mbr-section-title {
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .cid-ufq9Fsj2PF .content-wrapper .mbr-section-title {
    margin-bottom: 40px;
  }
}
.cid-ufq9Fsj2PF .content-wrapper .mbr-text {
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .cid-ufq9Fsj2PF .content-wrapper .mbr-text {
    margin-bottom: 40px;
  }
}
.cid-ufq9Fsj2PF .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
  color: #144031;
}
.cid-ufq9Fsj2PF .list .item-wrap {
  margin-bottom: 20px;
  padding-left: 30px;
  position: relative;
}
.cid-ufq9Fsj2PF .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-ufq9Fsj2PF .list .item-wrap::before {
  content: '';
  position: absolute;
  top: 10px;
  left: 0;
  width: 9px;
  height: 9px;
  background-color: #22654e;
}
.cid-ufq9Fsj2PF .mbr-section-title {
  color: #22654E;
}
.cid-ufq9Fsj2PF .mbr-text {
  color: #000000;
}
.cid-ufq9Fsj2PF .list,
.cid-ufq9Fsj2PF .item-wrap {
  color: #000000;
}
.cid-tIdFw9DCBj {
  padding-top: 7rem;
  padding-bottom: 2rem;
  background-color: #232323;
}
.cid-tIdFw9DCBj .row-links {
  width: 100%;
  justify-content: center;
}
.cid-tIdFw9DCBj .social-row {
  width: 100%;
  justify-content: center;
}
.cid-tIdFw9DCBj .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-tIdFw9DCBj .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-tIdFw9DCBj .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-tIdFw9DCBj .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-tIdFw9DCBj .media-container-row .social-list {
  width: auto;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-tIdFw9DCBj .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-tIdFw9DCBj .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-tIdFw9DCBj .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-tIdFw9DCBj .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-tIdFw9DCBj .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-tIdFw9DCBj .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-tIdFw9DCBj .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-ufoRBqpH5e {
  z-index: 1000;
  width: 100%;
}
.cid-ufoRBqpH5e nav.navbar {
  position: fixed;
}
.cid-ufoRBqpH5e .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-ufoRBqpH5e .dropdown-menu {
  padding: 15px 0;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-ufoRBqpH5e .dropdown-item {
  position: relative !important;
  padding: 2px 40px !important;
}
.cid-ufoRBqpH5e .dropdown-item:after {
  right: 1rem !important;
}
.cid-ufoRBqpH5e .dropdown-item:before {
  content: "";
  display: block !important;
  position: absolute;
  left: 40px;
  bottom: 2px;
  top: auto !important;
  height: 1px;
  width: 0;
  overflow: visible !important;
  transform: scale(1) !important;
  background-color: currentColor;
  transition: 0.4s cubic-bezier(0.33, 0.52, 0.05, 0.96);
}
.cid-ufoRBqpH5e .dropdown-item:hover:before,
.cid-ufoRBqpH5e .dropdown-item:focus:before {
  width: calc(100% - 80px);
}
.cid-ufoRBqpH5e .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-ufoRBqpH5e .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-ufoRBqpH5e .nav-link {
  position: relative;
}
.cid-ufoRBqpH5e .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-ufoRBqpH5e .container {
    flex-wrap: nowrap;
  }
}
.cid-ufoRBqpH5e .navbar-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  margin-right: auto;
  min-height: 98px;
}
.cid-ufoRBqpH5e .navbar-nav .nav-item {
  margin: 0;
}
.cid-ufoRBqpH5e .navbar-nav .nav-link {
  position: relative;
  padding: 0 !important;
  margin: 10px 20px !important;
  transition: .4s all;
  font-weight: 700 !important;
}
.cid-ufoRBqpH5e .navbar-nav .nav-link:before {
  content: "";
  display: block !important;
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  width: 0;
  background-color: currentColor;
  transition: 0.4s cubic-bezier(0.33, 0.52, 0.05, 0.96);
}
.cid-ufoRBqpH5e .navbar-nav .nav-link:hover:before {
  width: 100%;
}
.cid-ufoRBqpH5e .dropdown-menu,
.cid-ufoRBqpH5e .navbar.opened {
  background: #ffffff !important;
}
.cid-ufoRBqpH5e .nav-item:focus,
.cid-ufoRBqpH5e .nav-link:focus {
  outline: none;
}
.cid-ufoRBqpH5e .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-ufoRBqpH5e .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-ufoRBqpH5e .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-ufoRBqpH5e .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-ufoRBqpH5e .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-ufoRBqpH5e .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-ufoRBqpH5e .navbar {
  min-height: 100px;
  transition: all 0.3s;
  border-bottom: none !important;
  background: rgba(255, 255, 255, 0.2);
  box-shadow: none !important;
  padding: 0 !important;
}
.cid-ufoRBqpH5e .navbar.opened {
  transition: all 0.3s;
}
.cid-ufoRBqpH5e .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-ufoRBqpH5e .navbar .navbar-logo {
  margin-right: 0.5rem !important;
}
.cid-ufoRBqpH5e .navbar .navbar-logo img {
  width: auto;
}
.cid-ufoRBqpH5e .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-ufoRBqpH5e .navbar.collapsed {
  justify-content: center;
}
.cid-ufoRBqpH5e .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-ufoRBqpH5e .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-ufoRBqpH5e .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.7rem);
  }
}
.cid-ufoRBqpH5e .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-ufoRBqpH5e .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-ufoRBqpH5e .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-ufoRBqpH5e .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-ufoRBqpH5e .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-ufoRBqpH5e .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-ufoRBqpH5e .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-ufoRBqpH5e .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-ufoRBqpH5e .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-ufoRBqpH5e .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-ufoRBqpH5e .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-ufoRBqpH5e .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-ufoRBqpH5e .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-ufoRBqpH5e .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-ufoRBqpH5e .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-ufoRBqpH5e .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-ufoRBqpH5e .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-ufoRBqpH5e .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-ufoRBqpH5e .navbar.navbar-short {
  min-height: 100px;
}
.cid-ufoRBqpH5e .navbar.navbar-short .navbar-brand {
  min-height: 98px;
  padding: 0;
}
.cid-ufoRBqpH5e .navbar-brand {
  min-height: 98px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
  padding-right: 50px !important;
}
.cid-ufoRBqpH5e .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-ufoRBqpH5e .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-ufoRBqpH5e .dropdown-item.active,
.cid-ufoRBqpH5e .dropdown-item:active {
  background-color: transparent;
}
.cid-ufoRBqpH5e .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-ufoRBqpH5e .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-ufoRBqpH5e .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-ufoRBqpH5e .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-ufoRBqpH5e .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-ufoRBqpH5e .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-ufoRBqpH5e ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-ufoRBqpH5e .navbar-buttons {
  text-align: center;
}
.cid-ufoRBqpH5e button.navbar-toggler {
  outline: none;
  width: 24px;
  height: 24px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  padding: 0 !important;
  border: none !important;
}
.cid-ufoRBqpH5e button.navbar-toggler .hamburger div {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: absolute;
  right: 0;
  width: 100%;
  height: 4px;
  background-color: transparent;
  opacity: 1;
}
.cid-ufoRBqpH5e button.navbar-toggler .hamburger div:nth-child(1) {
  top: 0;
  transition: all 0.3s;
}
.cid-ufoRBqpH5e button.navbar-toggler .hamburger div:nth-child(2) {
  top: 10px;
  transition: all 0.25s;
}
.cid-ufoRBqpH5e button.navbar-toggler .hamburger div:nth-child(3) {
  top: 10px;
  transition: all 0.25s;
}
.cid-ufoRBqpH5e button.navbar-toggler .hamburger div:nth-child(4) {
  top: 20px;
  transition: all 0.3s;
}
.cid-ufoRBqpH5e button.navbar-toggler .hamburger span {
  width: 4px;
  height: 4px;
  background-color: #a148ff;
  border-radius: 50%;
}
.cid-ufoRBqpH5e button.navbar-toggler:hover .hamburger div:nth-child(1) {
  top: 10px;
  opacity: 0;
  transition: all 0.3s;
}
.cid-ufoRBqpH5e button.navbar-toggler:hover .hamburger div:nth-child(2) {
  top: 10px;
  transition: all 0.25s;
  opacity: 1;
}
.cid-ufoRBqpH5e button.navbar-toggler:hover .hamburger div:nth-child(3) {
  top: 10px;
  opacity: 1;
  transition: all 0.25s;
}
.cid-ufoRBqpH5e button.navbar-toggler:hover .hamburger div:nth-child(4) {
  top: 10px;
  opacity: 0;
  transition: all 0.3s;
}
.cid-ufoRBqpH5e nav.opened .hamburger div:nth-child(1) {
  top: 10px;
  opacity: 0;
}
.cid-ufoRBqpH5e nav.opened .hamburger div:nth-child(2) {
  top: 10px;
  opacity: 1;
  transform: rotate(45deg);
  background-color: #a148ff;
}
.cid-ufoRBqpH5e nav.opened .hamburger div:nth-child(3) {
  top: 10px;
  opacity: 1;
  transform: rotate(-45deg);
  background-color: #a148ff;
}
.cid-ufoRBqpH5e nav.opened .hamburger div:nth-child(4) {
  top: 10px;
  opacity: 0;
  transition: all 0.3s;
}
.cid-ufoRBqpH5e nav.opened button.navbar-toggler:hover {
  transform: rotate(90deg);
}
.cid-ufoRBqpH5e .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-ufoRBqpH5e a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-ufoRBqpH5e .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-ufoRBqpH5e .navbar {
    height: 70px;
  }
  .cid-ufoRBqpH5e .navbar.opened {
    height: auto;
  }
  .cid-ufoRBqpH5e .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-ufoRBqpH5e .container,
.cid-ufoRBqpH5e .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-ufoRBqpH5e .container,
  .cid-ufoRBqpH5e .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-ufoRBqpH5e .container-fluid {
  max-width: 100%;
  padding: 0 60px;
}
.cid-ufoRBqpH5e .navbar-collapse {
  min-height: 98px;
}
.cid-ufoRBqpH5e .mbr-section-btn {
  max-width: 35%;
}
.cid-ufoRBqpH5e .mbr-section-btn .btn {
  min-width: auto;
  max-width: 100%;
}
@media (max-width: 991px) {
  .cid-ufoRBqpH5e {
    min-height: 70px !important;
  }
  .cid-ufoRBqpH5e .navbar {
    min-height: 70px !important;
  }
  .cid-ufoRBqpH5e .container-fluid {
    padding: 0 7%;
  }
  .cid-ufoRBqpH5e .navbar-brand {
    width: calc(100% - 24px) !important;
    min-height: 68px !important;
    padding-right: 0 !important;
  }
  .cid-ufoRBqpH5e .navbar-collapse {
    width: 100%;
    min-height: auto;
    padding-bottom: 30px;
    order: 5;
  }
  .cid-ufoRBqpH5e .navbar-nav {
    width: 100%;
    padding-top: 30px;
    align-items: flex-start;
  }
  .cid-ufoRBqpH5e .navbar-nav li {
    margin: 0 !important;
  }
  .cid-ufoRBqpH5e .navbar-nav .nav-link {
    width: max-content !important;
    max-width: 100% !important;
    margin: 5px 0 !important;
  }
  .cid-ufoRBqpH5e .navbar .navbar-collapse .dropdown .dropdown-menu {
    padding: 8px 0 !important;
    box-shadow: none !important;
    background: transparent !important;
    border: none !important;
  }
  .cid-ufoRBqpH5e .navbar .navbar-collapse .dropdown .dropdown-menu .dropdown-item {
    padding: 2px 0 !important;
    width: max-content !important;
    max-width: 100% !important;
  }
  .cid-ufoRBqpH5e .navbar .navbar-collapse .dropdown .dropdown-menu .dropdown-item:before {
    left: 0 !important;
    bottom: 2px !important;
  }
  .cid-ufoRBqpH5e .navbar .navbar-collapse .dropdown .dropdown-menu .dropdown-item:hover:before {
    width: 100% !important;
  }
  .cid-ufoRBqpH5e .mbr-section-btn {
    max-width: 100%;
    margin-top: 10px;
  }
}
.cid-uhQPoGG58t {
  padding-top: 9rem;
  padding-bottom: 9rem;
  background-image: url("../../../assets/images/mbr-1920x1323.webp");
}
.cid-uhQPoGG58t .mbr-fallback-image.disabled {
  display: none;
}
.cid-uhQPoGG58t .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uhQPoGG58t .col-text {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-uhQPoGG58t .col-text {
    max-width: 624px;
  }
}
.cid-uhQPoGG58t .mbr-section-title {
  color: #FFFFFF;
  margin-bottom: 8px;
}
.cid-uhQPoGG58t .mbr-section-subtitle {
  color: #FFFFFF;
}
.cid-uhQPoGG58t .mbr-text {
  margin-top: 24px;
  color: #efefef;
}
.cid-uhQPoGG58t .cards {
  margin-top: 2rem;
  row-gap: 32px;
}
.cid-uhQPoGG58t .card {
  border-radius: 0;
}
@media (min-width: 992px) {
  .cid-uhQPoGG58t .card:not(:first-child) {
    border-left: 1px solid #c1c1c1;
  }
}
.cid-uhQPoGG58t .card-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.cid-uhQPoGG58t .mbr-iconfont {
  display: block;
  font-size: 56px;
  color: #ffffff;
  margin-bottom: 1rem;
}
.cid-uhQPoGG58t .card-title {
  color: #FFFFFF;
}
.cid-uhQVsLwVbI {
  padding-top: 2rem;
  padding-bottom: 3rem;
  background-color: #141414;
}
.cid-uhQVsLwVbI .row {
  display: flex;
  flex-direction: row-reverse;
  border: 1px solid #ffffff;
  margin-top: -1px;
}
.cid-uhQVsLwVbI .title-wrapper {
  padding: 0 12px;
}
.cid-uhQVsLwVbI .text-block {
  padding: 48px 24px;
}
.cid-uhQVsLwVbI .video-wrapper iframe {
  width: 100%;
}
.cid-uhQVsLwVbI .video-block {
  border-left: 1px solid #ffffff;
  padding: 0;
}
.cid-uhQVsLwVbI .mbr-section-title {
  text-align: center;
  color: #FFFFFF;
}
.cid-uhQVsLwVbI .mbr-description {
  text-align: center;
  color: #FFFFFF;
  padding: 16px;
}
@media (min-width: 992px) {
  .cid-uhQVsLwVbI .mbr-description {
    padding: 16px 60px 16px;
  }
}
.cid-uhQVsLwVbI .mbr-text,
.cid-uhQVsLwVbI .mbr-section-subtitle {
  color: #FFFFFF;
}
@media (max-width: 991px) {
  .cid-uhQVsLwVbI .video-block {
    border-left: none;
  }
  .cid-uhQVsLwVbI .text-block {
    border-top: 1px solid #ffffff;
  }
}
@media (min-width: 992px) {
  .cid-uhQVsLwVbI .title-wrapper {
    padding: 0 48px;
  }
  .cid-uhQVsLwVbI .text-block {
    padding: 60px;
    border-right: 1px solid #ffffff;
    margin-right: -1px;
    margin-bottom: auto;
  }
}
.cid-uhQX7NFIxu {
  padding-top: 45px;
  padding-bottom: 30px;
  background-image: url("../../../assets/images/arches-1900x664.webp");
}
.cid-ufrr7kurq0 {
  padding-top: 2rem;
  padding-bottom: 3rem;
  background-color: #141414;
}
.cid-ufrr7kurq0 .row {
  display: flex;
  flex-direction: row-reverse;
  border: 1px solid #ffffff;
  margin-top: -1px;
}
.cid-ufrr7kurq0 .title-wrapper {
  padding: 0 12px;
}
.cid-ufrr7kurq0 .text-block {
  padding: 48px 24px;
}
.cid-ufrr7kurq0 .video-wrapper iframe {
  width: 100%;
}
.cid-ufrr7kurq0 .video-block {
  border-left: 1px solid #ffffff;
  padding: 0;
}
.cid-ufrr7kurq0 .mbr-section-title {
  text-align: center;
  color: #FFFFFF;
}
.cid-ufrr7kurq0 .mbr-description {
  text-align: center;
  color: #FFFFFF;
  padding: 16px;
}
@media (min-width: 992px) {
  .cid-ufrr7kurq0 .mbr-description {
    padding: 16px 60px 16px;
  }
}
.cid-ufrr7kurq0 .mbr-text,
.cid-ufrr7kurq0 .mbr-section-subtitle {
  color: #FFFFFF;
}
@media (max-width: 991px) {
  .cid-ufrr7kurq0 .video-block {
    border-left: none;
  }
  .cid-ufrr7kurq0 .text-block {
    border-top: 1px solid #ffffff;
  }
}
@media (min-width: 992px) {
  .cid-ufrr7kurq0 .title-wrapper {
    padding: 0 48px;
  }
  .cid-ufrr7kurq0 .text-block {
    padding: 60px;
    border-right: 1px solid #ffffff;
    margin-right: -1px;
    margin-bottom: auto;
  }
}
.cid-uhQQy2J3gn {
  padding-top: 3rem;
  padding-bottom: 4rem;
  background-color: #ffffff;
}
.cid-uhQQy2J3gn .mbr-fallback-image.disabled {
  display: none;
}
.cid-uhQQy2J3gn .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-uhQQy2J3gn .container {
    padding: 0 30px;
  }
}
.cid-uhQQy2J3gn .row {
  justify-content: center;
}
.cid-uhQQy2J3gn .content-wrapper .mbr-section-title {
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .cid-uhQQy2J3gn .content-wrapper .mbr-section-title {
    margin-bottom: 40px;
  }
}
.cid-uhQQy2J3gn .content-wrapper .mbr-text {
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .cid-uhQQy2J3gn .content-wrapper .mbr-text {
    margin-bottom: 40px;
  }
}
.cid-uhQQy2J3gn .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
  color: #144031;
}
.cid-uhQQy2J3gn .list .item-wrap {
  margin-bottom: 20px;
  padding-left: 30px;
  position: relative;
}
.cid-uhQQy2J3gn .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-uhQQy2J3gn .list .item-wrap::before {
  content: '';
  position: absolute;
  top: 10px;
  left: 0;
  width: 9px;
  height: 9px;
  background-color: #22654e;
}
.cid-uhQQy2J3gn .mbr-section-title {
  color: #22654E;
}
.cid-uhQQy2J3gn .mbr-text {
  color: #000000;
}
.cid-uhQQy2J3gn .list,
.cid-uhQQy2J3gn .item-wrap {
  color: #000000;
}
.cid-uhQQx6bNgw {
  padding-top: 90px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/background7-3.webp");
}
.cid-uhQQx6bNgw .header-text {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-uhQQx6bNgw .row {
  max-width: 900px;
  margin: auto;
  background: linear-gradient(0deg, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0.6) 100%);
  backdrop-filter: blur(3.5px);
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.1);
  border-radius: 30px;
  padding: 4rem 3rem;
  overflow: visible;
  position: relative;
}
@media (max-width: 767px) {
  .cid-uhQQx6bNgw .row {
    padding: 2rem 1rem;
  }
}
.cid-uhQQx6bNgw .row:before {
  content: '';
  position: absolute;
  top: 0px;
  left: 0px;
  opacity: 0.3;
  height: 100%;
  width: 100%;
  border: 2px solid white;
  border-radius: 30px;
  pointer-events: none;
}
.cid-uhQQx6bNgw .card-header {
  border-bottom: 1px solid #e4e4e4;
  margin-bottom: 0px!important;
}
.cid-uhQQx6bNgw span {
  transform: rotate(45deg);
  transition: all 0.3s;
}
.cid-uhQQx6bNgw .collapsed span {
  transform: rotate(0deg);
}
.cid-uhQQx6bNgw .accordion-content {
  -webkit-flex-basis: 100%;
  flex-basis: 100%;
}
.cid-uhQQx6bNgw .panel-group {
  width: 100%;
}
.cid-uhQQx6bNgw .sign {
  color: currentColor;
  font-family: 'Moririse2' !important;
}
.cid-uhQQx6bNgw .card {
  border-radius: 0px;
}
.cid-uhQQx6bNgw .card .card-header {
  border-radius: 0px;
  padding: 0;
  background-color: transparent;
}
.cid-uhQQx6bNgw .card .card-header a.panel-title {
  -webkit-justify-content: space-between;
  justify-content: space-between;
  transition: all .3s;
  margin-bottom: 0;
  font-style: normal;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  text-decoration: none !important;
  line-height: normal;
}
.cid-uhQQx6bNgw .card .card-header a.panel-title:focus {
  text-decoration: none !important;
}
.cid-uhQQx6bNgw .card .card-header a.panel-title h4 {
  padding: 1.5rem 1rem 13px 0px;
  margin-bottom: 0;
}
.cid-uhQQx6bNgw .panel-text {
  color: #263d5a;
}
.cid-uhQQx6bNgw .header-text,
.cid-uhQQx6bNgw .sign {
  color: #263d5a;
  text-align: right;
}
.cid-uhQQx6bNgw .mbr-section-title {
  color: #263d5a;
}
.cid-uhQQx6bNgw .header-text,
.cid-uhQQx6bNgw .sign,
.cid-uhQQx6bNgw .card-header {
  color: #263d5a;
}
.cid-uhQQx6bNgw .mbr-section-subtitle {
  color: #263d5a;
}
.cid-uhQQvVGmMv {
  padding-top: 90px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/background7-3.webp");
}
.cid-uhQQvVGmMv .header-text {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-uhQQvVGmMv img {
  width: 100%;
  border-radius: 30px;
  margin-left: 2rem;
}
@media (max-width: 992px) {
  .cid-uhQQvVGmMv img {
    margin-left: 0;
    margin-top: 4rem;
  }
}
.cid-uhQQvVGmMv .row {
  margin: auto;
  background: linear-gradient(0deg, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0.6) 100%);
  backdrop-filter: blur(3.5px);
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.1);
  border-radius: 30px;
  padding: 4rem 3rem;
  overflow: visible;
  position: relative;
}
@media (max-width: 992px) {
  .cid-uhQQvVGmMv .row {
    padding: 2rem 1rem;
  }
}
@media (max-width: 767px) {
  .cid-uhQQvVGmMv .row {
    padding: 1rem 0rem;
  }
}
.cid-uhQQvVGmMv .row:before {
  content: '';
  position: absolute;
  top: 0px;
  left: 0px;
  opacity: 0.3;
  height: 100%;
  width: 100%;
  border: 2px solid white;
  border-radius: 30px;
  pointer-events: none;
}
.cid-uhQQvVGmMv .card-header {
  border-bottom: 1px solid #e4e4e4;
  margin-bottom: 0px!important;
}
.cid-uhQQvVGmMv span {
  transform: rotate(45deg);
  transition: all 0.3s;
}
.cid-uhQQvVGmMv .collapsed span {
  transform: rotate(0deg);
}
.cid-uhQQvVGmMv .accordion-content {
  -webkit-flex-basis: 100%;
  flex-basis: 100%;
}
.cid-uhQQvVGmMv .panel-group {
  width: 100%;
}
.cid-uhQQvVGmMv .sign {
  color: currentColor;
  font-family: 'Moririse2' !important;
}
.cid-uhQQvVGmMv .card {
  border-radius: 0px;
}
.cid-uhQQvVGmMv .card .card-header {
  border-radius: 0px;
  padding: 0;
  background-color: transparent;
}
.cid-uhQQvVGmMv .card .card-header a.panel-title {
  -webkit-justify-content: space-between;
  justify-content: space-between;
  transition: all .3s;
  margin-bottom: 0;
  font-style: normal;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  text-decoration: none !important;
  line-height: normal;
}
.cid-uhQQvVGmMv .card .card-header a.panel-title:focus {
  text-decoration: none !important;
}
.cid-uhQQvVGmMv .card .card-header a.panel-title h4 {
  padding: 1.5rem 1rem 13px 0px;
  margin-bottom: 0;
}
.cid-uhQQvVGmMv .panel-text {
  color: #263d5a;
}
.cid-uhQQvVGmMv .header-text,
.cid-uhQQvVGmMv .sign {
  color: #263d5a;
  text-align: right;
}
.cid-uhQQvVGmMv .mbr-section-title {
  color: #263d5a;
}
.cid-uhQQvVGmMv .header-text,
.cid-uhQQvVGmMv .sign,
.cid-uhQQvVGmMv .card-header {
  color: #263d5a;
  text-align: left;
}
.cid-uhQQvVGmMv .mbr-section-subtitle {
  color: #263d5a;
}
.cid-ufroQ1JGZ5 {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/background5.webp");
}
.cid-ufroQ1JGZ5 .mbr-overlay {
  backdrop-filter: blur(3.5px);
}
.cid-ufroQ1JGZ5 img {
  width: 100%;
  transform: scale(2) translateX(-2rem);
  z-index: 0;
  border-radius: 30px;
}
@media (max-width: 992px) {
  .cid-ufroQ1JGZ5 img {
    transform: scale(1) translateX(0);
  }
}
.cid-ufroQ1JGZ5 .card-wrapper {
  background: linear-gradient(0deg, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0.6) 100%);
  backdrop-filter: blur(3.5px);
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.1);
  border-radius: 30px;
  padding: 6rem 3rem;
  margin: 0;
  z-index: 1;
  overflow: visible;
  position: relative;
  justify-content: center;
}
@media (max-width: 767px) {
  .cid-ufroQ1JGZ5 .card-wrapper {
    padding: 2rem 1rem;
  }
}
.cid-ufroQ1JGZ5 .card-wrapper:before {
  content: '';
  position: absolute;
  top: 0px;
  left: 0px;
  opacity: 0.3;
  height: 100%;
  width: 100%;
  pointer-events: none;
  border: 2px solid white;
  border-radius: 30px;
}
@media (max-width: 992px) {
  .cid-ufroQ1JGZ5 .card-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-ufroQ1JGZ5 .col-12 {
  position: relative;
}
.cid-ufroQ1JGZ5 .round {
  position: absolute;
  top: -60px;
  right: -150px;
  width: 280px;
  height: 280px;
  background: linear-gradient(0deg, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0.6) 100%);
  backdrop-filter: blur(3.5px);
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.1);
  border-radius: 50%;
  z-index: 2;
}
@media (max-width: 767px) {
  .cid-ufroQ1JGZ5 .round {
    top: -30px;
    right: -110px;
    width: 180px;
    height: 180px;
  }
}
.cid-ufroQ1JGZ5 .round:before {
  content: '';
  position: absolute;
  top: 0px;
  left: 0px;
  opacity: 0.3;
  height: 100%;
  width: 100%;
  pointer-events: none;
  border: 2px solid white;
  border-radius: 50%;
}
.cid-ufroQ1JGZ5 .round2 {
  top: auto;
  right: auto;
  bottom: -30px;
  left: -30px;
  width: 120px;
  height: 120px;
  z-index: 0;
}
.cid-ufroQ1JGZ5 .mbr-section-title {
  color: #263d5a;
}
.cid-ufroQ1JGZ5 .mbr-text,
.cid-ufroQ1JGZ5 .mbr-section-btn {
  color: #263d5a;
}
.cid-ufroQ1JGZ5 .mbr-section-subtitle {
  color: #263d5a;
}
.cid-tIdFw9DCBj {
  padding-top: 7rem;
  padding-bottom: 2rem;
  background-color: #232323;
}
.cid-tIdFw9DCBj .row-links {
  width: 100%;
  justify-content: center;
}
.cid-tIdFw9DCBj .social-row {
  width: 100%;
  justify-content: center;
}
.cid-tIdFw9DCBj .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-tIdFw9DCBj .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-tIdFw9DCBj .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-tIdFw9DCBj .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-tIdFw9DCBj .media-container-row .social-list {
  width: auto;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-tIdFw9DCBj .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-tIdFw9DCBj .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-tIdFw9DCBj .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-tIdFw9DCBj .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-tIdFw9DCBj .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-tIdFw9DCBj .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-tIdFw9DCBj .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-uiBYM4H6nW {
  z-index: 1000;
  width: 100%;
}
.cid-uiBYM4H6nW nav.navbar {
  position: fixed;
}
.cid-uiBYM4H6nW .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-uiBYM4H6nW .dropdown-menu {
  padding: 15px 0;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uiBYM4H6nW .dropdown-item {
  position: relative !important;
  padding: 2px 40px !important;
}
.cid-uiBYM4H6nW .dropdown-item:after {
  right: 1rem !important;
}
.cid-uiBYM4H6nW .dropdown-item:before {
  content: "";
  display: block !important;
  position: absolute;
  left: 40px;
  bottom: 2px;
  top: auto !important;
  height: 1px;
  width: 0;
  overflow: visible !important;
  transform: scale(1) !important;
  background-color: currentColor;
  transition: 0.4s cubic-bezier(0.33, 0.52, 0.05, 0.96);
}
.cid-uiBYM4H6nW .dropdown-item:hover:before,
.cid-uiBYM4H6nW .dropdown-item:focus:before {
  width: calc(100% - 80px);
}
.cid-uiBYM4H6nW .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uiBYM4H6nW .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uiBYM4H6nW .nav-link {
  position: relative;
}
.cid-uiBYM4H6nW .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-uiBYM4H6nW .container {
    flex-wrap: nowrap;
  }
}
.cid-uiBYM4H6nW .navbar-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  margin-right: auto;
  min-height: 98px;
}
.cid-uiBYM4H6nW .navbar-nav .nav-item {
  margin: 0;
}
.cid-uiBYM4H6nW .navbar-nav .nav-link {
  position: relative;
  padding: 0 !important;
  margin: 10px 20px !important;
  transition: .4s all;
  font-weight: 700 !important;
}
.cid-uiBYM4H6nW .navbar-nav .nav-link:before {
  content: "";
  display: block !important;
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  width: 0;
  background-color: currentColor;
  transition: 0.4s cubic-bezier(0.33, 0.52, 0.05, 0.96);
}
.cid-uiBYM4H6nW .navbar-nav .nav-link:hover:before {
  width: 100%;
}
.cid-uiBYM4H6nW .dropdown-menu,
.cid-uiBYM4H6nW .navbar.opened {
  background: #ffffff !important;
}
.cid-uiBYM4H6nW .nav-item:focus,
.cid-uiBYM4H6nW .nav-link:focus {
  outline: none;
}
.cid-uiBYM4H6nW .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uiBYM4H6nW .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uiBYM4H6nW .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uiBYM4H6nW .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uiBYM4H6nW .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uiBYM4H6nW .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uiBYM4H6nW .navbar {
  min-height: 100px;
  transition: all 0.3s;
  border-bottom: none !important;
  background: rgba(255, 255, 255, 0.2);
  box-shadow: none !important;
  padding: 0 !important;
}
.cid-uiBYM4H6nW .navbar.opened {
  transition: all 0.3s;
}
.cid-uiBYM4H6nW .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uiBYM4H6nW .navbar .navbar-logo {
  margin-right: 0.5rem !important;
}
.cid-uiBYM4H6nW .navbar .navbar-logo img {
  width: auto;
}
.cid-uiBYM4H6nW .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uiBYM4H6nW .navbar.collapsed {
  justify-content: center;
}
.cid-uiBYM4H6nW .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uiBYM4H6nW .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uiBYM4H6nW .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.7rem);
  }
}
.cid-uiBYM4H6nW .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uiBYM4H6nW .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uiBYM4H6nW .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-uiBYM4H6nW .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uiBYM4H6nW .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uiBYM4H6nW .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uiBYM4H6nW .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uiBYM4H6nW .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uiBYM4H6nW .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uiBYM4H6nW .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uiBYM4H6nW .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-uiBYM4H6nW .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uiBYM4H6nW .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uiBYM4H6nW .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uiBYM4H6nW .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uiBYM4H6nW .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uiBYM4H6nW .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uiBYM4H6nW .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uiBYM4H6nW .navbar.navbar-short {
  min-height: 100px;
}
.cid-uiBYM4H6nW .navbar.navbar-short .navbar-brand {
  min-height: 98px;
  padding: 0;
}
.cid-uiBYM4H6nW .navbar-brand {
  min-height: 98px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
  padding-right: 50px !important;
}
.cid-uiBYM4H6nW .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uiBYM4H6nW .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uiBYM4H6nW .dropdown-item.active,
.cid-uiBYM4H6nW .dropdown-item:active {
  background-color: transparent;
}
.cid-uiBYM4H6nW .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uiBYM4H6nW .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uiBYM4H6nW .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uiBYM4H6nW .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-uiBYM4H6nW .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uiBYM4H6nW .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uiBYM4H6nW ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uiBYM4H6nW .navbar-buttons {
  text-align: center;
}
.cid-uiBYM4H6nW button.navbar-toggler {
  outline: none;
  width: 24px;
  height: 24px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  padding: 0 !important;
  border: none !important;
}
.cid-uiBYM4H6nW button.navbar-toggler .hamburger div {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: absolute;
  right: 0;
  width: 100%;
  height: 4px;
  background-color: transparent;
  opacity: 1;
}
.cid-uiBYM4H6nW button.navbar-toggler .hamburger div:nth-child(1) {
  top: 0;
  transition: all 0.3s;
}
.cid-uiBYM4H6nW button.navbar-toggler .hamburger div:nth-child(2) {
  top: 10px;
  transition: all 0.25s;
}
.cid-uiBYM4H6nW button.navbar-toggler .hamburger div:nth-child(3) {
  top: 10px;
  transition: all 0.25s;
}
.cid-uiBYM4H6nW button.navbar-toggler .hamburger div:nth-child(4) {
  top: 20px;
  transition: all 0.3s;
}
.cid-uiBYM4H6nW button.navbar-toggler .hamburger span {
  width: 4px;
  height: 4px;
  background-color: #a148ff;
  border-radius: 50%;
}
.cid-uiBYM4H6nW button.navbar-toggler:hover .hamburger div:nth-child(1) {
  top: 10px;
  opacity: 0;
  transition: all 0.3s;
}
.cid-uiBYM4H6nW button.navbar-toggler:hover .hamburger div:nth-child(2) {
  top: 10px;
  transition: all 0.25s;
  opacity: 1;
}
.cid-uiBYM4H6nW button.navbar-toggler:hover .hamburger div:nth-child(3) {
  top: 10px;
  opacity: 1;
  transition: all 0.25s;
}
.cid-uiBYM4H6nW button.navbar-toggler:hover .hamburger div:nth-child(4) {
  top: 10px;
  opacity: 0;
  transition: all 0.3s;
}
.cid-uiBYM4H6nW nav.opened .hamburger div:nth-child(1) {
  top: 10px;
  opacity: 0;
}
.cid-uiBYM4H6nW nav.opened .hamburger div:nth-child(2) {
  top: 10px;
  opacity: 1;
  transform: rotate(45deg);
  background-color: #a148ff;
}
.cid-uiBYM4H6nW nav.opened .hamburger div:nth-child(3) {
  top: 10px;
  opacity: 1;
  transform: rotate(-45deg);
  background-color: #a148ff;
}
.cid-uiBYM4H6nW nav.opened .hamburger div:nth-child(4) {
  top: 10px;
  opacity: 0;
  transition: all 0.3s;
}
.cid-uiBYM4H6nW nav.opened button.navbar-toggler:hover {
  transform: rotate(90deg);
}
.cid-uiBYM4H6nW .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uiBYM4H6nW a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uiBYM4H6nW .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-uiBYM4H6nW .navbar {
    height: 70px;
  }
  .cid-uiBYM4H6nW .navbar.opened {
    height: auto;
  }
  .cid-uiBYM4H6nW .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uiBYM4H6nW .container,
.cid-uiBYM4H6nW .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uiBYM4H6nW .container,
  .cid-uiBYM4H6nW .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-uiBYM4H6nW .container-fluid {
  max-width: 100%;
  padding: 0 60px;
}
.cid-uiBYM4H6nW .navbar-collapse {
  min-height: 98px;
}
.cid-uiBYM4H6nW .mbr-section-btn {
  max-width: 35%;
}
.cid-uiBYM4H6nW .mbr-section-btn .btn {
  min-width: auto;
  max-width: 100%;
}
@media (max-width: 991px) {
  .cid-uiBYM4H6nW {
    min-height: 70px !important;
  }
  .cid-uiBYM4H6nW .navbar {
    min-height: 70px !important;
  }
  .cid-uiBYM4H6nW .container-fluid {
    padding: 0 7%;
  }
  .cid-uiBYM4H6nW .navbar-brand {
    width: calc(100% - 24px) !important;
    min-height: 68px !important;
    padding-right: 0 !important;
  }
  .cid-uiBYM4H6nW .navbar-collapse {
    width: 100%;
    min-height: auto;
    padding-bottom: 30px;
    order: 5;
  }
  .cid-uiBYM4H6nW .navbar-nav {
    width: 100%;
    padding-top: 30px;
    align-items: flex-start;
  }
  .cid-uiBYM4H6nW .navbar-nav li {
    margin: 0 !important;
  }
  .cid-uiBYM4H6nW .navbar-nav .nav-link {
    width: max-content !important;
    max-width: 100% !important;
    margin: 5px 0 !important;
  }
  .cid-uiBYM4H6nW .navbar .navbar-collapse .dropdown .dropdown-menu {
    padding: 8px 0 !important;
    box-shadow: none !important;
    background: transparent !important;
    border: none !important;
  }
  .cid-uiBYM4H6nW .navbar .navbar-collapse .dropdown .dropdown-menu .dropdown-item {
    padding: 2px 0 !important;
    width: max-content !important;
    max-width: 100% !important;
  }
  .cid-uiBYM4H6nW .navbar .navbar-collapse .dropdown .dropdown-menu .dropdown-item:before {
    left: 0 !important;
    bottom: 2px !important;
  }
  .cid-uiBYM4H6nW .navbar .navbar-collapse .dropdown .dropdown-menu .dropdown-item:hover:before {
    width: 100% !important;
  }
  .cid-uiBYM4H6nW .mbr-section-btn {
    max-width: 100%;
    margin-top: 10px;
  }
}
.cid-uiBYUYYgvH {
  padding-top: 8rem;
  padding-bottom: 7rem;
  background-image: url("../../../assets/images/background1.webp");
}
.cid-uiBYUYYgvH .card-wrapper {
  background: linear-gradient(0deg, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0.6) 100%);
  backdrop-filter: blur(3.5px);
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.1);
  border-radius: 30px;
  padding: 3rem 3rem;
  margin: 0;
  overflow: visible;
  position: relative;
  justify-content: center;
}
@media (max-width: 767px) {
  .cid-uiBYUYYgvH .card-wrapper {
    padding: 2rem 1rem;
  }
}
.cid-uiBYUYYgvH .card-wrapper:before {
  content: '';
  position: absolute;
  top: 0px;
  left: 0px;
  opacity: 0.3;
  height: 100%;
  width: 100%;
  border: 2px solid white;
  border-radius: 30px;
  pointer-events: none;
}
.cid-uiBYUYYgvH .mbr-text,
.cid-uiBYUYYgvH .mbr-section-btn {
  color: #263d5a;
}
.cid-uiBYUYYgvH .mbr-section-title {
  color: #263d5a;
}
.cid-uiBYM5OLmn {
  padding-top: 7rem;
  padding-bottom: 2rem;
  background-color: #232323;
}
.cid-uiBYM5OLmn .row-links {
  width: 100%;
  justify-content: center;
}
.cid-uiBYM5OLmn .social-row {
  width: 100%;
  justify-content: center;
}
.cid-uiBYM5OLmn .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-uiBYM5OLmn .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-uiBYM5OLmn .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-uiBYM5OLmn .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-uiBYM5OLmn .media-container-row .social-list {
  width: auto;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-uiBYM5OLmn .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-uiBYM5OLmn .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-uiBYM5OLmn .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-uiBYM5OLmn .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-uiBYM5OLmn .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-uiBYM5OLmn .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-uiBYM5OLmn .media-container-row .row-copirayt p {
  width: 100%;
}
