body {
  font-family: Jost;
}
.display-1 {
  font-family: 'Fondamento', handwriting;
  font-size: 3.5rem;
  line-height: 1.1;
}
.display-1 > .mbr-iconfont {
  font-size: 4.375rem;
}
.display-2 {
  font-family: 'Via Appia';
  font-size: 3.7rem;
  line-height: 1.1;
}
.display-2 > .mbr-iconfont {
  font-size: 4.625rem;
}
.display-4 {
  font-family: 'Arimo', sans-serif;
  font-size: 1.1rem;
  line-height: 1.5;
}
.display-4 > .mbr-iconfont {
  font-size: 1.375rem;
}
.display-5 {
  font-family: 'Jost', sans-serif;
  font-size: 2rem;
  line-height: 1.5;
}
.display-5 > .mbr-iconfont {
  font-size: 2.5rem;
}
.display-7 {
  font-family: 'Arimo', sans-serif;
  font-size: 1.2rem;
  line-height: 1.5;
}
.display-7 > .mbr-iconfont {
  font-size: 1.5rem;
}
/* ---- Fluid typography for mobile devices ---- */
/* 1.4 - font scale ratio ( bootstrap == 1.42857 ) */
/* 100vw - current viewport width */
/* (48 - 20)  48 == 48rem == 768px, 20 == 20rem == 320px(minimal supported viewport) */
/* 0.65 - min scale variable, may vary */
@media (max-width: 992px) {
  .display-1 {
    font-size: 2.8rem;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 2.45rem;
    font-size: calc( 1.875rem + (3.5 - 1.875) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (1.875rem + (3.5 - 1.875) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 2.96rem;
    font-size: calc( 1.945rem + (3.7 - 1.945) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.3 * (1.945rem + (3.7 - 1.945) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 0.88rem;
    font-size: calc( 1.0350000000000001rem + (1.1 - 1.0350000000000001) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.0350000000000001rem + (1.1 - 1.0350000000000001) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 1.6rem;
    font-size: calc( 1.35rem + (2 - 1.35) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.35rem + (2 - 1.35) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-7 {
    font-size: 0.96rem;
    font-size: calc( 1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* Buttons */
.btn {
  padding: 0.6rem 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: #a31426 !important;
}
.bg-success {
  background-color: #000000 !important;
}
.bg-info {
  background-color: #ff8a8a !important;
}
.bg-warning {
  background-color: #0000ff !important;
}
.bg-danger {
  background-color: #ff0000 !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #a31426 !important;
  border-color: #a31426 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus,
.btn-primary.active {
  color: #ffffff !important;
  background-color: #560b14 !important;
  border-color: #560b14 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #560b14 !important;
  border-color: #560b14 !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #de1430 !important;
  border-color: #de1430 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus,
.btn-secondary.active {
  color: #ffffff !important;
  background-color: #8e0d1f !important;
  border-color: #8e0d1f !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #8e0d1f !important;
  border-color: #8e0d1f !important;
}
.btn-info,
.btn-info:active {
  background-color: #ff8a8a !important;
  border-color: #ff8a8a !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus,
.btn-info.active {
  color: #ffffff !important;
  background-color: #ff3333 !important;
  border-color: #ff3333 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #ff3333 !important;
  border-color: #ff3333 !important;
}
.btn-success,
.btn-success:active {
  background-color: #000000 !important;
  border-color: #000000 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus,
.btn-success.active {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-warning,
.btn-warning:active {
  background-color: #0000ff !important;
  border-color: #0000ff !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus,
.btn-warning.active {
  color: #ffffff !important;
  background-color: #0000a8 !important;
  border-color: #0000a8 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #ffffff !important;
  background-color: #0000a8 !important;
  border-color: #0000a8 !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #ff0000 !important;
  border-color: #ff0000 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus,
.btn-danger.active {
  color: #ffffff !important;
  background-color: #a80000 !important;
  border-color: #a80000 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #a80000 !important;
  border-color: #a80000 !important;
}
.btn-white,
.btn-white:active {
  background-color: #fafafa !important;
  border-color: #fafafa !important;
  color: #7a7a7a !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus,
.btn-white.active {
  color: #4f4f4f !important;
  background-color: #cfcfcf !important;
  border-color: #cfcfcf !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-white.disabled,
.btn-white:disabled {
  color: #7a7a7a !important;
  background-color: #cfcfcf !important;
  border-color: #cfcfcf !important;
}
.btn-black,
.btn-black:active {
  background-color: #232323 !important;
  border-color: #232323 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-black:hover,
.btn-black:focus,
.btn-black.focus,
.btn-black.active {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-black.disabled,
.btn-black:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-primary-outline,
.btn-primary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #a31426;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #560b14 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #a31426 !important;
  border-color: #a31426 !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #de1430;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #8e0d1f !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #de1430 !important;
  border-color: #de1430 !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ff8a8a;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #ff3333 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #ff8a8a !important;
  border-color: #ff8a8a !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #000000;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #000000 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #0000ff;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #0000a8 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #ffffff !important;
  background-color: #0000ff !important;
  border-color: #0000ff !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ff0000;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #a80000 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #ff0000 !important;
  border-color: #ff0000 !important;
}
.btn-black-outline,
.btn-black-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #232323;
}
.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.focus,
.btn-black-outline.active {
  color: #000000 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-black-outline.disabled,
.btn-black-outline:disabled {
  color: #ffffff !important;
  background-color: #232323 !important;
  border-color: #232323 !important;
}
.btn-white-outline,
.btn-white-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #fafafa;
}
.btn-white-outline:hover,
.btn-white-outline:focus,
.btn-white-outline.focus,
.btn-white-outline.active {
  color: #cfcfcf !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-white-outline.disabled,
.btn-white-outline:disabled {
  color: #7a7a7a !important;
  background-color: #fafafa !important;
  border-color: #fafafa !important;
}
.text-primary {
  color: #a31426 !important;
}
.text-secondary {
  color: #de1430 !important;
}
.text-success {
  color: #000000 !important;
}
.text-info {
  color: #ff8a8a !important;
}
.text-warning {
  color: #0000ff !important;
}
.text-danger {
  color: #ff0000 !important;
}
.text-white {
  color: #fafafa !important;
}
.text-black {
  color: #232323 !important;
}
a.text-primary:hover,
a.text-primary:focus,
a.text-primary.active {
  color: #480911 !important;
}
a.text-secondary:hover,
a.text-secondary:focus,
a.text-secondary.active {
  color: #800c1c !important;
}
a.text-success:hover,
a.text-success:focus,
a.text-success.active {
  color: #000000 !important;
}
a.text-info:hover,
a.text-info:focus,
a.text-info.active {
  color: #ff2424 !important;
}
a.text-warning:hover,
a.text-warning:focus,
a.text-warning.active {
  color: #000099 !important;
}
a.text-danger:hover,
a.text-danger:focus,
a.text-danger.active {
  color: #990000 !important;
}
a.text-white:hover,
a.text-white:focus,
a.text-white.active {
  color: #c7c7c7 !important;
}
a.text-black:hover,
a.text-black:focus,
a.text-black.active {
  color: #000000 !important;
}
a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption) {
  position: relative;
  background-image: transparent;
  background-size: 10000px 2px;
  background-repeat: no-repeat;
  background-position: 0px 1.2em;
  background-position: -10000px 1.2em;
}
a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  transition: background-position 2s ease-in-out;
  background-image: linear-gradient(currentColor 50%, currentColor 50%);
  background-position: 0px 1.2em;
}
.nav-tabs .nav-link.active {
  color: #a31426;
}
.nav-tabs .nav-link:not(.active) {
  color: #232323;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #ff8a8a;
}
.alert-warning {
  background-color: #0000ff;
}
.alert-danger {
  background-color: #ff0000;
}
.mbr-gallery-filter li.active .btn {
  background-color: #a31426;
  border-color: #a31426;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
a,
a:hover {
  color: #a31426;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #e94d61;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #b3b3b3;
}
.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: #ccccff;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #ffcccc;
}
/* Scroll to top button*/
.scrollToTop_wraper {
  display: none;
}
.form-control {
  font-family: 'Arimo', sans-serif;
  font-size: 1.1rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control > .mbr-iconfont {
  font-size: 1.375rem;
}
.form-control:hover,
.form-control:focus {
  box-shadow: rgba(0, 0, 0, 0.07) 0px 1px 1px 0px, rgba(0, 0, 0, 0.07) 0px 1px 3px 0px, rgba(0, 0, 0, 0.03) 0px 0px 0px 1px;
  border-color: #a31426 !important;
}
.form-control:-webkit-input-placeholder {
  font-family: 'Arimo', sans-serif;
  font-size: 1.1rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control:-webkit-input-placeholder > .mbr-iconfont {
  font-size: 1.375rem;
}
blockquote {
  border-color: #a31426;
}
/* Forms */
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #a31426;
  color: #ffffff;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #a31426;
}
.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: #a31426;
  border-bottom-color: #a31426;
}
.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: #a31426 !important;
  box-shadow: none !important;
}
.xdsoft_datetimepicker .xdsoft_calendar td:hover,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div:hover {
  color: #ffffff !important;
  background: #de1430 !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='%23a31426' %3e%3cg fill='none' fill-rule='evenodd'%3e%3cg transform='translate(16 16)' stroke-width='2'%3e%3ccircle stroke-opacity='.5' cx='16' cy='16' r='16'/%3e%3cpath d='M32 16c0-9.94-8.06-16-16-16'%3e%3canimateTransform attributeName='transform' type='rotate' from='0 16 16' to='360 16 16' dur='1s' repeatCount='indefinite'/%3e%3c/path%3e%3c/g%3e%3c/g%3e%3c/svg%3e");
}
section.lazy-placeholder:after {
  opacity: 0.5;
}
body {
  overflow-x: hidden;
}
a {
  transition: color 0.6s;
}
.cid-tzhqcVmXtO {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 80px;
}
@media (min-width: 992px) {
  .cid-tzhqcVmXtO .mbr-section-btn {
    margin-right: -0.6rem;
  }
}
@media (max-width: 992px) {
  .cid-tzhqcVmXtO .align-right {
    text-align: center;
  }
}
@media (max-width: 767px) {
  .cid-tzhqcVmXtO .navbar-dropdown {
    padding: 0 1rem;
  }
}
.cid-tzhqcVmXtO .navbar-caption {
  font-weight: 500;
}
.cid-tzhqcVmXtO nav.navbar {
  position: fixed;
}
.cid-tzhqcVmXtO .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-tzhqcVmXtO .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tzhqcVmXtO .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tzhqcVmXtO .dropdown-item:hover,
.cid-tzhqcVmXtO .dropdown-item:focus {
  background: #a31426 !important;
  color: white !important;
}
.cid-tzhqcVmXtO .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tzhqcVmXtO .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tzhqcVmXtO .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tzhqcVmXtO .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tzhqcVmXtO .nav-link {
  position: relative;
}
.cid-tzhqcVmXtO .container {
  display: flex;
  margin: auto;
}
.cid-tzhqcVmXtO .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding: 0 0.25rem;
}
.cid-tzhqcVmXtO .dropdown-menu,
.cid-tzhqcVmXtO .navbar.opened {
  background: #ffffff !important;
}
.cid-tzhqcVmXtO .nav-item:focus,
.cid-tzhqcVmXtO .nav-link:focus {
  outline: none;
}
.cid-tzhqcVmXtO .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tzhqcVmXtO .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tzhqcVmXtO .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tzhqcVmXtO .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tzhqcVmXtO .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tzhqcVmXtO .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tzhqcVmXtO .navbar {
  min-height: 100px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-tzhqcVmXtO .navbar.opened {
  transition: all 0.3s;
}
.cid-tzhqcVmXtO .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tzhqcVmXtO .navbar .navbar-logo img {
  width: auto;
}
.cid-tzhqcVmXtO .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tzhqcVmXtO .navbar.collapsed {
  justify-content: center;
}
.cid-tzhqcVmXtO .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tzhqcVmXtO .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tzhqcVmXtO .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 6.9rem);
  }
}
.cid-tzhqcVmXtO .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tzhqcVmXtO .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tzhqcVmXtO .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-tzhqcVmXtO .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tzhqcVmXtO .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tzhqcVmXtO .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tzhqcVmXtO .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tzhqcVmXtO .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tzhqcVmXtO .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tzhqcVmXtO .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tzhqcVmXtO .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-tzhqcVmXtO .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tzhqcVmXtO .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tzhqcVmXtO .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tzhqcVmXtO .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tzhqcVmXtO .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tzhqcVmXtO .navbar .icons-menu {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tzhqcVmXtO .navbar.navbar-short {
  min-height: 80px;
}
.cid-tzhqcVmXtO .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tzhqcVmXtO .navbar.navbar-short .navbar-brand {
  min-height: 80px;
  padding: 0;
}
.cid-tzhqcVmXtO .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tzhqcVmXtO .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tzhqcVmXtO .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tzhqcVmXtO .dropdown-item.active,
.cid-tzhqcVmXtO .dropdown-item:active {
  background-color: transparent;
}
.cid-tzhqcVmXtO .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tzhqcVmXtO .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tzhqcVmXtO .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tzhqcVmXtO .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-tzhqcVmXtO .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tzhqcVmXtO .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tzhqcVmXtO ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tzhqcVmXtO button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tzhqcVmXtO button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-tzhqcVmXtO button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tzhqcVmXtO button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tzhqcVmXtO button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tzhqcVmXtO button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tzhqcVmXtO nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tzhqcVmXtO nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tzhqcVmXtO nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tzhqcVmXtO nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tzhqcVmXtO .navbar-dropdown {
  position: fixed;
}
.cid-tzhqcVmXtO a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tzhqcVmXtO .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-tzhqcVmXtO .navbar {
    height: 70px;
  }
  .cid-tzhqcVmXtO .navbar.opened {
    height: auto;
  }
  .cid-tzhqcVmXtO .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-u8vzTjUl5o {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #de1430;
}
.cid-u8vzTjUl5o .content-slider {
  display: -webkit-flex;
  justify-content: center;
  -webkit-justify-content: center;
}
.cid-u8vzTjUl5o .modal-body .close {
  background: #1b1b1b;
}
.cid-u8vzTjUl5o .modal-body .close span {
  font-style: normal;
}
@media (min-width: 992px) {
  .cid-u8vzTjUl5o .align-center {
    text-align: left;
    max-width: 850px;
  }
  .cid-u8vzTjUl5o .carousel-caption {
    justify-content: flex-start !important;
    padding-left: 5rem;
  }
}
.cid-u8vzTjUl5o .mbr-slider .carousel-control {
  background: black!important;
  border-radius: 6px;
  height: 100px;
  width: 50px;
}
.cid-u8vzTjUl5o .mbri-right:before {
  content: "\e909";
  color: white;
}
.cid-u8vzTjUl5o .mbri-left:before {
  content: "\e90a";
  color: white;
}
.cid-u8vzTjUl5o .container {
  max-width: 100%;
  padding: 0;
}
.cid-u8vzTjUl5o .content-slider-wrap {
  width: 100%;
}
.cid-u8vzTjUl5o .carousel-inner > .active,
.cid-u8vzTjUl5o .carousel-inner > .next,
.cid-u8vzTjUl5o .carousel-inner > .prev {
  display: -webkit-flex;
}
.cid-u8vzTjUl5o .carousel-control .icon-next,
.cid-u8vzTjUl5o .carousel-control .icon-prev {
  margin-top: -18px;
  font-size: 40px;
  line-height: 27px;
}
.cid-u8vzTjUl5o .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
.cid-u8vzTjUl5o .mbr-iconfont {
  color: black;
  font-size: 2rem!important;
  font-family: 'Moririse2' !important;
  font-weight: 600;
}
.cid-u8vzTjUl5o .boxed-slider {
  position: relative;
  padding: 93px 0;
}
.cid-u8vzTjUl5o .boxed-slider > div {
  position: relative;
}
.cid-u8vzTjUl5o .container img {
  width: 100%;
}
.cid-u8vzTjUl5o .container img + .row {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 2;
}
.cid-u8vzTjUl5o .mbr-section {
  padding: 0;
  background-attachment: scroll;
}
.cid-u8vzTjUl5o .mbr-table-cell {
  padding: 0;
}
.cid-u8vzTjUl5o .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-u8vzTjUl5o .carousel-caption {
  top: auto;
  right: 0;
  bottom: 2rem;
  left: 0;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
}
.cid-u8vzTjUl5o .container-slide.container {
  width: 100%;
  min-height: 100vh;
  padding: 0;
}
.cid-u8vzTjUl5o .carousel-item {
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: cover;
  opacity: 1;
}
.cid-u8vzTjUl5o .carousel-item.active.right,
.cid-u8vzTjUl5o .carousel-item.next {
  left: 0;
  transition: opacity 0.7s ease-in-out;
  opacity: 0;
}
.cid-u8vzTjUl5o .carousel-item.active.left,
.cid-u8vzTjUl5o .carousel-item.prev {
  left: 0;
  transition: opacity 0.7s ease-in-out;
  opacity: 0;
}
.cid-u8vzTjUl5o .carousel-item.active,
.cid-u8vzTjUl5o .carousel-item.next.left,
.cid-u8vzTjUl5o .carousel-item.prev.right {
  left: 0;
  opacity: 1;
}
.cid-u8vzTjUl5o .mbr-slider .carousel-control {
  top: 50%;
  margin-top: -1.5rem;
  font-size: 35px;
  transition: all .3s;
  z-index: 11;
}
@media (max-width: 767px) {
  .cid-u8vzTjUl5o .mbr-slider .carousel-control {
    top: 20%;
  }
}
.cid-u8vzTjUl5o .mbr-slider .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-u8vzTjUl5o .mbr-slider .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-u8vzTjUl5o .mbr-slider .carousel-control .mbr-iconfont {
  font-size: 1.5rem;
}
.cid-u8vzTjUl5o .mbr-slider .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem !important;
}
.cid-u8vzTjUl5o .mbr-slider .carousel-indicators li {
  max-width: 15px;
  height: 10px;
  width: 10px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: .5;
  transition: all .3s;
}
.cid-u8vzTjUl5o .mbr-slider .carousel-indicators li.active,
.cid-u8vzTjUl5o .mbr-slider .carousel-indicators li:hover {
  opacity: .9;
}
.cid-u8vzTjUl5o .mbr-slider .carousel-indicators li::after,
.cid-u8vzTjUl5o .mbr-slider .carousel-indicators li::before {
  content: none;
}
.cid-u8vzTjUl5o .mbr-slider .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 576px) {
  .cid-u8vzTjUl5o .mbr-slider .carousel-indicators {
    display: none !important;
  }
}
.cid-u8vzTjUl5o .mbr-slider > .container img {
  width: 100%;
}
.cid-u8vzTjUl5o .mbr-slider > .container img + .row {
  position: absolute;
  top: 50%;
  right: 0;
  left: 0;
  z-index: 2;
  -moz-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.cid-u8vzTjUl5o .mbr-slider > .container .carousel-indicators {
  margin-bottom: 3px;
}
@media (max-width: 576px) {
  .cid-u8vzTjUl5o .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-u8vzTjUl5o .mbr-slider .mbr-section {
  padding: 0;
  background-attachment: scroll;
}
.cid-u8vzTjUl5o .mbr-slider .mbr-table-cell {
  padding: 0;
}
.cid-u8vzTjUl5o .carousel-item .container.container-slide {
  position: initial;
  min-height: 0;
}
.cid-u8vzTjUl5o .full-screen .slider-fullscreen-image {
  min-height: 100vh;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: cover;
}
.cid-u8vzTjUl5o .full-screen .slider-fullscreen-image.active {
  display: -o-flex;
}
.cid-u8vzTjUl5o .full-screen .container {
  width: auto;
  padding-right: 0;
  padding-left: 0;
}
.cid-u8vzTjUl5o .full-screen .carousel-item .container.container-slide {
  width: 100%;
  min-height: 100vh;
  padding: 0;
}
.cid-u8vzTjUl5o .full-screen .carousel-item .container.container-slide img {
  display: none;
}
.cid-u8vzTjUl5o .mbr-background-video-preview {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.cid-u8vzTjUl5o .mbr-overlay ~ .container-slide {
  z-index: auto;
}
.cid-u8vzTjUl5o .mbr-slider.slide .container {
  overflow: hidden;
  padding: 0;
}
.cid-u8vzTjUl5o .carousel-inner {
  height: 100%;
}
.cid-u8vzTjUl5o .slider-fullscreen-image {
  height: 100%;
  background: transparent !important;
}
.cid-u8vzTjUl5o .image_wrapper {
  height: 740px;
  width: 100%;
  position: relative;
  display: inline-block;
}
.cid-u8vzTjUl5o .image_wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-u8vzTjUl5o .carousel-item .container-slide {
  text-align: center;
}
@media (max-width: 767px) {
  .cid-u8vzTjUl5o .container .carousel-control {
    margin-bottom: 0;
  }
  .cid-u8vzTjUl5o .content-slider-wrap {
    width: 100%!important;
  }
  .cid-u8vzTjUl5o .image_wrapper {
    height: 444px;
  }
}
.cid-u8rKn3YzUd {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-u8rKn3YzUd .mbr-section-subtitle {
  color: #4f87fb;
  margin-bottom: 10px;
  font-weight: 800;
}
.cid-u8rKn3YzUd .mbr-section-subtitle.display-4 {
  font-size: 13px;
  letter-spacing: 2px;
  line-height: 1.85;
}
.cid-u8rKn3YzUd .mbr-section-title {
  margin-bottom: 20px;
  line-height: 1.2;
  letter-spacing: -0.5px;
  font-weight: 700;
  color: #130947;
}
.cid-u8rKn3YzUd .mbr-section-text {
  margin-top: 20px;
  color: #6d7a8c;
}
.cid-u8rKn3YzUd .mbr-section-text.display-7 {
  line-height: 1.5;
  letter-spacing: 0;
}
.cid-u8rKn3YzUd .card .card-wrapper {
  overflow: hidden;
  height: 100%;
  color: #232323;
  padding: 0;
  position: relative;
  border-radius: 4px;
}
.cid-u8rKn3YzUd .card .card-wrapper img {
  height: 270px;
  width: 100%;
  object-fit: cover;
}
.cid-u8rKn3YzUd .card .card-wrapper .card-box {
  opacity: 0.8;
  background: #a31426;
  position: absolute;
  width: 100%;
  text-align: center;
  padding: 13.5px 15px;
  bottom: 0;
  left: 0;
  border-radius: 4px;
}
.cid-u8rKn3YzUd .card .card-wrapper .card-box .card-title {
  color: #ffffff;
  margin: 0;
  text-align: center;
  line-height: 1.1;
  letter-spacing: 0;
}
.cid-u8rKn3YzUd .card .card-wrapper .card-box .card-title .mbr-iconfont {
  margin-right: 10px;
  font-size: 1.5rem;
  display: inline-block;
  vertical-align: middle;
}
.cid-u8rKn3YzUd .mbr-fallback-image.disabled {
  display: none;
}
.cid-u8rKn3YzUd .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u8rSPBxGss {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #fffcf5;
}
.cid-u8rSPBxGss .mbr-fallback-image.disabled {
  display: none;
}
.cid-u8rSPBxGss .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u8rSPBxGss .row {
  flex-direction: row-reverse;
}
@media (max-width: 991px) {
  .cid-u8rSPBxGss .row {
    align-items: center !important;
  }
}
.cid-u8rSPBxGss .mbr-section-head {
  width: 100%;
  margin-bottom: 90px;
}
@media (max-width: 991px) {
  .cid-u8rSPBxGss .mbr-section-head {
    margin-bottom: 75px;
  }
}
@media (max-width: 767px) {
  .cid-u8rSPBxGss .mbr-section-head {
    margin-bottom: 65px;
  }
}
.cid-u8rSPBxGss .mbr-section-title {
  color: #829D85;
  margin-bottom: 0;
}
.cid-u8rSPBxGss .mbr-section-subtitle {
  color: #353535;
  margin-top: 20px;
}
.cid-u8rSPBxGss .text-wrap {
  width: 100%;
  padding: 36px 0;
  border-top: 1px solid #000000;
}
@media (max-width: 991px) {
  .cid-u8rSPBxGss .text-wrap {
    padding: 30px 0;
  }
}
.cid-u8rSPBxGss .mbr-title {
  color: #000000;
}
.cid-u8rSPBxGss .mbr-text {
  margin-top: 12px;
  color: #353535;
}
.cid-u8rSPBxGss .list-box {
  width: 100%;
}
.cid-u8rSPBxGss .list {
  list-style: none;
  margin-top: 22px;
  margin-bottom: auto;
  padding-left: 30px;
  color: #000000;
  padding-left: 0;
}
.cid-u8rSPBxGss .list-text {
  position: relative;
}
.cid-u8rSPBxGss .list-text:not(:first-child) {
  margin-top: 12px;
}
.cid-u8rSPBxGss .mbr-section-btn {
  margin-top: 20px;
}
.cid-u8rSPBxGss .img-box {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  border-radius: 0 0 0 100px;
  overflow: hidden;
  border-radius: 0 0 100px 0;
}
@media (max-width: 991px) {
  .cid-u8rSPBxGss .img-box {
    border-radius: 0;
  }
}
@media (max-width: 767px) {
  .cid-u8rSPBxGss .img-box {
    border-radius: 0 0 0 15vw;
    border-radius: 0 0 15vw 0;
  }
}
.cid-u8rSPBxGss .img-box img {
  width: 100%;
  max-width: 100%;
  object-fit: cover;
}
.cid-u8vaLUI9UQ {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-u8vaLUI9UQ .mbr-fallback-image.disabled {
  display: none;
}
.cid-u8vaLUI9UQ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u8vaLUI9UQ .top-line {
  display: flex;
  justify-content: space-between;
}
.cid-u8vaLUI9UQ .mbr-section-title,
.cid-u8vaLUI9UQ .mbr-section-subtitle {
  text-align: center;
}
.cid-u8vaLUI9UQ .item:not(:nth-last-child(1)) {
  margin-bottom: 2rem;
}
.cid-u8vaLUI9UQ .item-wrapper {
  border-radius: 4px;
  background-color: #fafafa;
}
.cid-u8vaLUI9UQ .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
@media (max-width: 767px) {
  .cid-u8vaLUI9UQ .card-box {
    padding: 1rem;
  }
}
@media (min-width: 768px) {
  .cid-u8vaLUI9UQ .card-box {
    padding-right: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-u8vaLUI9UQ .card-box {
    padding-left: 2rem;
    padding-right: 4rem;
  }
}
.cid-u8vaLUI9UQ .card-title {
  color: #000000;
}
.cid-u8vaLUI9UQ .mbr-text {
  color: #000000;
}
.cid-u8wIViJKDG.popup-builder {
  background-color: #ffffff;
}
.cid-u8wIViJKDG.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-u8wIViJKDG.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-u8wIViJKDG .modal-content,
.cid-u8wIViJKDG .modal-dialog {
  height: auto;
}
.cid-u8wIViJKDG .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-u8wIViJKDG .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-u8wIViJKDG .form-wrapper .mbr-form .form-group,
  .cid-u8wIViJKDG .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-u8wIViJKDG .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-u8wIViJKDG .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-u8wIViJKDG .mbr-text {
  text-align: center;
}
.cid-u8wIViJKDG .pt-0 {
  padding-top: 0 !important;
}
.cid-u8wIViJKDG .pb-0 {
  padding-bottom: 0 !important;
}
.cid-u8wIViJKDG .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-u8wIViJKDG .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-u8wIViJKDG .modal-open {
  overflow: hidden;
}
.cid-u8wIViJKDG .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-u8wIViJKDG .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-u8wIViJKDG .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-u8wIViJKDG .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-u8wIViJKDG .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-u8wIViJKDG .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-u8wIViJKDG .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-u8wIViJKDG .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-u8wIViJKDG .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-u8wIViJKDG .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-u8wIViJKDG .modal-backdrop.fade {
  opacity: 0;
}
.cid-u8wIViJKDG .modal-backdrop.show {
  opacity: .5;
}
.cid-u8wIViJKDG .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-u8wIViJKDG .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-u8wIViJKDG .modal-header {
    padding: 1rem;
  }
}
.cid-u8wIViJKDG .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-u8wIViJKDG .modal-header .close svg {
  fill: #000000;
}
.cid-u8wIViJKDG .modal-header .close:hover {
  opacity: 1;
}
.cid-u8wIViJKDG .modal-header .close:focus {
  outline: none;
}
.cid-u8wIViJKDG .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
}
.cid-u8wIViJKDG .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-u8wIViJKDG .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-u8wIViJKDG .modal-body {
    padding: 1rem;
  }
}
.cid-u8wIViJKDG .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-u8wIViJKDG .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-u8wIViJKDG .modal-footer {
    padding: 1rem;
  }
}
.cid-u8wIViJKDG .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-u8wIViJKDG .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-u8wIViJKDG .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-u8wIViJKDG .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-u8wIViJKDG .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-u8wIViJKDG .modal-lg,
  .cid-u8wIViJKDG .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-u8wIViJKDG .modal-xl {
    max-width: 1140px;
  }
}
.cid-u8wIViJKDG .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-u8wIViJKDG .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-u8wIViJKDG .form-group {
  margin-bottom: 1rem;
}
.cid-u8wIViJKDG .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-u8wIViJKDG .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-u8wIViJKDG .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-u8wIViJKDG .mbr-section-btn {
  margin: 0;
}
.cid-u8wIViJKDG .mbr-section-btn .btn {
  margin: 0;
}
.cid-u8HDCUdQE0 {
  padding-top: 45px;
  padding-bottom: 15px;
  background-color: #000000;
}
.cid-u8HDCUdQE0 .listico {
  padding-right: 1rem;
  font-size: 1.4rem;
}
.cid-u8HDCUdQE0 .navbar-logo {
  width: 150px;
  margin-bottom: 10px;
  margin: auto;
}
.cid-u8HDCUdQE0 .btn {
  margin: 0 !important;
  height: 55px;
}
.cid-u8HDCUdQE0 .btn-primary {
  border: 1px solid #a31426 !important;
}
.cid-u8HDCUdQE0 .btn-primary:hover {
  border: 1px solid #a31426 !important;
}
.cid-u8HDCUdQE0 .stripe {
  border-bottom: 1px solid #ff8a8a;
  max-width: 90%;
  position: relative;
  margin-bottom: 0.5rem;
}
.cid-u8HDCUdQE0 .form-group {
  padding-right: 0;
  max-width: 220px;
}
.cid-u8HDCUdQE0 .input-group-btn {
  padding-left: 0;
}
.cid-u8HDCUdQE0 .form-control {
  background: transparent;
  padding: 0.5rem 1rem;
  min-height: 55px;
  border-radius: 0px;
}
.cid-u8HDCUdQE0 .stripe:before {
  content: "";
  position: absolute;
  top: 100%;
  right: 0;
  border-bottom: 1px solid #ff8a8a;
  width: 85%;
}
.cid-u8HDCUdQE0 .mbr-text {
  color: #444;
}
.cid-u8HDCUdQE0 h5 {
  margin-bottom: 0;
}
.cid-u8HDCUdQE0 .navbar-brand {
  margin: auto;
  width: 100%;
  text-align: center;
}
.cid-u8HDCUdQE0 .list-item {
  display: flex;
  padding-top: 10px;
  padding-bottom: 10px;
  -webkit-align-items: center;
  align-items: center;
}
.cid-u8HDCUdQE0 .tips {
  height: 90px;
  width: 90px;
  border-radius: 6px;
  margin: 4px;
}
.cid-u8HDCUdQE0 .socicon {
  font-size: 1.3rem;
  background: #222222;
  border-radius: 100%;
  width: 38px;
  height: 38px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-u8HDCUdQE0 .social-list {
  display: flex;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-u8HDCUdQE0 .social-list .soc-item {
  margin: 0 0.3rem;
}
.cid-u8HDCUdQE0 .social-list a {
  margin: 0;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-u8HDCUdQE0 .social-list a:hover {
  opacity: 0.4;
}
.cid-u8HDCUdQE0 .media-container-row > div {
  padding: 0px;
}
.cid-u8HDCUdQE0 .text2 {
  color: #ffffff;
  text-align: left;
}
.cid-u8HDCUdQE0 .group-title {
  text-align: left;
  color: #ff8a8a;
  padding-bottom: 0.2rem;
}
.cid-u8HDCUdQE0 .links {
  color: #ffffff;
  line-height: 1.6;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-u8HDCUdQE0 .col-sm-12 {
    margin-bottom: 2rem;
  }
  .cid-u8HDCUdQE0 .social-list,
  .cid-u8HDCUdQE0 .img-list {
    -webkit-justify-content: center;
    justify-content: center;
    text-align: center;
  }
  .cid-u8HDCUdQE0 h3 {
    margin-bottom: 10px;
  }
}
@media (max-width: 576px) {
  .cid-u8HDCUdQE0 .form-group {
    max-width: 180px;
  }
}
.cid-u8HDCUdQE0 .links span {
  color: #9e9e9e;
}
.cid-u8HDCUdQE0 .logo-sub-title {
  text-align: center;
  color: #ffffff;
}
.cid-u8HDCUdQE0 .logo-title {
  text-align: center;
}
.cid-u8HDCUdQE0 .logo-title,
.cid-u8HDCUdQE0 .logo {
  color: #ffffff;
}
.cid-u8wO4u3PJs {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 80px;
}
@media (min-width: 992px) {
  .cid-u8wO4u3PJs .mbr-section-btn {
    margin-right: -0.6rem;
  }
}
@media (max-width: 992px) {
  .cid-u8wO4u3PJs .align-right {
    text-align: center;
  }
}
@media (max-width: 767px) {
  .cid-u8wO4u3PJs .navbar-dropdown {
    padding: 0 1rem;
  }
}
.cid-u8wO4u3PJs .navbar-caption {
  font-weight: 500;
}
.cid-u8wO4u3PJs nav.navbar {
  position: fixed;
}
.cid-u8wO4u3PJs .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-u8wO4u3PJs .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-u8wO4u3PJs .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-u8wO4u3PJs .dropdown-item:hover,
.cid-u8wO4u3PJs .dropdown-item:focus {
  background: #a31426 !important;
  color: white !important;
}
.cid-u8wO4u3PJs .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-u8wO4u3PJs .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-u8wO4u3PJs .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-u8wO4u3PJs .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-u8wO4u3PJs .nav-link {
  position: relative;
}
.cid-u8wO4u3PJs .container {
  display: flex;
  margin: auto;
}
.cid-u8wO4u3PJs .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding: 0 0.25rem;
}
.cid-u8wO4u3PJs .dropdown-menu,
.cid-u8wO4u3PJs .navbar.opened {
  background: #ffffff !important;
}
.cid-u8wO4u3PJs .nav-item:focus,
.cid-u8wO4u3PJs .nav-link:focus {
  outline: none;
}
.cid-u8wO4u3PJs .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-u8wO4u3PJs .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-u8wO4u3PJs .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-u8wO4u3PJs .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-u8wO4u3PJs .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-u8wO4u3PJs .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-u8wO4u3PJs .navbar {
  min-height: 100px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-u8wO4u3PJs .navbar.opened {
  transition: all 0.3s;
}
.cid-u8wO4u3PJs .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-u8wO4u3PJs .navbar .navbar-logo img {
  width: auto;
}
.cid-u8wO4u3PJs .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-u8wO4u3PJs .navbar.collapsed {
  justify-content: center;
}
.cid-u8wO4u3PJs .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-u8wO4u3PJs .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-u8wO4u3PJs .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 6.9rem);
  }
}
.cid-u8wO4u3PJs .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-u8wO4u3PJs .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-u8wO4u3PJs .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-u8wO4u3PJs .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-u8wO4u3PJs .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-u8wO4u3PJs .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-u8wO4u3PJs .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-u8wO4u3PJs .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-u8wO4u3PJs .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-u8wO4u3PJs .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-u8wO4u3PJs .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-u8wO4u3PJs .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-u8wO4u3PJs .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-u8wO4u3PJs .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-u8wO4u3PJs .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-u8wO4u3PJs .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-u8wO4u3PJs .navbar .icons-menu {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-u8wO4u3PJs .navbar.navbar-short {
  min-height: 80px;
}
.cid-u8wO4u3PJs .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-u8wO4u3PJs .navbar.navbar-short .navbar-brand {
  min-height: 80px;
  padding: 0;
}
.cid-u8wO4u3PJs .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-u8wO4u3PJs .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-u8wO4u3PJs .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-u8wO4u3PJs .dropdown-item.active,
.cid-u8wO4u3PJs .dropdown-item:active {
  background-color: transparent;
}
.cid-u8wO4u3PJs .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-u8wO4u3PJs .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-u8wO4u3PJs .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-u8wO4u3PJs .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-u8wO4u3PJs .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-u8wO4u3PJs .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-u8wO4u3PJs ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-u8wO4u3PJs button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-u8wO4u3PJs button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-u8wO4u3PJs button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-u8wO4u3PJs button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u8wO4u3PJs button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u8wO4u3PJs button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-u8wO4u3PJs nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u8wO4u3PJs nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-u8wO4u3PJs nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-u8wO4u3PJs nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u8wO4u3PJs .navbar-dropdown {
  position: fixed;
}
.cid-u8wO4u3PJs a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-u8wO4u3PJs .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-u8wO4u3PJs .navbar {
    height: 70px;
  }
  .cid-u8wO4u3PJs .navbar.opened {
    height: auto;
  }
  .cid-u8wO4u3PJs .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-u8wQ9nX76S {
  padding-top: 10rem;
  padding-bottom: 10rem;
  background-image: url("https://whosoeverwillcc.org/assets/images/pic3-2000x1113.jpg");
}
.cid-u8wQ9nX76S .mbr-fallback-image.disabled {
  display: none;
}
.cid-u8wQ9nX76S .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u8wQ9nX76S .mbr-section-title {
  color: #000000;
  margin-bottom: 20px;
  text-align: left;
}
.cid-u8wQ9nX76S .mbr-section-subtitle {
  color: #000000;
  margin-bottom: 20px;
  text-align: left;
}
.cid-u8wQ9nX76S .mbr-text {
  color: #FFFFFF;
}
.cid-u8wQ9nX76S .mbr-section-btn {
  margin-top: 18px;
}
.cid-u8wQ9nX76S .mbr-text,
.cid-u8wQ9nX76S .mbr-section-btn {
  text-align: left;
  color: #000000;
}
.cid-u8wT0tVte7 {
  padding-top: 3rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-u8wT0tVte7 .mbr-fallback-image.disabled {
  display: none;
}
.cid-u8wT0tVte7 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u8wT0tVte7 .text-wrap {
  width: 100%;
}
.cid-u8wT0tVte7 .mbr-title {
  margin-bottom: 0;
  color: #000000;
}
.cid-u8wT0tVte7 .mbr-text {
  padding-top: 10px;
  color: #000000;
}
.cid-u8wT0tVte7 .comment-text {
  margin-top: 40px;
  color: #000000;
  padding: 0 20px 0 30px;
  border-left: 1px solid currentColor;
}
.cid-u8wO4x1xff.popup-builder {
  background-color: #ffffff;
}
.cid-u8wO4x1xff.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-u8wO4x1xff.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-u8wO4x1xff .modal-content,
.cid-u8wO4x1xff .modal-dialog {
  height: auto;
}
.cid-u8wO4x1xff .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-u8wO4x1xff .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-u8wO4x1xff .form-wrapper .mbr-form .form-group,
  .cid-u8wO4x1xff .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-u8wO4x1xff .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-u8wO4x1xff .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-u8wO4x1xff .mbr-text {
  text-align: center;
}
.cid-u8wO4x1xff .pt-0 {
  padding-top: 0 !important;
}
.cid-u8wO4x1xff .pb-0 {
  padding-bottom: 0 !important;
}
.cid-u8wO4x1xff .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-u8wO4x1xff .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-u8wO4x1xff .modal-open {
  overflow: hidden;
}
.cid-u8wO4x1xff .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-u8wO4x1xff .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-u8wO4x1xff .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-u8wO4x1xff .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-u8wO4x1xff .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-u8wO4x1xff .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-u8wO4x1xff .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-u8wO4x1xff .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-u8wO4x1xff .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-u8wO4x1xff .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-u8wO4x1xff .modal-backdrop.fade {
  opacity: 0;
}
.cid-u8wO4x1xff .modal-backdrop.show {
  opacity: .5;
}
.cid-u8wO4x1xff .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-u8wO4x1xff .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-u8wO4x1xff .modal-header {
    padding: 1rem;
  }
}
.cid-u8wO4x1xff .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-u8wO4x1xff .modal-header .close svg {
  fill: #000000;
}
.cid-u8wO4x1xff .modal-header .close:hover {
  opacity: 1;
}
.cid-u8wO4x1xff .modal-header .close:focus {
  outline: none;
}
.cid-u8wO4x1xff .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
}
.cid-u8wO4x1xff .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-u8wO4x1xff .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-u8wO4x1xff .modal-body {
    padding: 1rem;
  }
}
.cid-u8wO4x1xff .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-u8wO4x1xff .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-u8wO4x1xff .modal-footer {
    padding: 1rem;
  }
}
.cid-u8wO4x1xff .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-u8wO4x1xff .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-u8wO4x1xff .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-u8wO4x1xff .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-u8wO4x1xff .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-u8wO4x1xff .modal-lg,
  .cid-u8wO4x1xff .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-u8wO4x1xff .modal-xl {
    max-width: 1140px;
  }
}
.cid-u8wO4x1xff .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-u8wO4x1xff .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-u8wO4x1xff .form-group {
  margin-bottom: 1rem;
}
.cid-u8wO4x1xff .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-u8wO4x1xff .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-u8wO4x1xff .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-u8wO4x1xff .mbr-section-btn {
  margin: 0;
}
.cid-u8wO4x1xff .mbr-section-btn .btn {
  margin: 0;
}
.cid-u8HEp8inNf {
  padding-top: 45px;
  padding-bottom: 15px;
  background-color: #000000;
}
.cid-u8HEp8inNf .listico {
  padding-right: 1rem;
  font-size: 1.4rem;
}
.cid-u8HEp8inNf .navbar-logo {
  width: 150px;
  margin-bottom: 10px;
  margin: auto;
}
.cid-u8HEp8inNf .btn {
  margin: 0 !important;
  height: 55px;
}
.cid-u8HEp8inNf .btn-primary {
  border: 1px solid #a31426 !important;
}
.cid-u8HEp8inNf .btn-primary:hover {
  border: 1px solid #a31426 !important;
}
.cid-u8HEp8inNf .stripe {
  border-bottom: 1px solid #ff8a8a;
  max-width: 90%;
  position: relative;
  margin-bottom: 0.5rem;
}
.cid-u8HEp8inNf .form-group {
  padding-right: 0;
  max-width: 220px;
}
.cid-u8HEp8inNf .input-group-btn {
  padding-left: 0;
}
.cid-u8HEp8inNf .form-control {
  background: transparent;
  padding: 0.5rem 1rem;
  min-height: 55px;
  border-radius: 0px;
}
.cid-u8HEp8inNf .stripe:before {
  content: "";
  position: absolute;
  top: 100%;
  right: 0;
  border-bottom: 1px solid #ff8a8a;
  width: 85%;
}
.cid-u8HEp8inNf .mbr-text {
  color: #444;
}
.cid-u8HEp8inNf h5 {
  margin-bottom: 0;
}
.cid-u8HEp8inNf .navbar-brand {
  margin: auto;
  width: 100%;
  text-align: center;
}
.cid-u8HEp8inNf .list-item {
  display: flex;
  padding-top: 10px;
  padding-bottom: 10px;
  -webkit-align-items: center;
  align-items: center;
}
.cid-u8HEp8inNf .tips {
  height: 90px;
  width: 90px;
  border-radius: 6px;
  margin: 4px;
}
.cid-u8HEp8inNf .socicon {
  font-size: 1.3rem;
  background: #222222;
  border-radius: 100%;
  width: 38px;
  height: 38px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-u8HEp8inNf .social-list {
  display: flex;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-u8HEp8inNf .social-list .soc-item {
  margin: 0 0.3rem;
}
.cid-u8HEp8inNf .social-list a {
  margin: 0;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-u8HEp8inNf .social-list a:hover {
  opacity: 0.4;
}
.cid-u8HEp8inNf .media-container-row > div {
  padding: 0px;
}
.cid-u8HEp8inNf .text2 {
  color: #ffffff;
  text-align: left;
}
.cid-u8HEp8inNf .group-title {
  text-align: left;
  color: #ff8a8a;
  padding-bottom: 0.2rem;
}
.cid-u8HEp8inNf .links {
  color: #ffffff;
  line-height: 1.6;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-u8HEp8inNf .col-sm-12 {
    margin-bottom: 2rem;
  }
  .cid-u8HEp8inNf .social-list,
  .cid-u8HEp8inNf .img-list {
    -webkit-justify-content: center;
    justify-content: center;
    text-align: center;
  }
  .cid-u8HEp8inNf h3 {
    margin-bottom: 10px;
  }
}
@media (max-width: 576px) {
  .cid-u8HEp8inNf .form-group {
    max-width: 180px;
  }
}
.cid-u8HEp8inNf .links span {
  color: #9e9e9e;
}
.cid-u8HEp8inNf .logo-sub-title {
  text-align: center;
  color: #ffffff;
}
.cid-u8HEp8inNf .logo-title {
  text-align: center;
}
.cid-u8HEp8inNf .logo-title,
.cid-u8HEp8inNf .logo {
  color: #ffffff;
}
.cid-u8AfM5VQX1 {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 80px;
}
@media (min-width: 992px) {
  .cid-u8AfM5VQX1 .mbr-section-btn {
    margin-right: -0.6rem;
  }
}
@media (max-width: 992px) {
  .cid-u8AfM5VQX1 .align-right {
    text-align: center;
  }
}
@media (max-width: 767px) {
  .cid-u8AfM5VQX1 .navbar-dropdown {
    padding: 0 1rem;
  }
}
.cid-u8AfM5VQX1 .navbar-caption {
  font-weight: 500;
}
.cid-u8AfM5VQX1 nav.navbar {
  position: fixed;
}
.cid-u8AfM5VQX1 .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-u8AfM5VQX1 .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-u8AfM5VQX1 .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-u8AfM5VQX1 .dropdown-item:hover,
.cid-u8AfM5VQX1 .dropdown-item:focus {
  background: #a31426 !important;
  color: white !important;
}
.cid-u8AfM5VQX1 .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-u8AfM5VQX1 .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-u8AfM5VQX1 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-u8AfM5VQX1 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-u8AfM5VQX1 .nav-link {
  position: relative;
}
.cid-u8AfM5VQX1 .container {
  display: flex;
  margin: auto;
}
.cid-u8AfM5VQX1 .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding: 0 0.25rem;
}
.cid-u8AfM5VQX1 .dropdown-menu,
.cid-u8AfM5VQX1 .navbar.opened {
  background: #ffffff !important;
}
.cid-u8AfM5VQX1 .nav-item:focus,
.cid-u8AfM5VQX1 .nav-link:focus {
  outline: none;
}
.cid-u8AfM5VQX1 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-u8AfM5VQX1 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-u8AfM5VQX1 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-u8AfM5VQX1 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-u8AfM5VQX1 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-u8AfM5VQX1 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-u8AfM5VQX1 .navbar {
  min-height: 100px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-u8AfM5VQX1 .navbar.opened {
  transition: all 0.3s;
}
.cid-u8AfM5VQX1 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-u8AfM5VQX1 .navbar .navbar-logo img {
  width: auto;
}
.cid-u8AfM5VQX1 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-u8AfM5VQX1 .navbar.collapsed {
  justify-content: center;
}
.cid-u8AfM5VQX1 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-u8AfM5VQX1 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-u8AfM5VQX1 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 6.9rem);
  }
}
.cid-u8AfM5VQX1 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-u8AfM5VQX1 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-u8AfM5VQX1 .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-u8AfM5VQX1 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-u8AfM5VQX1 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-u8AfM5VQX1 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-u8AfM5VQX1 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-u8AfM5VQX1 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-u8AfM5VQX1 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-u8AfM5VQX1 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-u8AfM5VQX1 .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-u8AfM5VQX1 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-u8AfM5VQX1 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-u8AfM5VQX1 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-u8AfM5VQX1 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-u8AfM5VQX1 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-u8AfM5VQX1 .navbar .icons-menu {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-u8AfM5VQX1 .navbar.navbar-short {
  min-height: 80px;
}
.cid-u8AfM5VQX1 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-u8AfM5VQX1 .navbar.navbar-short .navbar-brand {
  min-height: 80px;
  padding: 0;
}
.cid-u8AfM5VQX1 .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-u8AfM5VQX1 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-u8AfM5VQX1 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-u8AfM5VQX1 .dropdown-item.active,
.cid-u8AfM5VQX1 .dropdown-item:active {
  background-color: transparent;
}
.cid-u8AfM5VQX1 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-u8AfM5VQX1 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-u8AfM5VQX1 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-u8AfM5VQX1 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-u8AfM5VQX1 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-u8AfM5VQX1 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-u8AfM5VQX1 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-u8AfM5VQX1 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-u8AfM5VQX1 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-u8AfM5VQX1 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-u8AfM5VQX1 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u8AfM5VQX1 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u8AfM5VQX1 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-u8AfM5VQX1 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u8AfM5VQX1 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-u8AfM5VQX1 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-u8AfM5VQX1 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u8AfM5VQX1 .navbar-dropdown {
  position: fixed;
}
.cid-u8AfM5VQX1 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-u8AfM5VQX1 .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-u8AfM5VQX1 .navbar {
    height: 70px;
  }
  .cid-u8AfM5VQX1 .navbar.opened {
    height: auto;
  }
  .cid-u8AfM5VQX1 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-u8AgE4bpye {
  padding-top: 6rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-u8AgE4bpye .mbr-fallback-image.disabled {
  display: none;
}
.cid-u8AgE4bpye .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u8AgE4bpye .mbr-section-head {
  margin-bottom: 32px;
}
.cid-u8AgE4bpye .mbr-section-title {
  color: #24262b;
}
.cid-u8AgE4bpye .mbr-section-subtitle {
  margin-top: 16px;
  color: #000000;
  text-align: center;
}
.cid-u8AgE4bpye .items-row {
  row-gap: 32px;
}
.cid-u8AgE4bpye .item-wrapper {
  position: relative;
  overflow: hidden;
}
.cid-u8AgE4bpye .item-wrapper img {
  width: 100%;
  height: calc(50px * 4);
  object-fit: cover;
  transition: all 0.3s;
}
.cid-u8AgE4bpye .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  z-index: 3;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  border-radius: 50%;
  opacity: 0;
  color: #24262b;
  transform: translateX(-50%) translateY(-50%);
  background-color: #FFFFFF;
  transition: 0.3s;
}
.cid-u8AgE4bpye .item-wrapper .img-overlay {
  position: absolute;
  pointer-events: none;
  transition: all 0.3s;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #33363b;
  opacity: 0;
  z-index: 2;
}
.cid-u8AgE4bpye .item-wrapper:hover img {
  transform: scale(1.05);
}
.cid-u8AgE4bpye .item-wrapper:hover .icon-wrapper {
  opacity: 1;
}
.cid-u8AgE4bpye .item-wrapper:hover .img-overlay {
  opacity: 0.3;
}
.cid-u8AgE4bpye .carousel-control,
.cid-u8AgE4bpye .close {
  background: #1b1b1b;
}
.cid-u8AgE4bpye .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-u8AgE4bpye .carousel-control-prev span {
  margin-right: 5px;
}
.cid-u8AgE4bpye .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-u8AgE4bpye .carousel-control-next span {
  margin-left: 5px;
}
.cid-u8AgE4bpye .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;
  font-family: 'Moririse2';
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-u8AgE4bpye .close::before {
  content: '\e91a';
}
.cid-u8AgE4bpye .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-u8AgE4bpye .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-u8AgE4bpye .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-u8AgE4bpye .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-u8AgE4bpye .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-u8AgE4bpye .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-u8AgE4bpye .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-u8AgE4bpye .carousel-indicators li.active,
.cid-u8AgE4bpye .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-u8AgE4bpye .carousel-indicators li::after,
.cid-u8AgE4bpye .carousel-indicators li::before {
  content: none;
}
.cid-u8AgE4bpye .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-u8AgE4bpye .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-u8AgE4bpye .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-u8AgE4bpye .carousel-indicators {
    display: none;
  }
}
.cid-u8AgE4bpye .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-u8AgE4bpye .carousel-inner > .active {
  display: block;
}
.cid-u8AgE4bpye .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-u8AgE4bpye .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-u8AgE4bpye .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-u8AgE4bpye .carousel-control,
  .cid-u8AgE4bpye .carousel-indicators,
  .cid-u8AgE4bpye .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-u8AgE4bpye .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-u8AgE4bpye .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-u8AgE4bpye .carousel-indicators .active,
.cid-u8AgE4bpye .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-u8AgE4bpye .carousel-indicators .active {
  background: #fff;
}
.cid-u8AgE4bpye .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-u8AgE4bpye .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-u8AgE4bpye .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-u8AgE4bpye .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-u8AgE4bpye .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-u8AgE4bpye .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-u8AgE4bpye .carousel {
  width: 100%;
}
.cid-u8AgE4bpye .modal-backdrop.in {
  opacity: 0.8;
}
.cid-u8AgE4bpye .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-u8AgE4bpye .modal.fade .modal-dialog,
.cid-u8AgE4bpye .modal.in .modal-dialog {
  transform: none;
}
.cid-u8AgE4bpye .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-u8AgE4bpye H6 {
  text-align: center;
}
.cid-u8AfM6VeDV.popup-builder {
  background-color: #ffffff;
}
.cid-u8AfM6VeDV.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-u8AfM6VeDV.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-u8AfM6VeDV .modal-content,
.cid-u8AfM6VeDV .modal-dialog {
  height: auto;
}
.cid-u8AfM6VeDV .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-u8AfM6VeDV .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-u8AfM6VeDV .form-wrapper .mbr-form .form-group,
  .cid-u8AfM6VeDV .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-u8AfM6VeDV .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-u8AfM6VeDV .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-u8AfM6VeDV .mbr-text {
  text-align: center;
}
.cid-u8AfM6VeDV .pt-0 {
  padding-top: 0 !important;
}
.cid-u8AfM6VeDV .pb-0 {
  padding-bottom: 0 !important;
}
.cid-u8AfM6VeDV .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-u8AfM6VeDV .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-u8AfM6VeDV .modal-open {
  overflow: hidden;
}
.cid-u8AfM6VeDV .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-u8AfM6VeDV .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-u8AfM6VeDV .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-u8AfM6VeDV .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-u8AfM6VeDV .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-u8AfM6VeDV .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-u8AfM6VeDV .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-u8AfM6VeDV .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-u8AfM6VeDV .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-u8AfM6VeDV .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-u8AfM6VeDV .modal-backdrop.fade {
  opacity: 0;
}
.cid-u8AfM6VeDV .modal-backdrop.show {
  opacity: .5;
}
.cid-u8AfM6VeDV .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-u8AfM6VeDV .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-u8AfM6VeDV .modal-header {
    padding: 1rem;
  }
}
.cid-u8AfM6VeDV .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-u8AfM6VeDV .modal-header .close svg {
  fill: #000000;
}
.cid-u8AfM6VeDV .modal-header .close:hover {
  opacity: 1;
}
.cid-u8AfM6VeDV .modal-header .close:focus {
  outline: none;
}
.cid-u8AfM6VeDV .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
}
.cid-u8AfM6VeDV .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-u8AfM6VeDV .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-u8AfM6VeDV .modal-body {
    padding: 1rem;
  }
}
.cid-u8AfM6VeDV .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-u8AfM6VeDV .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-u8AfM6VeDV .modal-footer {
    padding: 1rem;
  }
}
.cid-u8AfM6VeDV .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-u8AfM6VeDV .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-u8AfM6VeDV .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-u8AfM6VeDV .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-u8AfM6VeDV .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-u8AfM6VeDV .modal-lg,
  .cid-u8AfM6VeDV .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-u8AfM6VeDV .modal-xl {
    max-width: 1140px;
  }
}
.cid-u8AfM6VeDV .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-u8AfM6VeDV .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-u8AfM6VeDV .form-group {
  margin-bottom: 1rem;
}
.cid-u8AfM6VeDV .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-u8AfM6VeDV .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-u8AfM6VeDV .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-u8AfM6VeDV .mbr-section-btn {
  margin: 0;
}
.cid-u8AfM6VeDV .mbr-section-btn .btn {
  margin: 0;
}
.cid-u8HEHtKCI4 {
  padding-top: 45px;
  padding-bottom: 15px;
  background-color: #000000;
}
.cid-u8HEHtKCI4 .listico {
  padding-right: 1rem;
  font-size: 1.4rem;
}
.cid-u8HEHtKCI4 .navbar-logo {
  width: 150px;
  margin-bottom: 10px;
  margin: auto;
}
.cid-u8HEHtKCI4 .btn {
  margin: 0 !important;
  height: 55px;
}
.cid-u8HEHtKCI4 .btn-primary {
  border: 1px solid #a31426 !important;
}
.cid-u8HEHtKCI4 .btn-primary:hover {
  border: 1px solid #a31426 !important;
}
.cid-u8HEHtKCI4 .stripe {
  border-bottom: 1px solid #ff8a8a;
  max-width: 90%;
  position: relative;
  margin-bottom: 0.5rem;
}
.cid-u8HEHtKCI4 .form-group {
  padding-right: 0;
  max-width: 220px;
}
.cid-u8HEHtKCI4 .input-group-btn {
  padding-left: 0;
}
.cid-u8HEHtKCI4 .form-control {
  background: transparent;
  padding: 0.5rem 1rem;
  min-height: 55px;
  border-radius: 0px;
}
.cid-u8HEHtKCI4 .stripe:before {
  content: "";
  position: absolute;
  top: 100%;
  right: 0;
  border-bottom: 1px solid #ff8a8a;
  width: 85%;
}
.cid-u8HEHtKCI4 .mbr-text {
  color: #444;
}
.cid-u8HEHtKCI4 h5 {
  margin-bottom: 0;
}
.cid-u8HEHtKCI4 .navbar-brand {
  margin: auto;
  width: 100%;
  text-align: center;
}
.cid-u8HEHtKCI4 .list-item {
  display: flex;
  padding-top: 10px;
  padding-bottom: 10px;
  -webkit-align-items: center;
  align-items: center;
}
.cid-u8HEHtKCI4 .tips {
  height: 90px;
  width: 90px;
  border-radius: 6px;
  margin: 4px;
}
.cid-u8HEHtKCI4 .socicon {
  font-size: 1.3rem;
  background: #222222;
  border-radius: 100%;
  width: 38px;
  height: 38px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-u8HEHtKCI4 .social-list {
  display: flex;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-u8HEHtKCI4 .social-list .soc-item {
  margin: 0 0.3rem;
}
.cid-u8HEHtKCI4 .social-list a {
  margin: 0;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-u8HEHtKCI4 .social-list a:hover {
  opacity: 0.4;
}
.cid-u8HEHtKCI4 .media-container-row > div {
  padding: 0px;
}
.cid-u8HEHtKCI4 .text2 {
  color: #ffffff;
  text-align: left;
}
.cid-u8HEHtKCI4 .group-title {
  text-align: left;
  color: #ff8a8a;
  padding-bottom: 0.2rem;
}
.cid-u8HEHtKCI4 .links {
  color: #ffffff;
  line-height: 1.6;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-u8HEHtKCI4 .col-sm-12 {
    margin-bottom: 2rem;
  }
  .cid-u8HEHtKCI4 .social-list,
  .cid-u8HEHtKCI4 .img-list {
    -webkit-justify-content: center;
    justify-content: center;
    text-align: center;
  }
  .cid-u8HEHtKCI4 h3 {
    margin-bottom: 10px;
  }
}
@media (max-width: 576px) {
  .cid-u8HEHtKCI4 .form-group {
    max-width: 180px;
  }
}
.cid-u8HEHtKCI4 .links span {
  color: #9e9e9e;
}
.cid-u8HEHtKCI4 .logo-sub-title {
  text-align: center;
  color: #ffffff;
}
.cid-u8HEHtKCI4 .logo-title {
  text-align: center;
}
.cid-u8HEHtKCI4 .logo-title,
.cid-u8HEHtKCI4 .logo {
  color: #ffffff;
}
.cid-u8Akafl5Uv {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 80px;
}
@media (min-width: 992px) {
  .cid-u8Akafl5Uv .mbr-section-btn {
    margin-right: -0.6rem;
  }
}
@media (max-width: 992px) {
  .cid-u8Akafl5Uv .align-right {
    text-align: center;
  }
}
@media (max-width: 767px) {
  .cid-u8Akafl5Uv .navbar-dropdown {
    padding: 0 1rem;
  }
}
.cid-u8Akafl5Uv .navbar-caption {
  font-weight: 500;
}
.cid-u8Akafl5Uv nav.navbar {
  position: fixed;
}
.cid-u8Akafl5Uv .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-u8Akafl5Uv .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-u8Akafl5Uv .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-u8Akafl5Uv .dropdown-item:hover,
.cid-u8Akafl5Uv .dropdown-item:focus {
  background: #a31426 !important;
  color: white !important;
}
.cid-u8Akafl5Uv .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-u8Akafl5Uv .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-u8Akafl5Uv .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-u8Akafl5Uv .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-u8Akafl5Uv .nav-link {
  position: relative;
}
.cid-u8Akafl5Uv .container {
  display: flex;
  margin: auto;
}
.cid-u8Akafl5Uv .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding: 0 0.25rem;
}
.cid-u8Akafl5Uv .dropdown-menu,
.cid-u8Akafl5Uv .navbar.opened {
  background: #ffffff !important;
}
.cid-u8Akafl5Uv .nav-item:focus,
.cid-u8Akafl5Uv .nav-link:focus {
  outline: none;
}
.cid-u8Akafl5Uv .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-u8Akafl5Uv .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-u8Akafl5Uv .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-u8Akafl5Uv .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-u8Akafl5Uv .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-u8Akafl5Uv .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-u8Akafl5Uv .navbar {
  min-height: 100px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-u8Akafl5Uv .navbar.opened {
  transition: all 0.3s;
}
.cid-u8Akafl5Uv .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-u8Akafl5Uv .navbar .navbar-logo img {
  width: auto;
}
.cid-u8Akafl5Uv .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-u8Akafl5Uv .navbar.collapsed {
  justify-content: center;
}
.cid-u8Akafl5Uv .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-u8Akafl5Uv .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-u8Akafl5Uv .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 6.9rem);
  }
}
.cid-u8Akafl5Uv .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-u8Akafl5Uv .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-u8Akafl5Uv .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-u8Akafl5Uv .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-u8Akafl5Uv .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-u8Akafl5Uv .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-u8Akafl5Uv .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-u8Akafl5Uv .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-u8Akafl5Uv .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-u8Akafl5Uv .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-u8Akafl5Uv .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-u8Akafl5Uv .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-u8Akafl5Uv .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-u8Akafl5Uv .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-u8Akafl5Uv .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-u8Akafl5Uv .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-u8Akafl5Uv .navbar .icons-menu {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-u8Akafl5Uv .navbar.navbar-short {
  min-height: 80px;
}
.cid-u8Akafl5Uv .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-u8Akafl5Uv .navbar.navbar-short .navbar-brand {
  min-height: 80px;
  padding: 0;
}
.cid-u8Akafl5Uv .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-u8Akafl5Uv .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-u8Akafl5Uv .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-u8Akafl5Uv .dropdown-item.active,
.cid-u8Akafl5Uv .dropdown-item:active {
  background-color: transparent;
}
.cid-u8Akafl5Uv .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-u8Akafl5Uv .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-u8Akafl5Uv .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-u8Akafl5Uv .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-u8Akafl5Uv .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-u8Akafl5Uv .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-u8Akafl5Uv ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-u8Akafl5Uv button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-u8Akafl5Uv button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-u8Akafl5Uv button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-u8Akafl5Uv button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u8Akafl5Uv button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u8Akafl5Uv button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-u8Akafl5Uv nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u8Akafl5Uv nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-u8Akafl5Uv nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-u8Akafl5Uv nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u8Akafl5Uv .navbar-dropdown {
  position: fixed;
}
.cid-u8Akafl5Uv a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-u8Akafl5Uv .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-u8Akafl5Uv .navbar {
    height: 70px;
  }
  .cid-u8Akafl5Uv .navbar.opened {
    height: auto;
  }
  .cid-u8Akafl5Uv .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-u8AkafRWxT {
  padding-top: 6rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-u8AkafRWxT .mbr-fallback-image.disabled {
  display: none;
}
.cid-u8AkafRWxT .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u8AkafRWxT .mbr-section-head {
  margin-bottom: 32px;
}
.cid-u8AkafRWxT .mbr-section-title {
  color: #24262b;
}
.cid-u8AkafRWxT .mbr-section-subtitle {
  margin-top: 16px;
  color: #000000;
  text-align: center;
}
.cid-u8AkafRWxT .items-row {
  row-gap: 32px;
}
.cid-u8AkafRWxT .item-wrapper {
  position: relative;
  overflow: hidden;
}
.cid-u8AkafRWxT .item-wrapper img {
  width: 100%;
  height: calc(50px * 4);
  object-fit: cover;
  transition: all 0.3s;
}
.cid-u8AkafRWxT .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  z-index: 3;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  border-radius: 50%;
  opacity: 0;
  color: #24262b;
  transform: translateX(-50%) translateY(-50%);
  background-color: #FFFFFF;
  transition: 0.3s;
}
.cid-u8AkafRWxT .item-wrapper .img-overlay {
  position: absolute;
  pointer-events: none;
  transition: all 0.3s;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #33363b;
  opacity: 0;
  z-index: 2;
}
.cid-u8AkafRWxT .item-wrapper:hover img {
  transform: scale(1.05);
}
.cid-u8AkafRWxT .item-wrapper:hover .icon-wrapper {
  opacity: 1;
}
.cid-u8AkafRWxT .item-wrapper:hover .img-overlay {
  opacity: 0.3;
}
.cid-u8AkafRWxT .carousel-control,
.cid-u8AkafRWxT .close {
  background: #1b1b1b;
}
.cid-u8AkafRWxT .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-u8AkafRWxT .carousel-control-prev span {
  margin-right: 5px;
}
.cid-u8AkafRWxT .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-u8AkafRWxT .carousel-control-next span {
  margin-left: 5px;
}
.cid-u8AkafRWxT .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;
  font-family: 'Moririse2';
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-u8AkafRWxT .close::before {
  content: '\e91a';
}
.cid-u8AkafRWxT .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-u8AkafRWxT .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-u8AkafRWxT .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-u8AkafRWxT .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-u8AkafRWxT .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-u8AkafRWxT .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-u8AkafRWxT .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-u8AkafRWxT .carousel-indicators li.active,
.cid-u8AkafRWxT .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-u8AkafRWxT .carousel-indicators li::after,
.cid-u8AkafRWxT .carousel-indicators li::before {
  content: none;
}
.cid-u8AkafRWxT .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-u8AkafRWxT .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-u8AkafRWxT .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-u8AkafRWxT .carousel-indicators {
    display: none;
  }
}
.cid-u8AkafRWxT .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-u8AkafRWxT .carousel-inner > .active {
  display: block;
}
.cid-u8AkafRWxT .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-u8AkafRWxT .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-u8AkafRWxT .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-u8AkafRWxT .carousel-control,
  .cid-u8AkafRWxT .carousel-indicators,
  .cid-u8AkafRWxT .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-u8AkafRWxT .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-u8AkafRWxT .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-u8AkafRWxT .carousel-indicators .active,
.cid-u8AkafRWxT .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-u8AkafRWxT .carousel-indicators .active {
  background: #fff;
}
.cid-u8AkafRWxT .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-u8AkafRWxT .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-u8AkafRWxT .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-u8AkafRWxT .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-u8AkafRWxT .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-u8AkafRWxT .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-u8AkafRWxT .carousel {
  width: 100%;
}
.cid-u8AkafRWxT .modal-backdrop.in {
  opacity: 0.8;
}
.cid-u8AkafRWxT .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-u8AkafRWxT .modal.fade .modal-dialog,
.cid-u8AkafRWxT .modal.in .modal-dialog {
  transform: none;
}
.cid-u8AkafRWxT .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-u8AkafRWxT H6 {
  text-align: center;
}
.cid-u8AkaieEIv.popup-builder {
  background-color: #ffffff;
}
.cid-u8AkaieEIv.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-u8AkaieEIv.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-u8AkaieEIv .modal-content,
.cid-u8AkaieEIv .modal-dialog {
  height: auto;
}
.cid-u8AkaieEIv .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-u8AkaieEIv .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-u8AkaieEIv .form-wrapper .mbr-form .form-group,
  .cid-u8AkaieEIv .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-u8AkaieEIv .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-u8AkaieEIv .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-u8AkaieEIv .mbr-text {
  text-align: center;
}
.cid-u8AkaieEIv .pt-0 {
  padding-top: 0 !important;
}
.cid-u8AkaieEIv .pb-0 {
  padding-bottom: 0 !important;
}
.cid-u8AkaieEIv .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-u8AkaieEIv .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-u8AkaieEIv .modal-open {
  overflow: hidden;
}
.cid-u8AkaieEIv .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-u8AkaieEIv .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-u8AkaieEIv .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-u8AkaieEIv .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-u8AkaieEIv .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-u8AkaieEIv .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-u8AkaieEIv .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-u8AkaieEIv .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-u8AkaieEIv .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-u8AkaieEIv .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-u8AkaieEIv .modal-backdrop.fade {
  opacity: 0;
}
.cid-u8AkaieEIv .modal-backdrop.show {
  opacity: .5;
}
.cid-u8AkaieEIv .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-u8AkaieEIv .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-u8AkaieEIv .modal-header {
    padding: 1rem;
  }
}
.cid-u8AkaieEIv .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-u8AkaieEIv .modal-header .close svg {
  fill: #000000;
}
.cid-u8AkaieEIv .modal-header .close:hover {
  opacity: 1;
}
.cid-u8AkaieEIv .modal-header .close:focus {
  outline: none;
}
.cid-u8AkaieEIv .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
}
.cid-u8AkaieEIv .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-u8AkaieEIv .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-u8AkaieEIv .modal-body {
    padding: 1rem;
  }
}
.cid-u8AkaieEIv .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-u8AkaieEIv .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-u8AkaieEIv .modal-footer {
    padding: 1rem;
  }
}
.cid-u8AkaieEIv .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-u8AkaieEIv .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-u8AkaieEIv .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-u8AkaieEIv .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-u8AkaieEIv .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-u8AkaieEIv .modal-lg,
  .cid-u8AkaieEIv .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-u8AkaieEIv .modal-xl {
    max-width: 1140px;
  }
}
.cid-u8AkaieEIv .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-u8AkaieEIv .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-u8AkaieEIv .form-group {
  margin-bottom: 1rem;
}
.cid-u8AkaieEIv .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-u8AkaieEIv .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-u8AkaieEIv .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-u8AkaieEIv .mbr-section-btn {
  margin: 0;
}
.cid-u8AkaieEIv .mbr-section-btn .btn {
  margin: 0;
}
.cid-u8HELFRYl1 {
  padding-top: 45px;
  padding-bottom: 15px;
  background-color: #000000;
}
.cid-u8HELFRYl1 .listico {
  padding-right: 1rem;
  font-size: 1.4rem;
}
.cid-u8HELFRYl1 .navbar-logo {
  width: 150px;
  margin-bottom: 10px;
  margin: auto;
}
.cid-u8HELFRYl1 .btn {
  margin: 0 !important;
  height: 55px;
}
.cid-u8HELFRYl1 .btn-primary {
  border: 1px solid #a31426 !important;
}
.cid-u8HELFRYl1 .btn-primary:hover {
  border: 1px solid #a31426 !important;
}
.cid-u8HELFRYl1 .stripe {
  border-bottom: 1px solid #ff8a8a;
  max-width: 90%;
  position: relative;
  margin-bottom: 0.5rem;
}
.cid-u8HELFRYl1 .form-group {
  padding-right: 0;
  max-width: 220px;
}
.cid-u8HELFRYl1 .input-group-btn {
  padding-left: 0;
}
.cid-u8HELFRYl1 .form-control {
  background: transparent;
  padding: 0.5rem 1rem;
  min-height: 55px;
  border-radius: 0px;
}
.cid-u8HELFRYl1 .stripe:before {
  content: "";
  position: absolute;
  top: 100%;
  right: 0;
  border-bottom: 1px solid #ff8a8a;
  width: 85%;
}
.cid-u8HELFRYl1 .mbr-text {
  color: #444;
}
.cid-u8HELFRYl1 h5 {
  margin-bottom: 0;
}
.cid-u8HELFRYl1 .navbar-brand {
  margin: auto;
  width: 100%;
  text-align: center;
}
.cid-u8HELFRYl1 .list-item {
  display: flex;
  padding-top: 10px;
  padding-bottom: 10px;
  -webkit-align-items: center;
  align-items: center;
}
.cid-u8HELFRYl1 .tips {
  height: 90px;
  width: 90px;
  border-radius: 6px;
  margin: 4px;
}
.cid-u8HELFRYl1 .socicon {
  font-size: 1.3rem;
  background: #222222;
  border-radius: 100%;
  width: 38px;
  height: 38px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-u8HELFRYl1 .social-list {
  display: flex;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-u8HELFRYl1 .social-list .soc-item {
  margin: 0 0.3rem;
}
.cid-u8HELFRYl1 .social-list a {
  margin: 0;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-u8HELFRYl1 .social-list a:hover {
  opacity: 0.4;
}
.cid-u8HELFRYl1 .media-container-row > div {
  padding: 0px;
}
.cid-u8HELFRYl1 .text2 {
  color: #ffffff;
  text-align: left;
}
.cid-u8HELFRYl1 .group-title {
  text-align: left;
  color: #ff8a8a;
  padding-bottom: 0.2rem;
}
.cid-u8HELFRYl1 .links {
  color: #ffffff;
  line-height: 1.6;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-u8HELFRYl1 .col-sm-12 {
    margin-bottom: 2rem;
  }
  .cid-u8HELFRYl1 .social-list,
  .cid-u8HELFRYl1 .img-list {
    -webkit-justify-content: center;
    justify-content: center;
    text-align: center;
  }
  .cid-u8HELFRYl1 h3 {
    margin-bottom: 10px;
  }
}
@media (max-width: 576px) {
  .cid-u8HELFRYl1 .form-group {
    max-width: 180px;
  }
}
.cid-u8HELFRYl1 .links span {
  color: #9e9e9e;
}
.cid-u8HELFRYl1 .logo-sub-title {
  text-align: center;
  color: #ffffff;
}
.cid-u8HELFRYl1 .logo-title {
  text-align: center;
}
.cid-u8HELFRYl1 .logo-title,
.cid-u8HELFRYl1 .logo {
  color: #ffffff;
}
.cid-u8AlnJv9MG {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 80px;
}
@media (min-width: 992px) {
  .cid-u8AlnJv9MG .mbr-section-btn {
    margin-right: -0.6rem;
  }
}
@media (max-width: 992px) {
  .cid-u8AlnJv9MG .align-right {
    text-align: center;
  }
}
@media (max-width: 767px) {
  .cid-u8AlnJv9MG .navbar-dropdown {
    padding: 0 1rem;
  }
}
.cid-u8AlnJv9MG .navbar-caption {
  font-weight: 500;
}
.cid-u8AlnJv9MG nav.navbar {
  position: fixed;
}
.cid-u8AlnJv9MG .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-u8AlnJv9MG .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-u8AlnJv9MG .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-u8AlnJv9MG .dropdown-item:hover,
.cid-u8AlnJv9MG .dropdown-item:focus {
  background: #a31426 !important;
  color: white !important;
}
.cid-u8AlnJv9MG .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-u8AlnJv9MG .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-u8AlnJv9MG .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-u8AlnJv9MG .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-u8AlnJv9MG .nav-link {
  position: relative;
}
.cid-u8AlnJv9MG .container {
  display: flex;
  margin: auto;
}
.cid-u8AlnJv9MG .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding: 0 0.25rem;
}
.cid-u8AlnJv9MG .dropdown-menu,
.cid-u8AlnJv9MG .navbar.opened {
  background: #ffffff !important;
}
.cid-u8AlnJv9MG .nav-item:focus,
.cid-u8AlnJv9MG .nav-link:focus {
  outline: none;
}
.cid-u8AlnJv9MG .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-u8AlnJv9MG .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-u8AlnJv9MG .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-u8AlnJv9MG .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-u8AlnJv9MG .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-u8AlnJv9MG .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-u8AlnJv9MG .navbar {
  min-height: 100px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-u8AlnJv9MG .navbar.opened {
  transition: all 0.3s;
}
.cid-u8AlnJv9MG .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-u8AlnJv9MG .navbar .navbar-logo img {
  width: auto;
}
.cid-u8AlnJv9MG .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-u8AlnJv9MG .navbar.collapsed {
  justify-content: center;
}
.cid-u8AlnJv9MG .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-u8AlnJv9MG .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-u8AlnJv9MG .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 6.9rem);
  }
}
.cid-u8AlnJv9MG .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-u8AlnJv9MG .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-u8AlnJv9MG .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-u8AlnJv9MG .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-u8AlnJv9MG .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-u8AlnJv9MG .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-u8AlnJv9MG .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-u8AlnJv9MG .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-u8AlnJv9MG .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-u8AlnJv9MG .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-u8AlnJv9MG .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-u8AlnJv9MG .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-u8AlnJv9MG .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-u8AlnJv9MG .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-u8AlnJv9MG .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-u8AlnJv9MG .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-u8AlnJv9MG .navbar .icons-menu {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-u8AlnJv9MG .navbar.navbar-short {
  min-height: 80px;
}
.cid-u8AlnJv9MG .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-u8AlnJv9MG .navbar.navbar-short .navbar-brand {
  min-height: 80px;
  padding: 0;
}
.cid-u8AlnJv9MG .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-u8AlnJv9MG .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-u8AlnJv9MG .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-u8AlnJv9MG .dropdown-item.active,
.cid-u8AlnJv9MG .dropdown-item:active {
  background-color: transparent;
}
.cid-u8AlnJv9MG .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-u8AlnJv9MG .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-u8AlnJv9MG .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-u8AlnJv9MG .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-u8AlnJv9MG .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-u8AlnJv9MG .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-u8AlnJv9MG ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-u8AlnJv9MG button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-u8AlnJv9MG button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-u8AlnJv9MG button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-u8AlnJv9MG button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u8AlnJv9MG button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u8AlnJv9MG button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-u8AlnJv9MG nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u8AlnJv9MG nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-u8AlnJv9MG nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-u8AlnJv9MG nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u8AlnJv9MG .navbar-dropdown {
  position: fixed;
}
.cid-u8AlnJv9MG a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-u8AlnJv9MG .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-u8AlnJv9MG .navbar {
    height: 70px;
  }
  .cid-u8AlnJv9MG .navbar.opened {
    height: auto;
  }
  .cid-u8AlnJv9MG .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-u8Altq8Jxd {
  padding-top: 6rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-u8Altq8Jxd .mbr-fallback-image.disabled {
  display: none;
}
.cid-u8Altq8Jxd .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u8Altq8Jxd .mbr-section-head {
  margin-bottom: 32px;
}
.cid-u8Altq8Jxd .mbr-section-title {
  color: #24262b;
}
.cid-u8Altq8Jxd .mbr-section-subtitle {
  margin-top: 16px;
  color: #000000;
  text-align: center;
}
.cid-u8Altq8Jxd .items-row {
  row-gap: 32px;
}
.cid-u8Altq8Jxd .item-wrapper {
  position: relative;
  overflow: hidden;
}
.cid-u8Altq8Jxd .item-wrapper img {
  width: 100%;
  height: calc(50px * 4);
  object-fit: cover;
  transition: all 0.3s;
}
.cid-u8Altq8Jxd .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  z-index: 3;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  border-radius: 50%;
  opacity: 0;
  color: #24262b;
  transform: translateX(-50%) translateY(-50%);
  background-color: #FFFFFF;
  transition: 0.3s;
}
.cid-u8Altq8Jxd .item-wrapper .img-overlay {
  position: absolute;
  pointer-events: none;
  transition: all 0.3s;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #33363b;
  opacity: 0;
  z-index: 2;
}
.cid-u8Altq8Jxd .item-wrapper:hover img {
  transform: scale(1.05);
}
.cid-u8Altq8Jxd .item-wrapper:hover .icon-wrapper {
  opacity: 1;
}
.cid-u8Altq8Jxd .item-wrapper:hover .img-overlay {
  opacity: 0.3;
}
.cid-u8Altq8Jxd .carousel-control,
.cid-u8Altq8Jxd .close {
  background: #1b1b1b;
}
.cid-u8Altq8Jxd .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-u8Altq8Jxd .carousel-control-prev span {
  margin-right: 5px;
}
.cid-u8Altq8Jxd .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-u8Altq8Jxd .carousel-control-next span {
  margin-left: 5px;
}
.cid-u8Altq8Jxd .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;
  font-family: 'Moririse2';
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-u8Altq8Jxd .close::before {
  content: '\e91a';
}
.cid-u8Altq8Jxd .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-u8Altq8Jxd .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-u8Altq8Jxd .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-u8Altq8Jxd .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-u8Altq8Jxd .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-u8Altq8Jxd .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-u8Altq8Jxd .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-u8Altq8Jxd .carousel-indicators li.active,
.cid-u8Altq8Jxd .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-u8Altq8Jxd .carousel-indicators li::after,
.cid-u8Altq8Jxd .carousel-indicators li::before {
  content: none;
}
.cid-u8Altq8Jxd .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-u8Altq8Jxd .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-u8Altq8Jxd .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-u8Altq8Jxd .carousel-indicators {
    display: none;
  }
}
.cid-u8Altq8Jxd .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-u8Altq8Jxd .carousel-inner > .active {
  display: block;
}
.cid-u8Altq8Jxd .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-u8Altq8Jxd .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-u8Altq8Jxd .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-u8Altq8Jxd .carousel-control,
  .cid-u8Altq8Jxd .carousel-indicators,
  .cid-u8Altq8Jxd .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-u8Altq8Jxd .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-u8Altq8Jxd .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-u8Altq8Jxd .carousel-indicators .active,
.cid-u8Altq8Jxd .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-u8Altq8Jxd .carousel-indicators .active {
  background: #fff;
}
.cid-u8Altq8Jxd .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-u8Altq8Jxd .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-u8Altq8Jxd .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-u8Altq8Jxd .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-u8Altq8Jxd .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-u8Altq8Jxd .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-u8Altq8Jxd .carousel {
  width: 100%;
}
.cid-u8Altq8Jxd .modal-backdrop.in {
  opacity: 0.8;
}
.cid-u8Altq8Jxd .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-u8Altq8Jxd .modal.fade .modal-dialog,
.cid-u8Altq8Jxd .modal.in .modal-dialog {
  transform: none;
}
.cid-u8Altq8Jxd .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-u8Altq8Jxd H6 {
  text-align: center;
}
.cid-u8AlnLeGuj.popup-builder {
  background-color: #ffffff;
}
.cid-u8AlnLeGuj.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-u8AlnLeGuj.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-u8AlnLeGuj .modal-content,
.cid-u8AlnLeGuj .modal-dialog {
  height: auto;
}
.cid-u8AlnLeGuj .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-u8AlnLeGuj .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-u8AlnLeGuj .form-wrapper .mbr-form .form-group,
  .cid-u8AlnLeGuj .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-u8AlnLeGuj .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-u8AlnLeGuj .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-u8AlnLeGuj .mbr-text {
  text-align: center;
}
.cid-u8AlnLeGuj .pt-0 {
  padding-top: 0 !important;
}
.cid-u8AlnLeGuj .pb-0 {
  padding-bottom: 0 !important;
}
.cid-u8AlnLeGuj .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-u8AlnLeGuj .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-u8AlnLeGuj .modal-open {
  overflow: hidden;
}
.cid-u8AlnLeGuj .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-u8AlnLeGuj .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-u8AlnLeGuj .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-u8AlnLeGuj .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-u8AlnLeGuj .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-u8AlnLeGuj .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-u8AlnLeGuj .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-u8AlnLeGuj .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-u8AlnLeGuj .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-u8AlnLeGuj .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-u8AlnLeGuj .modal-backdrop.fade {
  opacity: 0;
}
.cid-u8AlnLeGuj .modal-backdrop.show {
  opacity: .5;
}
.cid-u8AlnLeGuj .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-u8AlnLeGuj .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-u8AlnLeGuj .modal-header {
    padding: 1rem;
  }
}
.cid-u8AlnLeGuj .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-u8AlnLeGuj .modal-header .close svg {
  fill: #000000;
}
.cid-u8AlnLeGuj .modal-header .close:hover {
  opacity: 1;
}
.cid-u8AlnLeGuj .modal-header .close:focus {
  outline: none;
}
.cid-u8AlnLeGuj .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
}
.cid-u8AlnLeGuj .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-u8AlnLeGuj .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-u8AlnLeGuj .modal-body {
    padding: 1rem;
  }
}
.cid-u8AlnLeGuj .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-u8AlnLeGuj .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-u8AlnLeGuj .modal-footer {
    padding: 1rem;
  }
}
.cid-u8AlnLeGuj .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-u8AlnLeGuj .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-u8AlnLeGuj .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-u8AlnLeGuj .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-u8AlnLeGuj .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-u8AlnLeGuj .modal-lg,
  .cid-u8AlnLeGuj .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-u8AlnLeGuj .modal-xl {
    max-width: 1140px;
  }
}
.cid-u8AlnLeGuj .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-u8AlnLeGuj .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-u8AlnLeGuj .form-group {
  margin-bottom: 1rem;
}
.cid-u8AlnLeGuj .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-u8AlnLeGuj .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-u8AlnLeGuj .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-u8AlnLeGuj .mbr-section-btn {
  margin: 0;
}
.cid-u8AlnLeGuj .mbr-section-btn .btn {
  margin: 0;
}
.cid-u8HEPnAFQo {
  padding-top: 45px;
  padding-bottom: 15px;
  background-color: #000000;
}
.cid-u8HEPnAFQo .listico {
  padding-right: 1rem;
  font-size: 1.4rem;
}
.cid-u8HEPnAFQo .navbar-logo {
  width: 150px;
  margin-bottom: 10px;
  margin: auto;
}
.cid-u8HEPnAFQo .btn {
  margin: 0 !important;
  height: 55px;
}
.cid-u8HEPnAFQo .btn-primary {
  border: 1px solid #a31426 !important;
}
.cid-u8HEPnAFQo .btn-primary:hover {
  border: 1px solid #a31426 !important;
}
.cid-u8HEPnAFQo .stripe {
  border-bottom: 1px solid #ff8a8a;
  max-width: 90%;
  position: relative;
  margin-bottom: 0.5rem;
}
.cid-u8HEPnAFQo .form-group {
  padding-right: 0;
  max-width: 220px;
}
.cid-u8HEPnAFQo .input-group-btn {
  padding-left: 0;
}
.cid-u8HEPnAFQo .form-control {
  background: transparent;
  padding: 0.5rem 1rem;
  min-height: 55px;
  border-radius: 0px;
}
.cid-u8HEPnAFQo .stripe:before {
  content: "";
  position: absolute;
  top: 100%;
  right: 0;
  border-bottom: 1px solid #ff8a8a;
  width: 85%;
}
.cid-u8HEPnAFQo .mbr-text {
  color: #444;
}
.cid-u8HEPnAFQo h5 {
  margin-bottom: 0;
}
.cid-u8HEPnAFQo .navbar-brand {
  margin: auto;
  width: 100%;
  text-align: center;
}
.cid-u8HEPnAFQo .list-item {
  display: flex;
  padding-top: 10px;
  padding-bottom: 10px;
  -webkit-align-items: center;
  align-items: center;
}
.cid-u8HEPnAFQo .tips {
  height: 90px;
  width: 90px;
  border-radius: 6px;
  margin: 4px;
}
.cid-u8HEPnAFQo .socicon {
  font-size: 1.3rem;
  background: #222222;
  border-radius: 100%;
  width: 38px;
  height: 38px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-u8HEPnAFQo .social-list {
  display: flex;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-u8HEPnAFQo .social-list .soc-item {
  margin: 0 0.3rem;
}
.cid-u8HEPnAFQo .social-list a {
  margin: 0;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-u8HEPnAFQo .social-list a:hover {
  opacity: 0.4;
}
.cid-u8HEPnAFQo .media-container-row > div {
  padding: 0px;
}
.cid-u8HEPnAFQo .text2 {
  color: #ffffff;
  text-align: left;
}
.cid-u8HEPnAFQo .group-title {
  text-align: left;
  color: #ff8a8a;
  padding-bottom: 0.2rem;
}
.cid-u8HEPnAFQo .links {
  color: #ffffff;
  line-height: 1.6;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-u8HEPnAFQo .col-sm-12 {
    margin-bottom: 2rem;
  }
  .cid-u8HEPnAFQo .social-list,
  .cid-u8HEPnAFQo .img-list {
    -webkit-justify-content: center;
    justify-content: center;
    text-align: center;
  }
  .cid-u8HEPnAFQo h3 {
    margin-bottom: 10px;
  }
}
@media (max-width: 576px) {
  .cid-u8HEPnAFQo .form-group {
    max-width: 180px;
  }
}
.cid-u8HEPnAFQo .links span {
  color: #9e9e9e;
}
.cid-u8HEPnAFQo .logo-sub-title {
  text-align: center;
  color: #ffffff;
}
.cid-u8HEPnAFQo .logo-title {
  text-align: center;
}
.cid-u8HEPnAFQo .logo-title,
.cid-u8HEPnAFQo .logo {
  color: #ffffff;
}
.cid-u8AmcvCDTF {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 80px;
}
@media (min-width: 992px) {
  .cid-u8AmcvCDTF .mbr-section-btn {
    margin-right: -0.6rem;
  }
}
@media (max-width: 992px) {
  .cid-u8AmcvCDTF .align-right {
    text-align: center;
  }
}
@media (max-width: 767px) {
  .cid-u8AmcvCDTF .navbar-dropdown {
    padding: 0 1rem;
  }
}
.cid-u8AmcvCDTF .navbar-caption {
  font-weight: 500;
}
.cid-u8AmcvCDTF nav.navbar {
  position: fixed;
}
.cid-u8AmcvCDTF .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-u8AmcvCDTF .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-u8AmcvCDTF .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-u8AmcvCDTF .dropdown-item:hover,
.cid-u8AmcvCDTF .dropdown-item:focus {
  background: #a31426 !important;
  color: white !important;
}
.cid-u8AmcvCDTF .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-u8AmcvCDTF .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-u8AmcvCDTF .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-u8AmcvCDTF .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-u8AmcvCDTF .nav-link {
  position: relative;
}
.cid-u8AmcvCDTF .container {
  display: flex;
  margin: auto;
}
.cid-u8AmcvCDTF .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding: 0 0.25rem;
}
.cid-u8AmcvCDTF .dropdown-menu,
.cid-u8AmcvCDTF .navbar.opened {
  background: #ffffff !important;
}
.cid-u8AmcvCDTF .nav-item:focus,
.cid-u8AmcvCDTF .nav-link:focus {
  outline: none;
}
.cid-u8AmcvCDTF .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-u8AmcvCDTF .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-u8AmcvCDTF .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-u8AmcvCDTF .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-u8AmcvCDTF .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-u8AmcvCDTF .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-u8AmcvCDTF .navbar {
  min-height: 100px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-u8AmcvCDTF .navbar.opened {
  transition: all 0.3s;
}
.cid-u8AmcvCDTF .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-u8AmcvCDTF .navbar .navbar-logo img {
  width: auto;
}
.cid-u8AmcvCDTF .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-u8AmcvCDTF .navbar.collapsed {
  justify-content: center;
}
.cid-u8AmcvCDTF .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-u8AmcvCDTF .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-u8AmcvCDTF .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 6.9rem);
  }
}
.cid-u8AmcvCDTF .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-u8AmcvCDTF .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-u8AmcvCDTF .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-u8AmcvCDTF .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-u8AmcvCDTF .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-u8AmcvCDTF .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-u8AmcvCDTF .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-u8AmcvCDTF .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-u8AmcvCDTF .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-u8AmcvCDTF .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-u8AmcvCDTF .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-u8AmcvCDTF .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-u8AmcvCDTF .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-u8AmcvCDTF .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-u8AmcvCDTF .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-u8AmcvCDTF .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-u8AmcvCDTF .navbar .icons-menu {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-u8AmcvCDTF .navbar.navbar-short {
  min-height: 80px;
}
.cid-u8AmcvCDTF .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-u8AmcvCDTF .navbar.navbar-short .navbar-brand {
  min-height: 80px;
  padding: 0;
}
.cid-u8AmcvCDTF .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-u8AmcvCDTF .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-u8AmcvCDTF .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-u8AmcvCDTF .dropdown-item.active,
.cid-u8AmcvCDTF .dropdown-item:active {
  background-color: transparent;
}
.cid-u8AmcvCDTF .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-u8AmcvCDTF .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-u8AmcvCDTF .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-u8AmcvCDTF .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-u8AmcvCDTF .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-u8AmcvCDTF .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-u8AmcvCDTF ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-u8AmcvCDTF button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-u8AmcvCDTF button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-u8AmcvCDTF button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-u8AmcvCDTF button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u8AmcvCDTF button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u8AmcvCDTF button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-u8AmcvCDTF nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u8AmcvCDTF nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-u8AmcvCDTF nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-u8AmcvCDTF nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u8AmcvCDTF .navbar-dropdown {
  position: fixed;
}
.cid-u8AmcvCDTF a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-u8AmcvCDTF .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-u8AmcvCDTF .navbar {
    height: 70px;
  }
  .cid-u8AmcvCDTF .navbar.opened {
    height: auto;
  }
  .cid-u8AmcvCDTF .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-u8AmnwfeLb {
  padding-top: 6rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-u8AmnwfeLb .mbr-fallback-image.disabled {
  display: none;
}
.cid-u8AmnwfeLb .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u8AmnwfeLb .mbr-section-head {
  margin-bottom: 32px;
}
.cid-u8AmnwfeLb .mbr-section-title {
  color: #24262b;
}
.cid-u8AmnwfeLb .mbr-section-subtitle {
  margin-top: 16px;
  color: #000000;
  text-align: center;
}
.cid-u8AmnwfeLb .items-row {
  row-gap: 32px;
}
.cid-u8AmnwfeLb .item-wrapper {
  position: relative;
  overflow: hidden;
}
.cid-u8AmnwfeLb .item-wrapper img {
  width: 100%;
  height: calc(50px * 4);
  object-fit: cover;
  transition: all 0.3s;
}
.cid-u8AmnwfeLb .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  z-index: 3;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  border-radius: 50%;
  opacity: 0;
  color: #24262b;
  transform: translateX(-50%) translateY(-50%);
  background-color: #FFFFFF;
  transition: 0.3s;
}
.cid-u8AmnwfeLb .item-wrapper .img-overlay {
  position: absolute;
  pointer-events: none;
  transition: all 0.3s;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #33363b;
  opacity: 0;
  z-index: 2;
}
.cid-u8AmnwfeLb .item-wrapper:hover img {
  transform: scale(1.05);
}
.cid-u8AmnwfeLb .item-wrapper:hover .icon-wrapper {
  opacity: 1;
}
.cid-u8AmnwfeLb .item-wrapper:hover .img-overlay {
  opacity: 0.3;
}
.cid-u8AmnwfeLb .carousel-control,
.cid-u8AmnwfeLb .close {
  background: #1b1b1b;
}
.cid-u8AmnwfeLb .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-u8AmnwfeLb .carousel-control-prev span {
  margin-right: 5px;
}
.cid-u8AmnwfeLb .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-u8AmnwfeLb .carousel-control-next span {
  margin-left: 5px;
}
.cid-u8AmnwfeLb .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;
  font-family: 'Moririse2';
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-u8AmnwfeLb .close::before {
  content: '\e91a';
}
.cid-u8AmnwfeLb .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-u8AmnwfeLb .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-u8AmnwfeLb .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-u8AmnwfeLb .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-u8AmnwfeLb .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-u8AmnwfeLb .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-u8AmnwfeLb .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-u8AmnwfeLb .carousel-indicators li.active,
.cid-u8AmnwfeLb .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-u8AmnwfeLb .carousel-indicators li::after,
.cid-u8AmnwfeLb .carousel-indicators li::before {
  content: none;
}
.cid-u8AmnwfeLb .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-u8AmnwfeLb .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-u8AmnwfeLb .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-u8AmnwfeLb .carousel-indicators {
    display: none;
  }
}
.cid-u8AmnwfeLb .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-u8AmnwfeLb .carousel-inner > .active {
  display: block;
}
.cid-u8AmnwfeLb .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-u8AmnwfeLb .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-u8AmnwfeLb .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-u8AmnwfeLb .carousel-control,
  .cid-u8AmnwfeLb .carousel-indicators,
  .cid-u8AmnwfeLb .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-u8AmnwfeLb .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-u8AmnwfeLb .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-u8AmnwfeLb .carousel-indicators .active,
