body {
  font-family: Jost;
}
.display-1 {
  font-family: 'Jost', sans-serif;
  font-size: 4.6rem;
  line-height: 1.1;
}
.display-1 > .mbr-iconfont {
  font-size: 5.75rem;
}
.display-2 {
  font-family: 'Jost', sans-serif;
  font-size: 3rem;
  line-height: 1.1;
}
.display-2 > .mbr-iconfont {
  font-size: 3.75rem;
}
.display-4 {
  font-family: 'Jost', sans-serif;
  font-size: 1.1rem;
  line-height: 1.5;
}
.display-4 > .mbr-iconfont {
  font-size: 1.375rem;
}
.display-5 {
  font-family: 'Jost', sans-serif;
  font-size: 2.2rem;
  line-height: 1.5;
}
.display-5 > .mbr-iconfont {
  font-size: 2.75rem;
}
.display-7 {
  font-family: 'Jost', sans-serif;
  font-size: 1.2rem;
  line-height: 1.5;
}
.display-7 > .mbr-iconfont {
  font-size: 1.5rem;
}
/* ---- Fluid typography for mobile devices ---- */
/* 1.4 - font scale ratio ( bootstrap == 1.42857 ) */
/* 100vw - current viewport width */
/* (48 - 20)  48 == 48rem == 768px, 20 == 20rem == 320px(minimal supported viewport) */
/* 0.65 - min scale variable, may vary */
@media (max-width: 992px) {
  .display-1 {
    font-size: 3.68rem;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 3.22rem;
    font-size: calc( 2.26rem + (4.6 - 2.26) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (2.26rem + (4.6 - 2.26) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 2.4rem;
    font-size: calc( 1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.3 * (1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 0.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.76rem;
    font-size: calc( 1.42rem + (2.2 - 1.42) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.42rem + (2.2 - 1.42) * ((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: #6ec7f2 !important;
}
.bg-success {
  background-color: #6ec7f2 !important;
}
.bg-info {
  background-color: #6ec7f2 !important;
}
.bg-warning {
  background-color: #ffe161 !important;
}
.bg-danger {
  background-color: #ff9966 !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #6ec7f2 !important;
  border-color: #6ec7f2 !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: #1ea8eb !important;
  border-color: #1ea8eb !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #1ea8eb !important;
  border-color: #1ea8eb !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #6ec7f2 !important;
  border-color: #6ec7f2 !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: #1ea8eb !important;
  border-color: #1ea8eb !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #1ea8eb !important;
  border-color: #1ea8eb !important;
}
.btn-info,
.btn-info:active {
  background-color: #6ec7f2 !important;
  border-color: #6ec7f2 !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: #1ea8eb !important;
  border-color: #1ea8eb !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #1ea8eb !important;
  border-color: #1ea8eb !important;
}
.btn-success,
.btn-success:active {
  background-color: #6ec7f2 !important;
  border-color: #6ec7f2 !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: #1ea8eb !important;
  border-color: #1ea8eb !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #1ea8eb !important;
  border-color: #1ea8eb !important;
}
.btn-warning,
.btn-warning:active {
  background-color: #ffe161 !important;
  border-color: #ffe161 !important;
  color: #614f00 !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus,
.btn-warning.active {
  color: #0a0800 !important;
  background-color: #ffd10a !important;
  border-color: #ffd10a !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #614f00 !important;
  background-color: #ffd10a !important;
  border-color: #ffd10a !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #ff9966 !important;
  border-color: #ff9966 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus,
.btn-danger.active {
  color: #ffffff !important;
  background-color: #ff5f0f !important;
  border-color: #ff5f0f !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #ff5f0f !important;
  border-color: #ff5f0f !important;
}
.btn-white,
.btn-white:active {
  background-color: #fafafa !important;
  border-color: #fafafa !important;
  color: #7a7a7a !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus,
.btn-white.active {
  color: #4f4f4f !important;
  background-color: #cfcfcf !important;
  border-color: #cfcfcf !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-white.disabled,
.btn-white:disabled {
  color: #7a7a7a !important;
  background-color: #cfcfcf !important;
  border-color: #cfcfcf !important;
}
.btn-black,
.btn-black:active {
  background-color: #232323 !important;
  border-color: #232323 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-black:hover,
.btn-black:focus,
.btn-black.focus,
.btn-black.active {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-black.disabled,
.btn-black:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-primary-outline,
.btn-primary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #6ec7f2;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #1ea8eb !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: #6ec7f2 !important;
  border-color: #6ec7f2 !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #6ec7f2;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #1ea8eb !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: #6ec7f2 !important;
  border-color: #6ec7f2 !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #6ec7f2;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #1ea8eb !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: #6ec7f2 !important;
  border-color: #6ec7f2 !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #6ec7f2;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #1ea8eb !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: #6ec7f2 !important;
  border-color: #6ec7f2 !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ffe161;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #ffd10a !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #614f00 !important;
  background-color: #ffe161 !important;
  border-color: #ffe161 !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ff9966;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #ff5f0f !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #ff9966 !important;
  border-color: #ff9966 !important;
}
.btn-black-outline,
.btn-black-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #232323;
}
.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.focus,
.btn-black-outline.active {
  color: #000000 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-black-outline.disabled,
.btn-black-outline:disabled {
  color: #ffffff !important;
  background-color: #232323 !important;
  border-color: #232323 !important;
}
.btn-white-outline,
.btn-white-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #fafafa;
}
.btn-white-outline:hover,
.btn-white-outline:focus,
.btn-white-outline.focus,
.btn-white-outline.active {
  color: #cfcfcf !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-white-outline.disabled,
.btn-white-outline:disabled {
  color: #7a7a7a !important;
  background-color: #fafafa !important;
  border-color: #fafafa !important;
}
.text-primary {
  color: #6ec7f2 !important;
}
.text-secondary {
  color: #6ec7f2 !important;
}
.text-success {
  color: #6ec7f2 !important;
}
.text-info {
  color: #6ec7f2 !important;
}
.text-warning {
  color: #ffe161 !important;
}
.text-danger {
  color: #ff9966 !important;
}
.text-white {
  color: #fafafa !important;
}
.text-black {
  color: #232323 !important;
}
a.text-primary:hover,
a.text-primary:focus,
a.text-primary.active {
  color: #15a1e5 !important;
}
a.text-secondary:hover,
a.text-secondary:focus,
a.text-secondary.active {
  color: #15a1e5 !important;
}
a.text-success:hover,
a.text-success:focus,
a.text-success.active {
  color: #15a1e5 !important;
}
a.text-info:hover,
a.text-info:focus,
a.text-info.active {
  color: #15a1e5 !important;
}
a.text-warning:hover,
a.text-warning:focus,
a.text-warning.active {
  color: #facb00 !important;
}
a.text-danger:hover,
a.text-danger:focus,
a.text-danger.active {
  color: #ff5500 !important;
}
a.text-white:hover,
a.text-white:focus,
a.text-white.active {
  color: #c7c7c7 !important;
}
a.text-black:hover,
a.text-black:focus,
a.text-black.active {
  color: #000000 !important;
}
a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption) {
  position: relative;
  background-image: transparent;
  background-size: 10000px 2px;
  background-repeat: no-repeat;
  background-position: 0px 1.2em;
  background-position: -10000px 1.2em;
}
a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  transition: background-position 2s ease-in-out;
  background-image: linear-gradient(currentColor 50%, currentColor 50%);
  background-position: 0px 1.2em;
}
.nav-tabs .nav-link.active {
  color: #6ec7f2;
}
.nav-tabs .nav-link:not(.active) {
  color: #232323;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #6ec7f2;
}
.alert-warning {
  background-color: #ffe161;
}
.alert-danger {
  background-color: #ff9966;
}
.mbr-gallery-filter li.active .btn {
  background-color: #6ec7f2;
  border-color: #6ec7f2;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
a,
a:hover {
  color: #6ec7f2;
}
.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: #ffffff;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #ffffff;
}
/* Scroll to top button*/
.scrollToTop_wraper {
  display: none;
}
.form-control {
  font-family: 'Jost', sans-serif;
  font-size: 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: #6ec7f2 !important;
}
.form-control:-webkit-input-placeholder {
  font-family: 'Jost', 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: #6ec7f2;
}
/* Forms */
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #6ec7f2;
  color: #ffffff;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #6ec7f2;
}
.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: #6ec7f2;
  border-bottom-color: #6ec7f2;
}
.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: #6ec7f2 !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: #6ec7f2 !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='%236ec7f2' %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-tuem1hCkry {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tuem1hCkry nav.navbar {
  position: fixed;
}
.cid-tuem1hCkry .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-tuem1hCkry .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tuem1hCkry .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tuem1hCkry .dropdown-item:hover,
.cid-tuem1hCkry .dropdown-item:focus {
  background: #6ec7f2 !important;
  color: white !important;
}
.cid-tuem1hCkry .dropdown-item:hover span {
  color: white;
}
.cid-tuem1hCkry .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tuem1hCkry .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tuem1hCkry .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tuem1hCkry .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tuem1hCkry .nav-link {
  position: relative;
}
.cid-tuem1hCkry .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-tuem1hCkry .container {
    flex-wrap: nowrap;
  }
}
.cid-tuem1hCkry .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tuem1hCkry .dropdown-menu,
.cid-tuem1hCkry .navbar.opened {
  background: #ffffff !important;
}
.cid-tuem1hCkry .nav-item:focus,
.cid-tuem1hCkry .nav-link:focus {
  outline: none;
}
.cid-tuem1hCkry .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tuem1hCkry .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tuem1hCkry .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tuem1hCkry .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tuem1hCkry .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tuem1hCkry .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tuem1hCkry .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-tuem1hCkry .navbar.opened {
  transition: all 0.3s;
}
.cid-tuem1hCkry .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tuem1hCkry .navbar .navbar-logo img {
  width: auto;
}
.cid-tuem1hCkry .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tuem1hCkry .navbar.collapsed {
  justify-content: center;
}
.cid-tuem1hCkry .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tuem1hCkry .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tuem1hCkry .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5.3rem);
  }
}
.cid-tuem1hCkry .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tuem1hCkry .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tuem1hCkry .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-tuem1hCkry .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tuem1hCkry .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tuem1hCkry .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tuem1hCkry .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tuem1hCkry .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tuem1hCkry .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tuem1hCkry .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tuem1hCkry .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-tuem1hCkry .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tuem1hCkry .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tuem1hCkry .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tuem1hCkry .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tuem1hCkry .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tuem1hCkry .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tuem1hCkry .navbar.navbar-short {
  min-height: 60px;
}
.cid-tuem1hCkry .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tuem1hCkry .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tuem1hCkry .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-tuem1hCkry .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tuem1hCkry .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tuem1hCkry .dropdown-item.active,
.cid-tuem1hCkry .dropdown-item:active {
  background-color: transparent;
}
.cid-tuem1hCkry .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tuem1hCkry .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tuem1hCkry .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tuem1hCkry .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-tuem1hCkry .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tuem1hCkry .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tuem1hCkry ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tuem1hCkry .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tuem1hCkry button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tuem1hCkry button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-tuem1hCkry button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tuem1hCkry button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tuem1hCkry button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tuem1hCkry button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tuem1hCkry nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tuem1hCkry nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tuem1hCkry nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tuem1hCkry nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tuem1hCkry .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tuem1hCkry a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tuem1hCkry .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-tuem1hCkry .navbar {
    height: 70px;
  }
  .cid-tuem1hCkry .navbar.opened {
    height: auto;
  }
  .cid-tuem1hCkry .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-ttAEfou9oe {
  padding-top: 10rem;
  padding-bottom: 4rem;
  background-image: url("../../../assets/images/front-view.webp");
}
.cid-ttAEfou9oe .mbr-text,
.cid-ttAEfou9oe .mbr-section-btn {
  color: #ffffff;
}
.cid-ttAEfou9oe .mbr-section-title {
  color: #ffffff;
}
.cid-ttAEfou9oe .mbr-section-subtitle {
  color: #ffffff;
}
.cid-ttM0uD96J2 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-ttM0uD96J2 img,
.cid-ttM0uD96J2 .item-img {
  width: 100%;
}
.cid-ttM0uD96J2 .item:focus,
.cid-ttM0uD96J2 span:focus {
  outline: none;
}
.cid-ttM0uD96J2 .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-ttM0uD96J2 .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-ttM0uD96J2 .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-ttM0uD96J2 .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-ttM0uD96J2 .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-ttM0uD96J2 .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-ttM0uD96J2 .mbr-section-btn {
  margin-top: auto !important;
}
.cid-ttM0uD96J2 .mbr-section-title {
  color: #232323;
}
.cid-ttM0uD96J2 .mbr-text,
.cid-ttM0uD96J2 .mbr-section-btn {
  text-align: left;
}
.cid-ttM0uD96J2 .item-title {
  text-align: left;
}
.cid-ttM0uD96J2 .item-subtitle {
  text-align: left;
}
.cid-tvhbjhLcdA {
  padding-top: 0rem;
  padding-bottom: 2rem;
  background: #ffffff;
}
@media (max-width: 767px) {
  .cid-tvhbjhLcdA .row {
    flex-direction: column-reverse;
  }
  .cid-tvhbjhLcdA .row .map-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-tvhbjhLcdA .google-map {
  height: 100%;
  position: relative;
}
.cid-tvhbjhLcdA .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-tvhbjhLcdA .google-map [data-state-details] {
  color: #6b6763;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-tvhbjhLcdA .google-map[data-state] {
  background: #e9e5dc;
}
.cid-tvhbjhLcdA .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-tvhbjhLcdA .image-wrapper {
  display: flex;
  align-items: center;
}
.cid-tvhbjhLcdA .card-wrapper {
  display: flex;
  border-radius: 4px;
  background: #fafafa;
}
.cid-tvhbjhLcdA .card-wrapper:not(:nth-last-child(1)) {
  margin-bottom: 2rem;
}
@media (max-width: 991px) {
  .cid-tvhbjhLcdA .card-wrapper {
    padding: 1rem 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tvhbjhLcdA .card-wrapper {
    padding: 2rem 4rem;
  }
}
.cid-tvhbjhLcdA .mbr-iconfont {
  font-size: 2rem;
  padding-right: 1.5rem;
  color: #6ec7f2;
}
.cid-ttACvaxOz3 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-ttACvaxOz3 img {
  width: 120px;
  margin: auto;
}
.cid-ttACvaxOz3 .card {
  transition: all 0.3s;
  height: fit-content;
  padding: 1rem 0;
  opacity: 0.7;
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .cid-ttACvaxOz3 .card {
    max-width: 12.5%;
  }
}
.cid-txsNiUIJQC {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #232323;
  overflow: hidden;
}
.cid-txsNCowyY7.popup-builder {
  background-color: #ffffff;
}
.cid-txsNCowyY7.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-txsNCowyY7.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-txsNCowyY7 .modal-content,
.cid-txsNCowyY7 .modal-dialog {
  height: auto;
}
.cid-txsNCowyY7 .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-txsNCowyY7 .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-txsNCowyY7 .form-wrapper .mbr-form .form-group,
  .cid-txsNCowyY7 .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-txsNCowyY7 .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-txsNCowyY7 .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-txsNCowyY7 .mbr-text {
  text-align: center;
}
.cid-txsNCowyY7 .pt-0 {
  padding-top: 0 !important;
}
.cid-txsNCowyY7 .pb-0 {
  padding-bottom: 0 !important;
}
.cid-txsNCowyY7 .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-txsNCowyY7 .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-txsNCowyY7 .modal-open {
  overflow: hidden;
}
.cid-txsNCowyY7 .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-txsNCowyY7 .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-txsNCowyY7 .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-txsNCowyY7 .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-txsNCowyY7 .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-txsNCowyY7 .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-txsNCowyY7 .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-txsNCowyY7 .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-txsNCowyY7 .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-txsNCowyY7 .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-txsNCowyY7 .modal-backdrop.fade {
  opacity: 0;
}
.cid-txsNCowyY7 .modal-backdrop.show {
  opacity: .5;
}
.cid-txsNCowyY7 .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-txsNCowyY7 .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-txsNCowyY7 .modal-header {
    padding: 1rem;
  }
}
.cid-txsNCowyY7 .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-txsNCowyY7 .modal-header .close svg {
  fill: #353535;
}
.cid-txsNCowyY7 .modal-header .close:hover {
  opacity: 1;
}
.cid-txsNCowyY7 .modal-header .close:focus {
  outline: none;
}
.cid-txsNCowyY7 .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
  color: #bbbbbb;
}
.cid-txsNCowyY7 .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-txsNCowyY7 .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-txsNCowyY7 .modal-body {
    padding: 1rem;
  }
}
.cid-txsNCowyY7 .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-txsNCowyY7 .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-txsNCowyY7 .modal-footer {
    padding: 1rem;
  }
}
.cid-txsNCowyY7 .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-txsNCowyY7 .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-txsNCowyY7 .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-txsNCowyY7 .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-txsNCowyY7 .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-txsNCowyY7 .modal-lg,
  .cid-txsNCowyY7 .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-txsNCowyY7 .modal-xl {
    max-width: 1140px;
  }
}
.cid-txsNCowyY7 .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-txsNCowyY7 .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-txsNCowyY7 .form-group {
  margin-bottom: 1rem;
}
.cid-txsNCowyY7 .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-txsNCowyY7 .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-txsNCowyY7 .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-txsNCowyY7 .mbr-section-btn {
  margin: 0;
}
.cid-txsNCowyY7 .mbr-section-btn .btn {
  margin: 0;
}
.cid-s48OLK6784 {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-s48OLK6784 nav.navbar {
  position: fixed;
}
.cid-s48OLK6784 .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-s48OLK6784 .dropdown-menu {
  padding: 0;
}
.cid-s48OLK6784 .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-s48OLK6784 .dropdown-item:hover,
.cid-s48OLK6784 .dropdown-item:focus {
  background: #6ec7f2 !important;
  color: white !important;
}
.cid-s48OLK6784 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: .667em 1em !important;
}
.cid-s48OLK6784 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-s48OLK6784 .nav-link {
  position: relative;
}
.cid-s48OLK6784 .container {
  display: flex;
  margin: auto;
}
.cid-s48OLK6784 .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-s48OLK6784 .navbar-caption {
  padding-right: 4rem;
}
.cid-s48OLK6784 .dropdown-menu,
.cid-s48OLK6784 .navbar.opened {
  background: #ffffff !important;
}
.cid-s48OLK6784 .nav-item:focus,
.cid-s48OLK6784 .nav-link:focus {
  outline: none;
}
.cid-s48OLK6784 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-s48OLK6784 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-s48OLK6784 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-s48OLK6784 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-s48OLK6784 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-s48OLK6784 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-s48OLK6784 .navbar {
  min-height: 77px;
  transition: all .3s;
  border-bottom: 1px solid transparent;
  background: #ffffff;
}
.cid-s48OLK6784 .navbar:not(.navbar-short) {
  border-bottom: 1px solid #e6e6e6;
}
.cid-s48OLK6784 .navbar.opened {
  transition: all .3s;
}
.cid-s48OLK6784 .navbar .dropdown-item {
  padding: .5rem 1.8rem;
}
.cid-s48OLK6784 .navbar .navbar-logo img {
  width: auto;
}
.cid-s48OLK6784 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-s48OLK6784 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-s48OLK6784 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-s48OLK6784 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.7rem);
  }
}
.cid-s48OLK6784 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-s48OLK6784 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-s48OLK6784 .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: 55%;
}
.cid-s48OLK6784 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-s48OLK6784 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-s48OLK6784 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-s48OLK6784 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-s48OLK6784 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-s48OLK6784 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-s48OLK6784 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-s48OLK6784 .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: 55%;
  }
  .cid-s48OLK6784 .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-s48OLK6784 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-s48OLK6784 .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-s48OLK6784 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-s48OLK6784 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-s48OLK6784 .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-s48OLK6784 .navbar.navbar-short {
  min-height: 60px;
}
.cid-s48OLK6784 .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-s48OLK6784 .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-s48OLK6784 .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-s48OLK6784 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-s48OLK6784 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-s48OLK6784 .dropdown-item.active,
.cid-s48OLK6784 .dropdown-item:active {
  background-color: transparent;
}
.cid-s48OLK6784 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-s48OLK6784 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-s48OLK6784 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-s48OLK6784 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-s48OLK6784 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-s48OLK6784 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-s48OLK6784 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-s48OLK6784 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-s48OLK6784 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-s48OLK6784 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: currentColor;
}
.cid-s48OLK6784 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-s48OLK6784 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-s48OLK6784 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-s48OLK6784 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-s48OLK6784 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-s48OLK6784 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-s48OLK6784 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-s48OLK6784 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-s48OLK6784 .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-s48OLK6784 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-s48OLK6784 .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-s48OLK6784 .navbar {
    height: 77px;
  }
  .cid-s48OLK6784 .navbar.opened {
    height: auto;
  }
  .cid-s48OLK6784 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-ttKOrYVBM8 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/front-view.webp");
}
.cid-ttKOrYVBM8 .mbr-section-title {
  color: #ffffff;
}
.cid-ttKOrYVBM8 .mbr-text,
.cid-ttKOrYVBM8 .mbr-section-btn {
  color: #ffffff;
}
.cid-tudWvHQWUC {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tudWvHQWUC .mbr-section-title {
  color: #bbbbbb;
}
.cid-ttMavqi1ED {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-ttMavqi1ED .card-box {
  z-index: 10;
  position: relative;
}
@media (min-width: 1500px) {
  .cid-ttMavqi1ED .container {
    max-width: 1400px;
  }
}
.cid-ttMavqi1ED .card {
  margin: auto;
}
.cid-ttMavqi1ED .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #47b5ed;
  margin-bottom: 2rem;
}
.cid-ttMavqi1ED .card-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-ttMavqi1ED .row {
  justify-content: center;
}
.cid-ttMavqi1ED .card-title,
.cid-ttMavqi1ED .card-box {
  color: #353535;
}
.cid-ttKS8od93Z {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-ttKS8od93Z .mbr-section-subtitle {
  color: #bbbbbb;
}
.cid-ttKOnMCiAe {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-ttKOnMCiAe .item {
  padding-bottom: 2rem;
}
.cid-ttKOnMCiAe .item-wrapper {
  height: 100%;
  position: relative;
}
.cid-ttKOnMCiAe .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-ttKOnMCiAe .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
  border-radius: 50%;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  background-color: #1b1b1b;
  transition: 0.2s;
}
.cid-ttKOnMCiAe .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-ttKOnMCiAe .carousel-control,
.cid-ttKOnMCiAe .close {
  background: #1b1b1b;
}
.cid-ttKOnMCiAe .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-ttKOnMCiAe .carousel-control-prev span {
  margin-right: 5px;
}
.cid-ttKOnMCiAe .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-ttKOnMCiAe .carousel-control-next span {
  margin-left: 5px;
}
.cid-ttKOnMCiAe .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-ttKOnMCiAe .close::before {
  content: '\e91a';
}
.cid-ttKOnMCiAe .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-ttKOnMCiAe .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-ttKOnMCiAe .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-ttKOnMCiAe .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-ttKOnMCiAe .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-ttKOnMCiAe .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-ttKOnMCiAe .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-ttKOnMCiAe .carousel-indicators li.active,
.cid-ttKOnMCiAe .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-ttKOnMCiAe .carousel-indicators li::after,
.cid-ttKOnMCiAe .carousel-indicators li::before {
  content: none;
}
.cid-ttKOnMCiAe .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-ttKOnMCiAe .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-ttKOnMCiAe .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-ttKOnMCiAe .carousel-indicators {
    display: none;
  }
}
.cid-ttKOnMCiAe .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-ttKOnMCiAe .carousel-inner > .active {
  display: block;
}
.cid-ttKOnMCiAe .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-ttKOnMCiAe .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-ttKOnMCiAe .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-ttKOnMCiAe .carousel-control,
  .cid-ttKOnMCiAe .carousel-indicators,
  .cid-ttKOnMCiAe .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-ttKOnMCiAe .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-ttKOnMCiAe .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-ttKOnMCiAe .carousel-indicators .active,
.cid-ttKOnMCiAe .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-ttKOnMCiAe .carousel-indicators .active {
  background: #fff;
}
.cid-ttKOnMCiAe .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-ttKOnMCiAe .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-ttKOnMCiAe .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-ttKOnMCiAe .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-ttKOnMCiAe .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-ttKOnMCiAe .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-ttKOnMCiAe .carousel {
  width: 100%;
}
.cid-ttKOnMCiAe .modal-backdrop.in {
  opacity: 0.8;
}
.cid-ttKOnMCiAe .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-ttKOnMCiAe .modal.fade .modal-dialog,
.cid-ttKOnMCiAe .modal.in .modal-dialog {
  transform: none;
}
.cid-ttKOnMCiAe .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-ttKOnMCiAe H6 {
  text-align: center;
}
.cid-ttKOnMCiAe H3 {
  color: #bbbbbb;
}
.cid-tudQENaPYy {
  padding-top: 0rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
@media (min-width: 1500px) {
  .cid-tudQENaPYy .container {
    max-width: 1400px;
  }
}
.cid-tudQENaPYy .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #47b5ed;
  margin-bottom: 2rem;
}
.cid-tudQENaPYy .card-wrapper {
  margin-top: 3rem;
}
.cid-tudQENaPYy .row {
  justify-content: center;
}
.cid-tudQENaPYy .mbr-section-title {
  color: #bbbbbb;
}
.cid-txsN3obdbL.popup-builder {
  background-color: #ffffff;
}
.cid-txsN3obdbL.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-txsN3obdbL.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-txsN3obdbL .modal-content,
.cid-txsN3obdbL .modal-dialog {
  height: auto;
}
.cid-txsN3obdbL .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-txsN3obdbL .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-txsN3obdbL .form-wrapper .mbr-form .form-group,
  .cid-txsN3obdbL .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-txsN3obdbL .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-txsN3obdbL .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-txsN3obdbL .mbr-text {
  text-align: center;
}
.cid-txsN3obdbL .pt-0 {
  padding-top: 0 !important;
}
.cid-txsN3obdbL .pb-0 {
  padding-bottom: 0 !important;
}
.cid-txsN3obdbL .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-txsN3obdbL .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-txsN3obdbL .modal-open {
  overflow: hidden;
}
.cid-txsN3obdbL .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-txsN3obdbL .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-txsN3obdbL .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-txsN3obdbL .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-txsN3obdbL .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-txsN3obdbL .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-txsN3obdbL .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-txsN3obdbL .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-txsN3obdbL .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-txsN3obdbL .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-txsN3obdbL .modal-backdrop.fade {
  opacity: 0;
}
.cid-txsN3obdbL .modal-backdrop.show {
  opacity: .5;
}
.cid-txsN3obdbL .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-txsN3obdbL .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-txsN3obdbL .modal-header {
    padding: 1rem;
  }
}
.cid-txsN3obdbL .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-txsN3obdbL .modal-header .close svg {
  fill: #353535;
}
.cid-txsN3obdbL .modal-header .close:hover {
  opacity: 1;
}
.cid-txsN3obdbL .modal-header .close:focus {
  outline: none;
}
.cid-txsN3obdbL .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
  color: #bbbbbb;
}
.cid-txsN3obdbL .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-txsN3obdbL .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-txsN3obdbL .modal-body {
    padding: 1rem;
  }
}
.cid-txsN3obdbL .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-txsN3obdbL .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-txsN3obdbL .modal-footer {
    padding: 1rem;
  }
}
.cid-txsN3obdbL .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-txsN3obdbL .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-txsN3obdbL .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-txsN3obdbL .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-txsN3obdbL .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-txsN3obdbL .modal-lg,
  .cid-txsN3obdbL .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-txsN3obdbL .modal-xl {
    max-width: 1140px;
  }
}
.cid-txsN3obdbL .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-txsN3obdbL .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-txsN3obdbL .form-group {
  margin-bottom: 1rem;
}
.cid-txsN3obdbL .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-txsN3obdbL .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-txsN3obdbL .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-txsN3obdbL .mbr-section-btn {
  margin: 0;
}
.cid-txsN3obdbL .mbr-section-btn .btn {
  margin: 0;
}
.cid-txsNiUIJQC {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #232323;
  overflow: hidden;
}
.cid-ttMzGcDSnu {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-ttMzGcDSnu nav.navbar {
  position: fixed;
}
.cid-ttMzGcDSnu .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-ttMzGcDSnu .dropdown-menu {
  padding: 0;
}
.cid-ttMzGcDSnu .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-ttMzGcDSnu .dropdown-item:hover,
.cid-ttMzGcDSnu .dropdown-item:focus {
  background: #6ec7f2 !important;
  color: white !important;
}
.cid-ttMzGcDSnu .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: .667em 1em !important;
}
.cid-ttMzGcDSnu .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-ttMzGcDSnu .nav-link {
  position: relative;
}
.cid-ttMzGcDSnu .container {
  display: flex;
  margin: auto;
}
.cid-ttMzGcDSnu .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-ttMzGcDSnu .navbar-caption {
  padding-right: 4rem;
}
.cid-ttMzGcDSnu .dropdown-menu,
.cid-ttMzGcDSnu .navbar.opened {
  background: #ffffff !important;
}
.cid-ttMzGcDSnu .nav-item:focus,
.cid-ttMzGcDSnu .nav-link:focus {
  outline: none;
}
.cid-ttMzGcDSnu .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-ttMzGcDSnu .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-ttMzGcDSnu .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-ttMzGcDSnu .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-ttMzGcDSnu .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-ttMzGcDSnu .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-ttMzGcDSnu .navbar {
  min-height: 77px;
  transition: all .3s;
  border-bottom: 1px solid transparent;
  background: #ffffff;
}
.cid-ttMzGcDSnu .navbar:not(.navbar-short) {
  border-bottom: 1px solid #e6e6e6;
}
.cid-ttMzGcDSnu .navbar.opened {
  transition: all .3s;
}
.cid-ttMzGcDSnu .navbar .dropdown-item {
  padding: .5rem 1.8rem;
}
.cid-ttMzGcDSnu .navbar .navbar-logo img {
  width: auto;
}
.cid-ttMzGcDSnu .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-ttMzGcDSnu .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-ttMzGcDSnu .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-ttMzGcDSnu .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.7rem);
  }
}
.cid-ttMzGcDSnu .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-ttMzGcDSnu .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-ttMzGcDSnu .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: 55%;
}
.cid-ttMzGcDSnu .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-ttMzGcDSnu .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-ttMzGcDSnu .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-ttMzGcDSnu .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-ttMzGcDSnu .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-ttMzGcDSnu .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-ttMzGcDSnu .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-ttMzGcDSnu .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: 55%;
  }
  .cid-ttMzGcDSnu .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-ttMzGcDSnu .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-ttMzGcDSnu .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-ttMzGcDSnu .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-ttMzGcDSnu .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-ttMzGcDSnu .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-ttMzGcDSnu .navbar.navbar-short {
  min-height: 60px;
}
.cid-ttMzGcDSnu .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-ttMzGcDSnu .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-ttMzGcDSnu .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-ttMzGcDSnu .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-ttMzGcDSnu .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-ttMzGcDSnu .dropdown-item.active,
.cid-ttMzGcDSnu .dropdown-item:active {
  background-color: transparent;
}
.cid-ttMzGcDSnu .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-ttMzGcDSnu .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-ttMzGcDSnu .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-ttMzGcDSnu .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-ttMzGcDSnu .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-ttMzGcDSnu .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-ttMzGcDSnu ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-ttMzGcDSnu .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-ttMzGcDSnu button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-ttMzGcDSnu button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: currentColor;
}
.cid-ttMzGcDSnu button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-ttMzGcDSnu button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-ttMzGcDSnu button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-ttMzGcDSnu button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-ttMzGcDSnu nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-ttMzGcDSnu nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-ttMzGcDSnu nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-ttMzGcDSnu nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-ttMzGcDSnu .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-ttMzGcDSnu a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-ttMzGcDSnu .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-ttMzGcDSnu .navbar {
    height: 77px;
  }
  .cid-ttMzGcDSnu .navbar.opened {
    height: auto;
  }
  .cid-ttMzGcDSnu .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-ttMzGcZk1W {
  padding-top: 10rem;
  padding-bottom: 4rem;
  background-image: url("../../../assets/images/mg-50-2000x1333.jpg");
}
.cid-ttMzGcZk1W .mbr-text,
.cid-ttMzGcZk1W .mbr-section-btn {
  color: #ffffff;
}
.cid-ttMzGcZk1W .mbr-section-title {
  color: #ffffff;
}
.cid-ttMzGcZk1W .mbr-section-subtitle {
  color: #ffffff;
}
.cid-ttMzNjj3hM {
  padding-top: 3rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-txfMSVPlgx {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-txfMSVPlgx .item {
  padding-bottom: 2rem;
}
.cid-txfMSVPlgx .item-wrapper {
  position: relative;
}
.cid-txfMSVPlgx .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
  border-radius: 50%;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  background-color: #1b1b1b;
  transition: 0.2s;
}
.cid-txfMSVPlgx .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-txfMSVPlgx .carousel-control,
.cid-txfMSVPlgx .close {
  background: #1b1b1b;
}
.cid-txfMSVPlgx .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-txfMSVPlgx .carousel-control-prev span {
  margin-right: 5px;
}
.cid-txfMSVPlgx .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-txfMSVPlgx .carousel-control-next span {
  margin-left: 5px;
}
.cid-txfMSVPlgx .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-txfMSVPlgx .close::before {
  content: '\e91a';
}
.cid-txfMSVPlgx .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-txfMSVPlgx .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-txfMSVPlgx .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-txfMSVPlgx .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-txfMSVPlgx .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-txfMSVPlgx .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-txfMSVPlgx .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-txfMSVPlgx .carousel-indicators li.active,
.cid-txfMSVPlgx .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-txfMSVPlgx .carousel-indicators li::after,
.cid-txfMSVPlgx .carousel-indicators li::before {
  content: none;
}
.cid-txfMSVPlgx .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-txfMSVPlgx .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-txfMSVPlgx .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-txfMSVPlgx .carousel-indicators {
    display: none;
  }
}
.cid-txfMSVPlgx .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-txfMSVPlgx .carousel-inner > .active {
  display: block;
}
.cid-txfMSVPlgx .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-txfMSVPlgx .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-txfMSVPlgx .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-txfMSVPlgx .carousel-control,
  .cid-txfMSVPlgx .carousel-indicators,
  .cid-txfMSVPlgx .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-txfMSVPlgx .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-txfMSVPlgx .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-txfMSVPlgx .carousel-indicators .active,
