body {
  font-family: Jost;
}
.display-1 {
  font-family: 'Adelle-Sans-W04-Bold';
  font-size: 4.6rem;
  line-height: 1.1;
}
.display-1 > .mbr-iconfont {
  font-size: 5.75rem;
}
.display-2 {
  font-family: 'Adelle Sans W04 Light';
  font-size: 2.3rem;
  line-height: 1.1;
}
.display-2 > .mbr-iconfont {
  font-size: 2.875rem;
}
.display-4 {
  font-family: 'Adelle-Sans-W04-Regular';
  font-size: 1rem;
  line-height: 1.5;
}
.display-4 > .mbr-iconfont {
  font-size: 1.25rem;
}
.display-5 {
  font-family: 'Adelle-Sans-W04-Regular';
  font-size: 1.5rem;
  line-height: 1.5;
}
.display-5 > .mbr-iconfont {
  font-size: 1.875rem;
}
.display-7 {
  font-family: 'Adelle-Sans-W04-Regular';
  font-size: 1rem;
  line-height: 1.5;
}
.display-7 > .mbr-iconfont {
  font-size: 1.25rem;
}
/* ---- Fluid typography for mobile devices ---- */
/* 1.4 - font scale ratio ( bootstrap == 1.42857 ) */
/* 100vw - current viewport width */
/* (48 - 20)  48 == 48rem == 768px, 20 == 20rem == 320px(minimal supported viewport) */
/* 0.65 - min scale variable, may vary */
@media (max-width: 992px) {
  .display-1 {
    font-size: 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: 1.84rem;
    font-size: calc( 1.455rem + (2.3 - 1.455) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.3 * (1.455rem + (2.3 - 1.455) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 0.8rem;
    font-size: calc( 1rem + (1 - 1) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1rem + (1 - 1) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 1.2rem;
    font-size: calc( 1.175rem + (1.5 - 1.175) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.175rem + (1.5 - 1.175) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-7 {
    font-size: 0.8rem;
    font-size: calc( 1rem + (1 - 1) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1rem + (1 - 1) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* Buttons */
.btn {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-sm {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-md {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-lg {
  padding: 1rem 2.6rem;
  border-radius: 4px;
}
.bg-primary {
  background-color: #18274a !important;
}
.bg-success {
  background-color: #e56b78 !important;
}
.bg-info {
  background-color: #f39200 !important;
}
.bg-warning {
  background-color: #94b654 !important;
}
.bg-danger {
  background-color: #ffffff !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #18274a !important;
  border-color: #18274a !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: #030409 !important;
  border-color: #030409 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #030409 !important;
  border-color: #030409 !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #31b7bc !important;
  border-color: #31b7bc !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: #1f7477 !important;
  border-color: #1f7477 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #1f7477 !important;
  border-color: #1f7477 !important;
}
.btn-info,
.btn-info:active {
  background-color: #f39200 !important;
  border-color: #f39200 !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: #9c5e00 !important;
  border-color: #9c5e00 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #9c5e00 !important;
  border-color: #9c5e00 !important;
}
.btn-success,
.btn-success:active {
  background-color: #e56b78 !important;
  border-color: #e56b78 !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: #d42538 !important;
  border-color: #d42538 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #d42538 !important;
  border-color: #d42538 !important;
}
.btn-warning,
.btn-warning:active {
  background-color: #94b654 !important;
  border-color: #94b654 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus,
.btn-warning.active {
  color: #ffffff !important;
  background-color: #657e36 !important;
  border-color: #657e36 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #ffffff !important;
  background-color: #657e36 !important;
  border-color: #657e36 !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #ffffff !important;
  border-color: #ffffff !important;
  color: #808080 !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus,
.btn-danger.active {
  color: #545454 !important;
  background-color: #d4d4d4 !important;
  border-color: #d4d4d4 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #808080 !important;
  background-color: #d4d4d4 !important;
  border-color: #d4d4d4 !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: #18274a;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #030409 !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: #18274a !important;
  border-color: #18274a !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #31b7bc;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #1f7477 !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: #31b7bc !important;
  border-color: #31b7bc !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #f39200;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #9c5e00 !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: #f39200 !important;
  border-color: #f39200 !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #e56b78;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #d42538 !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: #e56b78 !important;
  border-color: #e56b78 !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #94b654;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #657e36 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #ffffff !important;
  background-color: #94b654 !important;
  border-color: #94b654 !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ffffff;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #d4d4d4 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #808080 !important;
  background-color: #ffffff !important;
  border-color: #ffffff !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: #18274a !important;
}
.text-secondary {
  color: #31b7bc !important;
}
.text-success {
  color: #e56b78 !important;
}
.text-info {
  color: #f39200 !important;
}
.text-warning {
  color: #94b654 !important;
}
.text-danger {
  color: #ffffff !important;
}
.text-white {
  color: #fafafa !important;
}
.text-black {
  color: #232323 !important;
}
a.text-primary:hover,
a.text-primary:focus,
a.text-primary.active {
  color: #000000 !important;
}
a.text-secondary:hover,
a.text-secondary:focus,
a.text-secondary.active {
  color: #1c686b !important;
}
a.text-success:hover,
a.text-success:focus,
a.text-success.active {
  color: #c72334 !important;
}
a.text-info:hover,
a.text-info:focus,
a.text-info.active {
  color: #8d5500 !important;
}
a.text-warning:hover,
a.text-warning:focus,
a.text-warning.active {
  color: #5c7331 !important;
}
a.text-danger:hover,
a.text-danger:focus,
a.text-danger.active {
  color: #cccccc !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: #18274a;
}
.nav-tabs .nav-link:not(.active) {
  color: #232323;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #f39200;
}
.alert-warning {
  background-color: #94b654;
}
.alert-danger {
  background-color: #ffffff;
}
.mbr-section-btn a.btn:not(.btn-form) {
  border-radius: 100px;
}
.mbr-gallery-filter li a {
  border-radius: 100px !important;
}
.mbr-gallery-filter li.active .btn {
  background-color: #18274a;
  border-color: #18274a;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
.nav-tabs .nav-link {
  border-radius: 100px !important;
}
a,
a:hover {
  color: #18274a;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #7591d2;
}
.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: #ffe6c0;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #ccdcad;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #ffffff;
}
/* Scroll to top button*/
#scrollToTop a {
  border-radius: 100px;
}
.form-control {
  font-family: 'Adelle-Sans-W04-Regular';
  font-size: 1rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control > .mbr-iconfont {
  font-size: 1.25rem;
}
.form-control:hover,
.form-control:focus {
  box-shadow: rgba(0, 0, 0, 0.07) 0px 1px 1px 0px, rgba(0, 0, 0, 0.07) 0px 1px 3px 0px, rgba(0, 0, 0, 0.03) 0px 0px 0px 1px;
  border-color: #18274a !important;
}
.form-control:-webkit-input-placeholder {
  font-family: 'Adelle-Sans-W04-Regular';
  font-size: 1rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control:-webkit-input-placeholder > .mbr-iconfont {
  font-size: 1.25rem;
}
blockquote {
  border-color: #18274a;
}
/* Forms */
.mbr-form .input-group-btn a.btn {
  border-radius: 100px !important;
}
.mbr-form .input-group-btn a.btn:hover {
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.mbr-form .input-group-btn button[type="submit"] {
  border-radius: 100px !important;
  padding: 1rem 3rem;
}
.mbr-form .input-group-btn button[type="submit"]:hover {
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #18274a;
  color: #ffffff;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #18274a;
}
.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: #18274a;
  border-bottom-color: #18274a;
}
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_default,
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_current,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div.xdsoft_current {
  color: #ffffff !important;
  background-color: #18274a !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: #31b7bc !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='%2318274a' %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-ublcSK8xNc .navbar-dropdown {
  position: relative !important;
}
.cid-ublcSK8xNc .navbar-dropdown {
  position: absolute !important;
}
.cid-ublcSK8xNc .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-ublcSK8xNc .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-ublcSK8xNc .dropdown-item {
  border-bottom: 1px solid #dd2323;
}
.cid-ublcSK8xNc .dropdown-item:hover,
.cid-ublcSK8xNc .dropdown-item:focus {
  background: #18274a !important;
  color: white !important;
}
.cid-ublcSK8xNc .dropdown-item:hover span {
  color: white;
}
.cid-ublcSK8xNc .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-ublcSK8xNc .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-ublcSK8xNc .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-ublcSK8xNc .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-ublcSK8xNc .nav-link {
  position: relative;
}
.cid-ublcSK8xNc .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-ublcSK8xNc .container {
    flex-wrap: nowrap;
  }
}
.cid-ublcSK8xNc .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-ublcSK8xNc .dropdown-menu,
.cid-ublcSK8xNc .navbar.opened {
  background: #ffffff !important;
}
.cid-ublcSK8xNc .nav-item:focus,
.cid-ublcSK8xNc .nav-link:focus {
  outline: none;
}
.cid-ublcSK8xNc .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-ublcSK8xNc .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-ublcSK8xNc .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-ublcSK8xNc .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-ublcSK8xNc .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-ublcSK8xNc .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-ublcSK8xNc .navbar {
  min-height: 70px;
  transition: all 0.3s;
  background: rgba(255, 255, 255, 0);
}
.cid-ublcSK8xNc .navbar.opened {
  transition: all 0.3s;
}
.cid-ublcSK8xNc .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-ublcSK8xNc .navbar .navbar-logo img {
  width: auto;
}
.cid-ublcSK8xNc .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-ublcSK8xNc .navbar.collapsed {
  justify-content: center;
}
.cid-ublcSK8xNc .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-ublcSK8xNc .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-ublcSK8xNc .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.2rem);
  }
}
.cid-ublcSK8xNc .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-ublcSK8xNc .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-ublcSK8xNc .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-ublcSK8xNc .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-ublcSK8xNc .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-ublcSK8xNc .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-ublcSK8xNc .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-ublcSK8xNc .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-ublcSK8xNc .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-ublcSK8xNc .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-ublcSK8xNc .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-ublcSK8xNc .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-ublcSK8xNc .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-ublcSK8xNc .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-ublcSK8xNc .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-ublcSK8xNc .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-ublcSK8xNc .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-ublcSK8xNc .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-ublcSK8xNc .navbar.navbar-short {
  min-height: 60px;
}
.cid-ublcSK8xNc .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-ublcSK8xNc .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-ublcSK8xNc .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-ublcSK8xNc .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-ublcSK8xNc .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-ublcSK8xNc .dropdown-item.active,
.cid-ublcSK8xNc .dropdown-item:active {
  background-color: transparent;
}
.cid-ublcSK8xNc .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-ublcSK8xNc .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-ublcSK8xNc .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-ublcSK8xNc .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-ublcSK8xNc .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-ublcSK8xNc .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-ublcSK8xNc ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-ublcSK8xNc .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-ublcSK8xNc button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-ublcSK8xNc button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #18274a;
}
.cid-ublcSK8xNc button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-ublcSK8xNc button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-ublcSK8xNc button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-ublcSK8xNc button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-ublcSK8xNc nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-ublcSK8xNc nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-ublcSK8xNc nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-ublcSK8xNc nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-ublcSK8xNc .navbar-dropdown {
  padding: 0 1rem;
}
.cid-ublcSK8xNc a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0;
}
.cid-ublcSK8xNc .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-ublcSK8xNc .navbar {
    height: 70px;
  }
  .cid-ublcSK8xNc .navbar.opened {
    height: auto;
  }
  .cid-ublcSK8xNc .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-ublcSK8xNc .custom-navigation .language-wrapper + .container:after {
  content: "";
  display: none;
  height: 1px;
  background: #E9E4E2;
  position: absolute;
  top: 100%;
  left: 5rem;
  right: 5rem;
  margin-top: -2px;
  margin-left: -10px;
}
@media screen and (max-width: 479px) {
  .cid-ublcSK8xNc .custom-navigation.navbar .navbar-logo img {
    height: 2rem !important;
  }
}
@media screen and (min-width: 768px) and (max-width: 991px) {
  .cid-ublcSK8xNc .custom-navigation .container {
    padding-left: 3rem;
    padding-right: 3rem;
  }
}
@media screen and (max-width: 991px) {
  .cid-ublcSK8xNc .custom-navigation {
    padding-top: 40px;
  }
  .cid-ublcSK8xNc .custom-navigation .navbar-nav {
    margin-bottom: 2.125rem;
  }
  .cid-ublcSK8xNc .custom-navigation a.dropdown-item {
    border-bottom: none;
    font-size: .85em;
  }
  .cid-ublcSK8xNc .custom-navigation a.dropdown-item:hover {
    text-decoration: underline;
  }
}
@media screen and (min-width: 992px) {
  .cid-ublcSK8xNc .custom-navigation .container {
    position: relative;
    padding-left: 4rem;
    padding-right: 4rem;
  }
  .cid-ublcSK8xNc .custom-navigation .language-wrapper + .container:after {
    display: block;
  }
  .cid-ublcSK8xNc .custom-navigation .navbar-brand {
    margin-top: 30px;
  }
  .cid-ublcSK8xNc .custom-navigation.navbar .navbar-collapse {
    justify-content: right;
  }
  .cid-ublcSK8xNc .custom-navigation a.nav-link {
    margin-bottom: 0!important;
    padding-bottom: 35px!important;
    padding-top: 60px !important;
    font-weight: 400;
  }
  .cid-ublcSK8xNc .custom-navigation a.nav-link.active-item {
    border-bottom: 3px solid;
  }
  .cid-ublcSK8xNc .custom-navigation .navbar-nav .dropdown-menu {
    margin-top: -20px;
  }
  .cid-ublcSK8xNc .custom-navigation li.nav-item > a.nav-link:hover,
  .cid-ublcSK8xNc .custom-navigation li.dropdown.open > a.nav-link {
    opacity: .75;
  }
  .cid-ublcSK8xNc .custom-navigation a.dropdown-item {
    font-size: 15px!important;
    line-height: 19px!important;
    font-weight: 400!important;
    border-bottom: none;
  }
  .cid-ublcSK8xNc .custom-navigation a.dropdown-item:first-of-type {
    padding-top: 20px;
  }
  .cid-ublcSK8xNc .custom-navigation a.dropdown-item:last-of-type {
    padding-bottom: 20px;
  }
}
@media screen and (min-width: 992px) and (max-width: 1199px) {
  .cid-ublcSK8xNc .custom-navigation .navbar-brand .navbar-logo img {
    width: 200px!important;
    height: auto!important;
  }
}
.cid-ublcSK8xNc .language-wrapper {
  width: 100%;
  text-align: right;
  z-index: 999999;
  background-color: #E9E4E3 !important;
  position: absolute;
  top: 0;
  left: 0;
}
.cid-ublcSK8xNc .language-wrapper .col-12 {
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.cid-ublcSK8xNc .language-wrapper span.mbr-iconfont {
  margin-right: 10px;
}
.cid-ublcSK8xNc .language-select {
  background-color: transparent;
  border: none;
  color: #18274A;
  font-size: 14px;
  padding: 8px 16px;
  cursor: pointer;
}
.cid-ublcSK8xNc .language-select:focus {
  outline: none;
}
.cid-ubleYUl0ZR {
  padding-top: 10rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-ubleYUl0ZR .mbr-fallback-image.disabled {
  display: none;
}
.cid-ubleYUl0ZR .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ubleYUl0ZR .breadcrumb-container {
  display: flex;
  flex-direction: column-reverse;
}
.cid-ubleYUl0ZR .breadcrumb-container h1 {
  font-size: 2.8125rem;
  line-height: 1.6;
  margin-top: 15px;
}
.cid-ubleYUl0ZR .breadcrumb-container p {
  text-align: left;
  font-size: 13px;
  line-height: 16px;
  margin-top: 25px;
}
.cid-ubleYUl0ZR .breadcrumb-container p a {
  font-size: 13px;
  line-height: 16px;
  opacity: 0.4;
}
.cid-ubleYUl0ZR .breadcrumb-container p a:last-of-type {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-ubleYUl0ZR .breadcrumb-container {
    padding-left: 2rem;
    padding-right: 2rem;
  }
  .cid-ubleYUl0ZR .breadcrumb-container h1 {
    font-size: 1.75rem;
  }
  .cid-ubleYUl0ZR .breadcrumb-container p {
    display: none;
  }
}
@media (min-width: 768px) {
  .cid-ubleYUl0ZR .breadcrumb-container {
    padding-right: 3rem;
    padding-left: 3rem;
  }
}
@media (min-width: 992px) {
  .cid-ubleYUl0ZR .breadcrumb-container {
    padding-right: 4rem;
    padding-left: 4rem;
  }
}
.cid-ucV1F7g4FN {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-ucV1F7g4FN .mbr-section-title {
  text-align: left;
}
.cid-ucV1F7g4FN .mbr-section-text {
  text-align: left;
}
.cid-ucV1F7g4FN button[type="submit"] {
  border-radius: 100px;
}
.cid-ucV1F7g4FN a[type="submit"],
.cid-ucV1F7g4FN button[type="submit"] {
  margin-top: 0;
}
.cid-ucV1F7g4FN .wsSearchError {
  text-align: center;
  background-color: #18274a;
}
.cid-ucV1F7g4FN mark {
  padding: 0;
  color: inherit;
  background-color: #ffe161;
}
.cid-ucV1F7g4FN .row .spinner-border,
.cid-ucV1F7g4FN .row .spinner-grow {
  width: 32px;
  color: #18274a;
}
.cid-ucV1F7g4FN .gdpr-block {
  display: none;
}
.cid-ucV1F7g4FN .form-control {
  border-radius: 100px !important;
}
.cid-ucV1F7g4FN .clear-button {
  display: none;
  background-color: #007BFF;
  margin-top: 10px;
}
.cid-ucV1F7g4FN .mbr-section-btn.d-flex {
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
}
.cid-ucV1F7g4FN .mbr-section-btn .btn + .btn {
  margin-left: 10px;
}
@media (max-width: 767.98px) {
  .cid-ucV1F7g4FN .mbr-section-btn.d-flex {
    flex-direction: row;
    justify-content: center;
    align-items: center;
    width: 100%;
  }
  .cid-ucV1F7g4FN .mbr-section-btn .btn {
    width: auto;
    margin-bottom: 0 !important;
  }
  .cid-ucV1F7g4FN .mbr-section-btn .btn + .btn {
    margin-left: 10px;
  }
  .cid-ucV1F7g4FN .mbr-section-btn .col-auto {
    display: flex;
    align-items: center;
  }
}
.cid-ucV1F7g4FN .wsSearchInput::placeholder {
  color: gray;
}
.cid-uauGcE7iYG {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uauGcE7iYG .mbr-fallback-image.disabled {
  display: none;
}
.cid-uauGcE7iYG .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uauGcE7iYG .card .card-header {
  background-color: transparent;
  margin-bottom: 0;
}
.cid-uauGcE7iYG .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-uauGcE7iYG .panel-title:not(.collapsed) .mbr-iconfont {
  transform: rotate(-45deg);
}
.cid-uauGcE7iYG .mbr-iconfont {
  padding-left: 1rem;
  font-family: 'Moririse2' !important;
  font-size: 1.4rem !important;
  color: #18274a;
}
.cid-uauGcE7iYG .panel-body,
.cid-uauGcE7iYG .card-header {
  padding: 1rem 0;
}
.cid-uauGcE7iYG .panel-title-edit {
  color: #18274a;
}
.cid-uauGcE7iYG H3 {
  text-align: left;
}
.cid-uauGcE7iYG .card-wrapper {
  background: #ffffff;
  border-radius: 4px;
}
@media (max-width: 767px) {
  .cid-uauGcE7iYG .card-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-uauGcE7iYG .card-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uauGcE7iYG .card-wrapper {
    padding: 4rem;
  }
}
.cid-uauGcE7iYG .section-wrap {
  background: #fbfaf9;
  border-radius: 4px;
}
.cid-uauGcE7iYG H4 {
  text-align: left;
}
.cid-uauGcE7iYG .imgpic {
  padding: 2px;
  margin: 2px;
  width: 120px;
  height: auto;
}
@media (max-width: 991px) {
  .cid-uauGcE7iYG .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uauGcE7iYG .myrow {
  flex-direction: row-reverse;
}
.cid-uauGcE7iYG img {
  width: 100%;
}
.cid-uauGcE7iYG .inline-content {
  display: flex;
  align-items: flex-end;
  white-space: nowrap;
  padding-top: 10px;
  padding-bottom: 10px;
}
.cid-uauGcE7iYG .inline-image {
  width: auto;
  height: 60px;
  margin-right: 10px;
}
.cid-uauGcE7iYG .icon-align-bottom {
  align-self: flex-end;
}
@media (max-width: 767px) {
  .cid-uauGcE7iYG .inline-content {
    flex-direction: row;
    white-space: normal;
    align-items: center;
  }
  .cid-uauGcE7iYG .inline-image,
  .cid-uauGcE7iYG .icon-align-bottom {
    margin-right: 0px;
  }
}
@keyframes highlightFadeOut {
  0% {
    background-color: #31B7BC;
  }
  100% {
    background-color: transparent;
  }
}
.cid-uauGcE7iYG .highlight {
  animation: highlightFadeOut 2s forwards;
}
.cid-ucV1GvfgeW {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #fbfaf9;
}
.cid-ucV1HcLFTe {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-ucV1HcLFTe .mbr-text {
  color: #bbbbbb;
}
.cid-ucV1HcLFTe .footer-text {
  font-size: smaller;
}
.cid-ufuoXC7luq.popup-builder {
  background-color: #ffffff;
}
.cid-ufuoXC7luq.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-ufuoXC7luq.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-ufuoXC7luq .modal-content,
.cid-ufuoXC7luq .modal-dialog {
  height: auto;
}
.cid-ufuoXC7luq .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-ufuoXC7luq .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-ufuoXC7luq .form-wrapper .mbr-form .form-group,
  .cid-ufuoXC7luq .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-ufuoXC7luq .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-ufuoXC7luq .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-ufuoXC7luq .mbr-text {
  text-align: left;
}
.cid-ufuoXC7luq .pt-0 {
  padding-top: 0 !important;
}
.cid-ufuoXC7luq .pb-0 {
  padding-bottom: 0 !important;
}
.cid-ufuoXC7luq .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-ufuoXC7luq .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-ufuoXC7luq .modal-open {
  overflow: hidden;
}
.cid-ufuoXC7luq .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-ufuoXC7luq .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-ufuoXC7luq .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-ufuoXC7luq .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-ufuoXC7luq .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-ufuoXC7luq .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-ufuoXC7luq .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-ufuoXC7luq .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-ufuoXC7luq .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-ufuoXC7luq .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-ufuoXC7luq .modal-backdrop.fade {
  opacity: 0;
}
.cid-ufuoXC7luq .modal-backdrop.show {
  opacity: .5;
}
.cid-ufuoXC7luq .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-ufuoXC7luq .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-ufuoXC7luq .modal-header {
    padding: 1rem;
  }
}
.cid-ufuoXC7luq .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-ufuoXC7luq .modal-header .close svg {
  fill: #18274a;
}
.cid-ufuoXC7luq .modal-header .close:hover {
  opacity: 1;
}
.cid-ufuoXC7luq .modal-header .close:focus {
  outline: none;
}
.cid-ufuoXC7luq .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: left;
}
.cid-ufuoXC7luq .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-ufuoXC7luq .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-ufuoXC7luq .modal-body {
    padding: 1rem;
  }
}
.cid-ufuoXC7luq .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-ufuoXC7luq .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-ufuoXC7luq .modal-footer {
    padding: 1rem;
  }
}
.cid-ufuoXC7luq .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-ufuoXC7luq .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-ufuoXC7luq .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-ufuoXC7luq .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-ufuoXC7luq .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-ufuoXC7luq .modal-lg,
  .cid-ufuoXC7luq .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-ufuoXC7luq .modal-xl {
    max-width: 1140px;
  }
}
.cid-ufuoXC7luq .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-ufuoXC7luq .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-ufuoXC7luq .form-group {
  margin-bottom: 1rem;
}
.cid-ufuoXC7luq .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-ufuoXC7luq .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-ufuoXC7luq .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-ufuoXC7luq .mbr-section-btn {
  margin: 0;
}
.cid-ufuoXC7luq .mbr-section-btn .btn {
  margin: 0;
}
.cid-ufuoXC7luq .inline-svg {
  height: 1em;
  width: auto;
  vertical-align: middle;
  margin: 0;
  padding: 0;
  display: inline;
}
.cid-ua1qs1fqlT {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
  flex-direction: column;
  justify-content: center;
}
.cid-ua1qs1fqlT .mbr-fallback-image.disabled {
  display: none;
}
.cid-ua1qs1fqlT .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-ua1qs1fqlT .container {
    padding: 0 16px;
  }
}
.cid-ua1qs1fqlT .row {
  justify-content: space-between;
}
.cid-ua1qs1fqlT .desc-wrapper .mbr-desc {
  margin-bottom: 32px;
}
.cid-ua1qs1fqlT .content-wrapper .mbr-section-title {
  margin-bottom: 32px;
}
.cid-ua1qs1fqlT .content-wrapper .mbr-text {
  margin-bottom: 22px;
}
@media (max-width: 992px) {
  .cid-ua1qs1fqlT .image-wrapper {
    margin-top: 32px;
  }
}
.cid-ua1qs1fqlT .image-wrapper img {
  width: 100%;
  max-width: 850px;
  height: auto;
  object-fit: cover;
  border-radius: 0rem !important;
}
.cid-ua1qs1fqlT .mbr-desc {
  color: #353535;
}
.cid-ua1qs1fqlT .mbr-section-title {
  color: #000000;
}
.cid-ua1qs1fqlT .mbr-text {
  color: #000000;
}
.cid-ua1sFcioyg {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
  flex-direction: column;
  justify-content: center;
}
.cid-ua1sFcioyg .mbr-fallback-image.disabled {
  display: none;
}
.cid-ua1sFcioyg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-ua1sFcioyg .container {
    padding: 0 16px;
  }
}
.cid-ua1sFcioyg .row {
  justify-content: space-between;
}
.cid-ua1sFcioyg .desc-wrapper .mbr-desc {
  margin-bottom: 32px;
}
.cid-ua1sFcioyg .content-wrapper .mbr-section-title {
  margin-bottom: 32px;
}
.cid-ua1sFcioyg .content-wrapper .mbr-text {
  margin-bottom: 22px;
}
@media (max-width: 992px) {
  .cid-ua1sFcioyg .image-range-button {
    margin-top: 32px;
  }
}
.cid-ua1sFcioyg .image-range-button img {
  width: 80px;
  max-width: 850px;
  height: auto;
}
@media (max-width: 992px) {
  .cid-ua1sFcioyg .image-wrapper {
    margin-top: 32px;
  }
}
.cid-ua1sFcioyg .image-wrapper img {
  width: 100%;
  max-width: 850px;
  height: auto;
  object-fit: cover;
  border-radius: 0rem !important;
}
.cid-ua1sFcioyg .mbr-desc {
  color: #353535;
}
.cid-ua1sFcioyg .mbr-section-title {
  color: #000000;
}
.cid-ua1sFcioyg .mbr-text {
  color: #000000;
}
.cid-u7yAL8qeaW {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
  flex-direction: column;
  justify-content: center;
}
.cid-u7yAL8qeaW .mbr-fallback-image.disabled {
  display: none;
}
.cid-u7yAL8qeaW .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-u7yAL8qeaW .container {
    padding: 0 16px;
  }
}
.cid-u7yAL8qeaW .row {
  justify-content: space-between;
}
.cid-u7yAL8qeaW .desc-wrapper .mbr-desc {
  margin-bottom: 32px;
}
.cid-u7yAL8qeaW .content-wrapper .mbr-section-title {
  margin-bottom: 32px;
}
.cid-u7yAL8qeaW .content-wrapper .mbr-text {
  margin-bottom: 22px;
}
@media (max-width: 992px) {
  .cid-u7yAL8qeaW .image-wrapper {
    margin-top: 32px;
  }
}
.cid-u7yAL8qeaW .image-wrapper img {
  width: 100%;
  max-width: 850px;
  height: auto;
  object-fit: cover;
  border-radius: 0rem !important;
}
.cid-u7yAL8qeaW .mbr-desc {
  color: #353535;
}
.cid-u7yAL8qeaW .mbr-section-title {
  color: #000000;
}
.cid-u7yAL8qeaW .mbr-text {
  color: #000000;
}
.cid-u7yAL8OAhT {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #fbfaf9;
  flex-direction: column;
  justify-content: center;
}
.cid-u7yAL8OAhT .mbr-fallback-image.disabled {
  display: none;
}
.cid-u7yAL8OAhT .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-u7yAL8OAhT .container {
    padding: 0 16px;
  }
}
.cid-u7yAL8OAhT .row {
  justify-content: space-between;
}
.cid-u7yAL8OAhT .desc-wrapper .mbr-desc {
  margin-bottom: 32px;
}
.cid-u7yAL8OAhT .content-wrapper .mbr-section-title {
  margin-bottom: 32px;
}
.cid-u7yAL8OAhT .content-wrapper .mbr-text {
  margin-bottom: 22px;
}
@media (max-width: 992px) {
  .cid-u7yAL8OAhT .image-wrapper {
    margin-top: 32px;
  }
}
.cid-u7yAL8OAhT .image-wrapper img {
  width: 100%;
  max-width: 850px;
  height: auto;
  object-fit: cover;
  border-radius: 0rem !important;
}
.cid-u7yAL8OAhT .mbr-desc {
  color: #353535;
}
.cid-u7yAL8OAhT .mbr-section-title {
  color: #000000;
}
.cid-u7yAL8OAhT .mbr-text {
  color: #000000;
}
.cid-u7yHhK9LBk {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
  flex-direction: column;
  justify-content: center;
}
.cid-u7yHhK9LBk .mbr-fallback-image.disabled {
  display: none;
}
.cid-u7yHhK9LBk .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-u7yHhK9LBk .container {
    padding: 0 16px;
  }
}
.cid-u7yHhK9LBk .row {
  justify-content: space-between;
}
.cid-u7yHhK9LBk .desc-wrapper .mbr-desc {
  margin-bottom: 32px;
}
.cid-u7yHhK9LBk .content-wrapper .mbr-section-title {
  margin-bottom: 32px;
}
.cid-u7yHhK9LBk .content-wrapper .mbr-text {
  margin-bottom: 22px;
}
@media (max-width: 992px) {
  .cid-u7yHhK9LBk .image-range-button {
    margin-top: 32px;
  }
}
.cid-u7yHhK9LBk .image-range-button img {
  width: 80px;
  max-width: 850px;
  height: auto;
}
@media (max-width: 992px) {
  .cid-u7yHhK9LBk .image-wrapper {
    margin-top: 32px;
  }
}
.cid-u7yHhK9LBk .image-wrapper img {
  width: 100%;
  max-width: 850px;
  height: auto;
  object-fit: cover;
  border-radius: 0rem !important;
}
.cid-u7yHhK9LBk .mbr-desc {
  color: #353535;
}
.cid-u7yHhK9LBk .mbr-section-title {
  color: #000000;
}
.cid-u7yHhK9LBk .mbr-text {
  color: #000000;
}
.cid-u7yHIpChCf {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #fbfaf9;
  flex-direction: column;
  justify-content: center;
}
.cid-u7yHIpChCf .mbr-fallback-image.disabled {
  display: none;
}
.cid-u7yHIpChCf .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-u7yHIpChCf .container {
    padding: 0 16px;
  }
}
.cid-u7yHIpChCf .row {
  justify-content: space-between;
}
.cid-u7yHIpChCf .desc-wrapper .mbr-desc {
  margin-bottom: 32px;
}
.cid-u7yHIpChCf .content-wrapper .mbr-section-title {
  margin-bottom: 32px;
}
.cid-u7yHIpChCf .content-wrapper .mbr-text {
  margin-bottom: 22px;
}
@media (max-width: 992px) {
  .cid-u7yHIpChCf .image-wrapper {
    margin-top: 32px;
  }
}
.cid-u7yHIpChCf .image-wrapper img {
  width: 100%;
  max-width: 850px;
  height: auto;
  object-fit: cover;
  border-radius: 0rem !important;
}
.cid-u7yHIpChCf .mbr-desc {
  color: #353535;
}
.cid-u7yHIpChCf .mbr-section-title {
  color: #000000;
}
.cid-u7yHIpChCf .mbr-text {
  color: #000000;
}
.cid-u7yHxRNiXz {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
  flex-direction: column;
  justify-content: center;
}
.cid-u7yHxRNiXz .mbr-fallback-image.disabled {
  display: none;
}
.cid-u7yHxRNiXz .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-u7yHxRNiXz .container {
    padding: 0 16px;
  }
}
.cid-u7yHxRNiXz .row {
  justify-content: space-between;
}
.cid-u7yHxRNiXz .desc-wrapper .mbr-desc {
  margin-bottom: 32px;
}
.cid-u7yHxRNiXz .content-wrapper .mbr-section-title {
  margin-bottom: 32px;
}
.cid-u7yHxRNiXz .content-wrapper .mbr-text {
  margin-bottom: 22px;
}
@media (max-width: 992px) {
  .cid-u7yHxRNiXz .image-wrapper {
    margin-top: 32px;
  }
}
.cid-u7yHxRNiXz .image-wrapper img {
  width: 100%;
  max-width: 850px;
  height: auto;
  object-fit: cover;
  border-radius: 0rem !important;
}
.cid-u7yHxRNiXz .mbr-desc {
  color: #353535;
}
.cid-u7yHxRNiXz .mbr-section-title {
  color: #000000;
}
.cid-u7yHxRNiXz .mbr-text {
  color: #000000;
}
.cid-ua1tBrsGyf {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
  flex-direction: column;
  justify-content: center;
}
.cid-ua1tBrsGyf .mbr-fallback-image.disabled {
  display: none;
}
.cid-ua1tBrsGyf .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-ua1tBrsGyf .container {
    padding: 0 16px;
  }
}
.cid-ua1tBrsGyf .row {
  justify-content: space-between;
}
.cid-ua1tBrsGyf .desc-wrapper .mbr-desc {
  margin-bottom: 32px;
}
.cid-ua1tBrsGyf .content-wrapper .mbr-section-title {
  margin-bottom: 32px;
}
.cid-ua1tBrsGyf .content-wrapper .mbr-text {
  margin-bottom: 22px;
}
@media (max-width: 992px) {
  .cid-ua1tBrsGyf .image-wrapper {
    margin-top: 32px;
  }
}
.cid-ua1tBrsGyf .image-wrapper img {
  width: 100%;
  max-width: 850px;
  height: auto;
  object-fit: cover;
  border-radius: 0rem !important;
}
.cid-ua1tBrsGyf .mbr-desc {
  color: #353535;
}
.cid-ua1tBrsGyf .mbr-section-title {
  color: #000000;
}
.cid-ua1tBrsGyf .mbr-text {
  color: #000000;
}
.cid-ua1tBrsGyf .dentaura-list-class {
  list-style-type: none;
}
.cid-ua1uvLpCd4 {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
  flex-direction: column;
  justify-content: center;
}
.cid-ua1uvLpCd4 .mbr-fallback-image.disabled {
  display: none;
}
.cid-ua1uvLpCd4 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-ua1uvLpCd4 .container {
    padding: 0 16px;
  }
}
.cid-ua1uvLpCd4 .row {
  justify-content: space-between;
}
.cid-ua1uvLpCd4 .desc-wrapper .mbr-desc {
  margin-bottom: 32px;
}
.cid-ua1uvLpCd4 .content-wrapper .mbr-section-title {
  margin-bottom: 32px;
}
.cid-ua1uvLpCd4 .content-wrapper .mbr-text {
  margin-bottom: 22px;
}
@media (max-width: 992px) {
  .cid-ua1uvLpCd4 .image-wrapper {
    margin-top: 32px;
  }
}
.cid-ua1uvLpCd4 .image-wrapper img {
  width: 100%;
  max-width: 850px;
  height: auto;
  object-fit: cover;
  border-radius: 0rem !important;
}
.cid-ua1uvLpCd4 .mbr-desc {
  color: #353535;
}
.cid-ua1uvLpCd4 .mbr-section-title {
  color: #000000;
}
.cid-ua1uvLpCd4 .mbr-text {
  color: #000000;
}
.cid-ua5C1Vgqxp {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
  flex-direction: column;
  justify-content: center;
}
.cid-ua5C1Vgqxp .mbr-fallback-image.disabled {
  display: none;
}
.cid-ua5C1Vgqxp .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-ua5C1Vgqxp .container {
    padding: 0 16px;
  }
}
.cid-ua5C1Vgqxp .row {
  justify-content: space-between;
}
.cid-ua5C1Vgqxp .desc-wrapper .mbr-desc {
  margin-bottom: 32px;
}
.cid-ua5C1Vgqxp .content-wrapper .mbr-section-title {
  margin-bottom: 32px;
}
.cid-ua5C1Vgqxp .content-wrapper .mbr-text {
  margin-bottom: 22px;
}
@media (max-width: 992px) {
  .cid-ua5C1Vgqxp .image-wrapper {
    margin-top: 32px;
  }
}
.cid-ua5C1Vgqxp .image-wrapper img {
  width: 100%;
  max-width: 850px;
  height: auto;
  object-fit: cover;
  border-radius: 0rem !important;
}
.cid-ua5C1Vgqxp .mbr-desc {
  color: #353535;
}
.cid-ua5C1Vgqxp .mbr-section-title {
  color: #000000;
}
.cid-ua5C1Vgqxp .mbr-text {
  color: #000000;
}
.cid-ua5KLi6Seq {
  padding-top: 3rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
  flex-direction: column;
  justify-content: center;
}
.cid-ua5KLi6Seq .mbr-fallback-image.disabled {
  display: none;
}
.cid-ua5KLi6Seq .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-ua5KLi6Seq .container {
    padding: 0 16px;
  }
}
.cid-ua5KLi6Seq .row {
  justify-content: space-between;
}
.cid-ua5KLi6Seq .desc-wrapper .mbr-desc {
  margin-bottom: 32px;
}
.cid-ua5KLi6Seq .content-wrapper .mbr-section-title {
  margin-bottom: 32px;
}
.cid-ua5KLi6Seq .content-wrapper .mbr-text {
  margin-bottom: 22px;
}
@media (max-width: 992px) {
  .cid-ua5KLi6Seq .image-wrapper {
    margin-top: 32px;
  }
}
.cid-ua5KLi6Seq .image-wrapper img {
  width: 100%;
  max-width: 850px;
  height: auto;
  object-fit: cover;
  border-radius: 0rem !important;
}
.cid-ua5KLi6Seq .mbr-desc {
  color: #353535;
}
.cid-ua5KLi6Seq .mbr-section-title {
  color: #000000;
}
.cid-ua5KLi6Seq .mbr-text {
  color: #000000;
}
.cid-ua1vijehvE {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
  flex-direction: column;
  justify-content: center;
}
.cid-ua1vijehvE .mbr-fallback-image.disabled {
  display: none;
}
.cid-ua1vijehvE .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-ua1vijehvE .container {
    padding: 0 16px;
  }
}
.cid-ua1vijehvE .row {
  justify-content: space-between;
}
.cid-ua1vijehvE .desc-wrapper .mbr-desc {
  margin-bottom: 32px;
}
.cid-ua1vijehvE .content-wrapper .mbr-section-title {
  margin-bottom: 32px;
}
.cid-ua1vijehvE .content-wrapper .mbr-text {
  margin-bottom: 22px;
}
@media (max-width: 992px) {
  .cid-ua1vijehvE .image-wrapper {
    margin-top: 32px;
  }
}
.cid-ua1vijehvE .image-wrapper img {
  width: 100%;
  max-width: 850px;
  height: auto;
  object-fit: cover;
  border-radius: 0rem !important;
}
@media (max-width: 992px) {
  .cid-ua1vijehvE .image-range-button {
    margin-top: 32px;
  }
}
.cid-ua1vijehvE .image-range-button img {
  width: 10%;
  max-width: 850px;
  height: auto;
}
.cid-ua1vijehvE .mbr-desc {
  color: #353535;
}
.cid-ua1vijehvE .mbr-section-title {
  color: #000000;
}
.cid-ua1vijehvE .mbr-text {
  color: #000000;
}
.cid-uc4wBlnvyt {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
  flex-direction: column;
  justify-content: center;
}
.cid-uc4wBlnvyt .mbr-fallback-image.disabled {
  display: none;
}
.cid-uc4wBlnvyt .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-uc4wBlnvyt .container {
    padding: 0 16px;
  }
}
.cid-uc4wBlnvyt .row {
  justify-content: space-between;
}
.cid-uc4wBlnvyt .desc-wrapper .mbr-desc {
  margin-bottom: 32px;
}
.cid-uc4wBlnvyt .content-wrapper .mbr-section-title {
  margin-bottom: 32px;
}
.cid-uc4wBlnvyt .content-wrapper .mbr-text {
  margin-bottom: 22px;
}
@media (max-width: 992px) {
  .cid-uc4wBlnvyt .image-wrapper {
    margin-top: 32px;
  }
}
.cid-uc4wBlnvyt .image-wrapper img {
  width: 100%;
  max-width: 850px;
  height: auto;
  object-fit: cover;
  border-radius: 0rem !important;
}
.cid-uc4wBlnvyt .mbr-desc {
  color: #353535;
}
.cid-uc4wBlnvyt .mbr-section-title {
  color: #000000;
}
.cid-uc4wBlnvyt .mbr-text {
  color: #000000;
}
.cid-uc4yY0OSM0 {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
  flex-direction: column;
  justify-content: center;
}
.cid-uc4yY0OSM0 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uc4yY0OSM0 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-uc4yY0OSM0 .container {
    padding: 0 16px;
  }
}
.cid-uc4yY0OSM0 .row {
  justify-content: space-between;
}
.cid-uc4yY0OSM0 .desc-wrapper .mbr-desc {
  margin-bottom: 32px;
}
.cid-uc4yY0OSM0 .content-wrapper .mbr-section-title {
  margin-bottom: 32px;
}
.cid-uc4yY0OSM0 .content-wrapper .mbr-text {
  margin-bottom: 22px;
}
@media (max-width: 992px) {
  .cid-uc4yY0OSM0 .image-wrapper {
    margin-top: 32px;
  }
}
.cid-uc4yY0OSM0 .image-wrapper img {
  width: 100%;
  max-width: 850px;
  height: auto;
  object-fit: cover;
  border-radius: 0rem !important;
}
.cid-uc4yY0OSM0 .mbr-desc {
  color: #353535;
}
.cid-uc4yY0OSM0 .mbr-section-title {
  color: #000000;
}
.cid-uc4yY0OSM0 .mbr-text {
  color: #000000;
}
.cid-uc4yS2BVRK {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
  flex-direction: column;
  justify-content: center;
}
.cid-uc4yS2BVRK .mbr-fallback-image.disabled {
  display: none;
}
.cid-uc4yS2BVRK .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-uc4yS2BVRK .container {
    padding: 0 16px;
  }
}
.cid-uc4yS2BVRK .row {
  justify-content: space-between;
}
.cid-uc4yS2BVRK .desc-wrapper .mbr-desc {
  margin-bottom: 32px;
}
.cid-uc4yS2BVRK .content-wrapper .mbr-section-title {
  margin-bottom: 32px;
}
.cid-uc4yS2BVRK .content-wrapper .mbr-text {
  margin-bottom: 22px;
}
@media (max-width: 992px) {
  .cid-uc4yS2BVRK .image-wrapper {
    margin-top: 32px;
  }
}
.cid-uc4yS2BVRK .image-wrapper img {
  width: 100%;
  max-width: 850px;
  height: auto;
  object-fit: cover;
  border-radius: 0rem !important;
}
.cid-uc4yS2BVRK .mbr-desc {
  color: #353535;
}
.cid-uc4yS2BVRK .mbr-section-title {
  color: #000000;
}
.cid-uc4yS2BVRK .mbr-text {
  color: #000000;
}
.cid-uc4yJ0XePj {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
  flex-direction: column;
  justify-content: center;
}
.cid-uc4yJ0XePj .mbr-fallback-image.disabled {
  display: none;
}
.cid-uc4yJ0XePj .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-uc4yJ0XePj .container {
    padding: 0 16px;
  }
}
.cid-uc4yJ0XePj .row {
  justify-content: space-between;
}
.cid-uc4yJ0XePj .desc-wrapper .mbr-desc {
  margin-bottom: 32px;
}
.cid-uc4yJ0XePj .content-wrapper .mbr-section-title {
  margin-bottom: 32px;
}
.cid-uc4yJ0XePj .content-wrapper .mbr-text {
  margin-bottom: 22px;
}
@media (max-width: 992px) {
  .cid-uc4yJ0XePj .image-wrapper {
    margin-top: 32px;
  }
}
.cid-uc4yJ0XePj .image-wrapper img {
  width: 100%;
  max-width: 850px;
  height: auto;
  object-fit: cover;
  border-radius: 0rem !important;
}
.cid-uc4yJ0XePj .mbr-desc {
  color: #353535;
}
.cid-uc4yJ0XePj .mbr-section-title {
  color: #000000;
}
.cid-uc4yJ0XePj .mbr-text {
  color: #000000;
}
.cid-uIlDVOfm2Y {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
  flex-direction: column;
  justify-content: center;
}
.cid-uIlDVOfm2Y .mbr-fallback-image.disabled {
  display: none;
}
.cid-uIlDVOfm2Y .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-uIlDVOfm2Y .container {
    padding: 0 16px;
  }
}
.cid-uIlDVOfm2Y .row {
  justify-content: space-between;
}
.cid-uIlDVOfm2Y .desc-wrapper .mbr-desc {
  margin-bottom: 32px;
}
.cid-uIlDVOfm2Y .content-wrapper .mbr-section-title {
  margin-bottom: 32px;
}
.cid-uIlDVOfm2Y .content-wrapper .mbr-text {
  margin-bottom: 22px;
}
@media (max-width: 992px) {
  .cid-uIlDVOfm2Y .image-wrapper {
    margin-top: 32px;
  }
}
.cid-uIlDVOfm2Y .image-wrapper img {
  width: 100%;
  max-width: 850px;
  height: auto;
  object-fit: cover;
  border-radius: 0rem !important;
}
.cid-uIlDVOfm2Y .mbr-desc {
  color: #353535;
}
.cid-uIlDVOfm2Y .mbr-section-title {
  color: #000000;
}
.cid-uIlDVOfm2Y .mbr-text {
  color: #000000;
}
.cid-uIlFwQcq7I {
  padding-top: 3rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
  flex-direction: column;
  justify-content: center;
}
.cid-uIlFwQcq7I .mbr-fallback-image.disabled {
  display: none;
}
.cid-uIlFwQcq7I .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-uIlFwQcq7I .container {
    padding: 0 16px;
  }
}
.cid-uIlFwQcq7I .row {
  justify-content: space-between;
}
.cid-uIlFwQcq7I .desc-wrapper .mbr-desc {
  margin-bottom: 32px;
}
.cid-uIlFwQcq7I .content-wrapper .mbr-section-title {
  margin-bottom: 32px;
}
.cid-uIlFwQcq7I .content-wrapper .mbr-text {
  margin-bottom: 22px;
}
@media (max-width: 992px) {
  .cid-uIlFwQcq7I .image-wrapper {
    margin-top: 32px;
  }
}
.cid-uIlFwQcq7I .image-wrapper img {
  width: 100%;
  max-width: 850px;
  height: auto;
  object-fit: cover;
  border-radius: 0rem !important;
}
@media (max-width: 992px) {
  .cid-uIlFwQcq7I .image-range-button {
    margin-top: 32px;
  }
}
.cid-uIlFwQcq7I .image-range-button img {
  width: 10%;
  max-width: 850px;
  height: auto;
}
.cid-uIlFwQcq7I .mbr-desc {
  color: #353535;
}
.cid-uIlFwQcq7I .mbr-section-title {
  color: #000000;
}
.cid-uIlFwQcq7I .mbr-text {
  color: #000000;
}
.cid-uIlGw8RulU {
  padding-top: 3rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
  flex-direction: column;
  justify-content: center;
}
.cid-uIlGw8RulU .mbr-fallback-image.disabled {
  display: none;
}
.cid-uIlGw8RulU .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-uIlGw8RulU .container {
    padding: 0 16px;
  }
}
.cid-uIlGw8RulU .row {
  justify-content: space-between;
}
.cid-uIlGw8RulU .desc-wrapper .mbr-desc {
  margin-bottom: 32px;
}
.cid-uIlGw8RulU .content-wrapper .mbr-section-title {
  margin-bottom: 32px;
}
.cid-uIlGw8RulU .content-wrapper .mbr-text {
  margin-bottom: 22px;
}
@media (max-width: 992px) {
  .cid-uIlGw8RulU .image-wrapper {
    margin-top: 32px;
  }
}
.cid-uIlGw8RulU .image-wrapper img {
  width: 100%;
  max-width: 850px;
  height: auto;
  object-fit: cover;
  border-radius: 0rem !important;
}
.cid-uIlGw8RulU .mbr-desc {
  color: #353535;
}
.cid-uIlGw8RulU .mbr-section-title {
  color: #000000;
}
.cid-uIlGw8RulU .mbr-text {
  color: #000000;
}