.cid-u8AmnwfeLb .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-u8AmnwfeLb .carousel-indicators .active {
  background: #fff;
}
.cid-u8AmnwfeLb .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-u8AmnwfeLb .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-u8AmnwfeLb .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-u8AmnwfeLb .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-u8AmnwfeLb .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-u8AmnwfeLb .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-u8AmnwfeLb .carousel {
  width: 100%;
}
.cid-u8AmnwfeLb .modal-backdrop.in {
  opacity: 0.8;
}
.cid-u8AmnwfeLb .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-u8AmnwfeLb .modal.fade .modal-dialog,
.cid-u8AmnwfeLb .modal.in .modal-dialog {
  transform: none;
}
.cid-u8AmnwfeLb .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-u8AmnwfeLb H6 {
  text-align: center;
}
.cid-u8AmcxAbKB.popup-builder {
  background-color: #ffffff;
}
.cid-u8AmcxAbKB.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-u8AmcxAbKB.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-u8AmcxAbKB .modal-content,
.cid-u8AmcxAbKB .modal-dialog {
  height: auto;
}
.cid-u8AmcxAbKB .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-u8AmcxAbKB .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-u8AmcxAbKB .form-wrapper .mbr-form .form-group,
  .cid-u8AmcxAbKB .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-u8AmcxAbKB .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-u8AmcxAbKB .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-u8AmcxAbKB .mbr-text {
  text-align: center;
}
.cid-u8AmcxAbKB .pt-0 {
  padding-top: 0 !important;
}
.cid-u8AmcxAbKB .pb-0 {
  padding-bottom: 0 !important;
}
.cid-u8AmcxAbKB .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-u8AmcxAbKB .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-u8AmcxAbKB .modal-open {
  overflow: hidden;
}
.cid-u8AmcxAbKB .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-u8AmcxAbKB .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-u8AmcxAbKB .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-u8AmcxAbKB .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-u8AmcxAbKB .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-u8AmcxAbKB .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-u8AmcxAbKB .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-u8AmcxAbKB .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-u8AmcxAbKB .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-u8AmcxAbKB .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-u8AmcxAbKB .modal-backdrop.fade {
  opacity: 0;
}
.cid-u8AmcxAbKB .modal-backdrop.show {
  opacity: .5;
}
.cid-u8AmcxAbKB .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-u8AmcxAbKB .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-u8AmcxAbKB .modal-header {
    padding: 1rem;
  }
}
.cid-u8AmcxAbKB .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-u8AmcxAbKB .modal-header .close svg {
  fill: #000000;
}
.cid-u8AmcxAbKB .modal-header .close:hover {
  opacity: 1;
}
.cid-u8AmcxAbKB .modal-header .close:focus {
  outline: none;
}
.cid-u8AmcxAbKB .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
}
.cid-u8AmcxAbKB .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-u8AmcxAbKB .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-u8AmcxAbKB .modal-body {
    padding: 1rem;
  }
}
.cid-u8AmcxAbKB .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-u8AmcxAbKB .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-u8AmcxAbKB .modal-footer {
    padding: 1rem;
  }
}
.cid-u8AmcxAbKB .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-u8AmcxAbKB .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-u8AmcxAbKB .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-u8AmcxAbKB .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-u8AmcxAbKB .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-u8AmcxAbKB .modal-lg,
  .cid-u8AmcxAbKB .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-u8AmcxAbKB .modal-xl {
    max-width: 1140px;
  }
}
.cid-u8AmcxAbKB .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-u8AmcxAbKB .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-u8AmcxAbKB .form-group {
  margin-bottom: 1rem;
}
.cid-u8AmcxAbKB .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-u8AmcxAbKB .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-u8AmcxAbKB .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-u8AmcxAbKB .mbr-section-btn {
  margin: 0;
}
.cid-u8AmcxAbKB .mbr-section-btn .btn {
  margin: 0;
}
.cid-u8HESROmnX {
  padding-top: 45px;
  padding-bottom: 15px;
  background-color: #000000;
}
.cid-u8HESROmnX .listico {
  padding-right: 1rem;
  font-size: 1.4rem;
}
.cid-u8HESROmnX .navbar-logo {
  width: 150px;
  margin-bottom: 10px;
  margin: auto;
}
.cid-u8HESROmnX .btn {
  margin: 0 !important;
  height: 55px;
}
.cid-u8HESROmnX .btn-primary {
  border: 1px solid #a31426 !important;
}
.cid-u8HESROmnX .btn-primary:hover {
  border: 1px solid #a31426 !important;
}
.cid-u8HESROmnX .stripe {
  border-bottom: 1px solid #ff8a8a;
  max-width: 90%;
  position: relative;
  margin-bottom: 0.5rem;
}
.cid-u8HESROmnX .form-group {
  padding-right: 0;
  max-width: 220px;
}
.cid-u8HESROmnX .input-group-btn {
  padding-left: 0;
}
.cid-u8HESROmnX .form-control {
  background: transparent;
  padding: 0.5rem 1rem;
  min-height: 55px;
  border-radius: 0px;
}
.cid-u8HESROmnX .stripe:before {
  content: "";
  position: absolute;
  top: 100%;
  right: 0;
  border-bottom: 1px solid #ff8a8a;
  width: 85%;
}
.cid-u8HESROmnX .mbr-text {
  color: #444;
}
.cid-u8HESROmnX h5 {
  margin-bottom: 0;
}
.cid-u8HESROmnX .navbar-brand {
  margin: auto;
  width: 100%;
  text-align: center;
}
.cid-u8HESROmnX .list-item {
  display: flex;
  padding-top: 10px;
  padding-bottom: 10px;
  -webkit-align-items: center;
  align-items: center;
}
.cid-u8HESROmnX .tips {
  height: 90px;
  width: 90px;
  border-radius: 6px;
  margin: 4px;
}
.cid-u8HESROmnX .socicon {
  font-size: 1.3rem;
  background: #222222;
  border-radius: 100%;
  width: 38px;
  height: 38px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-u8HESROmnX .social-list {
  display: flex;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-u8HESROmnX .social-list .soc-item {
  margin: 0 0.3rem;
}
.cid-u8HESROmnX .social-list a {
  margin: 0;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-u8HESROmnX .social-list a:hover {
  opacity: 0.4;
}
.cid-u8HESROmnX .media-container-row > div {
  padding: 0px;
}
.cid-u8HESROmnX .text2 {
  color: #ffffff;
  text-align: left;
}
.cid-u8HESROmnX .group-title {
  text-align: left;
  color: #ff8a8a;
  padding-bottom: 0.2rem;
}
.cid-u8HESROmnX .links {
  color: #ffffff;
  line-height: 1.6;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-u8HESROmnX .col-sm-12 {
    margin-bottom: 2rem;
  }
  .cid-u8HESROmnX .social-list,
  .cid-u8HESROmnX .img-list {
    -webkit-justify-content: center;
    justify-content: center;
    text-align: center;
  }
  .cid-u8HESROmnX h3 {
    margin-bottom: 10px;
  }
}
@media (max-width: 576px) {
  .cid-u8HESROmnX .form-group {
    max-width: 180px;
  }
}
.cid-u8HESROmnX .links span {
  color: #9e9e9e;
}
.cid-u8HESROmnX .logo-sub-title {
  text-align: center;
  color: #ffffff;
}
.cid-u8HESROmnX .logo-title {
  text-align: center;
}
.cid-u8HESROmnX .logo-title,
.cid-u8HESROmnX .logo {
  color: #ffffff;
}
.cid-u8AmMdE8nz {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 80px;
}
@media (min-width: 992px) {
  .cid-u8AmMdE8nz .mbr-section-btn {
    margin-right: -0.6rem;
  }
}
@media (max-width: 992px) {
  .cid-u8AmMdE8nz .align-right {
    text-align: center;
  }
}
@media (max-width: 767px) {
  .cid-u8AmMdE8nz .navbar-dropdown {
    padding: 0 1rem;
  }
}
.cid-u8AmMdE8nz .navbar-caption {
  font-weight: 500;
}
.cid-u8AmMdE8nz nav.navbar {
  position: fixed;
}
.cid-u8AmMdE8nz .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-u8AmMdE8nz .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-u8AmMdE8nz .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-u8AmMdE8nz .dropdown-item:hover,
.cid-u8AmMdE8nz .dropdown-item:focus {
  background: #a31426 !important;
  color: white !important;
}
.cid-u8AmMdE8nz .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-u8AmMdE8nz .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-u8AmMdE8nz .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-u8AmMdE8nz .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-u8AmMdE8nz .nav-link {
  position: relative;
}
.cid-u8AmMdE8nz .container {
  display: flex;
  margin: auto;
}
.cid-u8AmMdE8nz .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding: 0 0.25rem;
}
.cid-u8AmMdE8nz .dropdown-menu,
.cid-u8AmMdE8nz .navbar.opened {
  background: #ffffff !important;
}
.cid-u8AmMdE8nz .nav-item:focus,
.cid-u8AmMdE8nz .nav-link:focus {
  outline: none;
}
.cid-u8AmMdE8nz .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-u8AmMdE8nz .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-u8AmMdE8nz .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-u8AmMdE8nz .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-u8AmMdE8nz .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-u8AmMdE8nz .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-u8AmMdE8nz .navbar {
  min-height: 100px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-u8AmMdE8nz .navbar.opened {
  transition: all 0.3s;
}
.cid-u8AmMdE8nz .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-u8AmMdE8nz .navbar .navbar-logo img {
  width: auto;
}
.cid-u8AmMdE8nz .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-u8AmMdE8nz .navbar.collapsed {
  justify-content: center;
}
.cid-u8AmMdE8nz .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-u8AmMdE8nz .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-u8AmMdE8nz .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 6.9rem);
  }
}
.cid-u8AmMdE8nz .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-u8AmMdE8nz .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-u8AmMdE8nz .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-u8AmMdE8nz .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-u8AmMdE8nz .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-u8AmMdE8nz .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-u8AmMdE8nz .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-u8AmMdE8nz .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-u8AmMdE8nz .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-u8AmMdE8nz .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-u8AmMdE8nz .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-u8AmMdE8nz .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-u8AmMdE8nz .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-u8AmMdE8nz .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-u8AmMdE8nz .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-u8AmMdE8nz .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-u8AmMdE8nz .navbar .icons-menu {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-u8AmMdE8nz .navbar.navbar-short {
  min-height: 80px;
}
.cid-u8AmMdE8nz .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-u8AmMdE8nz .navbar.navbar-short .navbar-brand {
  min-height: 80px;
  padding: 0;
}
.cid-u8AmMdE8nz .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-u8AmMdE8nz .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-u8AmMdE8nz .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-u8AmMdE8nz .dropdown-item.active,
.cid-u8AmMdE8nz .dropdown-item:active {
  background-color: transparent;
}
.cid-u8AmMdE8nz .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-u8AmMdE8nz .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-u8AmMdE8nz .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-u8AmMdE8nz .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-u8AmMdE8nz .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-u8AmMdE8nz .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-u8AmMdE8nz ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-u8AmMdE8nz button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-u8AmMdE8nz button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-u8AmMdE8nz button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-u8AmMdE8nz button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u8AmMdE8nz button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u8AmMdE8nz button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-u8AmMdE8nz nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u8AmMdE8nz nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-u8AmMdE8nz nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-u8AmMdE8nz nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u8AmMdE8nz .navbar-dropdown {
  position: fixed;
}
.cid-u8AmMdE8nz a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-u8AmMdE8nz .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-u8AmMdE8nz .navbar {
    height: 70px;
  }
  .cid-u8AmMdE8nz .navbar.opened {
    height: auto;
  }
  .cid-u8AmMdE8nz .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-u8And1bPg2 {
  padding-top: 8rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-u8And1bPg2 .item-img {
  position: relative;
  overflow: hidden;
}
.cid-u8And1bPg2 .item-img:before {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: black;
  opacity: 0.2;
  z-index: 1;
  transition: all 0.3s;
  pointer-events: none;
}
.cid-u8And1bPg2 .item-img:hover img {
  transform: scale(1.15);
}
.cid-u8And1bPg2 .item-img:hover:before {
  opacity: 0.5;
}
.cid-u8And1bPg2 h5 {
  margin-bottom: 1rem;
}
.cid-u8And1bPg2 .item-content {
  position: absolute;
  top: 55%;
  right: 0;
  z-index: 2;
  width: 100%;
  transform: translateY(-50%);
  margin-top: 2rem;
  padding: 0 2.25rem 2.25rem;
  display: flex;
  flex-direction: column;
  height: 50%;
}
@media (max-width: 767px) {
  .cid-u8And1bPg2 .item-content {
    padding: 0 2rem 1.5rem;
    margin-top: 1rem;
  }
}
.cid-u8And1bPg2 img,
.cid-u8And1bPg2 .item-img {
  width: 100%;
  transition: all 0.3s;
  height: 100%;
  height: 400px;
  object-fit: cover;
}
.cid-u8And1bPg2 .item:focus,
.cid-u8And1bPg2 span:focus {
  outline: none;
}
.cid-u8And1bPg2 .item {
  margin-bottom: 2rem;
}
@media (max-width: 767px) {
  .cid-u8And1bPg2 .item {
    margin-bottom: 1rem;
  }
}
.cid-u8And1bPg2 .item-wrapper {
  position: relative;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
.cid-u8And1bPg2 .mbr-section-title {
  color: #000000;
}
.cid-u8And1bPg2 .item-title {
  text-align: center;
  color: #ffffff;
}
.cid-u8And1bPg2 .item-subtitle {
  text-align: center;
  color: #ffffff;
}
.cid-u8And1bPg2 .mbr-text,
.cid-u8And1bPg2 .item .mbr-section-btn {
  text-align: center;
  color: #ffffff;
}
.cid-u8And1bPg2 .content-head {
  max-width: 800px;
}
.cid-u8AmMg8bY9.popup-builder {
  background-color: #ffffff;
}
.cid-u8AmMg8bY9.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-u8AmMg8bY9.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-u8AmMg8bY9 .modal-content,
.cid-u8AmMg8bY9 .modal-dialog {
  height: auto;
}
.cid-u8AmMg8bY9 .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-u8AmMg8bY9 .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-u8AmMg8bY9 .form-wrapper .mbr-form .form-group,
  .cid-u8AmMg8bY9 .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-u8AmMg8bY9 .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-u8AmMg8bY9 .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-u8AmMg8bY9 .mbr-text {
  text-align: center;
}
.cid-u8AmMg8bY9 .pt-0 {
  padding-top: 0 !important;
}
.cid-u8AmMg8bY9 .pb-0 {
  padding-bottom: 0 !important;
}
.cid-u8AmMg8bY9 .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-u8AmMg8bY9 .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-u8AmMg8bY9 .modal-open {
  overflow: hidden;
}
.cid-u8AmMg8bY9 .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-u8AmMg8bY9 .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-u8AmMg8bY9 .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-u8AmMg8bY9 .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-u8AmMg8bY9 .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-u8AmMg8bY9 .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-u8AmMg8bY9 .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-u8AmMg8bY9 .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-u8AmMg8bY9 .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-u8AmMg8bY9 .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-u8AmMg8bY9 .modal-backdrop.fade {
  opacity: 0;
}
.cid-u8AmMg8bY9 .modal-backdrop.show {
  opacity: .5;
}
.cid-u8AmMg8bY9 .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-u8AmMg8bY9 .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-u8AmMg8bY9 .modal-header {
    padding: 1rem;
  }
}
.cid-u8AmMg8bY9 .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-u8AmMg8bY9 .modal-header .close svg {
  fill: #000000;
}
.cid-u8AmMg8bY9 .modal-header .close:hover {
  opacity: 1;
}
.cid-u8AmMg8bY9 .modal-header .close:focus {
  outline: none;
}
.cid-u8AmMg8bY9 .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
}
.cid-u8AmMg8bY9 .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-u8AmMg8bY9 .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-u8AmMg8bY9 .modal-body {
    padding: 1rem;
  }
}
.cid-u8AmMg8bY9 .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-u8AmMg8bY9 .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-u8AmMg8bY9 .modal-footer {
    padding: 1rem;
  }
}
.cid-u8AmMg8bY9 .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-u8AmMg8bY9 .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-u8AmMg8bY9 .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-u8AmMg8bY9 .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-u8AmMg8bY9 .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-u8AmMg8bY9 .modal-lg,
  .cid-u8AmMg8bY9 .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-u8AmMg8bY9 .modal-xl {
    max-width: 1140px;
  }
}
.cid-u8AmMg8bY9 .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-u8AmMg8bY9 .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-u8AmMg8bY9 .form-group {
  margin-bottom: 1rem;
}
.cid-u8AmMg8bY9 .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-u8AmMg8bY9 .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-u8AmMg8bY9 .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-u8AmMg8bY9 .mbr-section-btn {
  margin: 0;
}
.cid-u8AmMg8bY9 .mbr-section-btn .btn {
  margin: 0;
}
.cid-u8HEvvFhzf {
  padding-top: 45px;
  padding-bottom: 15px;
  background-color: #000000;
}
.cid-u8HEvvFhzf .listico {
  padding-right: 1rem;
  font-size: 1.4rem;
}
.cid-u8HEvvFhzf .navbar-logo {
  width: 150px;
  margin-bottom: 10px;
  margin: auto;
}
.cid-u8HEvvFhzf .btn {
  margin: 0 !important;
  height: 55px;
}
.cid-u8HEvvFhzf .btn-primary {
  border: 1px solid #a31426 !important;
}
.cid-u8HEvvFhzf .btn-primary:hover {
  border: 1px solid #a31426 !important;
}
.cid-u8HEvvFhzf .stripe {
  border-bottom: 1px solid #ff8a8a;
  max-width: 90%;
  position: relative;
  margin-bottom: 0.5rem;
}
.cid-u8HEvvFhzf .form-group {
  padding-right: 0;
  max-width: 220px;
}
.cid-u8HEvvFhzf .input-group-btn {
  padding-left: 0;
}
.cid-u8HEvvFhzf .form-control {
  background: transparent;
  padding: 0.5rem 1rem;
  min-height: 55px;
  border-radius: 0px;
}
.cid-u8HEvvFhzf .stripe:before {
  content: "";
  position: absolute;
  top: 100%;
  right: 0;
  border-bottom: 1px solid #ff8a8a;
  width: 85%;
}
.cid-u8HEvvFhzf .mbr-text {
  color: #444;
}
.cid-u8HEvvFhzf h5 {
  margin-bottom: 0;
}
.cid-u8HEvvFhzf .navbar-brand {
  margin: auto;
  width: 100%;
  text-align: center;
}
.cid-u8HEvvFhzf .list-item {
  display: flex;
  padding-top: 10px;
  padding-bottom: 10px;
  -webkit-align-items: center;
  align-items: center;
}
.cid-u8HEvvFhzf .tips {
  height: 90px;
  width: 90px;
  border-radius: 6px;
  margin: 4px;
}
.cid-u8HEvvFhzf .socicon {
  font-size: 1.3rem;
  background: #222222;
  border-radius: 100%;
  width: 38px;
  height: 38px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-u8HEvvFhzf .social-list {
  display: flex;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-u8HEvvFhzf .social-list .soc-item {
  margin: 0 0.3rem;
}
.cid-u8HEvvFhzf .social-list a {
  margin: 0;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-u8HEvvFhzf .social-list a:hover {
  opacity: 0.4;
}
.cid-u8HEvvFhzf .media-container-row > div {
  padding: 0px;
}
.cid-u8HEvvFhzf .text2 {
  color: #ffffff;
  text-align: left;
}
.cid-u8HEvvFhzf .group-title {
  text-align: left;
  color: #ff8a8a;
  padding-bottom: 0.2rem;
}
.cid-u8HEvvFhzf .links {
  color: #ffffff;
  line-height: 1.6;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-u8HEvvFhzf .col-sm-12 {
    margin-bottom: 2rem;
  }
  .cid-u8HEvvFhzf .social-list,
  .cid-u8HEvvFhzf .img-list {
    -webkit-justify-content: center;
    justify-content: center;
    text-align: center;
  }
  .cid-u8HEvvFhzf h3 {
    margin-bottom: 10px;
  }
}
@media (max-width: 576px) {
  .cid-u8HEvvFhzf .form-group {
    max-width: 180px;
  }
}
.cid-u8HEvvFhzf .links span {
  color: #9e9e9e;
}
.cid-u8HEvvFhzf .logo-sub-title {
  text-align: center;
  color: #ffffff;
}
.cid-u8HEvvFhzf .logo-title {
  text-align: center;
}
.cid-u8HEvvFhzf .logo-title,
.cid-u8HEvvFhzf .logo {
  color: #ffffff;
}
.cid-u8Asugn0iT {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 80px;
}
@media (min-width: 992px) {
  .cid-u8Asugn0iT .mbr-section-btn {
    margin-right: -0.6rem;
  }
}
@media (max-width: 992px) {
  .cid-u8Asugn0iT .align-right {
    text-align: center;
  }
}
@media (max-width: 767px) {
  .cid-u8Asugn0iT .navbar-dropdown {
    padding: 0 1rem;
  }
}
.cid-u8Asugn0iT .navbar-caption {
  font-weight: 500;
}
.cid-u8Asugn0iT nav.navbar {
  position: fixed;
}
.cid-u8Asugn0iT .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-u8Asugn0iT .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-u8Asugn0iT .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-u8Asugn0iT .dropdown-item:hover,
.cid-u8Asugn0iT .dropdown-item:focus {
  background: #a31426 !important;
  color: white !important;
}
.cid-u8Asugn0iT .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-u8Asugn0iT .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-u8Asugn0iT .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-u8Asugn0iT .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-u8Asugn0iT .nav-link {
  position: relative;
}
.cid-u8Asugn0iT .container {
  display: flex;
  margin: auto;
}
.cid-u8Asugn0iT .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding: 0 0.25rem;
}
.cid-u8Asugn0iT .dropdown-menu,
.cid-u8Asugn0iT .navbar.opened {
  background: #ffffff !important;
}
.cid-u8Asugn0iT .nav-item:focus,
.cid-u8Asugn0iT .nav-link:focus {
  outline: none;
}
.cid-u8Asugn0iT .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-u8Asugn0iT .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-u8Asugn0iT .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-u8Asugn0iT .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-u8Asugn0iT .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-u8Asugn0iT .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-u8Asugn0iT .navbar {
  min-height: 100px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-u8Asugn0iT .navbar.opened {
  transition: all 0.3s;
}
.cid-u8Asugn0iT .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-u8Asugn0iT .navbar .navbar-logo img {
  width: auto;
}
.cid-u8Asugn0iT .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-u8Asugn0iT .navbar.collapsed {
  justify-content: center;
}
.cid-u8Asugn0iT .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-u8Asugn0iT .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-u8Asugn0iT .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 6.9rem);
  }
}
.cid-u8Asugn0iT .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-u8Asugn0iT .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-u8Asugn0iT .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-u8Asugn0iT .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-u8Asugn0iT .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-u8Asugn0iT .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-u8Asugn0iT .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-u8Asugn0iT .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-u8Asugn0iT .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-u8Asugn0iT .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-u8Asugn0iT .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-u8Asugn0iT .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-u8Asugn0iT .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-u8Asugn0iT .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-u8Asugn0iT .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-u8Asugn0iT .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-u8Asugn0iT .navbar .icons-menu {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-u8Asugn0iT .navbar.navbar-short {
  min-height: 80px;
}
.cid-u8Asugn0iT .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-u8Asugn0iT .navbar.navbar-short .navbar-brand {
  min-height: 80px;
  padding: 0;
}
.cid-u8Asugn0iT .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-u8Asugn0iT .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-u8Asugn0iT .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-u8Asugn0iT .dropdown-item.active,
.cid-u8Asugn0iT .dropdown-item:active {
  background-color: transparent;
}
.cid-u8Asugn0iT .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-u8Asugn0iT .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-u8Asugn0iT .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-u8Asugn0iT .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-u8Asugn0iT .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-u8Asugn0iT .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-u8Asugn0iT ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-u8Asugn0iT button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-u8Asugn0iT button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-u8Asugn0iT button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-u8Asugn0iT button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u8Asugn0iT button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u8Asugn0iT button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-u8Asugn0iT nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u8Asugn0iT nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-u8Asugn0iT nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-u8Asugn0iT nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u8Asugn0iT .navbar-dropdown {
  position: fixed;
}
.cid-u8Asugn0iT a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-u8Asugn0iT .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-u8Asugn0iT .navbar {
    height: 70px;
  }
  .cid-u8Asugn0iT .navbar.opened {
    height: auto;
  }
  .cid-u8Asugn0iT .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-u8AFrERh1N {
  padding-top: 8rem;
  padding-bottom: 4rem;
  background-color: #ffffff;
}
.cid-u8AFrERh1N .mbr-section-subtitle {
  margin-bottom: .75rem;
  line-height: 1;
}
.cid-u8AFrERh1N .mbr-text {
  margin-top: 1.5rem;
  letter-spacing: -0.025rem;
}
.cid-u8AFrERh1N form {
  margin-top: 2.5rem;
}
.cid-u8AFrERh1N input::-webkit-input-placeholder {
  color: #373c42;
  opacity: .8;
}
.cid-u8AFrERh1N input::-moz-placeholder {
  color: #373c42;
  opacity: .8;
}
.cid-u8AFrERh1N .mbr-form .form-group {
  margin-bottom: 1rem;
}
.cid-u8AFrERh1N .mbr-form .form-control {
  padding: .75rem 1rem;
  line-height: 1.5;
  border: 1px solid #000000;
  border-radius: 0 !important;
  background-color: #ffffff;
}
.cid-u8AFrERh1N .mbr-form .form-control:focus {
  border-color: #000000;
}
.cid-u8AFrERh1N .mbr-form textarea {
  height: 120px;
  background-color: #ffffff;
}
.cid-u8AFrERh1N .mbr-form .btn {
  border-radius: 0 !important;
  box-shadow: none !important;
  border: none;
  min-height: auto !important;
  font-weight: 400;
}
.cid-u8AFrERh1N .mbr-form .btn-primary-outline {
  padding: 0 !important;
  border-bottom: 1px solid currentColor !important;
}
.cid-u8AFrERh1N .card_item {
  border-radius: 0 !important;
}
@media (min-width: 768px) {
  .cid-u8AFrERh1N .card_item:nth-child(1) .card-box {
    padding: 2.5rem 0 2.5rem 2rem;
  }
  .cid-u8AFrERh1N .card_item:nth-child(2) .card-box {
    padding: 12rem 0 2.5rem 2rem;
  }
  .cid-u8AFrERh1N .card_item:nth-child(3) .card-box {
    padding: 6rem 2rem 2.5rem 2rem;
  }
}
.cid-u8AFrERh1N .card_item:nth-child(1) .square_null {
  transform: translateX(2rem);
}
.cid-u8AFrERh1N .card_item:nth-child(1) .square_fill {
  transform: translate(-5rem, -2rem);
  background-color: #ff0000;
}
.cid-u8AFrERh1N .card_item:nth-child(1):hover .square_fill {
  transform: rotate(45deg) translate(-2rem, 2rem);
}
.cid-u8AFrERh1N .card_item:nth-child(2):hover .square_fill {
  transform: rotate(-45deg) translate(0.25rem, -3rem) scale(0.75);
}
.cid-u8AFrERh1N .card_item:nth-child(2) .square_fill {
  background-color: #000000;
  transform: translate(-2.5rem, -0.5rem);
}
.cid-u8AFrERh1N .card_item:nth-child(2) .square_null {
  transform: rotate(45deg) translate(-1rem, -2rem);
}
.cid-u8AFrERh1N .card_item:nth-child(3):hover .square_fill {
  transform: scale(1) translateX(-5rem) rotate(45deg);
}
.cid-u8AFrERh1N .card_item:nth-child(3) .square_fill {
  background-color: #ff8a8a;
  transform: scale(0.8) translateX(-6.25rem);
}
.cid-u8AFrERh1N .card_item .card-box {
  border-left: 1px dotted rgba(55, 60, 66, 0.5);
}
.cid-u8AFrERh1N .card_item:nth-child(2) .card-box {
  border-right: 1px dotted rgba(55, 60, 66, 0.5);
}
.cid-u8AFrERh1N .card-box {
  height: 100%;
}
.cid-u8AFrERh1N .item-wrapper {
  height: 100%;
  padding: 0 1rem;
}
.cid-u8AFrERh1N .square_animation {
  display: flex;
  position: relative;
  margin-bottom: 1.75rem;
}
.cid-u8AFrERh1N .square_animation .square {
  width: 5rem;
  height: 5rem;
}
.cid-u8AFrERh1N .square_animation .square_null {
  z-index: 1;
  border: 1px solid #a31426;
}
.cid-u8AFrERh1N .square_animation .square_fill {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.cid-u8AFrERh1N .card-title {
  margin-bottom: 1.75rem;
}
@media (max-width: 991px) {
  .cid-u8AFrERh1N .square_animation .square {
    width: 4rem;
    height: 4rem;
  }
  .cid-u8AFrERh1N .card_item:nth-child(1) .square_null {
    transform: translateX(1rem);
  }
  .cid-u8AFrERh1N .card_item:nth-child(3) .square_fill {
    transform: scale(0.8) translateX(-4.75rem);
  }
  .cid-u8AFrERh1N .card_item:nth-child(3):hover .square_fill {
    transform: scale(1) translateX(-4rem) rotate(45deg);
  }
}
@media (max-width: 767px) {
  .cid-u8AFrERh1N .item-wrapper {
    padding: 0;
  }
  .cid-u8AFrERh1N .card-box {
    padding: 2rem 0 2.5rem;
  }
  .cid-u8AFrERh1N .mbr-section-subtitle {
    margin-bottom: .25rem;
  }
  .cid-u8AFrERh1N .mbr-text {
    margin-top: .75rem;
  }
  .cid-u8AFrERh1N .square_animation {
    margin-bottom: 1rem;
  }
  .cid-u8AFrERh1N .square_animation .square {
    width: 2.5rem;
    height: 2.5rem;
  }
  .cid-u8AFrERh1N .card_item:nth-child(1):hover .square_fill {
    transform: none;
  }
  .cid-u8AFrERh1N .card_item:nth-child(1) .square_fill {
    transform: translate(-2rem, -1rem) !important;
  }
  .cid-u8AFrERh1N .card_item:nth-child(1) .square_null {
    transform: translateX(1.5rem);
  }
  .cid-u8AFrERh1N .card_item:nth-child(2):hover .square_fill {
    transform: none;
  }
  .cid-u8AFrERh1N .card_item:nth-child(2) .square_fill {
    transform: translate(-1.75rem, 0.75rem) !important;
  }
  .cid-u8AFrERh1N .card_item:nth-child(2) .square_null {
    margin-left: 1rem;
    transform: rotate(45deg) translate(0);
  }
  .cid-u8AFrERh1N .card_item:nth-child(3):hover .square_fill {
    transform: none;
  }
  .cid-u8AFrERh1N .card_item:nth-child(3) .square_fill {
    transform: scale(0.8) translateX(-3.15rem) !important;
  }
  .cid-u8AFrERh1N .card_item .card-box {
    border-left: none;
    border-bottom: 1px dotted rgba(55, 60, 66, 0.5);
  }
  .cid-u8AFrERh1N .card_item:nth-child(2) .card-box {
    border-right: none;
    border-bottom: none;
  }
  .cid-u8AFrERh1N .card-title {
    margin-bottom: 1.25rem;
  }
}
.cid-u8AFrERh1N .textGDPR {
  font-size: 14px;
}
.cid-u8AsukvLO6.popup-builder {
  background-color: #ffffff;
}
.cid-u8AsukvLO6.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-u8AsukvLO6.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-u8AsukvLO6 .modal-content,
.cid-u8AsukvLO6 .modal-dialog {
  height: auto;
}
.cid-u8AsukvLO6 .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-u8AsukvLO6 .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-u8AsukvLO6 .form-wrapper .mbr-form .form-group,
  .cid-u8AsukvLO6 .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-u8AsukvLO6 .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-u8AsukvLO6 .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-u8AsukvLO6 .mbr-text {
  text-align: center;
}
.cid-u8AsukvLO6 .pt-0 {
  padding-top: 0 !important;
}
.cid-u8AsukvLO6 .pb-0 {
  padding-bottom: 0 !important;
}
.cid-u8AsukvLO6 .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-u8AsukvLO6 .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-u8AsukvLO6 .modal-open {
  overflow: hidden;
}
.cid-u8AsukvLO6 .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-u8AsukvLO6 .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-u8AsukvLO6 .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-u8AsukvLO6 .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-u8AsukvLO6 .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-u8AsukvLO6 .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-u8AsukvLO6 .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-u8AsukvLO6 .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-u8AsukvLO6 .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-u8AsukvLO6 .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-u8AsukvLO6 .modal-backdrop.fade {
  opacity: 0;
}
.cid-u8AsukvLO6 .modal-backdrop.show {
  opacity: .5;
}
.cid-u8AsukvLO6 .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-u8AsukvLO6 .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-u8AsukvLO6 .modal-header {
    padding: 1rem;
  }
}
.cid-u8AsukvLO6 .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-u8AsukvLO6 .modal-header .close svg {
  fill: #000000;
}
.cid-u8AsukvLO6 .modal-header .close:hover {
  opacity: 1;
}
.cid-u8AsukvLO6 .modal-header .close:focus {
  outline: none;
}
.cid-u8AsukvLO6 .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
}
.cid-u8AsukvLO6 .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-u8AsukvLO6 .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-u8AsukvLO6 .modal-body {
    padding: 1rem;
  }
}
.cid-u8AsukvLO6 .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-u8AsukvLO6 .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-u8AsukvLO6 .modal-footer {
    padding: 1rem;
  }
}
.cid-u8AsukvLO6 .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-u8AsukvLO6 .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-u8AsukvLO6 .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-u8AsukvLO6 .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-u8AsukvLO6 .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-u8AsukvLO6 .modal-lg,
  .cid-u8AsukvLO6 .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-u8AsukvLO6 .modal-xl {
    max-width: 1140px;
  }
}
.cid-u8AsukvLO6 .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-u8AsukvLO6 .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-u8AsukvLO6 .form-group {
  margin-bottom: 1rem;
}
.cid-u8AsukvLO6 .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-u8AsukvLO6 .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-u8AsukvLO6 .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-u8AsukvLO6 .mbr-section-btn {
  margin: 0;
}
.cid-u8AsukvLO6 .mbr-section-btn .btn {
  margin: 0;
}
.cid-u8HECjoyhk {
  padding-top: 45px;
  padding-bottom: 15px;
  background-color: #000000;
}
.cid-u8HECjoyhk .listico {
  padding-right: 1rem;
  font-size: 1.4rem;
}
.cid-u8HECjoyhk .navbar-logo {
  width: 150px;
  margin-bottom: 10px;
  margin: auto;
}
.cid-u8HECjoyhk .btn {
  margin: 0 !important;
  height: 55px;
}
.cid-u8HECjoyhk .btn-primary {
  border: 1px solid #a31426 !important;
}
.cid-u8HECjoyhk .btn-primary:hover {
  border: 1px solid #a31426 !important;
}
.cid-u8HECjoyhk .stripe {
  border-bottom: 1px solid #ff8a8a;
  max-width: 90%;
  position: relative;
  margin-bottom: 0.5rem;
}
.cid-u8HECjoyhk .form-group {
  padding-right: 0;
  max-width: 220px;
}
.cid-u8HECjoyhk .input-group-btn {
  padding-left: 0;
}
.cid-u8HECjoyhk .form-control {
  background: transparent;
  padding: 0.5rem 1rem;
  min-height: 55px;
  border-radius: 0px;
}
.cid-u8HECjoyhk .stripe:before {
  content: "";
  position: absolute;
  top: 100%;
  right: 0;
  border-bottom: 1px solid #ff8a8a;
  width: 85%;
}
.cid-u8HECjoyhk .mbr-text {
  color: #444;
}
.cid-u8HECjoyhk h5 {
  margin-bottom: 0;
}
.cid-u8HECjoyhk .navbar-brand {
  margin: auto;
  width: 100%;
  text-align: center;
}
.cid-u8HECjoyhk .list-item {
  display: flex;
  padding-top: 10px;
  padding-bottom: 10px;
  -webkit-align-items: center;
  align-items: center;
}
.cid-u8HECjoyhk .tips {
  height: 90px;
  width: 90px;
  border-radius: 6px;
  margin: 4px;
}
.cid-u8HECjoyhk .socicon {
  font-size: 1.3rem;
  background: #222222;
  border-radius: 100%;
  width: 38px;
  height: 38px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-u8HECjoyhk .social-list {
  display: flex;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-u8HECjoyhk .social-list .soc-item {
  margin: 0 0.3rem;
}
.cid-u8HECjoyhk .social-list a {
  margin: 0;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-u8HECjoyhk .social-list a:hover {
  opacity: 0.4;
}
.cid-u8HECjoyhk .media-container-row > div {
  padding: 0px;
}
.cid-u8HECjoyhk .text2 {
  color: #ffffff;
  text-align: left;
}
.cid-u8HECjoyhk .group-title {
  text-align: left;
  color: #ff8a8a;
  padding-bottom: 0.2rem;
}
.cid-u8HECjoyhk .links {
  color: #ffffff;
  line-height: 1.6;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-u8HECjoyhk .col-sm-12 {
    margin-bottom: 2rem;
  }
  .cid-u8HECjoyhk .social-list,
  .cid-u8HECjoyhk .img-list {
    -webkit-justify-content: center;
    justify-content: center;
    text-align: center;
  }
  .cid-u8HECjoyhk h3 {
    margin-bottom: 10px;
  }
}
@media (max-width: 576px) {
  .cid-u8HECjoyhk .form-group {
    max-width: 180px;
  }
}
.cid-u8HECjoyhk .links span {
  color: #9e9e9e;
}
.cid-u8HECjoyhk .logo-sub-title {
  text-align: center;
  color: #ffffff;
}
.cid-u8HECjoyhk .logo-title {
  text-align: center;
}
.cid-u8HECjoyhk .logo-title,
.cid-u8HECjoyhk .logo {
  color: #ffffff;
}
.cid-uzjVln9HtS {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 80px;
}
@media (min-width: 992px) {
  .cid-uzjVln9HtS .mbr-section-btn {
    margin-right: -0.6rem;
  }
}
@media (max-width: 992px) {
  .cid-uzjVln9HtS .align-right {
    text-align: center;
  }
}
@media (max-width: 767px) {
  .cid-uzjVln9HtS .navbar-dropdown {
    padding: 0 1rem;
  }
}
.cid-uzjVln9HtS .navbar-caption {
  font-weight: 500;
}
.cid-uzjVln9HtS nav.navbar {
  position: fixed;
}
.cid-uzjVln9HtS .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-uzjVln9HtS .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uzjVln9HtS .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uzjVln9HtS .dropdown-item:hover,
.cid-uzjVln9HtS .dropdown-item:focus {
  background: #a31426 !important;
  color: white !important;
}
.cid-uzjVln9HtS .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uzjVln9HtS .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uzjVln9HtS .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uzjVln9HtS .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uzjVln9HtS .nav-link {
  position: relative;
}
.cid-uzjVln9HtS .container {
  display: flex;
  margin: auto;
}
.cid-uzjVln9HtS .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding: 0 0.25rem;
}
.cid-uzjVln9HtS .dropdown-menu,
.cid-uzjVln9HtS .navbar.opened {
  background: #ffffff !important;
}
.cid-uzjVln9HtS .nav-item:focus,
.cid-uzjVln9HtS .nav-link:focus {
  outline: none;
}
.cid-uzjVln9HtS .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uzjVln9HtS .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uzjVln9HtS .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uzjVln9HtS .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uzjVln9HtS .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uzjVln9HtS .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uzjVln9HtS .navbar {
  min-height: 100px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-uzjVln9HtS .navbar.opened {
  transition: all 0.3s;
}
.cid-uzjVln9HtS .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uzjVln9HtS .navbar .navbar-logo img {
  width: auto;
}
.cid-uzjVln9HtS .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uzjVln9HtS .navbar.collapsed {
  justify-content: center;
}
.cid-uzjVln9HtS .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uzjVln9HtS .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uzjVln9HtS .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 6.9rem);
  }
}
.cid-uzjVln9HtS .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uzjVln9HtS .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uzjVln9HtS .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-uzjVln9HtS .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uzjVln9HtS .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uzjVln9HtS .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uzjVln9HtS .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uzjVln9HtS .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uzjVln9HtS .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uzjVln9HtS .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uzjVln9HtS .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-uzjVln9HtS .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uzjVln9HtS .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uzjVln9HtS .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uzjVln9HtS .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uzjVln9HtS .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uzjVln9HtS .navbar .icons-menu {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uzjVln9HtS .navbar.navbar-short {
  min-height: 80px;
}
.cid-uzjVln9HtS .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uzjVln9HtS .navbar.navbar-short .navbar-brand {
  min-height: 80px;
  padding: 0;
}
.cid-uzjVln9HtS .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uzjVln9HtS .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uzjVln9HtS .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uzjVln9HtS .dropdown-item.active,
.cid-uzjVln9HtS .dropdown-item:active {
  background-color: transparent;
}
.cid-uzjVln9HtS .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uzjVln9HtS .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uzjVln9HtS .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uzjVln9HtS .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-uzjVln9HtS .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uzjVln9HtS .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uzjVln9HtS ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uzjVln9HtS button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uzjVln9HtS button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uzjVln9HtS button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uzjVln9HtS button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uzjVln9HtS button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uzjVln9HtS button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uzjVln9HtS nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uzjVln9HtS nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uzjVln9HtS nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uzjVln9HtS nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uzjVln9HtS .navbar-dropdown {
  position: fixed;
}
.cid-uzjVln9HtS a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uzjVln9HtS .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-uzjVln9HtS .navbar {
    height: 70px;
  }
  .cid-uzjVln9HtS .navbar.opened {
    height: auto;
  }
  .cid-uzjVln9HtS .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uzjVlnysLh {
  padding-top: 6rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uzjVlnysLh .mbr-fallback-image.disabled {
  display: none;
}
.cid-uzjVlnysLh .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uzjVlnysLh .mbr-section-head {
  margin-bottom: 32px;
}
.cid-uzjVlnysLh .mbr-section-title {
  color: #24262b;
}
.cid-uzjVlnysLh .mbr-section-subtitle {
  margin-top: 16px;
  color: #000000;
  text-align: center;
}
.cid-uzjVlnysLh .items-row {
  row-gap: 32px;
}
.cid-uzjVlnysLh .item-wrapper {
  position: relative;
  overflow: hidden;
}
.cid-uzjVlnysLh .item-wrapper img {
  width: 100%;
  height: calc(50px * 5);
  object-fit: cover;
  transition: all 0.3s;
}
.cid-uzjVlnysLh .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  z-index: 3;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  border-radius: 50%;
  opacity: 0;
  color: #24262b;
  transform: translateX(-50%) translateY(-50%);
  background-color: #FFFFFF;
  transition: 0.3s;
}
.cid-uzjVlnysLh .item-wrapper .img-overlay {
  position: absolute;
  pointer-events: none;
  transition: all 0.3s;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #33363b;
  opacity: 0;
  z-index: 2;
}
.cid-uzjVlnysLh .item-wrapper:hover img {
  transform: scale(1.05);
}
.cid-uzjVlnysLh .item-wrapper:hover .icon-wrapper {
  opacity: 1;
}
.cid-uzjVlnysLh .item-wrapper:hover .img-overlay {
  opacity: 0.3;
}
.cid-uzjVlnysLh .carousel-control,
.cid-uzjVlnysLh .close {
  background: #1b1b1b;
}
.cid-uzjVlnysLh .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-uzjVlnysLh .carousel-control-prev span {
  margin-right: 5px;
}
.cid-uzjVlnysLh .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-uzjVlnysLh .carousel-control-next span {
  margin-left: 5px;
}
.cid-uzjVlnysLh .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;
  font-family: 'Moririse2';
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-uzjVlnysLh .close::before {
  content: '\e91a';
}
.cid-uzjVlnysLh .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-uzjVlnysLh .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-uzjVlnysLh .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uzjVlnysLh .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-uzjVlnysLh .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-uzjVlnysLh .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-uzjVlnysLh .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-uzjVlnysLh .carousel-indicators li.active,
.cid-uzjVlnysLh .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-uzjVlnysLh .carousel-indicators li::after,
.cid-uzjVlnysLh .carousel-indicators li::before {
  content: none;
}
.cid-uzjVlnysLh .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-uzjVlnysLh .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-uzjVlnysLh .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-uzjVlnysLh .carousel-indicators {
    display: none;
  }
}
.cid-uzjVlnysLh .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-uzjVlnysLh .carousel-inner > .active {
  display: block;
}
.cid-uzjVlnysLh .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uzjVlnysLh .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-uzjVlnysLh .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-uzjVlnysLh .carousel-control,
  .cid-uzjVlnysLh .carousel-indicators,
  .cid-uzjVlnysLh .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-uzjVlnysLh .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-uzjVlnysLh .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-uzjVlnysLh .carousel-indicators .active,