.cid-txfMSVPlgx .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-txfMSVPlgx .carousel-indicators .active {
  background: #fff;
}
.cid-txfMSVPlgx .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-txfMSVPlgx .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-txfMSVPlgx .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-txfMSVPlgx .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-txfMSVPlgx .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-txfMSVPlgx .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-txfMSVPlgx .carousel {
  width: 100%;
}
.cid-txfMSVPlgx .modal-backdrop.in {
  opacity: 0.8;
}
.cid-txfMSVPlgx .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-txfMSVPlgx .modal.fade .modal-dialog,
.cid-txfMSVPlgx .modal.in .modal-dialog {
  transform: none;
}
.cid-txfMSVPlgx .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-txfMSVPlgx H6 {
  text-align: center;
}
.cid-txsNiUIJQC {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #232323;
  overflow: hidden;
}
.cid-ttMArXw5aF {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-ttMArXw5aF nav.navbar {
  position: fixed;
}
.cid-ttMArXw5aF .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-ttMArXw5aF .dropdown-menu {
  padding: 0;
}
.cid-ttMArXw5aF .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-ttMArXw5aF .dropdown-item:hover,
.cid-ttMArXw5aF .dropdown-item:focus {
  background: #6ec7f2 !important;
  color: white !important;
}
.cid-ttMArXw5aF .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: .667em 1em !important;
}
.cid-ttMArXw5aF .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-ttMArXw5aF .nav-link {
  position: relative;
}
.cid-ttMArXw5aF .container {
  display: flex;
  margin: auto;
}
.cid-ttMArXw5aF .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-ttMArXw5aF .navbar-caption {
  padding-right: 4rem;
}
.cid-ttMArXw5aF .dropdown-menu,
.cid-ttMArXw5aF .navbar.opened {
  background: #ffffff !important;
}
.cid-ttMArXw5aF .nav-item:focus,
.cid-ttMArXw5aF .nav-link:focus {
  outline: none;
}
.cid-ttMArXw5aF .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-ttMArXw5aF .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-ttMArXw5aF .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-ttMArXw5aF .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-ttMArXw5aF .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-ttMArXw5aF .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-ttMArXw5aF .navbar {
  min-height: 77px;
  transition: all .3s;
  border-bottom: 1px solid transparent;
  background: #ffffff;
}
.cid-ttMArXw5aF .navbar:not(.navbar-short) {
  border-bottom: 1px solid #e6e6e6;
}
.cid-ttMArXw5aF .navbar.opened {
  transition: all .3s;
}
.cid-ttMArXw5aF .navbar .dropdown-item {
  padding: .5rem 1.8rem;
}
.cid-ttMArXw5aF .navbar .navbar-logo img {
  width: auto;
}
.cid-ttMArXw5aF .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-ttMArXw5aF .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-ttMArXw5aF .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-ttMArXw5aF .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.7rem);
  }
}
.cid-ttMArXw5aF .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-ttMArXw5aF .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-ttMArXw5aF .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: 55%;
}
.cid-ttMArXw5aF .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-ttMArXw5aF .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-ttMArXw5aF .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-ttMArXw5aF .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-ttMArXw5aF .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-ttMArXw5aF .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-ttMArXw5aF .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-ttMArXw5aF .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: 55%;
  }
  .cid-ttMArXw5aF .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-ttMArXw5aF .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-ttMArXw5aF .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-ttMArXw5aF .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-ttMArXw5aF .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-ttMArXw5aF .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-ttMArXw5aF .navbar.navbar-short {
  min-height: 60px;
}
.cid-ttMArXw5aF .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-ttMArXw5aF .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-ttMArXw5aF .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-ttMArXw5aF .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-ttMArXw5aF .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-ttMArXw5aF .dropdown-item.active,
.cid-ttMArXw5aF .dropdown-item:active {
  background-color: transparent;
}
.cid-ttMArXw5aF .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-ttMArXw5aF .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-ttMArXw5aF .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-ttMArXw5aF .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-ttMArXw5aF .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-ttMArXw5aF .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-ttMArXw5aF ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-ttMArXw5aF .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-ttMArXw5aF button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-ttMArXw5aF button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: currentColor;
}
.cid-ttMArXw5aF button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-ttMArXw5aF button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-ttMArXw5aF button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-ttMArXw5aF button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-ttMArXw5aF nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-ttMArXw5aF nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-ttMArXw5aF nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-ttMArXw5aF nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-ttMArXw5aF .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-ttMArXw5aF a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-ttMArXw5aF .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-ttMArXw5aF .navbar {
    height: 77px;
  }
  .cid-ttMArXw5aF .navbar.opened {
    height: auto;
  }
  .cid-ttMArXw5aF .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-ttMArXS9Mk {
  padding-top: 10rem;
  padding-bottom: 4rem;
  background-image: url("../../../assets/images/3e205528-1-1080x720.jpg");
}
.cid-ttMArXS9Mk .mbr-text,
.cid-ttMArXS9Mk .mbr-section-btn {
  color: #ffffff;
}
.cid-ttMArXS9Mk .mbr-section-title {
  color: #ffffff;
}
.cid-ttMArXS9Mk .mbr-section-subtitle {
  color: #ffffff;
}
.cid-ttMAQmHGgh {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-ttMAQmHGgh .mbr-section-title {
  text-align: left;
  color: #bbbbbb;
}
.cid-ttMMyjtqB5 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-ttMMyjtqB5 .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-ttMMyjtqB5 .row {
  flex-direction: row-reverse;
}
.cid-ttMMyjtqB5 img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-ttMMyjtqB5 .text-wrapper {
    padding: 2rem;
  }
}
.cid-ttME1w34ie {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-ttME1w34ie .item {
  padding-bottom: 2rem;
}
.cid-ttME1w34ie .item-wrapper {
  height: 100%;
  position: relative;
}
.cid-ttME1w34ie .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-ttME1w34ie .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
  border-radius: 50%;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  background-color: #1b1b1b;
  transition: 0.2s;
}
.cid-ttME1w34ie .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-ttME1w34ie .carousel-control,
.cid-ttME1w34ie .close {
  background: #1b1b1b;
}
.cid-ttME1w34ie .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-ttME1w34ie .carousel-control-prev span {
  margin-right: 5px;
}
.cid-ttME1w34ie .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-ttME1w34ie .carousel-control-next span {
  margin-left: 5px;
}
.cid-ttME1w34ie .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-ttME1w34ie .close::before {
  content: '\e91a';
}
.cid-ttME1w34ie .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-ttME1w34ie .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-ttME1w34ie .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-ttME1w34ie .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-ttME1w34ie .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-ttME1w34ie .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-ttME1w34ie .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-ttME1w34ie .carousel-indicators li.active,
.cid-ttME1w34ie .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-ttME1w34ie .carousel-indicators li::after,
.cid-ttME1w34ie .carousel-indicators li::before {
  content: none;
}
.cid-ttME1w34ie .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-ttME1w34ie .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-ttME1w34ie .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-ttME1w34ie .carousel-indicators {
    display: none;
  }
}
.cid-ttME1w34ie .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-ttME1w34ie .carousel-inner > .active {
  display: block;
}
.cid-ttME1w34ie .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-ttME1w34ie .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-ttME1w34ie .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-ttME1w34ie .carousel-control,
  .cid-ttME1w34ie .carousel-indicators,
  .cid-ttME1w34ie .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-ttME1w34ie .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-ttME1w34ie .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-ttME1w34ie .carousel-indicators .active,
