body {
  font-family: Syne;
}
.display-1 {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 7.5rem;
  line-height: 1;
  letter-spacing: 0.1em;
}
.display-1 > .mbr-iconfont {
  font-size: 9.375rem;
}
.display-2 {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 3.56rem;
  line-height: 1;
  letter-spacing: -0.03em;
}
.display-2 > .mbr-iconfont {
  font-size: 4.45rem;
}
.display-4 {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 1rem;
  line-height: 1em;
  letter-spacing: inherit;
}
.display-4 > .mbr-iconfont {
  font-size: 1.25rem;
}
.display-5 {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 2.9rem;
  line-height: 1.021em;
  letter-spacing: 0;
}
.display-5 > .mbr-iconfont {
  font-size: 3.625rem;
}
.display-7 {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 1.4rem;
  line-height: inherit;
  letter-spacing: 0;
}
.display-7 > .mbr-iconfont {
  font-size: 1.75rem;
}
/* ---- 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: 6rem;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 5.25rem;
    font-size: calc( 3.2749999999999995rem + (7.5 - 3.2749999999999995) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (3.2749999999999995rem + (7.5 - 3.2749999999999995) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 2.848rem;
    font-size: calc( 1.896rem + (3.56 - 1.896) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.3 * (1.896rem + (3.56 - 1.896) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 0.8rem;
    font-size: calc( 1rem + (1 - 1) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1rem + (1 - 1) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 2.32rem;
    font-size: calc( 1.665rem + (2.9 - 1.665) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.665rem + (2.9 - 1.665) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-7 {
    font-size: 1.12rem;
    font-size: calc( 1.14rem + (1.4 - 1.14) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.14rem + (1.4 - 1.14) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* Buttons */