.cid-uzjVlnysLh .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-uzjVlnysLh .carousel-indicators .active {
  background: #fff;
}
.cid-uzjVlnysLh .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-uzjVlnysLh .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-uzjVlnysLh .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-uzjVlnysLh .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-uzjVlnysLh .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-uzjVlnysLh .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-uzjVlnysLh .carousel {
  width: 100%;
}
.cid-uzjVlnysLh .modal-backdrop.in {
  opacity: 0.8;
}
.cid-uzjVlnysLh .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-uzjVlnysLh .modal.fade .modal-dialog,
.cid-uzjVlnysLh .modal.in .modal-dialog {
  transform: none;
}
.cid-uzjVlnysLh .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-uzjVlnysLh H6 {
  text-align: center;
}
.cid-uzjVlps1nH.popup-builder {
  background-color: #ffffff;
}
.cid-uzjVlps1nH.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-uzjVlps1nH.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-uzjVlps1nH .modal-content,
.cid-uzjVlps1nH .modal-dialog {
  height: auto;
}
.cid-uzjVlps1nH .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-uzjVlps1nH .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-uzjVlps1nH .form-wrapper .mbr-form .form-group,
  .cid-uzjVlps1nH .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-uzjVlps1nH .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-uzjVlps1nH .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-uzjVlps1nH .mbr-text {
  text-align: center;
}
.cid-uzjVlps1nH .pt-0 {
  padding-top: 0 !important;
}
.cid-uzjVlps1nH .pb-0 {
  padding-bottom: 0 !important;
}
.cid-uzjVlps1nH .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-uzjVlps1nH .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-uzjVlps1nH .modal-open {
  overflow: hidden;
}
.cid-uzjVlps1nH .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-uzjVlps1nH .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-uzjVlps1nH .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-uzjVlps1nH .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-uzjVlps1nH .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-uzjVlps1nH .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-uzjVlps1nH .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-uzjVlps1nH .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-uzjVlps1nH .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-uzjVlps1nH .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-uzjVlps1nH .modal-backdrop.fade {
  opacity: 0;
}
.cid-uzjVlps1nH .modal-backdrop.show {
  opacity: .5;
}
.cid-uzjVlps1nH .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-uzjVlps1nH .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uzjVlps1nH .modal-header {
    padding: 1rem;
  }
}
.cid-uzjVlps1nH .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-uzjVlps1nH .modal-header .close svg {
  fill: #000000;
}
.cid-uzjVlps1nH .modal-header .close:hover {
  opacity: 1;
}
.cid-uzjVlps1nH .modal-header .close:focus {
  outline: none;
}
.cid-uzjVlps1nH .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
}
.cid-uzjVlps1nH .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-uzjVlps1nH .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uzjVlps1nH .modal-body {
    padding: 1rem;
  }
}
.cid-uzjVlps1nH .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-uzjVlps1nH .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uzjVlps1nH .modal-footer {
    padding: 1rem;
  }
}
.cid-uzjVlps1nH .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-uzjVlps1nH .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-uzjVlps1nH .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-uzjVlps1nH .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-uzjVlps1nH .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-uzjVlps1nH .modal-lg,
  .cid-uzjVlps1nH .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-uzjVlps1nH .modal-xl {
    max-width: 1140px;
  }
}
.cid-uzjVlps1nH .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-uzjVlps1nH .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-uzjVlps1nH .form-group {
  margin-bottom: 1rem;
}
.cid-uzjVlps1nH .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-uzjVlps1nH .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-uzjVlps1nH .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-uzjVlps1nH .mbr-section-btn {
  margin: 0;
}
.cid-uzjVlps1nH .mbr-section-btn .btn {
  margin: 0;
}
.cid-uzjVlpZtjn {
  padding-top: 45px;
  padding-bottom: 15px;
  background-color: #000000;
}
.cid-uzjVlpZtjn .listico {
  padding-right: 1rem;
  font-size: 1.4rem;
}
.cid-uzjVlpZtjn .navbar-logo {
  width: 150px;
  margin-bottom: 10px;
  margin: auto;
}
.cid-uzjVlpZtjn .btn {
  margin: 0 !important;
  height: 55px;
}
.cid-uzjVlpZtjn .btn-primary {
  border: 1px solid #a31426 !important;
}
.cid-uzjVlpZtjn .btn-primary:hover {
  border: 1px solid #a31426 !important;
}
.cid-uzjVlpZtjn .stripe {
  border-bottom: 1px solid #ff8a8a;
  max-width: 90%;
  position: relative;
  margin-bottom: 0.5rem;
}
.cid-uzjVlpZtjn .form-group {
  padding-right: 0;
  max-width: 220px;
}
.cid-uzjVlpZtjn .input-group-btn {
  padding-left: 0;
}
.cid-uzjVlpZtjn .form-control {
  background: transparent;
  padding: 0.5rem 1rem;
  min-height: 55px;
  border-radius: 0px;
}
.cid-uzjVlpZtjn .stripe:before {
  content: "";
  position: absolute;
  top: 100%;
  right: 0;
  border-bottom: 1px solid #ff8a8a;
  width: 85%;
}
.cid-uzjVlpZtjn .mbr-text {
  color: #444;
}
.cid-uzjVlpZtjn h5 {
  margin-bottom: 0;
}
.cid-uzjVlpZtjn .navbar-brand {
  margin: auto;
  width: 100%;
  text-align: center;
}
.cid-uzjVlpZtjn .list-item {
  display: flex;
  padding-top: 10px;
  padding-bottom: 10px;
  -webkit-align-items: center;
  align-items: center;
}
.cid-uzjVlpZtjn .tips {
  height: 90px;
  width: 90px;
  border-radius: 6px;
  margin: 4px;
}
.cid-uzjVlpZtjn .socicon {
  font-size: 1.3rem;
  background: #222222;
  border-radius: 100%;
  width: 38px;
  height: 38px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-uzjVlpZtjn .social-list {
  display: flex;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-uzjVlpZtjn .social-list .soc-item {
  margin: 0 0.3rem;
}
.cid-uzjVlpZtjn .social-list a {
  margin: 0;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-uzjVlpZtjn .social-list a:hover {
  opacity: 0.4;
}
.cid-uzjVlpZtjn .media-container-row > div {
  padding: 0px;
}
.cid-uzjVlpZtjn .text2 {
  color: #ffffff;
  text-align: left;
}
.cid-uzjVlpZtjn .group-title {
  text-align: left;
  color: #ff8a8a;
  padding-bottom: 0.2rem;
}
.cid-uzjVlpZtjn .links {
  color: #ffffff;
  line-height: 1.6;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-uzjVlpZtjn .col-sm-12 {
    margin-bottom: 2rem;
  }
  .cid-uzjVlpZtjn .social-list,
  .cid-uzjVlpZtjn .img-list {
    -webkit-justify-content: center;
    justify-content: center;
    text-align: center;
  }
  .cid-uzjVlpZtjn h3 {
    margin-bottom: 10px;
  }
}
@media (max-width: 576px) {
  .cid-uzjVlpZtjn .form-group {
    max-width: 180px;
  }
}
.cid-uzjVlpZtjn .links span {
  color: #9e9e9e;
}
.cid-uzjVlpZtjn .logo-sub-title {
  text-align: center;
  color: #ffffff;
}
.cid-uzjVlpZtjn .logo-title {
  text-align: center;
}
.cid-uzjVlpZtjn .logo-title,
.cid-uzjVlpZtjn .logo {
  color: #ffffff;
}