.cid-ttME1w34ie .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-ttME1w34ie .carousel-indicators .active {
  background: #fff;
}
.cid-ttME1w34ie .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-ttME1w34ie .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-ttME1w34ie .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-ttME1w34ie .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-ttME1w34ie .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-ttME1w34ie .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-ttME1w34ie .carousel {
  width: 100%;
}
.cid-ttME1w34ie .modal-backdrop.in {
  opacity: 0.8;
}
.cid-ttME1w34ie .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-ttME1w34ie .modal.fade .modal-dialog,
.cid-ttME1w34ie .modal.in .modal-dialog {
  transform: none;
}
.cid-ttME1w34ie .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-ttME1w34ie H6 {
  text-align: center;
}
.cid-ttMEzz3vd3 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-ttMEEA3cx9 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-ttMEEA3cx9 .item {
  padding-bottom: 2rem;
}
.cid-ttMEEA3cx9 .item-wrapper {
  height: 100%;
  position: relative;
}
.cid-ttMEEA3cx9 .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-ttMEEA3cx9 .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
  border-radius: 50%;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  background-color: #1b1b1b;
  transition: 0.2s;
}
.cid-ttMEEA3cx9 .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-ttMEEA3cx9 .carousel-control,
.cid-ttMEEA3cx9 .close {
  background: #1b1b1b;
}
.cid-ttMEEA3cx9 .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-ttMEEA3cx9 .carousel-control-prev span {
  margin-right: 5px;
}
.cid-ttMEEA3cx9 .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-ttMEEA3cx9 .carousel-control-next span {
  margin-left: 5px;
}
.cid-ttMEEA3cx9 .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-ttMEEA3cx9 .close::before {
  content: '\e91a';
}
.cid-ttMEEA3cx9 .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-ttMEEA3cx9 .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-ttMEEA3cx9 .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-ttMEEA3cx9 .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-ttMEEA3cx9 .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-ttMEEA3cx9 .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-ttMEEA3cx9 .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-ttMEEA3cx9 .carousel-indicators li.active,
.cid-ttMEEA3cx9 .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-ttMEEA3cx9 .carousel-indicators li::after,
.cid-ttMEEA3cx9 .carousel-indicators li::before {
  content: none;
}
.cid-ttMEEA3cx9 .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-ttMEEA3cx9 .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-ttMEEA3cx9 .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-ttMEEA3cx9 .carousel-indicators {
    display: none;
  }
}
.cid-ttMEEA3cx9 .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-ttMEEA3cx9 .carousel-inner > .active {
  display: block;
}
.cid-ttMEEA3cx9 .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-ttMEEA3cx9 .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-ttMEEA3cx9 .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-ttMEEA3cx9 .carousel-control,
  .cid-ttMEEA3cx9 .carousel-indicators,
  .cid-ttMEEA3cx9 .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-ttMEEA3cx9 .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-ttMEEA3cx9 .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-ttMEEA3cx9 .carousel-indicators .active,
.cid-ttMEEA3cx9 .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-ttMEEA3cx9 .carousel-indicators .active {
  background: #fff;
}
.cid-ttMEEA3cx9 .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-ttMEEA3cx9 .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-ttMEEA3cx9 .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-ttMEEA3cx9 .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-ttMEEA3cx9 .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-ttMEEA3cx9 .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-ttMEEA3cx9 .carousel {
  width: 100%;
}
.cid-ttMEEA3cx9 .modal-backdrop.in {
  opacity: 0.8;
}
.cid-ttMEEA3cx9 .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-ttMEEA3cx9 .modal.fade .modal-dialog,
.cid-ttMEEA3cx9 .modal.in .modal-dialog {
  transform: none;
}
.cid-ttMEEA3cx9 .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-ttMEEA3cx9 H6 {
  text-align: center;
}
.cid-ttMECjZGkB {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-ttMEFMMhQR {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-ttMEFMMhQR .item {
  padding-bottom: 2rem;
}
.cid-ttMEFMMhQR .item-wrapper {
  height: 100%;
  position: relative;
}
.cid-ttMEFMMhQR .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-ttMEFMMhQR .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
  border-radius: 50%;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  background-color: #1b1b1b;
  transition: 0.2s;
}
.cid-ttMEFMMhQR .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-ttMEFMMhQR .carousel-control,
.cid-ttMEFMMhQR .close {
  background: #1b1b1b;
}
.cid-ttMEFMMhQR .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-ttMEFMMhQR .carousel-control-prev span {
  margin-right: 5px;
}
.cid-ttMEFMMhQR .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-ttMEFMMhQR .carousel-control-next span {
  margin-left: 5px;
}
.cid-ttMEFMMhQR .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-ttMEFMMhQR .close::before {
  content: '\e91a';
}
.cid-ttMEFMMhQR .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-ttMEFMMhQR .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-ttMEFMMhQR .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-ttMEFMMhQR .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-ttMEFMMhQR .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-ttMEFMMhQR .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-ttMEFMMhQR .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-ttMEFMMhQR .carousel-indicators li.active,
.cid-ttMEFMMhQR .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-ttMEFMMhQR .carousel-indicators li::after,
.cid-ttMEFMMhQR .carousel-indicators li::before {
  content: none;
}
.cid-ttMEFMMhQR .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-ttMEFMMhQR .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-ttMEFMMhQR .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-ttMEFMMhQR .carousel-indicators {
    display: none;
  }
}
.cid-ttMEFMMhQR .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-ttMEFMMhQR .carousel-inner > .active {
  display: block;
}
.cid-ttMEFMMhQR .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-ttMEFMMhQR .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-ttMEFMMhQR .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-ttMEFMMhQR .carousel-control,
  .cid-ttMEFMMhQR .carousel-indicators,
  .cid-ttMEFMMhQR .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-ttMEFMMhQR .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-ttMEFMMhQR .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-ttMEFMMhQR .carousel-indicators .active,