.btn {
  padding: 0.6rem 1.2rem;
  border-radius: 0;
}
.btn-sm {
  padding: 0.6rem 1.2rem;
  border-radius: 0;
}
.btn-md {
  padding: 0.6rem 1.2rem;
  border-radius: 0;
}
.btn-lg {
  padding: 1rem 2.6rem;
  border-radius: 0;
}
.bg-primary {
  background-color: #ffffff !important;
}
.bg-success {
  background-color: #75242a !important;
}
.bg-info {
  background-color: #ca741f !important;
}
.bg-warning {
  background-color: #ffa4a4 !important;
}
.bg-danger {
  background-color: #c62045 !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #ffffff !important;
  border-color: #ffffff !important;
  color: #808080 !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: #545454 !important;
  background-color: #d4d4d4 !important;
  border-color: #d4d4d4 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #808080 !important;
  background-color: #d4d4d4 !important;
  border-color: #d4d4d4 !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #c8d814 !important;
  border-color: #c8d814 !important;
  color: #000000 !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: #7f890d !important;
  border-color: #7f890d !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #000000 !important;
  background-color: #7f890d !important;
  border-color: #7f890d !important;
}
.btn-info,
.btn-info:active {
  background-color: #ca741f !important;
  border-color: #ca741f !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: #7f4913 !important;
  border-color: #7f4913 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #7f4913 !important;
  border-color: #7f4913 !important;
}
.btn-success,
.btn-success:active {
  background-color: #75242a !important;
  border-color: #75242a !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: #331012 !important;
  border-color: #331012 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #331012 !important;
  border-color: #331012 !important;
}
.btn-warning,
.btn-warning:active {
  background-color: #ffa4a4 !important;
  border-color: #ffa4a4 !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: #ff4d4d !important;
  border-color: #ff4d4d !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #ffffff !important;
  background-color: #ff4d4d !important;
  border-color: #ff4d4d !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #c62045 !important;
  border-color: #c62045 !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: #7b142b !important;
  border-color: #7b142b !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #7b142b !important;
  border-color: #7b142b !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: #ffffff;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #d4d4d4 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #808080 !important;
  background-color: #ffffff !important;
  border-color: #ffffff !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #c8d814;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #7f890d !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #000000 !important;
  background-color: #c8d814 !important;
  border-color: #c8d814 !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ca741f;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #7f4913 !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: #ca741f !important;
  border-color: #ca741f !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #75242a;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #331012 !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: #75242a !important;
  border-color: #75242a !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ffa4a4;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #ff4d4d !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: #ffa4a4 !important;
  border-color: #ffa4a4 !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #c62045;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #7b142b !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: #c62045 !important;
  border-color: #c62045 !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: #ffffff !important;
}
.text-secondary {
  color: #c8d814 !important;
}
.text-success {
  color: #75242a !important;
}
.text-info {
  color: #ca741f !important;
}
.text-warning {
  color: #ffa4a4 !important;
}
.text-danger {
  color: #c62045 !important;
}
.text-white {
  color: #fafafa !important;
}
.text-black {
  color: #232323 !important;
}
a.text-primary:hover,
a.text-primary:focus,
a.text-primary.active {
  color: #cccccc !important;
}
a.text-secondary:hover,
a.text-secondary:focus,
a.text-secondary.active {
  color: #727b0b !important;
}
a.text-success:hover,
a.text-success:focus,
a.text-success.active {
  color: #270c0e !important;
}
a.text-info:hover,
a.text-info:focus,
a.text-info.active {
  color: #724111 !important;
}
a.text-warning:hover,
a.text-warning:focus,
a.text-warning.active {
  color: #ff3e3e !important;
}
a.text-danger:hover,
a.text-danger:focus,
a.text-danger.active {
  color: #6e1226 !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: #ffffff;
}
.nav-tabs .nav-link:not(.active) {
  color: #232323;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #ca741f;
}
.alert-warning {
  background-color: #ffa4a4;
}
.alert-danger {
  background-color: #c62045;
}
.mbr-section-btn a.btn:not(.btn-form) {
  border-radius: 100px;
}
.mbr-gallery-filter li a {
  border-radius: 100px !important;
}
.mbr-gallery-filter li.active .btn {
  background-color: #ffffff;
  border-color: #ffffff;
  color: #8c8c8c;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
.nav-tabs .nav-link {
  border-radius: 100px !important;
}
a,
a:hover {
  color: #ffffff;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #c95058;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #f5dac0;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #ea7c94;
}
/* Scroll to top button*/
.scrollToTop_wraper {
  display: none;
}
.form-control {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 1rem;
  line-height: 1em;
  letter-spacing: inherit;
  font-weight: 400;
}
.form-control > .mbr-iconfont {
  font-size: 1.25rem;
}
.form-control:hover,
.form-control:focus {
  box-shadow: rgba(0, 0, 0, 0.07) 0px 1px 1px 0px, rgba(0, 0, 0, 0.07) 0px 1px 3px 0px, rgba(0, 0, 0, 0.03) 0px 0px 0px 1px;
  border-color: #ffffff !important;
}
.form-control:-webkit-input-placeholder {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 1rem;
  line-height: 1em;
  letter-spacing: inherit;
  font-weight: 400;
}
.form-control:-webkit-input-placeholder > .mbr-iconfont {
  font-size: 1.25rem;
}
blockquote {
  border-color: #ffffff;
}
/* Forms */
.mbr-form .input-group-btn a.btn {
  border-radius: 100px !important;
}
.mbr-form .input-group-btn a.btn:hover {
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.mbr-form .input-group-btn button[type="submit"] {
  border-radius: 100px !important;
  padding: 1rem 3rem;
}
.mbr-form .input-group-btn button[type="submit"]:hover {
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #ffffff;
  color: #000000;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #ffffff;
}
.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: #ffffff;
  border-bottom-color: #ffffff;
}
.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: #000000 !important;
  background-color: #ffffff !important;
  box-shadow: none !important;
}
.xdsoft_datetimepicker .xdsoft_calendar td:hover,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div:hover {
  color: #000000 !important;
  background: #c8d814 !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='%23ffffff' %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;
}
.mbr-section-btn .btn,
.mbr-section-btn-main .btn {
  box-shadow: none;
  padding: 21px 40.5px;
  border-width: 2px;
}
.mbr-section-btn .btn:hover,
.mbr-section-btn-main .btn:hover,
.mbr-section-btn .btn:focus,
.mbr-section-btn-main .btn:focus {
  box-shadow: none;
}
.mbr-section-btn .btn-primary-outline,
.mbr-section-btn-main .btn-primary-outline,
.mbr-section-btn .btn-secondary-outline,
.mbr-section-btn-main .btn-secondary-outline,
.mbr-section-btn .btn-success-outline,
.mbr-section-btn-main .btn-success-outline,
.mbr-section-btn .btn-info-outline,
.mbr-section-btn-main .btn-info-outline,
.mbr-section-btn .btn-warning-outline,
.mbr-section-btn-main .btn-warning-outline,
.mbr-section-btn .btn-danger-outline,
.mbr-section-btn-main .btn-danger-outline,
.mbr-section-btn .btn-white-outline,
.mbr-section-btn-main .btn-white-outline,
.mbr-section-btn .btn-black-outline,
.mbr-section-btn-main .btn-black-outline {
  border: 2px solid;
}
.mbr-section-btn .btn-primary-outline,
.mbr-section-btn-main .btn-primary-outline {
  border: 2px solid #ffffff;
}
.mbr-section-btn .btn-primary-outline:hover,
.mbr-section-btn-main .btn-primary-outline:hover,
.mbr-section-btn .btn-primary-outline:focus,
.mbr-section-btn-main .btn-primary-outline:focus {
  background-color: #ffffff !important;
  color: #000000 !important;
}
.mbr-section-btn .btn-secondary-outline,
.mbr-section-btn-main .btn-secondary-outline {
  border: 2px solid #c8d814;
}
.mbr-section-btn .btn-secondary-outline:hover,
.mbr-section-btn-main .btn-secondary-outline:hover,
.mbr-section-btn .btn-secondary-outline:focus,
.mbr-section-btn-main .btn-secondary-outline:focus {
  background-color: #c8d814 !important;
  color: #000000 !important;
}
.mbr-section-btn .btn-success-outline,
.mbr-section-btn-main .btn-success-outline {
  border: 2px solid #75242a;
}
.mbr-section-btn .btn-success-outline:hover,
.mbr-section-btn-main .btn-success-outline:hover,
.mbr-section-btn .btn-success-outline:focus,
.mbr-section-btn-main .btn-success-outline:focus {
  background-color: #75242a !important;
  color: #ffffff !important;
}
.mbr-section-btn .btn-info-outline,
.mbr-section-btn-main .btn-info-outline {
  border: 2px solid #ca741f;
}
.mbr-section-btn .btn-info-outline:hover,
.mbr-section-btn-main .btn-info-outline:hover,
.mbr-section-btn .btn-info-outline:focus,
.mbr-section-btn-main .btn-info-outline:focus {
  background-color: #ca741f !important;
  color: #ffffff !important;
}
.mbr-section-btn .btn-danger-outline,
.mbr-section-btn-main .btn-danger-outline {
  border: 2px solid #c62045;
}
.mbr-section-btn .btn-danger-outline:hover,
.mbr-section-btn-main .btn-danger-outline:hover,
.mbr-section-btn .btn-danger-outline:focus,
.mbr-section-btn-main .btn-danger-outline:focus {
  background-color: #c62045 !important;
  color: #ffffff !important;
}
.mbr-section-btn .btn-warning-outline,
.mbr-section-btn-main .btn-warning-outline {
  border: 2px solid #ffa4a4;
}
.mbr-section-btn .btn-warning-outline:hover,
.mbr-section-btn-main .btn-warning-outline:hover,
.mbr-section-btn .btn-warning-outline:focus,
.mbr-section-btn-main .btn-warning-outline:focus {
  background-color: #ffa4a4 !important;
  color: #000000 !important;
}
.mbr-section-btn .btn-white-outline,
.mbr-section-btn-main .btn-white-outline {
  border: 2px solid #ffffff;
}
.mbr-section-btn .btn-white-outline:hover,
.mbr-section-btn-main .btn-white-outline:hover,
.mbr-section-btn .btn-white-outline:focus,
.mbr-section-btn-main .btn-white-outline:focus {
  background-color: #ffffff !important;
  color: #000000 !important;
}
.mbr-section-btn .btn-black-outline,
.mbr-section-btn-main .btn-black-outline {
  border: 2px solid #000000;
}
.mbr-section-btn .btn-black-outline:hover,
.mbr-section-btn-main .btn-black-outline:hover,
.mbr-section-btn .btn-black-outline:focus,
.mbr-section-btn-main .btn-black-outline:focus {
  background-color: #000000 !important;
  color: #ffffff !important;
}
.cid-ungHZg3gHT {
  background: #ca741f;
  padding-top: 30px;
  padding-bottom: 30px;
}
.cid-ungHZg3gHT .image-block {
  margin: auto;
}
.cid-ungHZg3gHT figcaption {
  position: relative;
}
.cid-ungHZg3gHT figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-ungHZg3gHT .image-block {
    width: 100% !important;
  }
}
.cid-ungIYPfrG3 {
  padding-top: 3rem;
  padding-bottom: 0rem;
  overflow: hidden;
  background-color: #ffffff;
}
.cid-ungIYPfrG3 .mbr-fallback-image.disabled {
  display: none;
}
.cid-ungIYPfrG3 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ungIYPfrG3 .container-fluid {
  padding: 0 50px;
  margin: 0;
}
@media (max-width: 992px) {
  .cid-ungIYPfrG3 .container-fluid {
    padding: 0 20px;
  }
}
.cid-ungIYPfrG3 .container-fluid .row {
  padding: 0;
}
@media (max-width: 992px) {
  .cid-ungIYPfrG3 .container {
    padding: 0 20px;
  }
}
.cid-ungIYPfrG3 .title-wrapper .logo-wrap {
  margin-bottom: 30px;
}
@media (max-width: 768px) {
  .cid-ungIYPfrG3 .title-wrapper .logo-wrap {
    margin-bottom: 16px;
  }
}
.cid-ungIYPfrG3 .title-wrapper .logo-wrap img {
  display: inline-flex;
  width: 70px;
  height: 70px;
  object-fit: contain;
  border-radius: 100%;
}
.cid-ungIYPfrG3 .title-wrapper .title-wrap .mbr-section-title {
  margin-bottom: 30px;
}
.cid-ungIYPfrG3 .mbr-section-title {
  color: #ffffff;
}
.cid-ungIYPfrG3 .mbr-section-title,
.cid-ungIYPfrG3 .mbr-section-btn,
.cid-ungIYPfrG3 .logo-wrap {
  text-align: center;
  color: #75242a;
}
.cid-ungIsU8BJ0 {
  padding-top: 3rem;
  padding-bottom: 0rem;
  overflow: hidden;
  background-color: #ffffff;
}
.cid-ungIsU8BJ0 .mbr-fallback-image.disabled {
  display: none;
}
.cid-ungIsU8BJ0 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-ungIsU8BJ0 .container {
    padding: 0 20px;
  }
}
.cid-ungIsU8BJ0 .text-wrapper {
  display: flex;
  justify-content: center;
}
@media (max-width: 768px) {
  .cid-ungIsU8BJ0 .text-wrapper {
    display: block;
  }
}
.cid-ungIsU8BJ0 .text-wrapper .mbr-emoji {
  margin-right: 15px;
  margin-bottom: 0;
  max-width: 50px;
}
@media (max-width: 768px) {
  .cid-ungIsU8BJ0 .text-wrapper .mbr-emoji {
    margin-right: 0;
    margin-bottom: 10px;
    text-align: center;
    max-width: 100%;
  }
}
.cid-ungIsU8BJ0 .text-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-ungIsU8BJ0 .mbr-text {
  color: #75242a;
  text-align: center;
}
.cid-ungIsU8BJ0 .mbr-emoji {
  color: #ffffff;
}
.cid-ungBL6QkZK {
  padding-top: 4rem;
  padding-bottom: 0rem;
  overflow: hidden;
  background-color: #ffffff;
}
.cid-ungBL6QkZK .mbr-fallback-image.disabled {
  display: none;
}
.cid-ungBL6QkZK .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ungBL6QkZK .container-fluid {
  padding: 0 50px;
  margin: 0;
}
@media (max-width: 992px) {
  .cid-ungBL6QkZK .container-fluid {
    padding: 0 20px;
  }
}
.cid-ungBL6QkZK .container-fluid .row {
  padding: 0;
}
@media (max-width: 992px) {
  .cid-ungBL6QkZK .container {
    padding: 0 20px;
  }
}
.cid-ungBL6QkZK .row {
  justify-content: center;
}
.cid-ungBL6QkZK .title-wrapper .mbr-section-title {
  margin-bottom: 60px;
  letter-spacing: 0;
}
@media (max-width: 768px) {
  .cid-ungBL6QkZK .title-wrapper .mbr-section-title {
    margin-bottom: 30px;
  }
}
.cid-ungBL6QkZK .item {
  margin-bottom: 45px;
}
.cid-ungBL6QkZK .item:nth-child(2n) {
  margin-top: 120px;
}
@media (max-width: 992px) {
  .cid-ungBL6QkZK .item:nth-child(2n) {
    margin-top: 0;
  }
}
.cid-ungBL6QkZK .item a:hover .item-wrapper .item-img img {
  transform: scale(1.07);
}
.cid-ungBL6QkZK .item a .item-wrapper .item-img {
  height: 670px;
  overflow: hidden;
}
@media (max-width: 768px) {
  .cid-ungBL6QkZK .item a .item-wrapper .item-img {
    height: 300px;
  }
}
.cid-ungBL6QkZK .item a .item-wrapper .item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.3s ease-out;
}
.cid-ungBL6QkZK .item a .item-wrapper .item-content {
  margin-top: 30px;
}
.cid-ungBL6QkZK .item a .item-wrapper .item-content .desc-wrapper {
  margin-bottom: 16px;
}
.cid-ungBL6QkZK .item a .item-wrapper .item-content .desc-wrapper .desc-wrap {
  padding-left: 50px;
  position: relative;
  display: inline-flex;
}
@media (max-width: 768px) {
  .cid-ungBL6QkZK .item a .item-wrapper .item-content .desc-wrapper .desc-wrap {
    padding: 0;
  }
}
.cid-ungBL6QkZK .item a .item-wrapper .item-content .desc-wrapper .desc-wrap::before {
  content: '';
  position: absolute;
  top: 6px;
  left: 0;
  width: 35px;
  height: 2px;
  background-color: #000000;
}
@media (max-width: 768px) {
  .cid-ungBL6QkZK .item a .item-wrapper .item-content .desc-wrapper .desc-wrap::before {
    display: none;
  }
}
.cid-ungBL6QkZK .item a .item-wrapper .item-content .desc-wrapper .desc-wrap .mbr-desc {
  margin: 0 10px 0 0;
}
.cid-ungBL6QkZK .item a .item-wrapper .item-content .desc-wrapper .desc-wrap .mbr-date {
  margin: 0;
}
.cid-ungBL6QkZK .item a .item-wrapper .item-content .mbr-text {
  padding-left: 50px;
  margin-bottom: 0;
}
@media (max-width: 768px) {
  .cid-ungBL6QkZK .item a .item-wrapper .item-content .mbr-text {
    padding: 0;
  }
}
.cid-ungBL6QkZK .mbr-section-title {
  color: #000000;
}
.cid-ungBL6QkZK .mbr-desc {
  color: #000000;
}
.cid-ungBL6QkZK .mbr-date {
  color: #6a6e71;
}
.cid-ungBL6QkZK .mbr-text {
  color: #000000;
}
.cid-ungETkAmZM {
  padding-top: 0rem;
  padding-bottom: 1rem;
  overflow: hidden;
  background-color: #ffffff;
}
.cid-ungETkAmZM .mbr-fallback-image.disabled {
  display: none;
}
.cid-ungETkAmZM .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ungETkAmZM .container-fluid {
  padding: 0 50px;
  margin: 0;
}
@media (max-width: 992px) {
  .cid-ungETkAmZM .container-fluid {
    padding: 0 20px;
  }
}
.cid-ungETkAmZM .container-fluid .row {
  padding: 0;
}
@media (max-width: 992px) {
  .cid-ungETkAmZM .container {
    padding: 0 20px;
  }
}
.cid-ungETkAmZM .row {
  justify-content: center;
}
.cid-ungETkAmZM .title-wrapper .mbr-section-title {
  margin-bottom: 60px;
  letter-spacing: 0;
}
@media (max-width: 768px) {
  .cid-ungETkAmZM .title-wrapper .mbr-section-title {
    margin-bottom: 30px;
  }
}
.cid-ungETkAmZM .item {
  margin-bottom: 45px;
}
.cid-ungETkAmZM .item:nth-child(2n) {
  margin-top: 120px;
}
@media (max-width: 992px) {
  .cid-ungETkAmZM .item:nth-child(2n) {
    margin-top: 0;
  }
}
.cid-ungETkAmZM .item a:hover .item-wrapper .item-img img {
  transform: scale(1.07);
}
.cid-ungETkAmZM .item a .item-wrapper .item-img {
  height: 670px;
  overflow: hidden;
}
@media (max-width: 768px) {
  .cid-ungETkAmZM .item a .item-wrapper .item-img {
    height: 300px;
  }
}
.cid-ungETkAmZM .item a .item-wrapper .item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.3s ease-out;
}
.cid-ungETkAmZM .item a .item-wrapper .item-content {
  margin-top: 30px;
}
.cid-ungETkAmZM .item a .item-wrapper .item-content .desc-wrapper {
  margin-bottom: 16px;
}
.cid-ungETkAmZM .item a .item-wrapper .item-content .desc-wrapper .desc-wrap {
  padding-left: 50px;
  position: relative;
  display: inline-flex;
}
@media (max-width: 768px) {
  .cid-ungETkAmZM .item a .item-wrapper .item-content .desc-wrapper .desc-wrap {
    padding: 0;
  }
}
.cid-ungETkAmZM .item a .item-wrapper .item-content .desc-wrapper .desc-wrap::before {
  content: '';
  position: absolute;
  top: 6px;
  left: 0;
  width: 35px;
  height: 2px;
  background-color: #000000;
}
@media (max-width: 768px) {
  .cid-ungETkAmZM .item a .item-wrapper .item-content .desc-wrapper .desc-wrap::before {
    display: none;
  }
}
.cid-ungETkAmZM .item a .item-wrapper .item-content .desc-wrapper .desc-wrap .mbr-desc {
  margin: 0 10px 0 0;
}
.cid-ungETkAmZM .item a .item-wrapper .item-content .desc-wrapper .desc-wrap .mbr-date {
  margin: 0;
}
.cid-ungETkAmZM .item a .item-wrapper .item-content .mbr-text {
  padding-left: 50px;
  margin-bottom: 0;
}
@media (max-width: 768px) {
  .cid-ungETkAmZM .item a .item-wrapper .item-content .mbr-text {
    padding: 0;
  }
}
.cid-ungETkAmZM .mbr-section-title {
  color: #000000;
}
.cid-ungETkAmZM .mbr-desc {
  color: #000000;
}
.cid-ungETkAmZM .mbr-date {
  color: #6a6e71;
}
.cid-ungETkAmZM .mbr-text {
  color: #000000;
}
.cid-ungSY0JeqO {
  padding-top: 0rem;
  padding-bottom: 10rem;
  overflow: hidden;
  background-color: #ffffff;
}
.cid-ungSY0JeqO .mbr-fallback-image.disabled {
  display: none;
}
.cid-ungSY0JeqO .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-ungSY0JeqO .container {
    padding: 0 20px;
  }
}
.cid-ungSY0JeqO .text-wrapper {
  display: flex;
  justify-content: center;
}
@media (max-width: 768px) {
  .cid-ungSY0JeqO .text-wrapper {
    display: block;
  }
}
.cid-ungSY0JeqO .text-wrapper .mbr-emoji {
  margin-right: 15px;
  margin-bottom: 0;
  max-width: 50px;
}
@media (max-width: 768px) {
  .cid-ungSY0JeqO .text-wrapper .mbr-emoji {
    margin-right: 0;
    margin-bottom: 10px;
    text-align: center;
    max-width: 100%;
  }
}
.cid-ungSY0JeqO .text-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-ungSY0JeqO .mbr-text {
  color: #75242a;
  text-align: center;
}
.cid-ungSY0JeqO .mbr-emoji {
  color: #ffffff;
}
.cid-ungxTKEMXk {
  overflow: hidden;
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-ungxTKEMXk .mbr-fallback-image.disabled {
  display: none;
}
.cid-ungxTKEMXk .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ungxTKEMXk .container-fluid {
  padding: 0 50px;
  margin: 0;
}
@media (max-width: 992px) {
  .cid-ungxTKEMXk .container-fluid {
    padding: 0 20px;
  }
}
.cid-ungxTKEMXk .container-fluid .row {
  padding: 0;
}
@media (max-width: 992px) {
  .cid-ungxTKEMXk .container {
    padding: 0 20px;
  }
}
.cid-ungxTKEMXk .row {
  position: relative;
}
.cid-ungxTKEMXk .row img {
  position: absolute;
  object-fit: cover;
}
.cid-ungxTKEMXk .row .image_1 {
  height: 380px;
  width: 50%;
  top: -10rem;
  right: 0;
}
@media (max-width: 768px) {
  .cid-ungxTKEMXk .row .image_1 {
    height: 150px;
    width: 60%;
  }
}
.cid-ungxTKEMXk .row .image_2 {
  height: 270px;
  width: 35%;
  left: 0;
  bottom: -2rem;
}
@media (max-width: 768px) {
  .cid-ungxTKEMXk .row .image_2 {
    height: 100px;
    width: 60%;
  }
}
.cid-ungxTKEMXk .mbr-desc {
  position: relative;
  margin-bottom: 0;
  line-height: inherit;
  color: #ffffff;
}
@media (max-width: 992px) {
  .cid-ungxTKEMXk .mbr-desc {
    margin-bottom: 30px;
  }
}
.cid-ungxTKEMXk .mbr-section-title {
  position: relative;
  margin-bottom: 60px;
  color: #ffffff;
}
@media (max-width: 768px) {
  .cid-ungxTKEMXk .mbr-section-title {
    margin-bottom: 30px;
  }
}
.cid-ungxTKEMXk .mbr-text {
  position: relative;
  margin-bottom: 0;
  color: #D2D3D5;
  text-align: right;
}
.cid-ungxTKEMXk .mbr-section-title,
.cid-ungxTKEMXk .mbr-section-btn {
  text-align: center;
}
.cid-ungxTLcRBT {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background: #ffffff;
}
.cid-ungxTLcRBT .mbr-fallback-image.disabled {
  display: none;
}
.cid-ungxTLcRBT .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ungxTLcRBT .container-fluid {
  padding: 0 50px;
  margin: 0;
}
@media (max-width: 992px) {
  .cid-ungxTLcRBT .container-fluid {
    padding: 0 20px;
  }
}
.cid-ungxTLcRBT .container-fluid .row {
  padding: 0;
}
@media (max-width: 992px) {
  .cid-ungxTLcRBT .container {
    padding: 0 20px;
  }
}
.cid-ungxTLcRBT .title-wrapper .mbr-section-subtitle {
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  .cid-ungxTLcRBT .title-wrapper .mbr-section-subtitle {
    margin-bottom: 10px;
  }
}
.cid-ungxTLcRBT .title-wrapper .title-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 45px;
  margin-bottom: 50px;
  border-bottom: 2px solid #000000;
}
@media (max-width: 768px) {
  .cid-ungxTLcRBT .title-wrapper .title-wrap {
    display: block;
    padding-bottom: 20px;
    margin-bottom: 30px;
  }
}
.cid-ungxTLcRBT .title-wrapper .title-wrap .mbr-section-title {
  margin-bottom: 0;
}
@media (max-width: 768px) {
  .cid-ungxTLcRBT .title-wrapper .title-wrap .mbr-section-title {
    margin-bottom: 10px;
  }
}
.cid-ungxTLcRBT .title-wrapper .title-wrap .mbr-section-btn .btn {
  border: none;
  padding: 0;
  min-width: 92px;
}
.cid-ungxTLcRBT .title-wrapper .title-wrap .mbr-section-btn .btn:hover,
.cid-ungxTLcRBT .title-wrapper .title-wrap .mbr-section-btn .btn:focus {
  background-color: transparent !important;
  color: #000000 !important;
  opacity: .5;
}
.cid-ungxTLcRBT .title-wrapper .title-wrap .mbr-section-btn .btn .mbr-iconfont {
  margin-left: 18px;
}
.cid-ungxTLcRBT .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 420px;
  max-width: 420px;
}
@media (max-width: 768px) {
  .cid-ungxTLcRBT .embla__slide {
    min-width: 100%;
    max-width: 100%;
    margin-left: 1rem !important;
    margin-right: 1rem !important;
  }
}
.cid-ungxTLcRBT .embla__slide .card-wrap {
  width: 100%;
}
.cid-ungxTLcRBT .embla__slide .card-wrap:hover .item-wrapper .image-wrap img {
  transform: scale(1.05);
}
.cid-ungxTLcRBT .embla__slide .card-wrap:hover .item-wrapper .image-wrap .soc-wrap {
  transform: translateY(0);
  opacity: 1;
}
.cid-ungxTLcRBT .embla__slide .card-wrap .item-wrapper .image-wrap {
  height: 510px;
  position: relative;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
@media (max-width: 768px) {
  .cid-ungxTLcRBT .embla__slide .card-wrap .item-wrapper .image-wrap {
    height: 300px;
    margin-bottom: 20px;
  }
}
.cid-ungxTLcRBT .embla__slide .card-wrap .item-wrapper .image-wrap img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.3s ease-out;
}
.cid-ungxTLcRBT .embla__slide .card-wrap .item-wrapper .image-wrap .soc-wrap {
  display: flex;
  flex-wrap: wrap;
  position: relative;
  opacity: 0;
  transform: translateY(10%);
  transition: all 0.3s ease-out;
  pointer-events: visible;
  z-index: 1;
}
.cid-ungxTLcRBT .embla__slide .card-wrap .item-wrapper .image-wrap .soc-wrap .soc-item {
  margin: 0 8px 8px 0;
}
.cid-ungxTLcRBT .embla__slide .card-wrap .item-wrapper .image-wrap .soc-wrap .soc-item a {
  display: block;
}
.cid-ungxTLcRBT .embla__slide .card-wrap .item-wrapper .image-wrap .soc-wrap .soc-item a:hover .mbr-iconfont {
  background-color: #c8d814;
}
.cid-ungxTLcRBT .embla__slide .card-wrap .item-wrapper .image-wrap .soc-wrap .soc-item a .mbr-iconfont {
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  color: #000000;
  background-color: #ffffff;
  border-radius: 100%;
  transition: all 0.3s ease-out;
}
.cid-ungxTLcRBT .embla__slide .card-wrap .content-wrap .mbr-name {
  margin-bottom: 10px;
}
.cid-ungxTLcRBT .embla__slide .card-wrap .content-wrap .mbr-role {
  margin-bottom: 0;
}
.cid-ungxTLcRBT .embla__button--next,
.cid-ungxTLcRBT .embla__button--prev {
  display: flex;
}
.cid-ungxTLcRBT .embla__button {
  top: -1rem;
  width: 22px;
  height: 22px;
  margin-top: -1.5rem;
  font-size: 20px;
  background-color: transparent;
  color: #c8d814;
  border: none;
  border-radius: 50%;
  transition: all 0.3s;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 768px) {
  .cid-ungxTLcRBT .embla__button {
    display: none;
  }
}
.cid-ungxTLcRBT .embla__button:disabled {
  cursor: default;
  display: none;
}
.cid-ungxTLcRBT .embla__button:hover {
  background: transparent;
  color: #c8d814;
  opacity: .7;
}
.cid-ungxTLcRBT .embla__button.embla__button--prev {
  left: 3rem;
}
.cid-ungxTLcRBT .embla__button.embla__button--next {
  right: 3rem;
}
@media (max-width: 767px) {
  .cid-ungxTLcRBT .embla__button {
    top: 0;
  }
}
.cid-ungxTLcRBT .embla {
  position: relative;
  width: 100%;
}
.cid-ungxTLcRBT .embla__viewport {
  overflow: hidden;
  width: 100%;
}
.cid-ungxTLcRBT .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-ungxTLcRBT .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-ungxTLcRBT .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-ungxTLcRBT .mbr-section-subtitle {
  color: #000000;
}
.cid-ungxTLcRBT .mbr-section-title {
  color: #000000;
}
.cid-ungxTLcRBT .mbr-name {
  color: #000000;
}
.cid-ungxTLcRBT .mbr-role {
  color: #6a6e71;
}
.cid-ungxTMADNu {
  padding-top: 5rem;
  padding-bottom: 5rem;
  overflow: hidden;
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-ungxTMADNu .mbr-fallback-image.disabled {
  display: none;
}
.cid-ungxTMADNu .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ungxTMADNu .container-fluid {
  padding: 0 50px;
  margin: 0;
}
@media (max-width: 992px) {
  .cid-ungxTMADNu .container-fluid {
    padding: 0 20px;
  }
}
.cid-ungxTMADNu .container-fluid .row {
  padding: 0;
}
@media (max-width: 992px) {
  .cid-ungxTMADNu .container {
    padding: 0 20px;
  }
}
.cid-ungxTMADNu .row {
  justify-content: center;
}
.cid-ungxTMADNu .title-wrapper .mbr-section-title {
  margin-bottom: 60px;
}
@media (max-width: 768px) {
  .cid-ungxTMADNu .title-wrapper .mbr-section-title {
    margin-bottom: 30px;
  }
}
.cid-ungxTMADNu .item {
  margin-bottom: 40px;
}
@media (max-width: 768px) {
  .cid-ungxTMADNu .item {
    margin-bottom: 20px;
  }
}
.cid-ungxTMADNu .item a:hover .item-wrapper .item-img img {
  transform: translateY(-7px);
}
.cid-ungxTMADNu .item a .item-wrapper {
  overflow: visible;
}
.cid-ungxTMADNu .item a .item-wrapper .item-img img {
  border: 1px solid #6a6e71;
  height: 250px;
  object-fit: cover;
  transition: all 0.3s ease-out;
}
.cid-ungxTMADNu .item a .item-wrapper .item-content {
  margin-top: 26px;
}
@media (max-width: 992px) {
  .cid-ungxTMADNu .item a .item-wrapper .item-content {
    margin-top: 16px;
  }
}
.cid-ungxTMADNu .item a .item-wrapper .item-content .item-title {
  margin-bottom: 0;
}
.cid-ungxTMADNu .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-ungxTMADNu .item-title {
  color: #ffffff;
  text-align: center;
}
.cid-ungxTNegFu {
  padding-top: 5rem;
  padding-bottom: 5rem;
  overflow: hidden;
  background-color: #ffffff;
}
.cid-ungxTNegFu .mbr-fallback-image.disabled {
  display: none;
}
.cid-ungxTNegFu .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ungxTNegFu .container-fluid {
  padding: 0 50px;
  margin: 0;
}
@media (max-width: 992px) {
  .cid-ungxTNegFu .container-fluid {
    padding: 0 20px;
  }
}
.cid-ungxTNegFu .container-fluid .row {
  padding: 0;
}
@media (max-width: 992px) {
  .cid-ungxTNegFu .container {
    padding: 0 20px;
  }
}
.cid-ungxTNegFu .image-wrapper {
  position: relative;
  padding: 0 100px 60px 50px;
  height: 100%;
}
@media (max-width: 992px) {
  .cid-ungxTNegFu .image-wrapper {
    padding: 0;
    margin-bottom: 45px;
  }
}
.cid-ungxTNegFu .image-wrapper .image_1 {
  height: 430px;
  object-fit: cover;
}
@media (max-width: 768px) {
  .cid-ungxTNegFu .image-wrapper .image_1 {
    height: 300px;
  }
}
.cid-ungxTNegFu .image-wrapper .image_2 {
  position: absolute;
  bottom: 0;
  right: 0;
  height: 240px;
  max-width: 300px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-ungxTNegFu .image-wrapper .image_2 {
    display: none;
  }
}
.cid-ungxTNegFu .image-wrapper .image_3 {
  position: absolute;
  bottom: 10%;
  left: 0;
  height: 180px;
  max-width: 160px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-ungxTNegFu .image-wrapper .image_3 {
    display: none;
  }
}
.cid-ungxTNegFu .title-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
.cid-ungxTNegFu .title-wrapper .title-wrap {
  padding-left: 42px;
}
.cid-ungxTNegFu .title-wrapper .title-wrap .mbr-section-title {
  margin-bottom: 30px;
}
@media (max-width: 768px) {
  .cid-ungxTNegFu .title-wrapper .title-wrap .mbr-section-title {
    margin-bottom: 16px;
  }
}
.cid-ungxTNegFu .title-wrapper .title-wrap .mbr-text {
  margin-bottom: 30px;
}
@media (max-width: 768px) {
  .cid-ungxTNegFu .title-wrapper .title-wrap .mbr-text {
    margin-bottom: 16px;
  }
}
.cid-ungxTNegFu .mbr-section-title {
  color: #000000;
}
.cid-ungxTNegFu .mbr-text {
  color: #6a6e71;
}
.cid-ungxTNRQYg {
  padding-top: 5rem;
  padding-bottom: 5rem;
  overflow: hidden;
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-ungxTNRQYg .mbr-fallback-image.disabled {
  display: none;
}
.cid-ungxTNRQYg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ungxTNRQYg .container-fluid {
  padding: 0 50px;
  margin: 0;
}
@media (max-width: 992px) {
  .cid-ungxTNRQYg .container-fluid {
    padding: 0 20px;
  }
}
.cid-ungxTNRQYg .container-fluid .row {
  padding: 0;
}
@media (max-width: 992px) {
  .cid-ungxTNRQYg .container {
    padding: 0 20px;
  }
}
.cid-ungxTNRQYg .row {
  justify-content: center;
}
.cid-ungxTNRQYg .title-wrapper .mbr-section-title {
  margin-bottom: 60px;
}
@media (max-width: 768px) {
  .cid-ungxTNRQYg .title-wrapper .mbr-section-title {
    margin-bottom: 30px;
  }
}
.cid-ungxTNRQYg .card {
  margin-bottom: 42px;
}
@media (max-width: 992px) {
  .cid-ungxTNRQYg .card {
    margin-bottom: 30px;
  }
}
.cid-ungxTNRQYg .card .card-wrapper {
  height: 100%;
}
.cid-ungxTNRQYg .card .card-wrapper .icon-wrap {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-ungxTNRQYg .card .card-wrapper .icon-wrap {
    margin-bottom: 24px;
  }
}
.cid-ungxTNRQYg .card .card-wrapper .icon-wrap .mbr-iconfont {
  font-size: 42px;
  width: 76px;
  height: 76px;
  border-radius: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #c8d814;
  position: relative;
}
.cid-ungxTNRQYg .card .card-wrapper .icon-wrap .mbr-iconfont::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 100%;
  background-color: #ffffff;
  opacity: .1;
}
.cid-ungxTNRQYg .card .card-wrapper .mbr-card-title {
  margin-bottom: 14px;
  line-height: 1.2em;
}
.cid-ungxTNRQYg .card .card-wrapper .mbr-text {
  margin-bottom: 0;
  line-height: 1.8em;
}
.cid-ungxTNRQYg .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-ungxTNRQYg .mbr-card-title {
  color: #ffffff;
}
.cid-ungxTNRQYg .mbr-text {
  color: #D2D3D5;
  text-align: center;
}
.cid-ungxTNRQYg .mbr-card-title,
.cid-ungxTNRQYg .icon-wrap {
  text-align: center;
}
.cid-ungxTOMNfD {
  padding-top: 5rem;
  padding-bottom: 5rem;
  overflow: hidden;
  background-color: #ffffff;
}
.cid-ungxTOMNfD .mbr-fallback-image.disabled {
  display: none;
}
.cid-ungxTOMNfD .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ungxTOMNfD .container-fluid {
  padding: 0 50px;
  margin: 0;
}
@media (max-width: 992px) {
  .cid-ungxTOMNfD .container-fluid {
    padding: 0 20px;
  }
}
.cid-ungxTOMNfD .container-fluid .row {
  padding: 0;
}
@media (max-width: 992px) {
  .cid-ungxTOMNfD .container {
    padding: 0 20px;
  }
}
.cid-ungxTOMNfD .row {
  justify-content: center;
}
.cid-ungxTOMNfD .title-wrapper .mbr-section-subtitle {
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  .cid-ungxTOMNfD .title-wrapper .mbr-section-subtitle {
    margin-bottom: 10px;
  }
}
.cid-ungxTOMNfD .title-wrapper .title-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 45px;
  margin-bottom: 50px;
  border-bottom: 2px solid #000000;
}
@media (max-width: 768px) {
  .cid-ungxTOMNfD .title-wrapper .title-wrap {
    display: block;
    padding-bottom: 20px;
    margin-bottom: 30px;
  }
}
.cid-ungxTOMNfD .title-wrapper .title-wrap .mbr-section-title {
  margin-bottom: 0;
}
@media (max-width: 768px) {
  .cid-ungxTOMNfD .title-wrapper .title-wrap .mbr-section-title {
    margin-bottom: 10px;
  }
}
.cid-ungxTOMNfD .title-wrapper .title-wrap .mbr-section-btn .btn {
  border: none;
  padding: 0;
  min-width: 92px;
}
.cid-ungxTOMNfD .title-wrapper .title-wrap .mbr-section-btn .btn:hover,
.cid-ungxTOMNfD .title-wrapper .title-wrap .mbr-section-btn .btn:focus {
  background-color: transparent !important;
  color: #000000 !important;
  opacity: .5;
}
.cid-ungxTOMNfD .title-wrapper .title-wrap .mbr-section-btn .btn .mbr-iconfont {
  margin-left: 18px;
}
.cid-ungxTOMNfD .item {
  margin-bottom: 32px;
}
.cid-ungxTOMNfD .item a:hover .item-wrapper .item-img img {
  transform: scale(1.05);
}
.cid-ungxTOMNfD .item a:hover .item-wrapper .item-img .item-content .subtitle-wrap .item-subtitle {
  background-color: #161616;
}
.cid-ungxTOMNfD .item a:hover .item-wrapper .item-img .item-content .title-wrap {
  transform: translateY(0);
}
.cid-ungxTOMNfD .item a:hover .item-wrapper .item-img .item-content .title-wrap .link-wrap .item-link {
  opacity: 1;
}
.cid-ungxTOMNfD .item a .item-wrapper {
  overflow: hidden;
}
.cid-ungxTOMNfD .item a .item-wrapper .item-img {
  position: relative;
  height: 460px;
}
.cid-ungxTOMNfD .item a .item-wrapper .item-img img {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  object-fit: cover;
  transition: all 0.3s ease-out;
  pointer-events: visible;
}
.cid-ungxTOMNfD .item a .item-wrapper .item-img::before {
  content: '';
  position: absolute;
  height: 100%;
  width: 100%;
  background-image: linear-gradient(180deg, transparent, #000000);
  opacity: .8;
  pointer-events: none;
  z-index: 1;
}
.cid-ungxTOMNfD .item a .item-wrapper .item-img .item-content {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 30px;
  height: 100%;
  pointer-events: none;
  z-index: 2;
}
@media (max-width: 768px) {
  .cid-ungxTOMNfD .item a .item-wrapper .item-img .item-content {
    padding: 25px;
  }
}
.cid-ungxTOMNfD .item a .item-wrapper .item-img .item-content .subtitle-wrap {
  pointer-events: visible;
}
.cid-ungxTOMNfD .item a .item-wrapper .item-img .item-content .subtitle-wrap .item-subtitle {
  display: inline-flex;
  padding: 4px 18px;
  margin-bottom: 6px;
  background-color: #b29fe9;
  transition: all 0.3s ease-out;
}
.cid-ungxTOMNfD .item a .item-wrapper .item-img .item-content .title-wrap {
  transform: translateY(40px);
  transition: all 0.3s ease-out;
  pointer-events: visible;
}
.cid-ungxTOMNfD .item a .item-wrapper .item-img .item-content .title-wrap .item-title {
  margin-bottom: 16px;
}
.cid-ungxTOMNfD .item a .item-wrapper .item-img .item-content .title-wrap .desc-wrapper .desc-wrap {
  display: inline-flex;
}
.cid-ungxTOMNfD .item a .item-wrapper .item-img .item-content .title-wrap .desc-wrapper .desc-wrap .mbr-iconfont {
  margin-right: 14px;
  color: #c8d814;
}
.cid-ungxTOMNfD .item a .item-wrapper .item-img .item-content .title-wrap .desc-wrapper .desc-wrap .item-desc {
  margin-bottom: 0;
}
.cid-ungxTOMNfD .item a .item-wrapper .item-img .item-content .title-wrap .link-wrap .item-link {
  display: inline-flex;
  opacity: 0;
  margin: 16px 0 0 0;
  transition: all 0.3s ease-out;
}
.cid-ungxTOMNfD .item a .item-wrapper .item-img .item-content .title-wrap .link-wrap .item-link .mbr-iconfont {
  margin-left: 6px;
}
.cid-ungxTOMNfD .mbr-section-title {
  color: #000000;
}
.cid-ungxTOMNfD .mbr-section-subtitle {
  color: #000000;
}
.cid-ungxTOMNfD .item-title {
  color: #ffffff;
}
.cid-ungxTOMNfD .item-subtitle {
  color: #ffffff;
}
.cid-ungxTOMNfD .item-desc {
  color: #D2D3D5;
}
.cid-ungxTOMNfD .item-link {
  color: #ffffff;
}
.cid-ungxTPBbaK {
  padding-top: 0rem;
  padding-bottom: 0rem;
  overflow: hidden;
  background-color: #000000;
}
.cid-ungxTPBbaK .mbr-fallback-image.disabled {
  display: none;
}
.cid-ungxTPBbaK .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ungxTPBbaK .container-fluid {
  padding: 0;
  margin: 0;
}
@media (max-width: 992px) {
  .cid-ungxTPBbaK .container-fluid {
    padding: 0;
  }
}
.cid-ungxTPBbaK .container-fluid .row {
  padding: 0;
  margin: 0;
}
@media (max-width: 992px) {
  .cid-ungxTPBbaK .container {
    padding: 0 20px;
  }
}
.cid-ungxTPBbaK .card {
  position: relative;
  border-radius: 0;
  min-height: 820px;
  justify-content: center;
}
@media (max-width: 768px) {
  .cid-ungxTPBbaK .card {
    min-height: 500px;
    padding: 0 20px;
  }
}
.cid-ungxTPBbaK .card .image-back {
  position: absolute;
  object-fit: cover;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.cid-ungxTPBbaK .card .name-wrapper {
  position: relative;
  padding: 73px 0;
}
@media (max-width: 768px) {
  .cid-ungxTPBbaK .card .name-wrapper {
    padding: 30px 0;
  }
}
.cid-ungxTPBbaK .card .name-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-ungxTPBbaK .card .name-wrapper img {
  position: relative;
  height: 400px;
  width: 400px;
  object-fit: cover;
  border-radius: 100%;
  margin: -2rem auto;
}
@media (max-width: 768px) {
  .cid-ungxTPBbaK .card .name-wrapper img {
    height: 200px;
    width: 200px;
  }
}
.cid-ungxTPBbaK .card .text-wrapper {
  padding: 73px 54px;
}
@media (max-width: 768px) {
  .cid-ungxTPBbaK .card .text-wrapper {
    padding: 45px 0;
  }
}
.cid-ungxTPBbaK .card .text-wrapper .mbr-desc {
  margin-bottom: 20px;
  letter-spacing: 1.6px;
}
@media (max-width: 992px) {
  .cid-ungxTPBbaK .card .text-wrapper .mbr-desc {
    margin-bottom: 10px;
  }
}
.cid-ungxTPBbaK .card .text-wrapper .mbr-text {
  margin-bottom: 20px;
}
.cid-ungxTPBbaK .card .text-wrapper .link-wrap {
  display: block;
}
.cid-ungxTPBbaK .card .text-wrapper .link-wrap .mbr-link {
  position: relative;
  display: inline-flex;
  padding-bottom: 10px;
  margin-bottom: 0;
}
.cid-ungxTPBbaK .card .text-wrapper .link-wrap .mbr-link:hover::before,
.cid-ungxTPBbaK .card .text-wrapper .link-wrap .mbr-link:focus::before {
  width: 0;
}
.cid-ungxTPBbaK .card .text-wrapper .link-wrap .mbr-link::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  width: 100%;
  background-color: #ffffff;
  transition: all 0.3s ease-out;
}
.cid-ungxTPBbaK .mbr-section-title {
  color: #000000;
  text-align: center;
}
.cid-ungxTPBbaK .mbr-desc {
  color: #ffffff;
}
.cid-ungxTPBbaK .mbr-text {
  color: #ffffff;
}
.cid-ungxTPBbaK .mbr-link {
  color: #ffffff;
}
.cid-ungxTQm8Ic {
  padding-top: 5rem;
  padding-bottom: 5rem;
  overflow: hidden;
  background-color: #000000;
}
.cid-ungxTQm8Ic .mbr-fallback-image.disabled {
  display: none;
}
.cid-ungxTQm8Ic .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ungxTQm8Ic .container-fluid {
  padding: 0 50px;
  margin: 0;
}
@media (max-width: 992px) {
  .cid-ungxTQm8Ic .container-fluid {
    padding: 0 20px;
  }
}
.cid-ungxTQm8Ic .container-fluid .row {
  padding: 0;
}
@media (max-width: 992px) {
  .cid-ungxTQm8Ic .container {
    padding: 0 20px;
  }
}
.cid-ungxTQm8Ic .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-ungxTQm8Ic .title-wrapper .mbr-section-title span {
  color: #c8d814;
}
.cid-ungxTQm8Ic .mbr-section-title {
  color: #ffffff;
}
.cid-ungxTR0fB8 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  overflow: hidden;
  background-color: #000000;
}
.cid-ungxTR0fB8 .mbr-fallback-image.disabled {
  display: none;
}
.cid-ungxTR0fB8 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ungxTR0fB8 .container-fluid {
  padding: 0 50px;
  margin: 0;
}
@media (max-width: 992px) {
  .cid-ungxTR0fB8 .container-fluid {
    padding: 0 20px;
  }
}
.cid-ungxTR0fB8 .container-fluid .row {
  padding: 0;
}
@media (max-width: 992px) {
  .cid-ungxTR0fB8 .container {
    padding: 0 20px;
  }
}
.cid-ungxTR0fB8 .text-wrapper .mbr-text {
  margin-bottom: 20px;
  line-height: inherit;
}
.cid-ungxTR0fB8 .panel-group .card {
  border-bottom: 1px solid #424242;
  border-radius: 0;
}
.cid-ungxTR0fB8 .panel-group .card:first-child .card-header .panel-title {
  padding-top: 0;
}
.cid-ungxTR0fB8 .panel-group .card .card-header {
  border: none;
  padding: 0;
}
.cid-ungxTR0fB8 .panel-group .card .card-header .panel-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
}
.cid-ungxTR0fB8 .panel-group .card .card-header .panel-title:not(.collapsed) .mbr-iconfont {
  transform: rotate(-45deg);
  color: #c8d814;
}
.cid-ungxTR0fB8 .panel-group .card .card-header .panel-title .panel-title-edit {
  margin-bottom: 0;
}
.cid-ungxTR0fB8 .panel-group .card .card-header .panel-title .mbr-iconfont {
  font-size: 22px;
  margin-left: 50px;
  display: block;
  color: #ffffff;
  transition: all 0.3s ease-out;
}
@media (max-width: 992px) {
  .cid-ungxTR0fB8 .panel-group .card .card-header .panel-title .mbr-iconfont {
    margin-left: 20px;
  }
}
.cid-ungxTR0fB8 .panel-group .card .panel-collapse .panel-body .panel-text {
  margin-bottom: 45px;
}
@media (max-width: 992px) {
  .cid-ungxTR0fB8 .panel-group .card .panel-collapse .panel-body .panel-text {
    margin-bottom: 30px;
  }
}
.cid-ungxTR0fB8 .mbr-text {
  color: #ffffff;
}
.cid-ungxTR0fB8 .panel-title-edit {
  color: #ffffff;
}
.cid-ungxTR0fB8 .panel-text {
  color: #ffffff;
}
.cid-ungxTRZ9wU {
  padding-top: 0rem;
  padding-bottom: 0rem;
  overflow: hidden;
  background-color: #ffffff;
}
.cid-ungxTRZ9wU .mbr-fallback-image.disabled {
  display: none;
}
.cid-ungxTRZ9wU .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ungxTRZ9wU .container-fluid {
  padding: 0;
  margin: 0;
}
@media (max-width: 992px) {
  .cid-ungxTRZ9wU .container-fluid {
    padding: 0;
  }
}
.cid-ungxTRZ9wU .container-fluid .row {
  padding: 0;
}
@media (max-width: 992px) {
  .cid-ungxTRZ9wU .container {
    padding: 0 20px;
  }
}
.cid-ungxTRZ9wU .row {
  justify-content: center;
}
.cid-ungxTRZ9wU .card {
  padding: 0;
}
.cid-ungxTRZ9wU .card img {
  height: 900px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-ungxTRZ9wU .card img {
    height: 300px;
  }
}
.cid-ungxTRZ9wU .row.cards {
  margin: 0;
}
.cid-ungxTRZ9wU .row.cards img {
  height: 450px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-ungxTRZ9wU .row.cards img {
    height: 300px;
  }
}
.cid-ungxTT5nAK {
  padding-top: 5rem;
  padding-bottom: 5rem;
  overflow: hidden;
  background-image: url("../../../assets/images/background3.jpg");
}
.cid-ungxTT5nAK .mbr-fallback-image.disabled {
  display: none;
}
.cid-ungxTT5nAK .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ungxTT5nAK .container-fluid {
  padding: 0 50px;
  margin: 0;
}
@media (max-width: 992px) {
  .cid-ungxTT5nAK .container-fluid {
    padding: 0 20px;
  }
}
.cid-ungxTT5nAK .container-fluid .row {
  padding: 0;
}
@media (max-width: 992px) {
  .cid-ungxTT5nAK .container {
    padding: 0 20px;
  }
}
.cid-ungxTT5nAK .title-wrapper {
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .cid-ungxTT5nAK .title-wrapper {
    margin-bottom: 30px;
  }
}
.cid-ungxTT5nAK .title-wrapper .mbr-section-subtitle {
  margin-bottom: 20px;
}
.cid-ungxTT5nAK .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-ungxTT5nAK .countdown-cont {
  margin-bottom: 45px;
  padding: 0 10%;
}
@media (max-width: 992px) {
  .cid-ungxTT5nAK .countdown-cont {
    margin-bottom: 30px;
    padding: 0;
  }
}
.cid-ungxTT5nAK .number-wrap {
  color: #ffffff;
  text-align: center;
  position: relative;
}
.cid-ungxTT5nAK .number {
  color: #ffffff;
}
.cid-ungxTT5nAK .period {
  display: block;
  font-size: 16px;
  font-family: "Syne", sans-serif;
  text-transform: uppercase;
  font-weight: 600;
}
.cid-ungxTT5nAK .dot {
  position: absolute;
  top: 20%;
  right: -20px;
  font-size: 32px;
}
@media (max-width: 767px) {
  .cid-ungxTT5nAK .period {
    font-size: 0.8rem;
  }
}
.cid-ungxTT5nAK .mbr-section-title {
  color: #ffffff;
}
.cid-ungxTT5nAK .mbr-section-subtitle {
  color: #ffffff;
  text-align: center;
}
.cid-ungxTT5nAK .mbr-section-title,
.cid-ungxTT5nAK .mbr-section-btn {
  text-align: center;
}
.cid-ungxTTTzCc {
  padding-top: 5rem;
  padding-bottom: 5rem;
  overflow: hidden;
  background-color: #f4f5f7;
}
.cid-ungxTTTzCc .mbr-fallback-image.disabled {
  display: none;
}
.cid-ungxTTTzCc .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ungxTTTzCc .container-fluid {
  padding: 0 50px;
  margin: 0;
}
@media (max-width: 992px) {
  .cid-ungxTTTzCc .container-fluid {
    padding: 0 20px;
  }
}
.cid-ungxTTTzCc .container-fluid .row {
  padding: 0;
}
@media (max-width: 992px) {
  .cid-ungxTTTzCc .container {
    padding: 0 20px;
  }
}
.cid-ungxTTTzCc .row {
  justify-content: center;
}
.cid-ungxTTTzCc .title-wrapper {
  margin-bottom: 60px;
}
@media (max-width: 768px) {
  .cid-ungxTTTzCc .title-wrapper {
    margin-bottom: 30px;
  }
}
.cid-ungxTTTzCc .title-wrapper .mbr-section-subtitle {
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  .cid-ungxTTTzCc .title-wrapper .mbr-section-subtitle {
    margin-bottom: 10px;
  }
}
.cid-ungxTTTzCc .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-ungxTTTzCc .card {
    margin-bottom: 20px;
  }
}
.cid-ungxTTTzCc .card .card-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  background-color: #161616;
  border-bottom: 1px solid #424242;
}
.cid-ungxTTTzCc .card .card-wrapper .price-wrap {
  margin: 65px 50px 40px;
  border-bottom: 1px solid #424242;
  padding-bottom: 40px;
}
@media (max-width: 992px) {
  .cid-ungxTTTzCc .card .card-wrapper .price-wrap {
    margin: 25px 20px;
    padding-bottom: 20px;
  }
}
.cid-ungxTTTzCc .card .card-wrapper .price-wrap .mbr-card-title {
  margin-bottom: 16px;
}
.cid-ungxTTTzCc .card .card-wrapper .price-wrap .mbr-price {
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  .cid-ungxTTTzCc .card .card-wrapper .price-wrap .mbr-price {
    margin-bottom: 10px;
  }
}
.cid-ungxTTTzCc .card .card-wrapper .list-wrap {
  padding: 0 50px 65px;
}
@media (max-width: 992px) {
  .cid-ungxTTTzCc .card .card-wrapper .list-wrap {
    padding: 0 20px 25px;
  }
}
.cid-ungxTTTzCc .card .card-wrapper .list-wrap .list {
  margin: 0;
  padding: 0;
  list-style-position: inside;
  line-height: inherit;
}
.cid-ungxTTTzCc .card .card-wrapper .list-wrap .list .item-wrap {
  margin-bottom: 10px;
}
.cid-ungxTTTzCc .card .card-wrapper .list-wrap .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-ungxTTTzCc .card .card-wrapper .mbr-section-btn .btn {
  width: 100%;
  margin: 0;
}
.cid-ungxTTTzCc .card .card-wrapper .mbr-section-btn .btn:hover,
.cid-ungxTTTzCc .card .card-wrapper .mbr-section-btn .btn:focus {
  background-color: #c8d814 !important;
}
.cid-ungxTTTzCc .mbr-section-title {
  color: #000000;
  text-align: center;
}
.cid-ungxTTTzCc .mbr-section-subtitle {
  color: #000000;
  text-align: center;
}
.cid-ungxTTTzCc .mbr-card-title {
  color: #ffffff;
  text-align: center;
}
.cid-ungxTTTzCc .mbr-price {
  color: #ffffff;
  text-align: center;
}
.cid-ungxTTTzCc .mbr-desc {
  color: #D2D3D5;
  text-align: center;
}
.cid-ungxTTTzCc .list {
  color: #D2D3D5;
}
.cid-ungxTUNjTp {
  padding-top: 0rem;
  padding-bottom: 0rem;
  overflow: hidden;
  background-color: #ffffff;
}
.cid-ungxTUNjTp .mbr-fallback-image.disabled {
  display: none;
}
.cid-ungxTUNjTp .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ungxTUNjTp .container-fluid {
  padding: 0;
  margin: 0;
}
@media (max-width: 992px) {
  .cid-ungxTUNjTp .container-fluid {
    padding: 0;
  }
}
.cid-ungxTUNjTp .container-fluid .row {
  padding: 0;
}
@media (max-width: 992px) {
  .cid-ungxTUNjTp .container {
    padding: 0 20px;
  }
}
.cid-ungxTUNjTp .google-map iframe {
  height: 600px;
}
@media (max-width: 768px) {
  .cid-ungxTUNjTp .google-map iframe {
    height: 300px;
  }
}
.cid-ungxTVNnll {
  padding-top: 5rem;
  padding-bottom: 2rem;
  overflow: hidden;
  background-color: #ffffff;
}
.cid-ungxTVNnll .mbr-fallback-image.disabled {
  display: none;
}
.cid-ungxTVNnll .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ungxTVNnll .container-fluid {
  padding: 0 50px;
  margin: 0;
}
@media (max-width: 992px) {
  .cid-ungxTVNnll .container-fluid {
    padding: 0 20px;
  }
}
.cid-ungxTVNnll .container-fluid .row {
  padding: 0;
}
@media (max-width: 992px) {
  .cid-ungxTVNnll .container {
    padding: 0 20px;
  }
}
.cid-ungxTVNnll .title-wrapper {
  margin-bottom: 60px;
}
@media (max-width: 768px) {
  .cid-ungxTVNnll .title-wrapper {
    margin-bottom: 30px;
  }
}
.cid-ungxTVNnll .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-ungxTVNnll .list {
  margin-bottom: 60px;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  list-style-type: none;
  color: #ffffff;
}
@media (max-width: 768px) {
  .cid-ungxTVNnll .list {
    margin-bottom: 30px;
  }
}
.cid-ungxTVNnll .list .item-wrap {
  position: relative;
  padding-bottom: 5px;
  margin: 9px 18px;
  margin-bottom: 0;
}
.cid-ungxTVNnll .list .item-wrap:first-child {
  margin-left: 0;
}
.cid-ungxTVNnll .list .item-wrap:last-child {
  margin-right: 0;
}
.cid-ungxTVNnll .list .item-wrap:hover::before,
.cid-ungxTVNnll .list .item-wrap:focus::before {
  width: 100%;
}
.cid-ungxTVNnll .list .item-wrap::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #ffffff;
  transition: all 0.3s ease-out;
}
.cid-ungxTVNnll .social-wrapper {
  margin-bottom: 60px;
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .cid-ungxTVNnll .social-wrapper {
    margin-bottom: 30px;
  }
}
.cid-ungxTVNnll .social-wrapper .soc-item {
  margin: 0 5px 5px 0;
}
.cid-ungxTVNnll .social-wrapper .soc-item a {
  display: block;
}
.cid-ungxTVNnll .social-wrapper .soc-item a:hover .mbr-iconfont {
  opacity: .5;
}
.cid-ungxTVNnll .social-wrapper .soc-item a .mbr-iconfont {
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  color: #ffffff;
  border: 1px solid #424242;
  border-radius: 100%;
  transition: all 0.3s ease-out;
}
.cid-ungxTVNnll .copyright {
  padding: 30px 0;
  border-top: 1px solid #000000;
  margin: 0;
  color: #000000;
  text-align: center;
}
.cid-ungxTVNnll .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-ungxTVNnll .mbr-section-title DIV {
  text-align: center;
}