.cid-ttMEFMMhQR .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-ttMEFMMhQR .carousel-indicators .active {
  background: #fff;
}
.cid-ttMEFMMhQR .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-ttMEFMMhQR .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-ttMEFMMhQR .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-ttMEFMMhQR .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-ttMEFMMhQR .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-ttMEFMMhQR .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-ttMEFMMhQR .carousel {
  width: 100%;
}
.cid-ttMEFMMhQR .modal-backdrop.in {
  opacity: 0.8;
}
.cid-ttMEFMMhQR .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-ttMEFMMhQR .modal.fade .modal-dialog,
.cid-ttMEFMMhQR .modal.in .modal-dialog {
  transform: none;
}
.cid-ttMEFMMhQR .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-ttMEFMMhQR H6 {
  text-align: center;
}
.cid-ttMECNxe0g {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-ttMEGosrI2 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-ttMEGosrI2 .item {
  padding-bottom: 2rem;
}
.cid-ttMEGosrI2 .item-wrapper {
  height: 100%;
  position: relative;
}
.cid-ttMEGosrI2 .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-ttMEGosrI2 .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
  border-radius: 50%;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  background-color: #1b1b1b;
  transition: 0.2s;
}
.cid-ttMEGosrI2 .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-ttMEGosrI2 .carousel-control,
.cid-ttMEGosrI2 .close {
  background: #1b1b1b;
}
.cid-ttMEGosrI2 .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-ttMEGosrI2 .carousel-control-prev span {
  margin-right: 5px;
}
.cid-ttMEGosrI2 .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-ttMEGosrI2 .carousel-control-next span {
  margin-left: 5px;
}
.cid-ttMEGosrI2 .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-ttMEGosrI2 .close::before {
  content: '\e91a';
}
.cid-ttMEGosrI2 .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-ttMEGosrI2 .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-ttMEGosrI2 .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-ttMEGosrI2 .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-ttMEGosrI2 .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-ttMEGosrI2 .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-ttMEGosrI2 .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-ttMEGosrI2 .carousel-indicators li.active,
.cid-ttMEGosrI2 .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-ttMEGosrI2 .carousel-indicators li::after,
.cid-ttMEGosrI2 .carousel-indicators li::before {
  content: none;
}
.cid-ttMEGosrI2 .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-ttMEGosrI2 .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-ttMEGosrI2 .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-ttMEGosrI2 .carousel-indicators {
    display: none;
  }
}
.cid-ttMEGosrI2 .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-ttMEGosrI2 .carousel-inner > .active {
  display: block;
}
.cid-ttMEGosrI2 .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-ttMEGosrI2 .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-ttMEGosrI2 .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-ttMEGosrI2 .carousel-control,
  .cid-ttMEGosrI2 .carousel-indicators,
  .cid-ttMEGosrI2 .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-ttMEGosrI2 .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-ttMEGosrI2 .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-ttMEGosrI2 .carousel-indicators .active,
.cid-ttMEGosrI2 .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-ttMEGosrI2 .carousel-indicators .active {
  background: #fff;
}
.cid-ttMEGosrI2 .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-ttMEGosrI2 .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-ttMEGosrI2 .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-ttMEGosrI2 .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-ttMEGosrI2 .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-ttMEGosrI2 .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-ttMEGosrI2 .carousel {
  width: 100%;
}
.cid-ttMEGosrI2 .modal-backdrop.in {
  opacity: 0.8;
}
.cid-ttMEGosrI2 .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-ttMEGosrI2 .modal.fade .modal-dialog,
.cid-ttMEGosrI2 .modal.in .modal-dialog {
  transform: none;
}
.cid-ttMEGosrI2 .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-ttMEGosrI2 H6 {
  text-align: center;
}
.cid-ttMN71mfUs {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-ttMN71mfUs .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-ttMN71mfUs img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-ttMN71mfUs .text-wrapper {
    padding: 2rem;
  }
}
.cid-txsNiUIJQC {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #232323;
  overflow: hidden;
}
.cid-ttN2fyYYpZ {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-ttN2fyYYpZ nav.navbar {
  position: fixed;
}
.cid-ttN2fyYYpZ .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-ttN2fyYYpZ .dropdown-menu {
  padding: 0;
}
.cid-ttN2fyYYpZ .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-ttN2fyYYpZ .dropdown-item:hover,
.cid-ttN2fyYYpZ .dropdown-item:focus {
  background: #6ec7f2 !important;
  color: white !important;
}
.cid-ttN2fyYYpZ .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: .667em 1em !important;
}
.cid-ttN2fyYYpZ .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-ttN2fyYYpZ .nav-link {
  position: relative;
}
.cid-ttN2fyYYpZ .container {
  display: flex;
  margin: auto;
}
.cid-ttN2fyYYpZ .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-ttN2fyYYpZ .navbar-caption {
  padding-right: 4rem;
}
.cid-ttN2fyYYpZ .dropdown-menu,
.cid-ttN2fyYYpZ .navbar.opened {
  background: #ffffff !important;
}
.cid-ttN2fyYYpZ .nav-item:focus,
.cid-ttN2fyYYpZ .nav-link:focus {
  outline: none;
}
.cid-ttN2fyYYpZ .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-ttN2fyYYpZ .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-ttN2fyYYpZ .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-ttN2fyYYpZ .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-ttN2fyYYpZ .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-ttN2fyYYpZ .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-ttN2fyYYpZ .navbar {
  min-height: 77px;
  transition: all .3s;
  border-bottom: 1px solid transparent;
  background: #ffffff;
}
.cid-ttN2fyYYpZ .navbar:not(.navbar-short) {
  border-bottom: 1px solid #e6e6e6;
}
.cid-ttN2fyYYpZ .navbar.opened {
  transition: all .3s;
}
.cid-ttN2fyYYpZ .navbar .dropdown-item {
  padding: .5rem 1.8rem;
}
.cid-ttN2fyYYpZ .navbar .navbar-logo img {
  width: auto;
}
.cid-ttN2fyYYpZ .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-ttN2fyYYpZ .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-ttN2fyYYpZ .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-ttN2fyYYpZ .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.7rem);
  }
}
.cid-ttN2fyYYpZ .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-ttN2fyYYpZ .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-ttN2fyYYpZ .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: 55%;
}
.cid-ttN2fyYYpZ .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-ttN2fyYYpZ .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-ttN2fyYYpZ .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-ttN2fyYYpZ .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-ttN2fyYYpZ .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-ttN2fyYYpZ .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-ttN2fyYYpZ .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-ttN2fyYYpZ .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: 55%;
  }
  .cid-ttN2fyYYpZ .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-ttN2fyYYpZ .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-ttN2fyYYpZ .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-ttN2fyYYpZ .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-ttN2fyYYpZ .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-ttN2fyYYpZ .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-ttN2fyYYpZ .navbar.navbar-short {
  min-height: 60px;
}
.cid-ttN2fyYYpZ .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-ttN2fyYYpZ .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-ttN2fyYYpZ .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-ttN2fyYYpZ .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-ttN2fyYYpZ .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-ttN2fyYYpZ .dropdown-item.active,
.cid-ttN2fyYYpZ .dropdown-item:active {
  background-color: transparent;
}
.cid-ttN2fyYYpZ .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-ttN2fyYYpZ .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-ttN2fyYYpZ .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-ttN2fyYYpZ .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-ttN2fyYYpZ .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-ttN2fyYYpZ .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-ttN2fyYYpZ ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-ttN2fyYYpZ .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-ttN2fyYYpZ button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-ttN2fyYYpZ button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: currentColor;
}
.cid-ttN2fyYYpZ button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-ttN2fyYYpZ button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-ttN2fyYYpZ button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-ttN2fyYYpZ button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-ttN2fyYYpZ nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-ttN2fyYYpZ nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-ttN2fyYYpZ nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-ttN2fyYYpZ nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-ttN2fyYYpZ .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-ttN2fyYYpZ a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-ttN2fyYYpZ .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-ttN2fyYYpZ .navbar {
    height: 77px;
  }
  .cid-ttN2fyYYpZ .navbar.opened {
    height: auto;
  }
  .cid-ttN2fyYYpZ .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-ttN2fzowpk {
  padding-top: 10rem;
  padding-bottom: 4rem;
  background-image: url("../../../assets/images/3e205528-1-1080x720.jpg");
}
.cid-ttN2fzowpk .mbr-text,
.cid-ttN2fzowpk .mbr-section-btn {
  color: #ffffff;
}
.cid-ttN2fzowpk .mbr-section-title {
  color: #ffffff;
}
.cid-ttN2fzowpk .mbr-section-subtitle {
  color: #ffffff;
}
.cid-ttN2fzLHnM {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-ttN2fzLHnM .mbr-section-title {
  text-align: left;
  color: #bbbbbb;
}
.cid-ttN2fB50zs {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-ttN2fBnFb9 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-ttN2fBnFb9 .item {
  padding-bottom: 2rem;
}
.cid-ttN2fBnFb9 .item-wrapper {
  height: 100%;
  position: relative;
}
.cid-ttN2fBnFb9 .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-ttN2fBnFb9 .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
  border-radius: 50%;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  background-color: #1b1b1b;
  transition: 0.2s;
}
.cid-ttN2fBnFb9 .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-ttN2fBnFb9 .carousel-control,
.cid-ttN2fBnFb9 .close {
  background: #1b1b1b;
}
.cid-ttN2fBnFb9 .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-ttN2fBnFb9 .carousel-control-prev span {
  margin-right: 5px;
}
.cid-ttN2fBnFb9 .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-ttN2fBnFb9 .carousel-control-next span {
  margin-left: 5px;
}
.cid-ttN2fBnFb9 .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-ttN2fBnFb9 .close::before {
  content: '\e91a';
}
.cid-ttN2fBnFb9 .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-ttN2fBnFb9 .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-ttN2fBnFb9 .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-ttN2fBnFb9 .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-ttN2fBnFb9 .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-ttN2fBnFb9 .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-ttN2fBnFb9 .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-ttN2fBnFb9 .carousel-indicators li.active,
.cid-ttN2fBnFb9 .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-ttN2fBnFb9 .carousel-indicators li::after,
.cid-ttN2fBnFb9 .carousel-indicators li::before {
  content: none;
}
.cid-ttN2fBnFb9 .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-ttN2fBnFb9 .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-ttN2fBnFb9 .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-ttN2fBnFb9 .carousel-indicators {
    display: none;
  }
}
.cid-ttN2fBnFb9 .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-ttN2fBnFb9 .carousel-inner > .active {
  display: block;
}
.cid-ttN2fBnFb9 .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-ttN2fBnFb9 .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-ttN2fBnFb9 .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-ttN2fBnFb9 .carousel-control,
  .cid-ttN2fBnFb9 .carousel-indicators,
  .cid-ttN2fBnFb9 .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-ttN2fBnFb9 .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-ttN2fBnFb9 .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-ttN2fBnFb9 .carousel-indicators .active,
.cid-ttN2fBnFb9 .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-ttN2fBnFb9 .carousel-indicators .active {
  background: #fff;
}
.cid-ttN2fBnFb9 .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-ttN2fBnFb9 .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-ttN2fBnFb9 .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-ttN2fBnFb9 .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-ttN2fBnFb9 .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-ttN2fBnFb9 .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-ttN2fBnFb9 .carousel {
  width: 100%;
}
.cid-ttN2fBnFb9 .modal-backdrop.in {
  opacity: 0.8;
}
.cid-ttN2fBnFb9 .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-ttN2fBnFb9 .modal.fade .modal-dialog,
.cid-ttN2fBnFb9 .modal.in .modal-dialog {
  transform: none;
}
.cid-ttN2fBnFb9 .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-ttN2fBnFb9 H6 {
  text-align: center;
}
.cid-ttN2fC9krG {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-ttN2fCtvT8 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-ttN2fCtvT8 .item {
  padding-bottom: 2rem;
}
.cid-ttN2fCtvT8 .item-wrapper {
  height: 100%;
  position: relative;
}
.cid-ttN2fCtvT8 .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-ttN2fCtvT8 .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
  border-radius: 50%;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  background-color: #1b1b1b;
  transition: 0.2s;
}
.cid-ttN2fCtvT8 .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-ttN2fCtvT8 .carousel-control,
.cid-ttN2fCtvT8 .close {
  background: #1b1b1b;
}
.cid-ttN2fCtvT8 .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-ttN2fCtvT8 .carousel-control-prev span {
  margin-right: 5px;
}
.cid-ttN2fCtvT8 .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-ttN2fCtvT8 .carousel-control-next span {
  margin-left: 5px;
}
.cid-ttN2fCtvT8 .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-ttN2fCtvT8 .close::before {
  content: '\e91a';
}
.cid-ttN2fCtvT8 .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-ttN2fCtvT8 .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-ttN2fCtvT8 .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-ttN2fCtvT8 .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-ttN2fCtvT8 .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-ttN2fCtvT8 .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-ttN2fCtvT8 .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-ttN2fCtvT8 .carousel-indicators li.active,
.cid-ttN2fCtvT8 .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-ttN2fCtvT8 .carousel-indicators li::after,
.cid-ttN2fCtvT8 .carousel-indicators li::before {
  content: none;
}
.cid-ttN2fCtvT8 .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-ttN2fCtvT8 .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-ttN2fCtvT8 .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-ttN2fCtvT8 .carousel-indicators {
    display: none;
  }
}
.cid-ttN2fCtvT8 .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-ttN2fCtvT8 .carousel-inner > .active {
  display: block;
}
.cid-ttN2fCtvT8 .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-ttN2fCtvT8 .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-ttN2fCtvT8 .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-ttN2fCtvT8 .carousel-control,
  .cid-ttN2fCtvT8 .carousel-indicators,
  .cid-ttN2fCtvT8 .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-ttN2fCtvT8 .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-ttN2fCtvT8 .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-ttN2fCtvT8 .carousel-indicators .active,
.cid-ttN2fCtvT8 .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-ttN2fCtvT8 .carousel-indicators .active {
  background: #fff;
}
.cid-ttN2fCtvT8 .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-ttN2fCtvT8 .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-ttN2fCtvT8 .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-ttN2fCtvT8 .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-ttN2fCtvT8 .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-ttN2fCtvT8 .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-ttN2fCtvT8 .carousel {
  width: 100%;
}
.cid-ttN2fCtvT8 .modal-backdrop.in {
  opacity: 0.8;
}
.cid-ttN2fCtvT8 .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-ttN2fCtvT8 .modal.fade .modal-dialog,
.cid-ttN2fCtvT8 .modal.in .modal-dialog {
  transform: none;
}
.cid-ttN2fCtvT8 .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-ttN2fCtvT8 H6 {
  text-align: center;
}
.cid-ttN2fD1GbD {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-ttN2fDmmy8 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-ttN2fDmmy8 .item {
  padding-bottom: 2rem;
}
.cid-ttN2fDmmy8 .item-wrapper {
  height: 100%;
  position: relative;
}
.cid-ttN2fDmmy8 .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-ttN2fDmmy8 .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
  border-radius: 50%;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  background-color: #1b1b1b;
  transition: 0.2s;
}
.cid-ttN2fDmmy8 .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-ttN2fDmmy8 .carousel-control,
.cid-ttN2fDmmy8 .close {
  background: #1b1b1b;
}
.cid-ttN2fDmmy8 .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-ttN2fDmmy8 .carousel-control-prev span {
  margin-right: 5px;
}
.cid-ttN2fDmmy8 .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-ttN2fDmmy8 .carousel-control-next span {
  margin-left: 5px;
}
.cid-ttN2fDmmy8 .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-ttN2fDmmy8 .close::before {
  content: '\e91a';
}
.cid-ttN2fDmmy8 .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-ttN2fDmmy8 .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-ttN2fDmmy8 .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-ttN2fDmmy8 .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-ttN2fDmmy8 .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-ttN2fDmmy8 .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-ttN2fDmmy8 .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-ttN2fDmmy8 .carousel-indicators li.active,
.cid-ttN2fDmmy8 .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-ttN2fDmmy8 .carousel-indicators li::after,
.cid-ttN2fDmmy8 .carousel-indicators li::before {
  content: none;
}
.cid-ttN2fDmmy8 .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-ttN2fDmmy8 .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-ttN2fDmmy8 .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-ttN2fDmmy8 .carousel-indicators {
    display: none;
  }
}
.cid-ttN2fDmmy8 .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-ttN2fDmmy8 .carousel-inner > .active {
  display: block;
}
.cid-ttN2fDmmy8 .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-ttN2fDmmy8 .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-ttN2fDmmy8 .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-ttN2fDmmy8 .carousel-control,
  .cid-ttN2fDmmy8 .carousel-indicators,
  .cid-ttN2fDmmy8 .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-ttN2fDmmy8 .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-ttN2fDmmy8 .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-ttN2fDmmy8 .carousel-indicators .active,
.cid-ttN2fDmmy8 .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-ttN2fDmmy8 .carousel-indicators .active {
  background: #fff;
}
.cid-ttN2fDmmy8 .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-ttN2fDmmy8 .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-ttN2fDmmy8 .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-ttN2fDmmy8 .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-ttN2fDmmy8 .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-ttN2fDmmy8 .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-ttN2fDmmy8 .carousel {
  width: 100%;
}
.cid-ttN2fDmmy8 .modal-backdrop.in {
  opacity: 0.8;
}
.cid-ttN2fDmmy8 .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-ttN2fDmmy8 .modal.fade .modal-dialog,
.cid-ttN2fDmmy8 .modal.in .modal-dialog {
  transform: none;
}
.cid-ttN2fDmmy8 .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-ttN2fDmmy8 H6 {
  text-align: center;
}
.cid-txsNiUIJQC {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #232323;
  overflow: hidden;
}
.cid-ttQfvRmueD {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-ttQfvRmueD nav.navbar {
  position: fixed;
}
.cid-ttQfvRmueD .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-ttQfvRmueD .dropdown-menu {
  padding: 0;
}
.cid-ttQfvRmueD .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-ttQfvRmueD .dropdown-item:hover,
.cid-ttQfvRmueD .dropdown-item:focus {
  background: #6ec7f2 !important;
  color: white !important;
}
.cid-ttQfvRmueD .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: .667em 1em !important;
}
.cid-ttQfvRmueD .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-ttQfvRmueD .nav-link {
  position: relative;
}
.cid-ttQfvRmueD .container {
  display: flex;
  margin: auto;
}
.cid-ttQfvRmueD .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-ttQfvRmueD .navbar-caption {
  padding-right: 4rem;
}
.cid-ttQfvRmueD .dropdown-menu,
.cid-ttQfvRmueD .navbar.opened {
  background: #ffffff !important;
}
.cid-ttQfvRmueD .nav-item:focus,
.cid-ttQfvRmueD .nav-link:focus {
  outline: none;
}
.cid-ttQfvRmueD .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-ttQfvRmueD .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-ttQfvRmueD .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-ttQfvRmueD .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-ttQfvRmueD .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-ttQfvRmueD .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-ttQfvRmueD .navbar {
  min-height: 77px;
  transition: all .3s;
  border-bottom: 1px solid transparent;
  background: #ffffff;
}
.cid-ttQfvRmueD .navbar:not(.navbar-short) {
  border-bottom: 1px solid #e6e6e6;
}
.cid-ttQfvRmueD .navbar.opened {
  transition: all .3s;
}
.cid-ttQfvRmueD .navbar .dropdown-item {
  padding: .5rem 1.8rem;
}
.cid-ttQfvRmueD .navbar .navbar-logo img {
  width: auto;
}
.cid-ttQfvRmueD .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-ttQfvRmueD .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-ttQfvRmueD .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-ttQfvRmueD .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.7rem);
  }
}
.cid-ttQfvRmueD .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-ttQfvRmueD .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-ttQfvRmueD .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: 55%;
}
.cid-ttQfvRmueD .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-ttQfvRmueD .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-ttQfvRmueD .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-ttQfvRmueD .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-ttQfvRmueD .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-ttQfvRmueD .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-ttQfvRmueD .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-ttQfvRmueD .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: 55%;
  }
  .cid-ttQfvRmueD .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-ttQfvRmueD .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-ttQfvRmueD .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-ttQfvRmueD .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-ttQfvRmueD .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-ttQfvRmueD .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-ttQfvRmueD .navbar.navbar-short {
  min-height: 60px;
}
.cid-ttQfvRmueD .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-ttQfvRmueD .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-ttQfvRmueD .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-ttQfvRmueD .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-ttQfvRmueD .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-ttQfvRmueD .dropdown-item.active,
.cid-ttQfvRmueD .dropdown-item:active {
  background-color: transparent;
}
.cid-ttQfvRmueD .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-ttQfvRmueD .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-ttQfvRmueD .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-ttQfvRmueD .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-ttQfvRmueD .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-ttQfvRmueD .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-ttQfvRmueD ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-ttQfvRmueD .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-ttQfvRmueD button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-ttQfvRmueD button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: currentColor;
}
.cid-ttQfvRmueD button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-ttQfvRmueD button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-ttQfvRmueD button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-ttQfvRmueD button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-ttQfvRmueD nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-ttQfvRmueD nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-ttQfvRmueD nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-ttQfvRmueD nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-ttQfvRmueD .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-ttQfvRmueD a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-ttQfvRmueD .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-ttQfvRmueD .navbar {
    height: 77px;
  }
  .cid-ttQfvRmueD .navbar.opened {
    height: auto;
  }
  .cid-ttQfvRmueD .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-ttQfvRKpyb {
  padding-top: 10rem;
  padding-bottom: 4rem;
  background-image: url("../../../assets/images/vala-2000x1333.jpg");
}
.cid-ttQfvRKpyb .mbr-text,
.cid-ttQfvRKpyb .mbr-section-btn {
  color: #ffffff;
}
.cid-ttQfvRKpyb .mbr-section-title {
  color: #ffffff;
}
.cid-ttQfvRKpyb .mbr-section-subtitle {
  color: #ffffff;
}
.cid-ttQfvS47fw {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-ttQfvS47fw .mbr-section-title {
  text-align: left;
  color: #bbbbbb;
}
.cid-ttQgc7u008 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background: #ffffff;
}
@media (max-width: 767px) {
  .cid-ttQgc7u008 .row {
    flex-direction: column-reverse;
  }
  .cid-ttQgc7u008 .row .map-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-ttQgc7u008 .google-map {
  height: 100%;
  position: relative;
}
.cid-ttQgc7u008 .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-ttQgc7u008 .google-map [data-state-details] {
  color: #6b6763;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-ttQgc7u008 .google-map[data-state] {
  background: #e9e5dc;
}
.cid-ttQgc7u008 .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-ttQgc7u008 .image-wrapper {
  display: flex;
  align-items: center;
}
.cid-ttQgc7u008 .card-wrapper {
  display: flex;
  border-radius: 4px;
  background: #fafafa;
}
.cid-ttQgc7u008 .card-wrapper:not(:nth-last-child(1)) {
  margin-bottom: 2rem;
}
@media (max-width: 991px) {
  .cid-ttQgc7u008 .card-wrapper {
    padding: 1rem 2rem;
  }
}
@media (min-width: 992px) {
  .cid-ttQgc7u008 .card-wrapper {
    padding: 2rem 4rem;
  }
}
.cid-ttQgc7u008 .mbr-iconfont {
  font-size: 2rem;
  padding-right: 1.5rem;
  color: #6ec7f2;
}
.cid-ttQgc7u008 P {
  color: #22a5e5;
}
.cid-ttQgc7u008 .card-title {
  color: #353535;
}
.cid-ttQfvUI7b8 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-ttQfvUI7b8 img {
  width: 120px;
  margin: auto;
}
.cid-ttQfvUI7b8 .card {
  transition: all 0.3s;
  height: fit-content;
  padding: 1rem 0;
  opacity: 0.7;
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .cid-ttQfvUI7b8 .card {
    max-width: 12.5%;
  }
}
.cid-txsNiUIJQC {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #232323;
  overflow: hidden;
}
.cid-txsNJAssu8.popup-builder {
  background-color: #ffffff;
}
.cid-txsNJAssu8.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-txsNJAssu8.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-txsNJAssu8 .modal-content,
.cid-txsNJAssu8 .modal-dialog {
  height: auto;
}
.cid-txsNJAssu8 .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-txsNJAssu8 .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-txsNJAssu8 .form-wrapper .mbr-form .form-group,
  .cid-txsNJAssu8 .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-txsNJAssu8 .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-txsNJAssu8 .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-txsNJAssu8 .mbr-text {
  text-align: center;
}
.cid-txsNJAssu8 .pt-0 {
  padding-top: 0 !important;
}
.cid-txsNJAssu8 .pb-0 {
  padding-bottom: 0 !important;
}
.cid-txsNJAssu8 .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-txsNJAssu8 .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-txsNJAssu8 .modal-open {
  overflow: hidden;
}
.cid-txsNJAssu8 .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-txsNJAssu8 .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-txsNJAssu8 .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-txsNJAssu8 .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-txsNJAssu8 .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-txsNJAssu8 .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-txsNJAssu8 .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-txsNJAssu8 .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-txsNJAssu8 .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-txsNJAssu8 .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-txsNJAssu8 .modal-backdrop.fade {
  opacity: 0;
}
.cid-txsNJAssu8 .modal-backdrop.show {
  opacity: .5;
}
.cid-txsNJAssu8 .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-txsNJAssu8 .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-txsNJAssu8 .modal-header {
    padding: 1rem;
  }
}
.cid-txsNJAssu8 .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-txsNJAssu8 .modal-header .close svg {
  fill: #353535;
}
.cid-txsNJAssu8 .modal-header .close:hover {
  opacity: 1;
}
.cid-txsNJAssu8 .modal-header .close:focus {
  outline: none;
}
.cid-txsNJAssu8 .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
  color: #bbbbbb;
}
.cid-txsNJAssu8 .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-txsNJAssu8 .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-txsNJAssu8 .modal-body {
    padding: 1rem;
  }
}
.cid-txsNJAssu8 .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-txsNJAssu8 .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-txsNJAssu8 .modal-footer {
    padding: 1rem;
  }
}
.cid-txsNJAssu8 .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-txsNJAssu8 .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-txsNJAssu8 .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-txsNJAssu8 .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-txsNJAssu8 .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-txsNJAssu8 .modal-lg,
  .cid-txsNJAssu8 .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-txsNJAssu8 .modal-xl {
    max-width: 1140px;
  }
}
.cid-txsNJAssu8 .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-txsNJAssu8 .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-txsNJAssu8 .form-group {
  margin-bottom: 1rem;
}
.cid-txsNJAssu8 .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-txsNJAssu8 .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-txsNJAssu8 .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-txsNJAssu8 .mbr-section-btn {
  margin: 0;
}
.cid-txsNJAssu8 .mbr-section-btn .btn {
  margin: 0;
}
.cid-tudUA3B5VH {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tudUA3B5VH nav.navbar {
  position: fixed;
}
.cid-tudUA3B5VH .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-tudUA3B5VH .dropdown-menu {
  padding: 0;
}
.cid-tudUA3B5VH .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tudUA3B5VH .dropdown-item:hover,
.cid-tudUA3B5VH .dropdown-item:focus {
  background: #6ec7f2 !important;
  color: white !important;
}
.cid-tudUA3B5VH .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: .667em 1em !important;
}
.cid-tudUA3B5VH .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tudUA3B5VH .nav-link {
  position: relative;
}
.cid-tudUA3B5VH .container {
  display: flex;
  margin: auto;
}
.cid-tudUA3B5VH .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-tudUA3B5VH .navbar-caption {
  padding-right: 4rem;
}
.cid-tudUA3B5VH .dropdown-menu,
.cid-tudUA3B5VH .navbar.opened {
  background: #ffffff !important;
}
.cid-tudUA3B5VH .nav-item:focus,
.cid-tudUA3B5VH .nav-link:focus {
  outline: none;
}
.cid-tudUA3B5VH .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tudUA3B5VH .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tudUA3B5VH .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-tudUA3B5VH .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tudUA3B5VH .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tudUA3B5VH .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tudUA3B5VH .navbar {
  min-height: 77px;
  transition: all .3s;
  border-bottom: 1px solid transparent;
  background: #ffffff;
}
.cid-tudUA3B5VH .navbar:not(.navbar-short) {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tudUA3B5VH .navbar.opened {
  transition: all .3s;
}
.cid-tudUA3B5VH .navbar .dropdown-item {
  padding: .5rem 1.8rem;
}
.cid-tudUA3B5VH .navbar .navbar-logo img {
  width: auto;
}
.cid-tudUA3B5VH .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tudUA3B5VH .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tudUA3B5VH .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tudUA3B5VH .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.7rem);
  }
}
.cid-tudUA3B5VH .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tudUA3B5VH .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tudUA3B5VH .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: 55%;
}
.cid-tudUA3B5VH .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tudUA3B5VH .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-tudUA3B5VH .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-tudUA3B5VH .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tudUA3B5VH .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tudUA3B5VH .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tudUA3B5VH .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tudUA3B5VH .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: 55%;
  }
  .cid-tudUA3B5VH .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-tudUA3B5VH .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tudUA3B5VH .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tudUA3B5VH .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tudUA3B5VH .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tudUA3B5VH .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-tudUA3B5VH .navbar.navbar-short {
  min-height: 60px;
}
.cid-tudUA3B5VH .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-tudUA3B5VH .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-tudUA3B5VH .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tudUA3B5VH .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tudUA3B5VH .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tudUA3B5VH .dropdown-item.active,
.cid-tudUA3B5VH .dropdown-item:active {
  background-color: transparent;
}
.cid-tudUA3B5VH .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tudUA3B5VH .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tudUA3B5VH .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tudUA3B5VH .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-tudUA3B5VH .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tudUA3B5VH .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tudUA3B5VH ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tudUA3B5VH .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tudUA3B5VH button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-tudUA3B5VH button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: currentColor;
}
.cid-tudUA3B5VH button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-tudUA3B5VH button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-tudUA3B5VH button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-tudUA3B5VH button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-tudUA3B5VH nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tudUA3B5VH nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-tudUA3B5VH nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-tudUA3B5VH nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tudUA3B5VH .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-tudUA3B5VH a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tudUA3B5VH .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-tudUA3B5VH .navbar {
    height: 77px;
  }
  .cid-tudUA3B5VH .navbar.opened {
    height: auto;
  }
  .cid-tudUA3B5VH .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tudUA4jBRo {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/front-view.webp");
}
.cid-tudUA4jBRo .mbr-section-title {
  color: #ffffff;
}
.cid-tudUA4jBRo .mbr-text,
.cid-tudUA4jBRo .mbr-section-btn {
  color: #ffffff;
}
.cid-tudWNfbC8X {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tudWNfbC8X .mbr-section-title {
  color: #bbbbbb;
}
.cid-tudUA4JeR8 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tudUA4JeR8 .card-box {
  z-index: 10;
  position: relative;
}
@media (min-width: 1500px) {
  .cid-tudUA4JeR8 .container {
    max-width: 1400px;
  }
}
.cid-tudUA4JeR8 .card {
  margin: auto;
}
.cid-tudUA4JeR8 .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #47b5ed;
  margin-bottom: 2rem;
}
.cid-tudUA4JeR8 .card-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-tudUA4JeR8 .row {
  justify-content: center;
}
.cid-tudUA4JeR8 .card-title,
.cid-tudUA4JeR8 .card-box {
  color: #353535;
}
.cid-tudUA5dFHQ {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-tudUA5dFHQ .mbr-section-subtitle {
  color: #bbbbbb;
}
.cid-tudUA5uCKu {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tudUA5uCKu .item {
  padding-bottom: 2rem;
}
.cid-tudUA5uCKu .item-wrapper {
  height: 100%;
  position: relative;
}
.cid-tudUA5uCKu .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-tudUA5uCKu .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
  border-radius: 50%;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  background-color: #1b1b1b;
  transition: 0.2s;
}
.cid-tudUA5uCKu .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-tudUA5uCKu .carousel-control,
.cid-tudUA5uCKu .close {
  background: #1b1b1b;
}
.cid-tudUA5uCKu .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-tudUA5uCKu .carousel-control-prev span {
  margin-right: 5px;
}
.cid-tudUA5uCKu .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-tudUA5uCKu .carousel-control-next span {
  margin-left: 5px;
}
.cid-tudUA5uCKu .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-tudUA5uCKu .close::before {
  content: '\e91a';
}
.cid-tudUA5uCKu .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-tudUA5uCKu .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-tudUA5uCKu .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tudUA5uCKu .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-tudUA5uCKu .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-tudUA5uCKu .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-tudUA5uCKu .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-tudUA5uCKu .carousel-indicators li.active,
.cid-tudUA5uCKu .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-tudUA5uCKu .carousel-indicators li::after,
.cid-tudUA5uCKu .carousel-indicators li::before {
  content: none;
}
.cid-tudUA5uCKu .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-tudUA5uCKu .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-tudUA5uCKu .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-tudUA5uCKu .carousel-indicators {
    display: none;
  }
}
.cid-tudUA5uCKu .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-tudUA5uCKu .carousel-inner > .active {
  display: block;
}
.cid-tudUA5uCKu .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tudUA5uCKu .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tudUA5uCKu .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-tudUA5uCKu .carousel-control,
  .cid-tudUA5uCKu .carousel-indicators,
  .cid-tudUA5uCKu .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-tudUA5uCKu .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-tudUA5uCKu .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-tudUA5uCKu .carousel-indicators .active,
.cid-tudUA5uCKu .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-tudUA5uCKu .carousel-indicators .active {
  background: #fff;
}
.cid-tudUA5uCKu .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-tudUA5uCKu .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-tudUA5uCKu .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-tudUA5uCKu .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-tudUA5uCKu .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-tudUA5uCKu .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-tudUA5uCKu .carousel {
  width: 100%;
}
.cid-tudUA5uCKu .modal-backdrop.in {
  opacity: 0.8;
}
.cid-tudUA5uCKu .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-tudUA5uCKu .modal.fade .modal-dialog,
.cid-tudUA5uCKu .modal.in .modal-dialog {
  transform: none;
}
.cid-tudUA5uCKu .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-tudUA5uCKu H6 {
  text-align: center;
}
.cid-tudUA5uCKu H3 {
  color: #bbbbbb;
}
.cid-tudUA6548Y {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
@media (min-width: 1500px) {
  .cid-tudUA6548Y .container {
    max-width: 1400px;
  }
}
.cid-tudUA6548Y .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #47b5ed;
  margin-bottom: 2rem;
}
.cid-tudUA6548Y .card-wrapper {
  margin-top: 3rem;
}
.cid-tudUA6548Y .row {
  justify-content: center;
}
.cid-tudUA6548Y .mbr-section-title {
  color: #bbbbbb;
}
.cid-txsN6pRutQ.popup-builder {
  background-color: #ffffff;
}
.cid-txsN6pRutQ.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-txsN6pRutQ.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-txsN6pRutQ .modal-content,
.cid-txsN6pRutQ .modal-dialog {
  height: auto;
}
.cid-txsN6pRutQ .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-txsN6pRutQ .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-txsN6pRutQ .form-wrapper .mbr-form .form-group,
  .cid-txsN6pRutQ .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-txsN6pRutQ .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-txsN6pRutQ .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-txsN6pRutQ .mbr-text {
  text-align: center;
}
.cid-txsN6pRutQ .pt-0 {
  padding-top: 0 !important;
}
.cid-txsN6pRutQ .pb-0 {
  padding-bottom: 0 !important;
}
.cid-txsN6pRutQ .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-txsN6pRutQ .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-txsN6pRutQ .modal-open {
  overflow: hidden;
}
.cid-txsN6pRutQ .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-txsN6pRutQ .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-txsN6pRutQ .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-txsN6pRutQ .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-txsN6pRutQ .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-txsN6pRutQ .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-txsN6pRutQ .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-txsN6pRutQ .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-txsN6pRutQ .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-txsN6pRutQ .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-txsN6pRutQ .modal-backdrop.fade {
  opacity: 0;
}
.cid-txsN6pRutQ .modal-backdrop.show {
  opacity: .5;
}
.cid-txsN6pRutQ .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-txsN6pRutQ .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-txsN6pRutQ .modal-header {
    padding: 1rem;
  }
}
.cid-txsN6pRutQ .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-txsN6pRutQ .modal-header .close svg {
  fill: #353535;
}
.cid-txsN6pRutQ .modal-header .close:hover {
  opacity: 1;
}
.cid-txsN6pRutQ .modal-header .close:focus {
  outline: none;
}
.cid-txsN6pRutQ .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
  color: #bbbbbb;
}
.cid-txsN6pRutQ .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-txsN6pRutQ .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-txsN6pRutQ .modal-body {
    padding: 1rem;
  }
}
.cid-txsN6pRutQ .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-txsN6pRutQ .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-txsN6pRutQ .modal-footer {
    padding: 1rem;
  }
}
.cid-txsN6pRutQ .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-txsN6pRutQ .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-txsN6pRutQ .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-txsN6pRutQ .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-txsN6pRutQ .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-txsN6pRutQ .modal-lg,
  .cid-txsN6pRutQ .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-txsN6pRutQ .modal-xl {
    max-width: 1140px;
  }
}
.cid-txsN6pRutQ .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-txsN6pRutQ .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-txsN6pRutQ .form-group {
  margin-bottom: 1rem;
}
.cid-txsN6pRutQ .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-txsN6pRutQ .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-txsN6pRutQ .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-txsN6pRutQ .mbr-section-btn {
  margin: 0;
}
.cid-txsN6pRutQ .mbr-section-btn .btn {
  margin: 0;
}
.cid-txsNiUIJQC {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #232323;
  overflow: hidden;
}
.cid-tudXeqeB8u {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tudXeqeB8u nav.navbar {
  position: fixed;
}
.cid-tudXeqeB8u .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-tudXeqeB8u .dropdown-menu {
  padding: 0;
}
.cid-tudXeqeB8u .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tudXeqeB8u .dropdown-item:hover,
.cid-tudXeqeB8u .dropdown-item:focus {
  background: #6ec7f2 !important;
  color: white !important;
}
.cid-tudXeqeB8u .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: .667em 1em !important;
}
.cid-tudXeqeB8u .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tudXeqeB8u .nav-link {
  position: relative;
}
.cid-tudXeqeB8u .container {
  display: flex;
  margin: auto;
}
.cid-tudXeqeB8u .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-tudXeqeB8u .navbar-caption {
  padding-right: 4rem;
}
.cid-tudXeqeB8u .dropdown-menu,
.cid-tudXeqeB8u .navbar.opened {
  background: #ffffff !important;
}
.cid-tudXeqeB8u .nav-item:focus,
.cid-tudXeqeB8u .nav-link:focus {
  outline: none;
}
.cid-tudXeqeB8u .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tudXeqeB8u .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tudXeqeB8u .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-tudXeqeB8u .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tudXeqeB8u .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tudXeqeB8u .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tudXeqeB8u .navbar {
  min-height: 77px;
  transition: all .3s;
  border-bottom: 1px solid transparent;
  background: #ffffff;
}
.cid-tudXeqeB8u .navbar:not(.navbar-short) {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tudXeqeB8u .navbar.opened {
  transition: all .3s;
}
.cid-tudXeqeB8u .navbar .dropdown-item {
  padding: .5rem 1.8rem;
}
.cid-tudXeqeB8u .navbar .navbar-logo img {
  width: auto;
}
.cid-tudXeqeB8u .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tudXeqeB8u .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tudXeqeB8u .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tudXeqeB8u .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.7rem);
  }
}
.cid-tudXeqeB8u .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tudXeqeB8u .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tudXeqeB8u .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: 55%;
}
.cid-tudXeqeB8u .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tudXeqeB8u .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-tudXeqeB8u .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-tudXeqeB8u .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tudXeqeB8u .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tudXeqeB8u .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tudXeqeB8u .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tudXeqeB8u .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: 55%;
  }
  .cid-tudXeqeB8u .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-tudXeqeB8u .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tudXeqeB8u .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tudXeqeB8u .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tudXeqeB8u .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tudXeqeB8u .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-tudXeqeB8u .navbar.navbar-short {
  min-height: 60px;
}
.cid-tudXeqeB8u .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-tudXeqeB8u .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-tudXeqeB8u .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tudXeqeB8u .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tudXeqeB8u .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tudXeqeB8u .dropdown-item.active,
.cid-tudXeqeB8u .dropdown-item:active {
  background-color: transparent;
}
.cid-tudXeqeB8u .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tudXeqeB8u .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tudXeqeB8u .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tudXeqeB8u .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-tudXeqeB8u .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tudXeqeB8u .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tudXeqeB8u ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tudXeqeB8u .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tudXeqeB8u button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-tudXeqeB8u button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: currentColor;
}
.cid-tudXeqeB8u button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-tudXeqeB8u button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-tudXeqeB8u button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-tudXeqeB8u button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-tudXeqeB8u nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tudXeqeB8u nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-tudXeqeB8u nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-tudXeqeB8u nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tudXeqeB8u .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-tudXeqeB8u a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tudXeqeB8u .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-tudXeqeB8u .navbar {
    height: 77px;
  }
  .cid-tudXeqeB8u .navbar.opened {
    height: auto;
  }
  .cid-tudXeqeB8u .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tudXeqPUmy {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/front-view.webp");
}
.cid-tudXeqPUmy .mbr-section-title {
  color: #ffffff;
}
.cid-tudXeqPUmy .mbr-text,
.cid-tudXeqPUmy .mbr-section-btn {
  color: #ffffff;
}
.cid-tudXerleZe {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tudXerleZe .mbr-section-title {
  color: #bbbbbb;
}
.cid-tudXerNqeP {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tudXerNqeP .card-box {
  z-index: 10;
  position: relative;
}
@media (min-width: 1500px) {
  .cid-tudXerNqeP .container {
    max-width: 1400px;
  }
}
.cid-tudXerNqeP .card {
  margin: auto;
}
.cid-tudXerNqeP .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #47b5ed;
  margin-bottom: 2rem;
}
.cid-tudXerNqeP .card-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-tudXerNqeP .row {
  justify-content: center;
}
.cid-tudXerNqeP .card-title,
.cid-tudXerNqeP .card-box {
  color: #353535;
}
.cid-tudXesnu2l {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-tudXesnu2l .mbr-section-subtitle {
  color: #bbbbbb;
}
.cid-tudXesK2En {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tudXesK2En .item {
  padding-bottom: 2rem;
}
.cid-tudXesK2En .item-wrapper {
  height: 100%;
  position: relative;
}
.cid-tudXesK2En .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-tudXesK2En .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
  border-radius: 50%;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  background-color: #1b1b1b;
  transition: 0.2s;
}
.cid-tudXesK2En .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-tudXesK2En .carousel-control,
.cid-tudXesK2En .close {
  background: #1b1b1b;
}
.cid-tudXesK2En .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-tudXesK2En .carousel-control-prev span {
  margin-right: 5px;
}
.cid-tudXesK2En .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-tudXesK2En .carousel-control-next span {
  margin-left: 5px;
}
.cid-tudXesK2En .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-tudXesK2En .close::before {
  content: '\e91a';
}
.cid-tudXesK2En .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-tudXesK2En .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-tudXesK2En .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tudXesK2En .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-tudXesK2En .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-tudXesK2En .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-tudXesK2En .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-tudXesK2En .carousel-indicators li.active,
.cid-tudXesK2En .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-tudXesK2En .carousel-indicators li::after,
.cid-tudXesK2En .carousel-indicators li::before {
  content: none;
}
.cid-tudXesK2En .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-tudXesK2En .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-tudXesK2En .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-tudXesK2En .carousel-indicators {
    display: none;
  }
}
.cid-tudXesK2En .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-tudXesK2En .carousel-inner > .active {
  display: block;
}
.cid-tudXesK2En .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tudXesK2En .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tudXesK2En .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-tudXesK2En .carousel-control,
  .cid-tudXesK2En .carousel-indicators,
  .cid-tudXesK2En .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-tudXesK2En .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-tudXesK2En .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-tudXesK2En .carousel-indicators .active,
.cid-tudXesK2En .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-tudXesK2En .carousel-indicators .active {
  background: #fff;
}
.cid-tudXesK2En .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-tudXesK2En .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-tudXesK2En .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-tudXesK2En .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-tudXesK2En .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-tudXesK2En .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-tudXesK2En .carousel {
  width: 100%;
}
.cid-tudXesK2En .modal-backdrop.in {
  opacity: 0.8;
}
.cid-tudXesK2En .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-tudXesK2En .modal.fade .modal-dialog,
.cid-tudXesK2En .modal.in .modal-dialog {
  transform: none;
}
.cid-tudXesK2En .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-tudXesK2En H6 {
  text-align: center;
}
.cid-tudXesK2En H3 {
  color: #bbbbbb;
}
.cid-tudXetVb51 {
  padding-top: 0rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
@media (min-width: 1500px) {
  .cid-tudXetVb51 .container {
    max-width: 1400px;
  }
}
.cid-tudXetVb51 .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #47b5ed;
  margin-bottom: 2rem;
}
.cid-tudXetVb51 .card-wrapper {
  margin-top: 3rem;
}
.cid-tudXetVb51 .row {
  justify-content: center;
}
.cid-tudXetVb51 .mbr-section-title {
  color: #bbbbbb;
}
.cid-txsN98gxD4.popup-builder {
  background-color: #ffffff;
}
.cid-txsN98gxD4.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-txsN98gxD4.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-txsN98gxD4 .modal-content,
.cid-txsN98gxD4 .modal-dialog {
  height: auto;
}
.cid-txsN98gxD4 .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-txsN98gxD4 .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-txsN98gxD4 .form-wrapper .mbr-form .form-group,
  .cid-txsN98gxD4 .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-txsN98gxD4 .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-txsN98gxD4 .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-txsN98gxD4 .mbr-text {
  text-align: center;
}
.cid-txsN98gxD4 .pt-0 {
  padding-top: 0 !important;
}
.cid-txsN98gxD4 .pb-0 {
  padding-bottom: 0 !important;
}
.cid-txsN98gxD4 .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-txsN98gxD4 .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-txsN98gxD4 .modal-open {
  overflow: hidden;
}
.cid-txsN98gxD4 .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-txsN98gxD4 .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-txsN98gxD4 .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-txsN98gxD4 .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-txsN98gxD4 .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-txsN98gxD4 .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-txsN98gxD4 .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-txsN98gxD4 .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-txsN98gxD4 .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-txsN98gxD4 .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-txsN98gxD4 .modal-backdrop.fade {
  opacity: 0;
}
.cid-txsN98gxD4 .modal-backdrop.show {
  opacity: .5;
}
.cid-txsN98gxD4 .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-txsN98gxD4 .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-txsN98gxD4 .modal-header {
    padding: 1rem;
  }
}
.cid-txsN98gxD4 .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-txsN98gxD4 .modal-header .close svg {
  fill: #353535;
}
.cid-txsN98gxD4 .modal-header .close:hover {
  opacity: 1;
}
.cid-txsN98gxD4 .modal-header .close:focus {
  outline: none;
}
.cid-txsN98gxD4 .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
  color: #bbbbbb;
}
.cid-txsN98gxD4 .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-txsN98gxD4 .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-txsN98gxD4 .modal-body {
    padding: 1rem;
  }
}
.cid-txsN98gxD4 .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-txsN98gxD4 .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-txsN98gxD4 .modal-footer {
    padding: 1rem;
  }
}
.cid-txsN98gxD4 .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-txsN98gxD4 .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-txsN98gxD4 .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-txsN98gxD4 .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-txsN98gxD4 .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-txsN98gxD4 .modal-lg,
  .cid-txsN98gxD4 .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-txsN98gxD4 .modal-xl {
    max-width: 1140px;
  }
}
.cid-txsN98gxD4 .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-txsN98gxD4 .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-txsN98gxD4 .form-group {
  margin-bottom: 1rem;
}
.cid-txsN98gxD4 .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-txsN98gxD4 .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-txsN98gxD4 .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-txsN98gxD4 .mbr-section-btn {
  margin: 0;
}
.cid-txsN98gxD4 .mbr-section-btn .btn {
  margin: 0;
}
.cid-txsNiUIJQC {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #232323;
  overflow: hidden;
}
.cid-tudXN68mZp {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tudXN68mZp nav.navbar {
  position: fixed;
}
.cid-tudXN68mZp .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-tudXN68mZp .dropdown-menu {
  padding: 0;
}
.cid-tudXN68mZp .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tudXN68mZp .dropdown-item:hover,
.cid-tudXN68mZp .dropdown-item:focus {
  background: #6ec7f2 !important;
  color: white !important;
}
.cid-tudXN68mZp .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: .667em 1em !important;
}
.cid-tudXN68mZp .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tudXN68mZp .nav-link {
  position: relative;
}
.cid-tudXN68mZp .container {
  display: flex;
  margin: auto;
}
.cid-tudXN68mZp .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-tudXN68mZp .navbar-caption {
  padding-right: 4rem;
}
.cid-tudXN68mZp .dropdown-menu,
.cid-tudXN68mZp .navbar.opened {
  background: #ffffff !important;
}
.cid-tudXN68mZp .nav-item:focus,
.cid-tudXN68mZp .nav-link:focus {
  outline: none;
}
.cid-tudXN68mZp .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tudXN68mZp .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tudXN68mZp .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-tudXN68mZp .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tudXN68mZp .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tudXN68mZp .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tudXN68mZp .navbar {
  min-height: 77px;
  transition: all .3s;
  border-bottom: 1px solid transparent;
  background: #ffffff;
}
.cid-tudXN68mZp .navbar:not(.navbar-short) {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tudXN68mZp .navbar.opened {
  transition: all .3s;
}
.cid-tudXN68mZp .navbar .dropdown-item {
  padding: .5rem 1.8rem;
}
.cid-tudXN68mZp .navbar .navbar-logo img {
  width: auto;
}
.cid-tudXN68mZp .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tudXN68mZp .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tudXN68mZp .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tudXN68mZp .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.7rem);
  }
}
.cid-tudXN68mZp .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tudXN68mZp .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tudXN68mZp .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: 55%;
}
.cid-tudXN68mZp .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tudXN68mZp .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-tudXN68mZp .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-tudXN68mZp .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tudXN68mZp .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tudXN68mZp .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tudXN68mZp .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tudXN68mZp .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: 55%;
  }
  .cid-tudXN68mZp .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-tudXN68mZp .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tudXN68mZp .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tudXN68mZp .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tudXN68mZp .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tudXN68mZp .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-tudXN68mZp .navbar.navbar-short {
  min-height: 60px;
}
.cid-tudXN68mZp .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-tudXN68mZp .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-tudXN68mZp .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tudXN68mZp .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tudXN68mZp .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tudXN68mZp .dropdown-item.active,
.cid-tudXN68mZp .dropdown-item:active {
  background-color: transparent;
}
.cid-tudXN68mZp .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tudXN68mZp .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tudXN68mZp .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tudXN68mZp .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-tudXN68mZp .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tudXN68mZp .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tudXN68mZp ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tudXN68mZp .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tudXN68mZp button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-tudXN68mZp button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: currentColor;
}
.cid-tudXN68mZp button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-tudXN68mZp button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-tudXN68mZp button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-tudXN68mZp button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-tudXN68mZp nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tudXN68mZp nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-tudXN68mZp nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-tudXN68mZp nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tudXN68mZp .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-tudXN68mZp a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tudXN68mZp .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-tudXN68mZp .navbar {
    height: 77px;
  }
  .cid-tudXN68mZp .navbar.opened {
    height: auto;
  }
  .cid-tudXN68mZp .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tudXN6MtVt {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/front-view.webp");
}
.cid-tudXN6MtVt .mbr-section-title {
  color: #ffffff;
}
.cid-tudXN6MtVt .mbr-text,
.cid-tudXN6MtVt .mbr-section-btn {
  color: #ffffff;
}
.cid-tudXN7dkhj {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tudXN7dkhj .mbr-section-title {
  color: #bbbbbb;
}
.cid-tudXN7AiWL {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tudXN7AiWL .card-box {
  z-index: 10;
  position: relative;
}
@media (min-width: 1500px) {
  .cid-tudXN7AiWL .container {
    max-width: 1400px;
  }
}
.cid-tudXN7AiWL .card {
  margin: auto;
}
.cid-tudXN7AiWL .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #47b5ed;
  margin-bottom: 2rem;
}
.cid-tudXN7AiWL .card-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-tudXN7AiWL .row {
  justify-content: center;
}
.cid-tudXN7AiWL .card-title,
.cid-tudXN7AiWL .card-box {
  color: #353535;
}
.cid-tudXN84hnx {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-tudXN84hnx .mbr-section-subtitle {
  color: #bbbbbb;
}
.cid-tudXN8p2J7 {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tudXN8p2J7 .item {
  padding-bottom: 2rem;
}
.cid-tudXN8p2J7 .item-wrapper {
  height: 100%;
  position: relative;
}
.cid-tudXN8p2J7 .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-tudXN8p2J7 .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
  border-radius: 50%;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  background-color: #1b1b1b;
  transition: 0.2s;
}
.cid-tudXN8p2J7 .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-tudXN8p2J7 .carousel-control,
.cid-tudXN8p2J7 .close {
  background: #1b1b1b;
}
.cid-tudXN8p2J7 .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-tudXN8p2J7 .carousel-control-prev span {
  margin-right: 5px;
}
.cid-tudXN8p2J7 .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-tudXN8p2J7 .carousel-control-next span {
  margin-left: 5px;
}
.cid-tudXN8p2J7 .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-tudXN8p2J7 .close::before {
  content: '\e91a';
}
.cid-tudXN8p2J7 .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-tudXN8p2J7 .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-tudXN8p2J7 .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tudXN8p2J7 .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-tudXN8p2J7 .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-tudXN8p2J7 .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-tudXN8p2J7 .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-tudXN8p2J7 .carousel-indicators li.active,
.cid-tudXN8p2J7 .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-tudXN8p2J7 .carousel-indicators li::after,
.cid-tudXN8p2J7 .carousel-indicators li::before {
  content: none;
}
.cid-tudXN8p2J7 .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-tudXN8p2J7 .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-tudXN8p2J7 .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-tudXN8p2J7 .carousel-indicators {
    display: none;
  }
}
.cid-tudXN8p2J7 .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-tudXN8p2J7 .carousel-inner > .active {
  display: block;
}
.cid-tudXN8p2J7 .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tudXN8p2J7 .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tudXN8p2J7 .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-tudXN8p2J7 .carousel-control,
  .cid-tudXN8p2J7 .carousel-indicators,
  .cid-tudXN8p2J7 .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-tudXN8p2J7 .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-tudXN8p2J7 .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-tudXN8p2J7 .carousel-indicators .active,
.cid-tudXN8p2J7 .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-tudXN8p2J7 .carousel-indicators .active {
  background: #fff;
}
.cid-tudXN8p2J7 .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-tudXN8p2J7 .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-tudXN8p2J7 .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-tudXN8p2J7 .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-tudXN8p2J7 .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-tudXN8p2J7 .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-tudXN8p2J7 .carousel {
  width: 100%;
}
.cid-tudXN8p2J7 .modal-backdrop.in {
  opacity: 0.8;
}
.cid-tudXN8p2J7 .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-tudXN8p2J7 .modal.fade .modal-dialog,
.cid-tudXN8p2J7 .modal.in .modal-dialog {
  transform: none;
}
.cid-tudXN8p2J7 .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-tudXN8p2J7 H6 {
  text-align: center;
}
.cid-tudXN8p2J7 H3 {
  color: #bbbbbb;
}
.cid-tudXN9iX3g {
  padding-top: 0rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
@media (min-width: 1500px) {
  .cid-tudXN9iX3g .container {
    max-width: 1400px;
  }
}
.cid-tudXN9iX3g .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #47b5ed;
  margin-bottom: 2rem;
}
.cid-tudXN9iX3g .card-wrapper {
  margin-top: 3rem;
}
.cid-tudXN9iX3g .row {
  justify-content: center;
}
.cid-tudXN9iX3g .mbr-section-title {
  color: #bbbbbb;
}
.cid-txsNiUIJQC {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #232323;
  overflow: hidden;
}
.cid-txsNGRkkcs.popup-builder {
  background-color: #ffffff;
}
.cid-txsNGRkkcs.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-txsNGRkkcs.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-txsNGRkkcs .modal-content,
.cid-txsNGRkkcs .modal-dialog {
  height: auto;
}
.cid-txsNGRkkcs .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-txsNGRkkcs .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-txsNGRkkcs .form-wrapper .mbr-form .form-group,
  .cid-txsNGRkkcs .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-txsNGRkkcs .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-txsNGRkkcs .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-txsNGRkkcs .mbr-text {
  text-align: center;
}
.cid-txsNGRkkcs .pt-0 {
  padding-top: 0 !important;
}
.cid-txsNGRkkcs .pb-0 {
  padding-bottom: 0 !important;
}
.cid-txsNGRkkcs .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-txsNGRkkcs .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-txsNGRkkcs .modal-open {
  overflow: hidden;
}
.cid-txsNGRkkcs .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-txsNGRkkcs .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-txsNGRkkcs .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-txsNGRkkcs .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-txsNGRkkcs .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-txsNGRkkcs .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-txsNGRkkcs .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-txsNGRkkcs .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-txsNGRkkcs .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-txsNGRkkcs .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-txsNGRkkcs .modal-backdrop.fade {
  opacity: 0;
}
.cid-txsNGRkkcs .modal-backdrop.show {
  opacity: .5;
}
.cid-txsNGRkkcs .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-txsNGRkkcs .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-txsNGRkkcs .modal-header {
    padding: 1rem;
  }
}
.cid-txsNGRkkcs .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-txsNGRkkcs .modal-header .close svg {
  fill: #353535;
}
.cid-txsNGRkkcs .modal-header .close:hover {
  opacity: 1;
}
.cid-txsNGRkkcs .modal-header .close:focus {
  outline: none;
}
.cid-txsNGRkkcs .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
  color: #bbbbbb;
}
.cid-txsNGRkkcs .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-txsNGRkkcs .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-txsNGRkkcs .modal-body {
    padding: 1rem;
  }
}
.cid-txsNGRkkcs .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-txsNGRkkcs .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-txsNGRkkcs .modal-footer {
    padding: 1rem;
  }
}
.cid-txsNGRkkcs .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-txsNGRkkcs .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-txsNGRkkcs .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-txsNGRkkcs .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-txsNGRkkcs .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-txsNGRkkcs .modal-lg,
  .cid-txsNGRkkcs .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-txsNGRkkcs .modal-xl {
    max-width: 1140px;
  }
}
.cid-txsNGRkkcs .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-txsNGRkkcs .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-txsNGRkkcs .form-group {
  margin-bottom: 1rem;
}
.cid-txsNGRkkcs .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-txsNGRkkcs .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-txsNGRkkcs .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-txsNGRkkcs .mbr-section-btn {
  margin: 0;
}
.cid-txsNGRkkcs .mbr-section-btn .btn {
  margin: 0;
}
.cid-tvhrHaqRcS {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tvhrHaqRcS nav.navbar {
  position: fixed;
}
.cid-tvhrHaqRcS .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-tvhrHaqRcS .dropdown-menu {
  padding: 0;
}
.cid-tvhrHaqRcS .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tvhrHaqRcS .dropdown-item:hover,
.cid-tvhrHaqRcS .dropdown-item:focus {
  background: #6ec7f2 !important;
  color: white !important;
}
.cid-tvhrHaqRcS .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: .667em 1em !important;
}
.cid-tvhrHaqRcS .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tvhrHaqRcS .nav-link {
  position: relative;
}
.cid-tvhrHaqRcS .container {
  display: flex;
  margin: auto;
}
.cid-tvhrHaqRcS .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-tvhrHaqRcS .navbar-caption {
  padding-right: 4rem;
}
.cid-tvhrHaqRcS .dropdown-menu,
.cid-tvhrHaqRcS .navbar.opened {
  background: #ffffff !important;
}
.cid-tvhrHaqRcS .nav-item:focus,
.cid-tvhrHaqRcS .nav-link:focus {
  outline: none;
}
.cid-tvhrHaqRcS .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tvhrHaqRcS .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tvhrHaqRcS .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-tvhrHaqRcS .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tvhrHaqRcS .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tvhrHaqRcS .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tvhrHaqRcS .navbar {
  min-height: 77px;
  transition: all .3s;
  border-bottom: 1px solid transparent;
  background: #ffffff;
}
.cid-tvhrHaqRcS .navbar:not(.navbar-short) {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tvhrHaqRcS .navbar.opened {
  transition: all .3s;
}
.cid-tvhrHaqRcS .navbar .dropdown-item {
  padding: .5rem 1.8rem;
}
.cid-tvhrHaqRcS .navbar .navbar-logo img {
  width: auto;
}
.cid-tvhrHaqRcS .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tvhrHaqRcS .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tvhrHaqRcS .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tvhrHaqRcS .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.7rem);
  }
}
.cid-tvhrHaqRcS .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tvhrHaqRcS .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tvhrHaqRcS .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: 55%;
}
.cid-tvhrHaqRcS .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tvhrHaqRcS .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-tvhrHaqRcS .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-tvhrHaqRcS .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tvhrHaqRcS .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tvhrHaqRcS .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tvhrHaqRcS .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tvhrHaqRcS .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: 55%;
  }
  .cid-tvhrHaqRcS .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-tvhrHaqRcS .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tvhrHaqRcS .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tvhrHaqRcS .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tvhrHaqRcS .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tvhrHaqRcS .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-tvhrHaqRcS .navbar.navbar-short {
  min-height: 60px;
}
.cid-tvhrHaqRcS .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-tvhrHaqRcS .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-tvhrHaqRcS .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tvhrHaqRcS .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tvhrHaqRcS .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tvhrHaqRcS .dropdown-item.active,
.cid-tvhrHaqRcS .dropdown-item:active {
  background-color: transparent;
}
.cid-tvhrHaqRcS .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tvhrHaqRcS .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tvhrHaqRcS .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tvhrHaqRcS .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-tvhrHaqRcS .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tvhrHaqRcS .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tvhrHaqRcS ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tvhrHaqRcS .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tvhrHaqRcS button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-tvhrHaqRcS button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: currentColor;
}
.cid-tvhrHaqRcS button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-tvhrHaqRcS button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-tvhrHaqRcS button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-tvhrHaqRcS button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-tvhrHaqRcS nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tvhrHaqRcS nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-tvhrHaqRcS nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-tvhrHaqRcS nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tvhrHaqRcS .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-tvhrHaqRcS a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tvhrHaqRcS .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-tvhrHaqRcS .navbar {
    height: 77px;
  }
  .cid-tvhrHaqRcS .navbar.opened {
    height: auto;
  }
  .cid-tvhrHaqRcS .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tvhrHaWTHs {
  padding-top: 10rem;
  padding-bottom: 4rem;
  background-image: url("../../../assets/images/3e205528-1-1080x720.jpg");
}
.cid-tvhrHaWTHs .mbr-text,
.cid-tvhrHaWTHs .mbr-section-btn {
  color: #ffffff;
}
.cid-tvhrHaWTHs .mbr-section-title {
  color: #ffffff;
}
.cid-tvhrHaWTHs .mbr-section-subtitle {
  color: #ffffff;
}
.cid-tvhrHbi4XG {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tvhrHbi4XG .mbr-section-title {
  text-align: left;
  color: #bbbbbb;
}
.cid-tvhrHcMBJk {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tvhrHd9GaA {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tvhrHd9GaA .item {
  padding-bottom: 2rem;
}
.cid-tvhrHd9GaA .item-wrapper {
  height: 100%;
  position: relative;
}
.cid-tvhrHd9GaA .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-tvhrHd9GaA .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
  border-radius: 50%;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  background-color: #1b1b1b;
  transition: 0.2s;
}
.cid-tvhrHd9GaA .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-tvhrHd9GaA .carousel-control,
.cid-tvhrHd9GaA .close {
  background: #1b1b1b;
}
.cid-tvhrHd9GaA .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-tvhrHd9GaA .carousel-control-prev span {
  margin-right: 5px;
}
.cid-tvhrHd9GaA .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-tvhrHd9GaA .carousel-control-next span {
  margin-left: 5px;
}
.cid-tvhrHd9GaA .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-tvhrHd9GaA .close::before {
  content: '\e91a';
}
.cid-tvhrHd9GaA .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-tvhrHd9GaA .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-tvhrHd9GaA .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tvhrHd9GaA .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-tvhrHd9GaA .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-tvhrHd9GaA .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-tvhrHd9GaA .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-tvhrHd9GaA .carousel-indicators li.active,
.cid-tvhrHd9GaA .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-tvhrHd9GaA .carousel-indicators li::after,
.cid-tvhrHd9GaA .carousel-indicators li::before {
  content: none;
}
.cid-tvhrHd9GaA .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-tvhrHd9GaA .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-tvhrHd9GaA .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-tvhrHd9GaA .carousel-indicators {
    display: none;
  }
}
.cid-tvhrHd9GaA .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-tvhrHd9GaA .carousel-inner > .active {
  display: block;
}
.cid-tvhrHd9GaA .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tvhrHd9GaA .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tvhrHd9GaA .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-tvhrHd9GaA .carousel-control,
  .cid-tvhrHd9GaA .carousel-indicators,
  .cid-tvhrHd9GaA .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-tvhrHd9GaA .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-tvhrHd9GaA .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-tvhrHd9GaA .carousel-indicators .active,
.cid-tvhrHd9GaA .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-tvhrHd9GaA .carousel-indicators .active {
  background: #fff;
}
.cid-tvhrHd9GaA .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-tvhrHd9GaA .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-tvhrHd9GaA .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-tvhrHd9GaA .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-tvhrHd9GaA .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-tvhrHd9GaA .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-tvhrHd9GaA .carousel {
  width: 100%;
}
.cid-tvhrHd9GaA .modal-backdrop.in {
  opacity: 0.8;
}
.cid-tvhrHd9GaA .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-tvhrHd9GaA .modal.fade .modal-dialog,
.cid-tvhrHd9GaA .modal.in .modal-dialog {
  transform: none;
}
.cid-tvhrHd9GaA .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-tvhrHd9GaA H6 {
  text-align: center;
}
.cid-txsNiUIJQC {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #232323;
  overflow: hidden;
}
.cid-ty0lenatMJ {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-ty0lenatMJ nav.navbar {
  position: fixed;
}
.cid-ty0lenatMJ .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-ty0lenatMJ .dropdown-menu {
  padding: 0;
}
.cid-ty0lenatMJ .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-ty0lenatMJ .dropdown-item:hover,
.cid-ty0lenatMJ .dropdown-item:focus {
  background: #6ec7f2 !important;
  color: white !important;
}
.cid-ty0lenatMJ .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: .667em 1em !important;
}
.cid-ty0lenatMJ .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-ty0lenatMJ .nav-link {
  position: relative;
}
.cid-ty0lenatMJ .container {
  display: flex;
  margin: auto;
}
.cid-ty0lenatMJ .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-ty0lenatMJ .navbar-caption {
  padding-right: 4rem;
}
.cid-ty0lenatMJ .dropdown-menu,
.cid-ty0lenatMJ .navbar.opened {
  background: #ffffff !important;
}
.cid-ty0lenatMJ .nav-item:focus,
.cid-ty0lenatMJ .nav-link:focus {
  outline: none;
}
.cid-ty0lenatMJ .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-ty0lenatMJ .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-ty0lenatMJ .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-ty0lenatMJ .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-ty0lenatMJ .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-ty0lenatMJ .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-ty0lenatMJ .navbar {
  min-height: 77px;
  transition: all .3s;
  border-bottom: 1px solid transparent;
  background: #ffffff;
}
.cid-ty0lenatMJ .navbar:not(.navbar-short) {
  border-bottom: 1px solid #e6e6e6;
}
.cid-ty0lenatMJ .navbar.opened {
  transition: all .3s;
}
.cid-ty0lenatMJ .navbar .dropdown-item {
  padding: .5rem 1.8rem;
}
.cid-ty0lenatMJ .navbar .navbar-logo img {
  width: auto;
}
.cid-ty0lenatMJ .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-ty0lenatMJ .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-ty0lenatMJ .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-ty0lenatMJ .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.7rem);
  }
}
.cid-ty0lenatMJ .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-ty0lenatMJ .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-ty0lenatMJ .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: 55%;
}
.cid-ty0lenatMJ .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-ty0lenatMJ .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-ty0lenatMJ .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-ty0lenatMJ .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-ty0lenatMJ .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-ty0lenatMJ .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-ty0lenatMJ .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-ty0lenatMJ .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: 55%;
  }
  .cid-ty0lenatMJ .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-ty0lenatMJ .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-ty0lenatMJ .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-ty0lenatMJ .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-ty0lenatMJ .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-ty0lenatMJ .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-ty0lenatMJ .navbar.navbar-short {
  min-height: 60px;
}
.cid-ty0lenatMJ .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-ty0lenatMJ .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-ty0lenatMJ .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-ty0lenatMJ .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-ty0lenatMJ .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-ty0lenatMJ .dropdown-item.active,
.cid-ty0lenatMJ .dropdown-item:active {
  background-color: transparent;
}
.cid-ty0lenatMJ .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-ty0lenatMJ .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-ty0lenatMJ .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-ty0lenatMJ .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-ty0lenatMJ .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-ty0lenatMJ .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-ty0lenatMJ ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-ty0lenatMJ .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-ty0lenatMJ button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-ty0lenatMJ button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: currentColor;
}
.cid-ty0lenatMJ button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-ty0lenatMJ button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-ty0lenatMJ button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-ty0lenatMJ button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-ty0lenatMJ nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-ty0lenatMJ nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-ty0lenatMJ nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-ty0lenatMJ nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-ty0lenatMJ .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-ty0lenatMJ a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-ty0lenatMJ .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-ty0lenatMJ .navbar {
    height: 77px;
  }
  .cid-ty0lenatMJ .navbar.opened {
    height: auto;
  }
  .cid-ty0lenatMJ .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-ty0lenoP0K {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/front-view.webp");
}
.cid-ty0lenoP0K .mbr-section-title {
  color: #ffffff;
}
.cid-ty0lenoP0K .mbr-text,
.cid-ty0lenoP0K .mbr-section-btn {
  color: #ffffff;
}
.cid-ty0lenvKZo {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-ty0lenvKZo .mbr-section-title {
  color: #bbbbbb;
}
.cid-ty0lenB6Hv {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-ty0lenB6Hv .card-box {
  z-index: 10;
  position: relative;
}
@media (min-width: 1500px) {
  .cid-ty0lenB6Hv .container {
    max-width: 1400px;
  }
}
.cid-ty0lenB6Hv .card {
  margin: auto;
}
.cid-ty0lenB6Hv .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #47b5ed;
  margin-bottom: 2rem;
}
.cid-ty0lenB6Hv .card-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-ty0lenB6Hv .row {
  justify-content: center;
}
.cid-ty0lenB6Hv .card-title,
.cid-ty0lenB6Hv .card-box {
  color: #353535;
}
.cid-ty0lenLFOA {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-ty0lenLFOA .mbr-section-subtitle {
  color: #bbbbbb;
}
.cid-ty0lenPTqS {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-ty0lenPTqS .item {
  padding-bottom: 2rem;
}
.cid-ty0lenPTqS .item-wrapper {
  height: 100%;
  position: relative;
}
.cid-ty0lenPTqS .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-ty0lenPTqS .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
  border-radius: 50%;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  background-color: #1b1b1b;
  transition: 0.2s;
}
.cid-ty0lenPTqS .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-ty0lenPTqS .carousel-control,
.cid-ty0lenPTqS .close {
  background: #1b1b1b;
}
.cid-ty0lenPTqS .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-ty0lenPTqS .carousel-control-prev span {
  margin-right: 5px;
}
.cid-ty0lenPTqS .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-ty0lenPTqS .carousel-control-next span {
  margin-left: 5px;
}
.cid-ty0lenPTqS .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-ty0lenPTqS .close::before {
  content: '\e91a';
}
.cid-ty0lenPTqS .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-ty0lenPTqS .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-ty0lenPTqS .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-ty0lenPTqS .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-ty0lenPTqS .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-ty0lenPTqS .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-ty0lenPTqS .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-ty0lenPTqS .carousel-indicators li.active,
.cid-ty0lenPTqS .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-ty0lenPTqS .carousel-indicators li::after,
.cid-ty0lenPTqS .carousel-indicators li::before {
  content: none;
}
.cid-ty0lenPTqS .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-ty0lenPTqS .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-ty0lenPTqS .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-ty0lenPTqS .carousel-indicators {
    display: none;
  }
}
.cid-ty0lenPTqS .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-ty0lenPTqS .carousel-inner > .active {
  display: block;
}
.cid-ty0lenPTqS .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-ty0lenPTqS .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-ty0lenPTqS .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-ty0lenPTqS .carousel-control,
  .cid-ty0lenPTqS .carousel-indicators,
  .cid-ty0lenPTqS .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-ty0lenPTqS .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-ty0lenPTqS .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-ty0lenPTqS .carousel-indicators .active,
.cid-ty0lenPTqS .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-ty0lenPTqS .carousel-indicators .active {
  background: #fff;
}
.cid-ty0lenPTqS .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-ty0lenPTqS .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-ty0lenPTqS .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-ty0lenPTqS .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-ty0lenPTqS .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-ty0lenPTqS .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-ty0lenPTqS .carousel {
  width: 100%;
}
.cid-ty0lenPTqS .modal-backdrop.in {
  opacity: 0.8;
}
.cid-ty0lenPTqS .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-ty0lenPTqS .modal.fade .modal-dialog,
.cid-ty0lenPTqS .modal.in .modal-dialog {
  transform: none;
}
.cid-ty0lenPTqS .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-ty0lenPTqS H6 {
  text-align: center;
}
.cid-ty0lenPTqS H3 {
  color: #bbbbbb;
}
.cid-ty0leogSNc {
  padding-top: 0rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
@media (min-width: 1500px) {
  .cid-ty0leogSNc .container {
    max-width: 1400px;
  }
}
.cid-ty0leogSNc .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #47b5ed;
  margin-bottom: 2rem;
}
.cid-ty0leogSNc .card-wrapper {
  margin-top: 3rem;
}
.cid-ty0leogSNc .row {
  justify-content: center;
}
.cid-ty0leogSNc .mbr-section-title {
  color: #bbbbbb;
}
.cid-ty0leonKD4 {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #232323;
  overflow: hidden;
}
.cid-ty0leorwnB.popup-builder {
  background-color: #ffffff;
}
.cid-ty0leorwnB.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-ty0leorwnB.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-ty0leorwnB .modal-content,
.cid-ty0leorwnB .modal-dialog {
  height: auto;
}
.cid-ty0leorwnB .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-ty0leorwnB .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-ty0leorwnB .form-wrapper .mbr-form .form-group,
  .cid-ty0leorwnB .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-ty0leorwnB .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-ty0leorwnB .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-ty0leorwnB .mbr-text {
  text-align: center;
}
.cid-ty0leorwnB .pt-0 {
  padding-top: 0 !important;
}
.cid-ty0leorwnB .pb-0 {
  padding-bottom: 0 !important;
}
.cid-ty0leorwnB .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-ty0leorwnB .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-ty0leorwnB .modal-open {
  overflow: hidden;
}
.cid-ty0leorwnB .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-ty0leorwnB .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-ty0leorwnB .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-ty0leorwnB .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-ty0leorwnB .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-ty0leorwnB .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-ty0leorwnB .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-ty0leorwnB .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-ty0leorwnB .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-ty0leorwnB .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-ty0leorwnB .modal-backdrop.fade {
  opacity: 0;
}
.cid-ty0leorwnB .modal-backdrop.show {
  opacity: .5;
}
.cid-ty0leorwnB .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-ty0leorwnB .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-ty0leorwnB .modal-header {
    padding: 1rem;
  }
}
.cid-ty0leorwnB .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-ty0leorwnB .modal-header .close svg {
  fill: #353535;
}
.cid-ty0leorwnB .modal-header .close:hover {
  opacity: 1;
}
.cid-ty0leorwnB .modal-header .close:focus {
  outline: none;
}
.cid-ty0leorwnB .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
  color: #bbbbbb;
}
.cid-ty0leorwnB .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-ty0leorwnB .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-ty0leorwnB .modal-body {
    padding: 1rem;
  }
}
.cid-ty0leorwnB .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-ty0leorwnB .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-ty0leorwnB .modal-footer {
    padding: 1rem;
  }
}
.cid-ty0leorwnB .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-ty0leorwnB .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-ty0leorwnB .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-ty0leorwnB .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-ty0leorwnB .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-ty0leorwnB .modal-lg,
  .cid-ty0leorwnB .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-ty0leorwnB .modal-xl {
    max-width: 1140px;
  }
}
.cid-ty0leorwnB .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-ty0leorwnB .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-ty0leorwnB .form-group {
  margin-bottom: 1rem;
}
.cid-ty0leorwnB .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-ty0leorwnB .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-ty0leorwnB .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-ty0leorwnB .mbr-section-btn {
  margin: 0;
}
.cid-ty0leorwnB .mbr-section-btn .btn {
  margin: 0;
}
