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: #004a98 !important;
}
.bg-success {
  background-color: #004a98 !important;
}
.bg-info {
  background-color: #47b5ed !important;
}
.bg-warning {
  background-color: #deecf7 !important;
}
.bg-danger {
  background-color: #76bc21 !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #004a98 !important;
  border-color: #004a98 !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: #002041 !important;
  border-color: #002041 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #002041 !important;
  border-color: #002041 !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #ff6666 !important;
  border-color: #ff6666 !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: #ff0f0f !important;
  border-color: #ff0f0f !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #ff0f0f !important;
  border-color: #ff0f0f !important;
}
.btn-info,
.btn-info:active {
  background-color: #47b5ed !important;
  border-color: #47b5ed !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: #148cca !important;
  border-color: #148cca !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #148cca !important;
  border-color: #148cca !important;
}
.btn-success,
.btn-success:active {
  background-color: #004a98 !important;
  border-color: #004a98 !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: #002041 !important;
  border-color: #002041 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #002041 !important;
  border-color: #002041 !important;
}
.btn-warning,
.btn-warning:active {
  background-color: #deecf7 !important;
  border-color: #deecf7 !important;
  color: #2a73ac !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: #98c4e6 !important;
  border-color: #98c4e6 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #2a73ac !important;
  background-color: #98c4e6 !important;
  border-color: #98c4e6 !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #76bc21 !important;
  border-color: #76bc21 !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: #487214 !important;
  border-color: #487214 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #487214 !important;
  border-color: #487214 !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: #004a98;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #002041 !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: #004a98 !important;
  border-color: #004a98 !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ff6666;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #ff0f0f !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: #ff6666 !important;
  border-color: #ff6666 !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #47b5ed;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #148cca !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #47b5ed !important;
  border-color: #47b5ed !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #004a98;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #002041 !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: #004a98 !important;
  border-color: #004a98 !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #deecf7;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #98c4e6 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #2a73ac !important;
  background-color: #deecf7 !important;
  border-color: #deecf7 !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #76bc21;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #487214 !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: #76bc21 !important;
  border-color: #76bc21 !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: #004a98 !important;
}
.text-secondary {
  color: #ff6666 !important;
}
.text-success {
  color: #004a98 !important;
}
.text-info {
  color: #47b5ed !important;
}
.text-warning {
  color: #deecf7 !important;
}
.text-danger {
  color: #76bc21 !important;
}
.text-white {
  color: #fafafa !important;
}
.text-black {
  color: #232323 !important;
}
a.text-primary:hover,
a.text-primary:focus,
a.text-primary.active {
  color: #001832 !important;
}
a.text-secondary:hover,
a.text-secondary:focus,
a.text-secondary.active {
  color: #ff0000 !important;
}
a.text-success:hover,
a.text-success:focus,
a.text-success.active {
  color: #001832 !important;
}
a.text-info:hover,
a.text-info:focus,
a.text-info.active {
  color: #1283bc !important;
}
a.text-warning:hover,
a.text-warning:focus,
a.text-warning.active {
  color: #8cbde3 !important;
}
a.text-danger:hover,
a.text-danger:focus,
a.text-danger.active {
  color: #406512 !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: #004a98;
}
.nav-tabs .nav-link:not(.active) {
  color: #232323;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #47b5ed;
}
.alert-warning {
  background-color: #deecf7;
}
.alert-danger {
  background-color: #76bc21;
}
.mbr-gallery-filter li.active .btn {
  background-color: #004a98;
  border-color: #004a98;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
a,
a:hover {
  color: #004a98;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #1989ff;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #1989ff;
}
.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: #b4e776;
}
/* Scroll to top button*/
.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: #004a98 !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: #004a98;
}
/* Forms */
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #004a98;
  color: #ffffff;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #004a98;
}
.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: #004a98;
  border-bottom-color: #004a98;
}
.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: #004a98 !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: #ff6666 !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='%23004a98' %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-tOBMo2XRcH {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tOBMo2XRcH nav.navbar {
  position: fixed;
}
.cid-tOBMo2XRcH .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-tOBMo2XRcH .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tOBMo2XRcH .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tOBMo2XRcH .dropdown-item:hover,
.cid-tOBMo2XRcH .dropdown-item:focus {
  background: #004a98 !important;
  color: white !important;
}
.cid-tOBMo2XRcH .dropdown-item:hover span {
  color: white;
}
.cid-tOBMo2XRcH .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tOBMo2XRcH .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tOBMo2XRcH .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tOBMo2XRcH .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tOBMo2XRcH .nav-link {
  position: relative;
}
.cid-tOBMo2XRcH .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tOBMo2XRcH .container {
    flex-wrap: wrap;
  }
}
.cid-tOBMo2XRcH .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tOBMo2XRcH .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-tOBMo2XRcH .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tOBMo2XRcH .dropdown-menu,
.cid-tOBMo2XRcH .navbar.opened {
  background: #ffffff !important;
}
.cid-tOBMo2XRcH .nav-item:focus,
.cid-tOBMo2XRcH .nav-link:focus {
  outline: none;
}
.cid-tOBMo2XRcH .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tOBMo2XRcH .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tOBMo2XRcH .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tOBMo2XRcH .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tOBMo2XRcH .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tOBMo2XRcH .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tOBMo2XRcH .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-tOBMo2XRcH .navbar.opened {
  transition: all 0.3s;
}
.cid-tOBMo2XRcH .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tOBMo2XRcH .navbar .navbar-logo img {
  width: auto;
}
.cid-tOBMo2XRcH .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tOBMo2XRcH .navbar.collapsed {
  justify-content: center;
}
.cid-tOBMo2XRcH .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tOBMo2XRcH .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tOBMo2XRcH .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.4rem);
  }
}
.cid-tOBMo2XRcH .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tOBMo2XRcH .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tOBMo2XRcH .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-tOBMo2XRcH .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tOBMo2XRcH .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tOBMo2XRcH .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tOBMo2XRcH .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tOBMo2XRcH .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tOBMo2XRcH .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tOBMo2XRcH .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tOBMo2XRcH .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-tOBMo2XRcH .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tOBMo2XRcH .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tOBMo2XRcH .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tOBMo2XRcH .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tOBMo2XRcH .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tOBMo2XRcH .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-tOBMo2XRcH .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-tOBMo2XRcH .navbar.navbar-short {
  min-height: 60px;
}
.cid-tOBMo2XRcH .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tOBMo2XRcH .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tOBMo2XRcH .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-tOBMo2XRcH .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tOBMo2XRcH .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tOBMo2XRcH .dropdown-item.active,
.cid-tOBMo2XRcH .dropdown-item:active {
  background-color: transparent;
}
.cid-tOBMo2XRcH .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tOBMo2XRcH .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tOBMo2XRcH .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tOBMo2XRcH .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-tOBMo2XRcH .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tOBMo2XRcH .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tOBMo2XRcH ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tOBMo2XRcH .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tOBMo2XRcH button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tOBMo2XRcH button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-tOBMo2XRcH button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tOBMo2XRcH button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tOBMo2XRcH button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tOBMo2XRcH button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tOBMo2XRcH nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tOBMo2XRcH nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tOBMo2XRcH nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tOBMo2XRcH nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tOBMo2XRcH .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tOBMo2XRcH a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tOBMo2XRcH .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-tOBMo2XRcH .navbar {
    height: 70px;
  }
  .cid-tOBMo2XRcH .navbar.opened {
    height: auto;
  }
  .cid-tOBMo2XRcH .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tOBMG7wFBf {
  padding-top: 0;
  padding-bottom: 0;
  background-color: #ffffff;
}
.cid-tOBMG7wFBf .carousel {
  width: 100%;
}
.cid-tOBMG7wFBf .carousel-inner {
  display: flex;
  align-content: center;
  align-items: center;
}
.cid-tOBMG7wFBf .carousel-item img {
  height: 100vh;
  object-fit: cover;
}
.cid-tOBMG7wFBf .carousel-caption {
  bottom: 40px;
}
.cid-tOBMG7wFBf .mobi-mbri-arrow-next {
  margin-left: 5px;
}
.cid-tOBMG7wFBf .mobi-mbri-arrow-prev {
  margin-right: 5px;
}
.cid-tOBMG7wFBf .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
.cid-tOBMG7wFBf .item-wrapper {
  width: 100%;
}
@media (max-width: 767px) {
  .cid-tOBMG7wFBf .container .carousel-control {
    margin-bottom: 0;
  }
  .cid-tOBMG7wFBf .content-slider-wrap {
    width: 100% !important;
  }
}
.cid-tOBMG7wFBf .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-tOBMG7wFBf .carousel-control {
  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-tOBMG7wFBf .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tOBMG7wFBf .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-tOBMG7wFBf .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-tOBMG7wFBf .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem !important;
}
.cid-tOBMG7wFBf .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-tOBMG7wFBf .carousel-indicators li.active,
.cid-tOBMG7wFBf .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-tOBMG7wFBf .carousel-indicators li::after,
.cid-tOBMG7wFBf .carousel-indicators li::before {
  content: none;
}
.cid-tOBMG7wFBf .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-tOBMG7wFBf .carousel-indicators {
    display: none !important;
  }
}
.cid-tOBMG7wFBf H5 {
  text-align: center;
}
.cid-tOBMG7wFBf P {
  text-align: center;
}
.cid-tOCfEsvVrP {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-tOCfEsvVrP .mbr-fallback-image.disabled {
  display: none;
}
.cid-tOCfEsvVrP .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tOCfEsvVrP .content-wrapper {
  background: #ffffff;
}
@media (max-width: 991px) {
  .cid-tOCfEsvVrP .content-wrapper .image-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-tOCfEsvVrP .content-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-tOCfEsvVrP .content-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tOCfEsvVrP .content-wrapper {
    padding: 5rem 3rem;
  }
  .cid-tOCfEsvVrP .content-wrapper .text-wrapper {
    padding-left: 2rem;
  }
}
.cid-tOCfEsvVrP .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-tOCfEsvVrP .card-title {
  color: #232323;
}
.cid-tOBOsmC12h {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #fafafa;
}
.cid-tOBOsmC12h img,
.cid-tOBOsmC12h .item-img {
  width: 100%;
}
.cid-tOBOsmC12h .item:focus,
.cid-tOBOsmC12h span:focus {
  outline: none;
}
.cid-tOBOsmC12h .item-wrapper {
  position: relative;
}
.cid-tOBOsmC12h .slide-content {
  position: relative;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  overflow: hidden;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-tOBOsmC12h .slide-content .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-tOBOsmC12h .slide-content .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tOBOsmC12h .slide-content .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-tOBOsmC12h .slide-content .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-tOBOsmC12h .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tOBOsmC12h .mbr-section-title {
  color: #232323;
}
.cid-tOBOsmC12h .mbr-text,
.cid-tOBOsmC12h .mbr-section-btn {
  text-align: left;
}
.cid-tOBOsmC12h .item-title {
  text-align: left;
}
.cid-tOBOsmC12h .item-subtitle {
  text-align: left;
  color: #878787;
}
.cid-tOBOsmC12h .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 370px;
  max-width: 370px;
}
@media (max-width: 768px) {
  .cid-tOBOsmC12h .embla__slide {
    min-width: 70%;
    max-width: initial;
    margin-left: 1rem !important;
    margin-right: 1rem !important;
  }
}
.cid-tOBOsmC12h .embla__button--next,
.cid-tOBOsmC12h .embla__button--prev {
  display: flex;
}
.cid-tOBOsmC12h .embla__button {
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  color: #fff;
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-tOBOsmC12h .embla__button:disabled {
  cursor: default;
  display: none;
}
.cid-tOBOsmC12h .embla__button:hover {
  background: #000;
  color: rgba(255, 255, 255, 0.5);
}
.cid-tOBOsmC12h .embla__button.embla__button--prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tOBOsmC12h .embla__button.embla__button--next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-tOBOsmC12h .embla__button {
    top: auto;
  }
}
.cid-tOBOsmC12h .embla {
  position: relative;
  width: 100%;
}
.cid-tOBOsmC12h .embla__viewport {
  overflow: hidden;
  width: 100%;
}
.cid-tOBOsmC12h .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-tOBOsmC12h .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-tOBOsmC12h .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
@media (max-width: 768px) {
  .cid-tOBOsmC12h .embla__container {
    margin-left: 1.3rem;
    margin-right: 1.3rem;
  }
  .cid-tOBOsmC12h .embla__container .embla__slide:first-child {
    margin-left: 2rem !important;
  }
  .cid-tOBOsmC12h .embla__container .embla__slide:last-child {
    margin-right: 2rem !important;
  }
}
.cid-tOCnqFIr0t {
  padding-top: 6rem;
  padding-bottom: 6rem;
}
.cid-tOCnqFIr0t .mbr-fallback-image.disabled {
  display: none;
}
.cid-tOCnqFIr0t .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  background-image: url("../../../assets/images/background13.jpg");
}
.cid-tOCnqFIr0t .mbr-text,
.cid-tOCnqFIr0t .mbr-section-btn {
  color: #232323;
}
.cid-tOCnqFIr0t .card-title,
.cid-tOCnqFIr0t .card-box {
  color: #ffffff;
  text-align: right;
}
.cid-tOCnqFIr0t .mbr-text,
.cid-tOCnqFIr0t .link-wrap {
  color: #ffffff;
}
.cid-Xtxt9FypoB {
  padding-top: 60px;
  padding-bottom: 45px;
  background: linear-gradient(0deg, #ffffff, #ffffff);
}
.cid-Xtxt9FypoB .mbr-section-subtitle {
  color: #767676;
}
.cid-Xtxt9FypoB .container11 {
  height: 73.5vw;
  margin: 1vw auto;
  max-height: 565px;
  max-width: 895px;
  overflow: hidden;
  width: 98vw;
}
.cid-Xtxt9FypoB .container11 figure {
  background-image: url("../../../assets/images/whatsapp-image-2022-02-03-at-04.43.59-1600x900.jpg");
  background-size: cover;
  font-size: 0;
  height: 100%;
  margin: 0;
  position: relative;
  width: 100%;
}
.cid-Xtxt9FypoB #compare11 {
  background-image: url("../../../assets/images/whatsapp-image-2022-02-03-at-04.44.06-2-1600x900.jpg");
  background-size: cover;
  bottom: 0;
  border-right: 5px solid rgba(255, 255, 255, 0.7);
  box-shadow: 10px 0 15px -13px #000000;
  height: 100%;
  max-width: 98.6%;
  min-width: 0.6%;
  overflow: visible;
  position: absolute;
  width: 50%;
  animation: first 2s 1 normal ease-in-out 0.1s;
  -webkit-animation: first 2s 1 normal ease-in-out 0.1s;
}
.cid-Xtxt9FypoB input#slider11 {
  -moz-appearance: none;
  -webkit-appearance: none;
  border: none;
  background: transparent;
  cursor: col-resize;
  height: 100vw;
  left: 0;
  margin: 0;
  outline: none;
  padding: 0;
  position: relative;
  top: -100vw;
  width: 100%;
}
.cid-Xtxt9FypoB input#slider11::-moz-range-track {
  background: transparent;
}
.cid-Xtxt9FypoB input#slider11::-ms-track {
  border: none;
  background-color: transparent;
  height: 100vw;
  left: 0;
  outline: none;
  position: relative;
  top: -100vw;
  width: 100%;
  margin: 0;
  padding: 0;
  cursor: col-resize;
  color: transparent;
}
.cid-Xtxt9FypoB input#slider11::-ms-fill-lower {
  background-color: transparent;
}
.cid-Xtxt9FypoB input#slider11::-webkit-slider-thumb {
  -webkit-appearance: none;
  height: 100vw;
  width: 0.5%;
  opacity: 0;
}
.cid-Xtxt9FypoB input#slider11::-moz-range-thumb {
  -moz-appearance: none;
  height: 100vw;
  width: 0.5%;
  opacity: 0;
}
.cid-Xtxt9FypoB input#slider11::-ms-thumb {
  height: 100vw;
  width: 0.5%;
  opacity: 0;
}
.cid-Xtxt9FypoB input#slider::-ms-tooltip {
  display: none;
}
.cid-Xtxt9FypoB #compare11::before {
  background: url("https://www.unsitepourtous.be/mobi/comparision.png") no-repeat scroll 0 center transparent;
  background-size: contain;
  content: " ";
  float: right;
  height: 100%;
  margin-right: -34px;
  position: relative;
  top: 0;
  width: 64px;
}
@keyframes first {
  0% {
    width: 0%;
  }
  50% {
    width: 80%;
  }
  100% {
    width: 50%;
  }
}
@-webkit-keyframes first {
  0% {
    width: 0%;
  }
  50% {
    width: 80%;
  }
  100% {
    width: 50%;
  }
}
.cid-Xtxt9FypoB H2 {
  color: #232323;
}
.cid-tOD5IjvKx5 {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #deecf7;
}
.cid-tOD5IjvKx5 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tOD5IjvKx5 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (min-width: 1500px) {
  .cid-tOD5IjvKx5 .container {
    max-width: 1400px;
  }
}
.cid-tOD5IjvKx5 .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #54565a;
  margin-bottom: 2rem;
}
.cid-tOD5IjvKx5 .card-wrapper {
  margin-top: 3rem;
}
.cid-tOD5IjvKx5 .row {
  justify-content: center;
}
.cid-tOHYy1xK8Z {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #deecf7;
}
.cid-tOHYy1xK8Z hr {
  border: 0;
  clear: both;
  display: block;
  margin: 2.4rem auto;
  text-align: center;
  width: 100%;
}
.cid-tOHYy1xK8Z .progress {
  background: #cccccc;
  opacity: 1;
  height: 1px;
  overflow: hidden;
  position: relative;
}
.cid-tOHYy1xK8Z .progress::before {
  animation-duration: 2s;
  animation-timing-function: ease;
  animation-iteration-count: infinite;
  animation-name: progress;
  background: #76bc21;
  content: "";
  display: block;
  height: 1px;
  position: absolute;
  width: 100px;
}
@keyframes progress {
  from {
    margin-left: 0%;
    width: 200px;
  }
  to {
    margin-left: 100%;
    width: 200px;
  }
}
.cid-tOChCt9nPA {
  padding-top: 4rem;
  padding-bottom: 3rem;
  background-color: #deecf7;
}
.cid-tOChCt9nPA .mbr-fallback-image.disabled {
  display: none;
}
.cid-tOChCt9nPA .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tOChCt9nPA .media-wrap {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-tOChCt9nPA .media-wrap {
    margin-bottom: 1rem;
  }
}
@media (max-width: 767px) {
  .cid-tOChCt9nPA .row {
    text-align: center;
  }
  .cid-tOChCt9nPA .row > div {
    margin: auto;
  }
  .cid-tOChCt9nPA .social-row {
    justify-content: center;
  }
}
.cid-tOChCt9nPA .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-tOChCt9nPA .list {
  list-style: none;
  padding-left: 0;
  color: #353535;
}
@media (max-width: 991px) {
  .cid-tOChCt9nPA .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tOChCt9nPA .list {
    margin-bottom: 0rem;
  }
}
.cid-tOChCt9nPA .mbr-text {
  color: #353535;
}
.cid-tOChCt9nPA .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
.cid-tOChCt9nPA .mbr-iconfont {
  color: black;
}
@media (max-width: 991px) {
  .cid-tOChCt9nPA div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-tOChCt9nPA H5 {
  color: #353535;
}
.cid-tOD6UOeo5U .float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 33px;
  left: 13px;
  background-color: #25d366;
  color: #ffffff;
  border-radius: 100px;
  text-align: center;
  font-size: 30px;
  box-shadow: 2px 2px 3px #999;
  z-index: 10000;
}
.cid-tOD6UOeo5U .my-float {
  margin-top: 16px;
}
.cid-tOD6UOeo5U P {
  color: #232323;
}
.cid-tOD6UOeo5U DIV {
  color: #ffffff;
}
.cid-tOD6UOeo5U H10 {
  color: #767676;
}
.cid-tOD6UOeo5U .hidden {
  display: none;
}
.cid-tOHDViDbGF {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tOHDViDbGF nav.navbar {
  position: fixed;
}
.cid-tOHDViDbGF .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-tOHDViDbGF .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tOHDViDbGF .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tOHDViDbGF .dropdown-item:hover,
.cid-tOHDViDbGF .dropdown-item:focus {
  background: #004a98 !important;
  color: white !important;
}
.cid-tOHDViDbGF .dropdown-item:hover span {
  color: white;
}
.cid-tOHDViDbGF .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tOHDViDbGF .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tOHDViDbGF .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tOHDViDbGF .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tOHDViDbGF .nav-link {
  position: relative;
}
.cid-tOHDViDbGF .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tOHDViDbGF .container {
    flex-wrap: wrap;
  }
}
.cid-tOHDViDbGF .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tOHDViDbGF .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-tOHDViDbGF .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tOHDViDbGF .dropdown-menu,
.cid-tOHDViDbGF .navbar.opened {
  background: #ffffff !important;
}
.cid-tOHDViDbGF .nav-item:focus,
.cid-tOHDViDbGF .nav-link:focus {
  outline: none;
}
.cid-tOHDViDbGF .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tOHDViDbGF .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tOHDViDbGF .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tOHDViDbGF .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tOHDViDbGF .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tOHDViDbGF .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tOHDViDbGF .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-tOHDViDbGF .navbar.opened {
  transition: all 0.3s;
}
.cid-tOHDViDbGF .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tOHDViDbGF .navbar .navbar-logo img {
  width: auto;
}
.cid-tOHDViDbGF .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tOHDViDbGF .navbar.collapsed {
  justify-content: center;
}
.cid-tOHDViDbGF .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tOHDViDbGF .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tOHDViDbGF .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.4rem);
  }
}
.cid-tOHDViDbGF .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tOHDViDbGF .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tOHDViDbGF .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-tOHDViDbGF .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tOHDViDbGF .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tOHDViDbGF .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tOHDViDbGF .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tOHDViDbGF .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tOHDViDbGF .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tOHDViDbGF .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tOHDViDbGF .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-tOHDViDbGF .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tOHDViDbGF .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tOHDViDbGF .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tOHDViDbGF .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tOHDViDbGF .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tOHDViDbGF .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-tOHDViDbGF .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-tOHDViDbGF .navbar.navbar-short {
  min-height: 60px;
}
.cid-tOHDViDbGF .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tOHDViDbGF .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tOHDViDbGF .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-tOHDViDbGF .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tOHDViDbGF .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tOHDViDbGF .dropdown-item.active,
.cid-tOHDViDbGF .dropdown-item:active {
  background-color: transparent;
}
.cid-tOHDViDbGF .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tOHDViDbGF .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tOHDViDbGF .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tOHDViDbGF .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-tOHDViDbGF .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tOHDViDbGF .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tOHDViDbGF ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tOHDViDbGF .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tOHDViDbGF button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tOHDViDbGF button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-tOHDViDbGF button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tOHDViDbGF button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tOHDViDbGF button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tOHDViDbGF button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tOHDViDbGF nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tOHDViDbGF nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tOHDViDbGF nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tOHDViDbGF nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tOHDViDbGF .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tOHDViDbGF a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tOHDViDbGF .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-tOHDViDbGF .navbar {
    height: 70px;
  }
  .cid-tOHDViDbGF .navbar.opened {
    height: auto;
  }
  .cid-tOHDViDbGF .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tOHExpKt5a {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/3dubleks-2000x1112.jpg");
}
.cid-tOHExpKt5a .mbr-fallback-image.disabled {
  display: none;
}
.cid-tOHExpKt5a .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tOHTWB3WIH {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-tOHTWB3WIH .mbr-section-subtitle {
  color: #353535;
}
.cid-tOHTWB3WIH .mbr-text {
  color: #353535;
}
.cid-tOHDVjFn7r {
  padding-top: 0rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-tOHDVjFn7r .mbr-fallback-image.disabled {
  display: none;
}
.cid-tOHDVjFn7r .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tOHDVjFn7r .content-wrapper {
  background: #ffffff;
}
@media (max-width: 991px) {
  .cid-tOHDVjFn7r .content-wrapper .image-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-tOHDVjFn7r .content-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-tOHDVjFn7r .content-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tOHDVjFn7r .content-wrapper {
    padding: 5rem 3rem;
  }
  .cid-tOHDVjFn7r .content-wrapper .text-wrapper {
    padding-left: 2rem;
  }
}
.cid-tOHDVjFn7r .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-tOHJ12Rlqb {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-tOHJ12Rlqb .mbr-fallback-image.disabled {
  display: none;
}
.cid-tOHJ12Rlqb .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tOHJ12Rlqb .mbr-iconfont {
  font-size: 1.4rem !important;
  font-family: 'Moririse2' !important;
  color: #004a98;
  margin-left: 1rem;
}
.cid-tOHJ12Rlqb .panel-group {
  border: none;
}
.cid-tOHJ12Rlqb .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-tOHJ12Rlqb .panel-body,
.cid-tOHJ12Rlqb .card-header {
  padding: 1rem 0;
}
.cid-tOHJ12Rlqb .panel-title-edit {
  color: #000000;
}
.cid-tOHJ12Rlqb .card .card-header {
  background-color: transparent;
  margin-bottom: 0;
}
.cid-tQhexfebBr {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #deecf7;
}
.cid-tQhexfebBr .mbr-fallback-image.disabled {
  display: none;
}
.cid-tQhexfebBr .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (min-width: 1500px) {
  .cid-tQhexfebBr .container {
    max-width: 1400px;
  }
}
.cid-tQhexfebBr .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #54565a;
  margin-bottom: 2rem;
}
.cid-tQhexfebBr .card-wrapper {
  margin-top: 3rem;
}
.cid-tQhexfebBr .row {
  justify-content: center;
}
.cid-tQheKxhZI8 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #deecf7;
}
.cid-tQheKxhZI8 hr {
  border: 0;
  clear: both;
  display: block;
  margin: 2.4rem auto;
  text-align: center;
  width: 100%;
}
.cid-tQheKxhZI8 .progress {
  background: #cccccc;
  opacity: 1;
  height: 1px;
  overflow: hidden;
  position: relative;
}
.cid-tQheKxhZI8 .progress::before {
  animation-duration: 2s;
  animation-timing-function: ease;
  animation-iteration-count: infinite;
  animation-name: progress;
  background: #76bc21;
  content: "";
  display: block;
  height: 1px;
  position: absolute;
  width: 100px;
}
@keyframes progress {
  from {
    margin-left: 0%;
    width: 200px;
  }
  to {
    margin-left: 100%;
    width: 200px;
  }
}
.cid-tOHDVm6EWy .float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 33px;
  left: 13px;
  background-color: #25d366;
  color: #ffffff;
  border-radius: 100px;
  text-align: center;
  font-size: 30px;
  box-shadow: 2px 2px 3px #999;
  z-index: 10000;
}
.cid-tOHDVm6EWy .my-float {
  margin-top: 16px;
}
.cid-tOHDVm6EWy P {
  color: #232323;
}
.cid-tOHDVm6EWy DIV {
  color: #ffffff;
}
.cid-tOHDVm6EWy H10 {
  color: #767676;
}
.cid-tOHDVm6EWy .hidden {
  display: none;
}
.cid-tOHDVmsQax {
  padding-top: 4rem;
  padding-bottom: 3rem;
  background-color: #deecf7;
}
.cid-tOHDVmsQax .mbr-fallback-image.disabled {
  display: none;
}
.cid-tOHDVmsQax .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tOHDVmsQax .media-wrap {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-tOHDVmsQax .media-wrap {
    margin-bottom: 1rem;
  }
}
@media (max-width: 767px) {
  .cid-tOHDVmsQax .row {
    text-align: center;
  }
  .cid-tOHDVmsQax .row > div {
    margin: auto;
  }
  .cid-tOHDVmsQax .social-row {
    justify-content: center;
  }
}
.cid-tOHDVmsQax .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-tOHDVmsQax .list {
  list-style: none;
  padding-left: 0;
  color: #353535;
}
@media (max-width: 991px) {
  .cid-tOHDVmsQax .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tOHDVmsQax .list {
    margin-bottom: 0rem;
  }
}
.cid-tOHDVmsQax .mbr-text {
  color: #353535;
}
.cid-tOHDVmsQax .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
.cid-tOHDVmsQax .mbr-iconfont {
  color: black;
}
@media (max-width: 991px) {
  .cid-tOHDVmsQax div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-tOHDVmsQax H5 {
  color: #353535;
}
.cid-tOHNCRr5MV {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tOHNCRr5MV nav.navbar {
  position: fixed;
}
.cid-tOHNCRr5MV .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-tOHNCRr5MV .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tOHNCRr5MV .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tOHNCRr5MV .dropdown-item:hover,
.cid-tOHNCRr5MV .dropdown-item:focus {
  background: #004a98 !important;
  color: white !important;
}
.cid-tOHNCRr5MV .dropdown-item:hover span {
  color: white;
}
.cid-tOHNCRr5MV .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tOHNCRr5MV .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tOHNCRr5MV .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tOHNCRr5MV .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tOHNCRr5MV .nav-link {
  position: relative;
}
.cid-tOHNCRr5MV .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tOHNCRr5MV .container {
    flex-wrap: wrap;
  }
}
.cid-tOHNCRr5MV .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tOHNCRr5MV .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-tOHNCRr5MV .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tOHNCRr5MV .dropdown-menu,
.cid-tOHNCRr5MV .navbar.opened {
  background: #ffffff !important;
}
.cid-tOHNCRr5MV .nav-item:focus,
.cid-tOHNCRr5MV .nav-link:focus {
  outline: none;
}
.cid-tOHNCRr5MV .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tOHNCRr5MV .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tOHNCRr5MV .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tOHNCRr5MV .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tOHNCRr5MV .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tOHNCRr5MV .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tOHNCRr5MV .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-tOHNCRr5MV .navbar.opened {
  transition: all 0.3s;
}
.cid-tOHNCRr5MV .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tOHNCRr5MV .navbar .navbar-logo img {
  width: auto;
}
.cid-tOHNCRr5MV .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tOHNCRr5MV .navbar.collapsed {
  justify-content: center;
}
.cid-tOHNCRr5MV .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tOHNCRr5MV .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tOHNCRr5MV .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.4rem);
  }
}
.cid-tOHNCRr5MV .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tOHNCRr5MV .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tOHNCRr5MV .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-tOHNCRr5MV .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tOHNCRr5MV .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tOHNCRr5MV .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tOHNCRr5MV .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tOHNCRr5MV .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tOHNCRr5MV .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tOHNCRr5MV .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tOHNCRr5MV .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-tOHNCRr5MV .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tOHNCRr5MV .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tOHNCRr5MV .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tOHNCRr5MV .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tOHNCRr5MV .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tOHNCRr5MV .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-tOHNCRr5MV .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-tOHNCRr5MV .navbar.navbar-short {
  min-height: 60px;
}
.cid-tOHNCRr5MV .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tOHNCRr5MV .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tOHNCRr5MV .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-tOHNCRr5MV .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tOHNCRr5MV .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tOHNCRr5MV .dropdown-item.active,
.cid-tOHNCRr5MV .dropdown-item:active {
  background-color: transparent;
}
.cid-tOHNCRr5MV .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tOHNCRr5MV .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tOHNCRr5MV .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tOHNCRr5MV .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-tOHNCRr5MV .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tOHNCRr5MV .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tOHNCRr5MV ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tOHNCRr5MV .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tOHNCRr5MV button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tOHNCRr5MV button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-tOHNCRr5MV button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tOHNCRr5MV button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tOHNCRr5MV button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tOHNCRr5MV button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tOHNCRr5MV nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tOHNCRr5MV nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tOHNCRr5MV nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tOHNCRr5MV nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tOHNCRr5MV .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tOHNCRr5MV a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tOHNCRr5MV .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-tOHNCRr5MV .navbar {
    height: 70px;
  }
  .cid-tOHNCRr5MV .navbar.opened {
    height: auto;
  }
  .cid-tOHNCRr5MV .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tOHNCS5u53 {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/fnal-render-13-fotokk-2-2000x1226.jpg");
}
.cid-tOHNCS5u53 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tOHNCS5u53 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tOHU9WzqBm {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-tOHU9WzqBm .mbr-section-subtitle {
  color: #353535;
}
.cid-tOHU9WzqBm .mbr-text {
  color: #353535;
}
.cid-tYAoDuYrPp {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #fafafa;
}
.cid-tYAoDuYrPp img,
.cid-tYAoDuYrPp .item-img {
  width: 100%;
}
.cid-tYAoDuYrPp .item:focus,
.cid-tYAoDuYrPp span:focus {
  outline: none;
}
.cid-tYAoDuYrPp .item-wrapper {
  position: relative;
}
.cid-tYAoDuYrPp .slide-content {
  position: relative;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  overflow: hidden;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-tYAoDuYrPp .slide-content .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-tYAoDuYrPp .slide-content .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tYAoDuYrPp .slide-content .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-tYAoDuYrPp .slide-content .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-tYAoDuYrPp .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tYAoDuYrPp .mbr-section-title {
  color: #232323;
}
.cid-tYAoDuYrPp .mbr-text,
.cid-tYAoDuYrPp .mbr-section-btn {
  text-align: left;
}
.cid-tYAoDuYrPp .item-title {
  text-align: left;
}
.cid-tYAoDuYrPp .item-subtitle {
  text-align: left;
  color: #878787;
}
.cid-tYAoDuYrPp .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 370px;
  max-width: 370px;
}
@media (max-width: 768px) {
  .cid-tYAoDuYrPp .embla__slide {
    min-width: 70%;
    max-width: initial;
    margin-left: 1rem !important;
    margin-right: 1rem !important;
  }
}
.cid-tYAoDuYrPp .embla__button--next,
.cid-tYAoDuYrPp .embla__button--prev {
  display: flex;
}
.cid-tYAoDuYrPp .embla__button {
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  color: #fff;
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-tYAoDuYrPp .embla__button:disabled {
  cursor: default;
  display: none;
}
.cid-tYAoDuYrPp .embla__button:hover {
  background: #000;
  color: rgba(255, 255, 255, 0.5);
}
.cid-tYAoDuYrPp .embla__button.embla__button--prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tYAoDuYrPp .embla__button.embla__button--next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-tYAoDuYrPp .embla__button {
    top: auto;
  }
}
.cid-tYAoDuYrPp .embla {
  position: relative;
  width: 100%;
}
.cid-tYAoDuYrPp .embla__viewport {
  overflow: hidden;
  width: 100%;
}
.cid-tYAoDuYrPp .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-tYAoDuYrPp .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-tYAoDuYrPp .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
@media (max-width: 768px) {
  .cid-tYAoDuYrPp .embla__container {
    margin-left: 1.3rem;
    margin-right: 1.3rem;
  }
  .cid-tYAoDuYrPp .embla__container .embla__slide:first-child {
    margin-left: 2rem !important;
  }
  .cid-tYAoDuYrPp .embla__container .embla__slide:last-child {
    margin-right: 2rem !important;
  }
}
.cid-tQheRJrRzw {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #deecf7;
}
.cid-tQheRJrRzw .mbr-fallback-image.disabled {
  display: none;
}
.cid-tQheRJrRzw .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (min-width: 1500px) {
  .cid-tQheRJrRzw .container {
    max-width: 1400px;
  }
}
.cid-tQheRJrRzw .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #54565a;
  margin-bottom: 2rem;
}
.cid-tQheRJrRzw .card-wrapper {
  margin-top: 3rem;
}
.cid-tQheRJrRzw .row {
  justify-content: center;
}
.cid-tOHNCUHEdE .float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 33px;
  left: 13px;
  background-color: #25d366;
  color: #ffffff;
  border-radius: 100px;
  text-align: center;
  font-size: 30px;
  box-shadow: 2px 2px 3px #999;
  z-index: 10000;
}
.cid-tOHNCUHEdE .my-float {
  margin-top: 16px;
}
.cid-tOHNCUHEdE P {
  color: #232323;
}
.cid-tOHNCUHEdE DIV {
  color: #ffffff;
}
.cid-tOHNCUHEdE H10 {
  color: #767676;
}
.cid-tOHNCUHEdE .hidden {
  display: none;
}
.cid-tQheR30fgx {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #deecf7;
}
.cid-tQheR30fgx hr {
  border: 0;
  clear: both;
  display: block;
  margin: 2.4rem auto;
  text-align: center;
  width: 100%;
}
.cid-tQheR30fgx .progress {
  background: #cccccc;
  opacity: 1;
  height: 1px;
  overflow: hidden;
  position: relative;
}
.cid-tQheR30fgx .progress::before {
  animation-duration: 2s;
  animation-timing-function: ease;
  animation-iteration-count: infinite;
  animation-name: progress;
  background: #76bc21;
  content: "";
  display: block;
  height: 1px;
  position: absolute;
  width: 100px;
}
@keyframes progress {
  from {
    margin-left: 0%;
    width: 200px;
  }
  to {
    margin-left: 100%;
    width: 200px;
  }
}
.cid-tOHNCVekBT {
  padding-top: 4rem;
  padding-bottom: 3rem;
  background-color: #deecf7;
}
.cid-tOHNCVekBT .mbr-fallback-image.disabled {
  display: none;
}
.cid-tOHNCVekBT .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tOHNCVekBT .media-wrap {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-tOHNCVekBT .media-wrap {
    margin-bottom: 1rem;
  }
}
@media (max-width: 767px) {
  .cid-tOHNCVekBT .row {
    text-align: center;
  }
  .cid-tOHNCVekBT .row > div {
    margin: auto;
  }
  .cid-tOHNCVekBT .social-row {
    justify-content: center;
  }
}
.cid-tOHNCVekBT .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-tOHNCVekBT .list {
  list-style: none;
  padding-left: 0;
  color: #353535;
}
@media (max-width: 991px) {
  .cid-tOHNCVekBT .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tOHNCVekBT .list {
    margin-bottom: 0rem;
  }
}
.cid-tOHNCVekBT .mbr-text {
  color: #353535;
}
.cid-tOHNCVekBT .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
.cid-tOHNCVekBT .mbr-iconfont {
  color: black;
}
@media (max-width: 991px) {
  .cid-tOHNCVekBT div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-tOHNCVekBT H5 {
  color: #353535;
}
.cid-tOHPnpHZBA {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tOHPnpHZBA nav.navbar {
  position: fixed;
}
.cid-tOHPnpHZBA .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-tOHPnpHZBA .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tOHPnpHZBA .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tOHPnpHZBA .dropdown-item:hover,
.cid-tOHPnpHZBA .dropdown-item:focus {
  background: #004a98 !important;
  color: white !important;
}
.cid-tOHPnpHZBA .dropdown-item:hover span {
  color: white;
}
.cid-tOHPnpHZBA .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tOHPnpHZBA .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tOHPnpHZBA .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tOHPnpHZBA .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tOHPnpHZBA .nav-link {
  position: relative;
}
.cid-tOHPnpHZBA .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tOHPnpHZBA .container {
    flex-wrap: wrap;
  }
}
.cid-tOHPnpHZBA .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tOHPnpHZBA .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-tOHPnpHZBA .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tOHPnpHZBA .dropdown-menu,
.cid-tOHPnpHZBA .navbar.opened {
  background: #ffffff !important;
}
.cid-tOHPnpHZBA .nav-item:focus,
.cid-tOHPnpHZBA .nav-link:focus {
  outline: none;
}
.cid-tOHPnpHZBA .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tOHPnpHZBA .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tOHPnpHZBA .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tOHPnpHZBA .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tOHPnpHZBA .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tOHPnpHZBA .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tOHPnpHZBA .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-tOHPnpHZBA .navbar.opened {
  transition: all 0.3s;
}
.cid-tOHPnpHZBA .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tOHPnpHZBA .navbar .navbar-logo img {
  width: auto;
}
.cid-tOHPnpHZBA .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tOHPnpHZBA .navbar.collapsed {
  justify-content: center;
}
.cid-tOHPnpHZBA .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tOHPnpHZBA .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tOHPnpHZBA .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.4rem);
  }
}
.cid-tOHPnpHZBA .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tOHPnpHZBA .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tOHPnpHZBA .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-tOHPnpHZBA .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tOHPnpHZBA .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tOHPnpHZBA .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tOHPnpHZBA .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tOHPnpHZBA .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tOHPnpHZBA .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tOHPnpHZBA .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tOHPnpHZBA .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-tOHPnpHZBA .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tOHPnpHZBA .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tOHPnpHZBA .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tOHPnpHZBA .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tOHPnpHZBA .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tOHPnpHZBA .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-tOHPnpHZBA .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-tOHPnpHZBA .navbar.navbar-short {
  min-height: 60px;
}
.cid-tOHPnpHZBA .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tOHPnpHZBA .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tOHPnpHZBA .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-tOHPnpHZBA .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tOHPnpHZBA .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tOHPnpHZBA .dropdown-item.active,
.cid-tOHPnpHZBA .dropdown-item:active {
  background-color: transparent;
}
.cid-tOHPnpHZBA .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tOHPnpHZBA .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tOHPnpHZBA .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tOHPnpHZBA .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-tOHPnpHZBA .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tOHPnpHZBA .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tOHPnpHZBA ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tOHPnpHZBA .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tOHPnpHZBA button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tOHPnpHZBA button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-tOHPnpHZBA button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tOHPnpHZBA button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tOHPnpHZBA button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tOHPnpHZBA button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tOHPnpHZBA nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tOHPnpHZBA nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tOHPnpHZBA nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tOHPnpHZBA nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tOHPnpHZBA .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tOHPnpHZBA a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tOHPnpHZBA .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-tOHPnpHZBA .navbar {
    height: 70px;
  }
  .cid-tOHPnpHZBA .navbar.opened {
    height: auto;
  }
  .cid-tOHPnpHZBA .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tOHPnqvGAO {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/whatsapp-image-2021-08-18-at-22.09.24-17-1024x768.jpg");
}
.cid-tOHPnqvGAO .mbr-fallback-image.disabled {
  display: none;
}
.cid-tOHPnqvGAO .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tOHUMMdYa3 {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-tOHUMMdYa3 .mbr-section-subtitle {
  color: #353535;
}
.cid-tOHUMMdYa3 .mbr-text {
  color: #353535;
}
.cid-tOHPnr8dU7 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-tOHPnr8dU7 img,
.cid-tOHPnr8dU7 .item-img {
  width: 100%;
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-tOHPnr8dU7 .item:focus,
.cid-tOHPnr8dU7 span:focus {
  outline: none;
}
.cid-tOHPnr8dU7 .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-tOHPnr8dU7 .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-tOHPnr8dU7 .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-tOHPnr8dU7 .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tOHPnr8dU7 .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-tOHPnr8dU7 .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-tOHPnr8dU7 .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tOHPnr8dU7 .mbr-section-title {
  color: #232323;
}
.cid-tOHPnr8dU7 .mbr-text,
.cid-tOHPnr8dU7 .mbr-section-btn {
  text-align: left;
}
.cid-tOHPnr8dU7 .item-title {
  text-align: left;
}
.cid-tOHPnr8dU7 .item-subtitle {
  text-align: left;
  color: #878787;
}
.cid-tZU9paCe2g {
  padding-top: 0rem;
  padding-bottom: 6rem;
  background-color: #fafafa;
}
.cid-tZU9paCe2g img,
.cid-tZU9paCe2g .item-img {
  width: 100%;
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-tZU9paCe2g .item:focus,
.cid-tZU9paCe2g span:focus {
  outline: none;
}
.cid-tZU9paCe2g .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-tZU9paCe2g .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-tZU9paCe2g .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-tZU9paCe2g .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tZU9paCe2g .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-tZU9paCe2g .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-tZU9paCe2g .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tZU9paCe2g .mbr-section-title {
  color: #232323;
}
.cid-tZU9paCe2g .mbr-text,
.cid-tZU9paCe2g .mbr-section-btn {
  text-align: left;
}
.cid-tZU9paCe2g .item-title {
  text-align: left;
}
.cid-tZU9paCe2g .item-subtitle {
  text-align: left;
  color: #878787;
}
.cid-tQhf4Eb4TT {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #deecf7;
}
.cid-tQhf4Eb4TT .mbr-fallback-image.disabled {
  display: none;
}
.cid-tQhf4Eb4TT .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (min-width: 1500px) {
  .cid-tQhf4Eb4TT .container {
    max-width: 1400px;
  }
}
.cid-tQhf4Eb4TT .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #54565a;
  margin-bottom: 2rem;
}
.cid-tQhf4Eb4TT .card-wrapper {
  margin-top: 3rem;
}
.cid-tQhf4Eb4TT .row {
  justify-content: center;
}
.cid-tQhf46Z08J {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #deecf7;
}
.cid-tQhf46Z08J hr {
  border: 0;
  clear: both;
  display: block;
  margin: 2.4rem auto;
  text-align: center;
  width: 100%;
}
.cid-tQhf46Z08J .progress {
  background: #cccccc;
  opacity: 1;
  height: 1px;
  overflow: hidden;
  position: relative;
}
.cid-tQhf46Z08J .progress::before {
  animation-duration: 2s;
  animation-timing-function: ease;
  animation-iteration-count: infinite;
  animation-name: progress;
  background: #76bc21;
  content: "";
  display: block;
  height: 1px;
  position: absolute;
  width: 100px;
}
@keyframes progress {
  from {
    margin-left: 0%;
    width: 200px;
  }
  to {
    margin-left: 100%;
    width: 200px;
  }
}
.cid-tOHPnsEmR4 {
  padding-top: 4rem;
  padding-bottom: 3rem;
  background-color: #deecf7;
}
.cid-tOHPnsEmR4 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tOHPnsEmR4 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tOHPnsEmR4 .media-wrap {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-tOHPnsEmR4 .media-wrap {
    margin-bottom: 1rem;
  }
}
@media (max-width: 767px) {
  .cid-tOHPnsEmR4 .row {
    text-align: center;
  }
  .cid-tOHPnsEmR4 .row > div {
    margin: auto;
  }
  .cid-tOHPnsEmR4 .social-row {
    justify-content: center;
  }
}
.cid-tOHPnsEmR4 .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-tOHPnsEmR4 .list {
  list-style: none;
  padding-left: 0;
  color: #353535;
}
@media (max-width: 991px) {
  .cid-tOHPnsEmR4 .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tOHPnsEmR4 .list {
    margin-bottom: 0rem;
  }
}
.cid-tOHPnsEmR4 .mbr-text {
  color: #353535;
}
.cid-tOHPnsEmR4 .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
.cid-tOHPnsEmR4 .mbr-iconfont {
  color: black;
}
@media (max-width: 991px) {
  .cid-tOHPnsEmR4 div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-tOHPnsEmR4 H5 {
  color: #353535;
}
.cid-tOHPnsjBLp .float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 33px;
  left: 13px;
  background-color: #25d366;
  color: #ffffff;
  border-radius: 100px;
  text-align: center;
  font-size: 30px;
  box-shadow: 2px 2px 3px #999;
  z-index: 10000;
}
.cid-tOHPnsjBLp .my-float {
  margin-top: 16px;
}
.cid-tOHPnsjBLp P {
  color: #232323;
}
.cid-tOHPnsjBLp DIV {
  color: #ffffff;
}
.cid-tOHPnsjBLp H10 {
  color: #767676;
}
.cid-tOHPnsjBLp .hidden {
  display: none;
}
.cid-tOHPTLEwRG {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tOHPTLEwRG nav.navbar {
  position: fixed;
}
.cid-tOHPTLEwRG .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-tOHPTLEwRG .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tOHPTLEwRG .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tOHPTLEwRG .dropdown-item:hover,
.cid-tOHPTLEwRG .dropdown-item:focus {
  background: #004a98 !important;
  color: white !important;
}
.cid-tOHPTLEwRG .dropdown-item:hover span {
  color: white;
}
.cid-tOHPTLEwRG .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tOHPTLEwRG .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tOHPTLEwRG .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tOHPTLEwRG .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tOHPTLEwRG .nav-link {
  position: relative;
}
.cid-tOHPTLEwRG .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tOHPTLEwRG .container {
    flex-wrap: wrap;
  }
}
.cid-tOHPTLEwRG .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tOHPTLEwRG .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-tOHPTLEwRG .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tOHPTLEwRG .dropdown-menu,
.cid-tOHPTLEwRG .navbar.opened {
  background: #ffffff !important;
}
.cid-tOHPTLEwRG .nav-item:focus,
.cid-tOHPTLEwRG .nav-link:focus {
  outline: none;
}
.cid-tOHPTLEwRG .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tOHPTLEwRG .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tOHPTLEwRG .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tOHPTLEwRG .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tOHPTLEwRG .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tOHPTLEwRG .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tOHPTLEwRG .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-tOHPTLEwRG .navbar.opened {
  transition: all 0.3s;
}
.cid-tOHPTLEwRG .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tOHPTLEwRG .navbar .navbar-logo img {
  width: auto;
}
.cid-tOHPTLEwRG .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tOHPTLEwRG .navbar.collapsed {
  justify-content: center;
}
.cid-tOHPTLEwRG .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tOHPTLEwRG .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tOHPTLEwRG .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.4rem);
  }
}
.cid-tOHPTLEwRG .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tOHPTLEwRG .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tOHPTLEwRG .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-tOHPTLEwRG .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tOHPTLEwRG .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tOHPTLEwRG .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tOHPTLEwRG .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tOHPTLEwRG .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tOHPTLEwRG .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tOHPTLEwRG .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tOHPTLEwRG .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-tOHPTLEwRG .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tOHPTLEwRG .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tOHPTLEwRG .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tOHPTLEwRG .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tOHPTLEwRG .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tOHPTLEwRG .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-tOHPTLEwRG .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-tOHPTLEwRG .navbar.navbar-short {
  min-height: 60px;
}
.cid-tOHPTLEwRG .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tOHPTLEwRG .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tOHPTLEwRG .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-tOHPTLEwRG .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tOHPTLEwRG .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tOHPTLEwRG .dropdown-item.active,
.cid-tOHPTLEwRG .dropdown-item:active {
  background-color: transparent;
}
.cid-tOHPTLEwRG .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tOHPTLEwRG .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tOHPTLEwRG .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tOHPTLEwRG .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-tOHPTLEwRG .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tOHPTLEwRG .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tOHPTLEwRG ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tOHPTLEwRG .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tOHPTLEwRG button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tOHPTLEwRG button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-tOHPTLEwRG button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tOHPTLEwRG button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tOHPTLEwRG button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tOHPTLEwRG button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tOHPTLEwRG nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tOHPTLEwRG nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tOHPTLEwRG nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tOHPTLEwRG nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tOHPTLEwRG .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tOHPTLEwRG a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tOHPTLEwRG .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-tOHPTLEwRG .navbar {
    height: 70px;
  }
  .cid-tOHPTLEwRG .navbar.opened {
    height: auto;
  }
  .cid-tOHPTLEwRG .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tOHPTMcmuz {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/3dubleks-2000x1112.jpg");
}
.cid-tOHPTMcmuz .mbr-fallback-image.disabled {
  display: none;
}
.cid-tOHPTMcmuz .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tOHUlbXaM5 {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-tOHUlbXaM5 .mbr-section-subtitle {
  color: #353535;
}
.cid-tOHUlbXaM5 .mbr-text {
  color: #353535;
}
.cid-tOHQTkWX6b {
  padding-top: 0rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-tOHQTkWX6b .mbr-fallback-image.disabled {
  display: none;
}
.cid-tOHQTkWX6b .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-tOHQTkWX6b .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tOHQTkWX6b img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-tOHQTkWX6b .text-wrapper {
    padding: 2rem;
  }
}
.cid-tOHR8NytkC {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-tOHR8NytkC .mbr-fallback-image.disabled {
  display: none;
}
.cid-tOHR8NytkC .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tOHR8NytkC .item {
  padding-bottom: 2rem;
}
.cid-tOHR8NytkC .item-wrapper {
  height: 100%;
  position: relative;
}
.cid-tOHR8NytkC .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-tOHR8NytkC .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-tOHR8NytkC .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-tOHR8NytkC .carousel-control,
.cid-tOHR8NytkC .close {
  background: #1b1b1b;
}
.cid-tOHR8NytkC .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-tOHR8NytkC .carousel-control-prev span {
  margin-right: 5px;
}
.cid-tOHR8NytkC .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-tOHR8NytkC .carousel-control-next span {
  margin-left: 5px;
}
.cid-tOHR8NytkC .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-tOHR8NytkC .close::before {
  content: '\e91a';
}
.cid-tOHR8NytkC .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-tOHR8NytkC .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-tOHR8NytkC .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tOHR8NytkC .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-tOHR8NytkC .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-tOHR8NytkC .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-tOHR8NytkC .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-tOHR8NytkC .carousel-indicators li.active,
.cid-tOHR8NytkC .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-tOHR8NytkC .carousel-indicators li::after,
.cid-tOHR8NytkC .carousel-indicators li::before {
  content: none;
}
.cid-tOHR8NytkC .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-tOHR8NytkC .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-tOHR8NytkC .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-tOHR8NytkC .carousel-indicators {
    display: none;
  }
}
.cid-tOHR8NytkC .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-tOHR8NytkC .carousel-inner > .active {
  display: block;
}
.cid-tOHR8NytkC .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tOHR8NytkC .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tOHR8NytkC .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-tOHR8NytkC .carousel-control,
  .cid-tOHR8NytkC .carousel-indicators,
  .cid-tOHR8NytkC .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-tOHR8NytkC .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-tOHR8NytkC .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-tOHR8NytkC .carousel-indicators .active,
.cid-tOHR8NytkC .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-tOHR8NytkC .carousel-indicators .active {
  background: #fff;
}
.cid-tOHR8NytkC .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-tOHR8NytkC .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-tOHR8NytkC .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-tOHR8NytkC .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-tOHR8NytkC .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-tOHR8NytkC .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-tOHR8NytkC .carousel {
  width: 100%;
}
.cid-tOHR8NytkC .modal-backdrop.in {
  opacity: 0.8;
}
.cid-tOHR8NytkC .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-tOHR8NytkC .modal.fade .modal-dialog,
.cid-tOHR8NytkC .modal.in .modal-dialog {
  transform: none;
}
.cid-tOHR8NytkC .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-tOHR8NytkC H6 {
  text-align: center;
}
.cid-tOI0d35LDf {
  padding-top: 3rem;
  padding-bottom: 4rem;
  background-color: #ffffff;
}
.cid-tOI0d35LDf .mbr-fallback-image.disabled {
  display: none;
}
.cid-tOI0d35LDf .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tOI0d35LDf .card-box {
  padding: 2rem;
  width: 58.33%;
}
.cid-tOI0d35LDf .img-wrapper {
  width: 41.66%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-tOI0d35LDf .img1 {
  background: #fafafa;
}
.cid-tOI0d35LDf .img2 {
  background: #fafafa;
}
.cid-tOI0d35LDf .mbr-iconfont {
  display: block;
  font-size: 8rem;
  color: #ffffff;
  margin-bottom: 2rem;
}
.cid-tOI0d35LDf .card {
  margin: auto;
  min-height: 280px;
  transition: all 0.3s;
}
.cid-tOI0d35LDf .card-wrapper {
  background: #fafafa;
  border-radius: 4px;
  display: flex;
  overflow: hidden;
  justify-content: space-between;
}
@media (max-width: 992px) {
  .cid-tOI0d35LDf .card-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-tOI0d35LDf .card-wrapper {
    flex-direction: column;
  }
  .cid-tOI0d35LDf .card-box {
    padding: 1rem;
  }
  .cid-tOI0d35LDf .card-box,
  .cid-tOI0d35LDf .img-wrapper {
    width: 100%;
  }
  .cid-tOI0d35LDf .img-wrapper {
    padding: 4rem 1rem;
  }
  .cid-tOI0d35LDf .mbr-flex {
    flex-direction: column-reverse;
  }
}
.cid-tOI0d35LDf .card-subtitle {
  color: #0077ff;
}
.cid-tOI0d35LDf .mbr-text,
.cid-tOI0d35LDf .link-wrap {
  color: #555555;
}
.cid-tQheZdnKjL {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #deecf7;
}
.cid-tQheZdnKjL .mbr-fallback-image.disabled {
  display: none;
}
.cid-tQheZdnKjL .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (min-width: 1500px) {
  .cid-tQheZdnKjL .container {
    max-width: 1400px;
  }
}
.cid-tQheZdnKjL .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #54565a;
  margin-bottom: 2rem;
}
.cid-tQheZdnKjL .card-wrapper {
  margin-top: 3rem;
}
.cid-tQheZdnKjL .row {
  justify-content: center;
}
.cid-tQheYzaaYr {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #deecf7;
}
.cid-tQheYzaaYr hr {
  border: 0;
  clear: both;
  display: block;
  margin: 2.4rem auto;
  text-align: center;
  width: 100%;
}
.cid-tQheYzaaYr .progress {
  background: #cccccc;
  opacity: 1;
  height: 1px;
  overflow: hidden;
  position: relative;
}
.cid-tQheYzaaYr .progress::before {
  animation-duration: 2s;
  animation-timing-function: ease;
  animation-iteration-count: infinite;
  animation-name: progress;
  background: #76bc21;
  content: "";
  display: block;
  height: 1px;
  position: absolute;
  width: 100px;
}
@keyframes progress {
  from {
    margin-left: 0%;
    width: 200px;
  }
  to {
    margin-left: 100%;
    width: 200px;
  }
}
.cid-tOHPTNYoH7 {
  padding-top: 4rem;
  padding-bottom: 3rem;
  background-color: #deecf7;
}
.cid-tOHPTNYoH7 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tOHPTNYoH7 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tOHPTNYoH7 .media-wrap {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-tOHPTNYoH7 .media-wrap {
    margin-bottom: 1rem;
  }
}
@media (max-width: 767px) {
  .cid-tOHPTNYoH7 .row {
    text-align: center;
  }
  .cid-tOHPTNYoH7 .row > div {
    margin: auto;
  }
  .cid-tOHPTNYoH7 .social-row {
    justify-content: center;
  }
}
.cid-tOHPTNYoH7 .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-tOHPTNYoH7 .list {
  list-style: none;
  padding-left: 0;
  color: #353535;
}
@media (max-width: 991px) {
  .cid-tOHPTNYoH7 .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tOHPTNYoH7 .list {
    margin-bottom: 0rem;
  }
}
.cid-tOHPTNYoH7 .mbr-text {
  color: #353535;
}
.cid-tOHPTNYoH7 .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
.cid-tOHPTNYoH7 .mbr-iconfont {
  color: black;
}
@media (max-width: 991px) {
  .cid-tOHPTNYoH7 div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-tOHPTNYoH7 H5 {
  color: #353535;
}
.cid-tOHPTNyTjT .float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 33px;
  left: 13px;
  background-color: #25d366;
  color: #ffffff;
  border-radius: 100px;
  text-align: center;
  font-size: 30px;
  box-shadow: 2px 2px 3px #999;
  z-index: 10000;
}
.cid-tOHPTNyTjT .my-float {
  margin-top: 16px;
}
.cid-tOHPTNyTjT P {
  color: #232323;
}
.cid-tOHPTNyTjT DIV {
  color: #ffffff;
}
.cid-tOHPTNyTjT H10 {
  color: #767676;
}
.cid-tOHPTNyTjT .hidden {
  display: none;
}
.cid-tOHV2KuYSm {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tOHV2KuYSm nav.navbar {
  position: fixed;
}
.cid-tOHV2KuYSm .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-tOHV2KuYSm .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tOHV2KuYSm .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tOHV2KuYSm .dropdown-item:hover,
.cid-tOHV2KuYSm .dropdown-item:focus {
  background: #004a98 !important;
  color: white !important;
}
.cid-tOHV2KuYSm .dropdown-item:hover span {
  color: white;
}
.cid-tOHV2KuYSm .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tOHV2KuYSm .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tOHV2KuYSm .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tOHV2KuYSm .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tOHV2KuYSm .nav-link {
  position: relative;
}
.cid-tOHV2KuYSm .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tOHV2KuYSm .container {
    flex-wrap: wrap;
  }
}
.cid-tOHV2KuYSm .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tOHV2KuYSm .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-tOHV2KuYSm .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tOHV2KuYSm .dropdown-menu,
.cid-tOHV2KuYSm .navbar.opened {
  background: #ffffff !important;
}
.cid-tOHV2KuYSm .nav-item:focus,
.cid-tOHV2KuYSm .nav-link:focus {
  outline: none;
}
.cid-tOHV2KuYSm .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tOHV2KuYSm .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tOHV2KuYSm .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tOHV2KuYSm .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tOHV2KuYSm .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tOHV2KuYSm .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tOHV2KuYSm .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-tOHV2KuYSm .navbar.opened {
  transition: all 0.3s;
}
.cid-tOHV2KuYSm .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tOHV2KuYSm .navbar .navbar-logo img {
  width: auto;
}
.cid-tOHV2KuYSm .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tOHV2KuYSm .navbar.collapsed {
  justify-content: center;
}
.cid-tOHV2KuYSm .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tOHV2KuYSm .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tOHV2KuYSm .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.4rem);
  }
}
.cid-tOHV2KuYSm .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tOHV2KuYSm .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tOHV2KuYSm .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-tOHV2KuYSm .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tOHV2KuYSm .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tOHV2KuYSm .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tOHV2KuYSm .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tOHV2KuYSm .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tOHV2KuYSm .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tOHV2KuYSm .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tOHV2KuYSm .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-tOHV2KuYSm .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tOHV2KuYSm .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tOHV2KuYSm .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tOHV2KuYSm .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tOHV2KuYSm .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tOHV2KuYSm .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-tOHV2KuYSm .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-tOHV2KuYSm .navbar.navbar-short {
  min-height: 60px;
}
.cid-tOHV2KuYSm .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tOHV2KuYSm .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tOHV2KuYSm .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-tOHV2KuYSm .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tOHV2KuYSm .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tOHV2KuYSm .dropdown-item.active,
.cid-tOHV2KuYSm .dropdown-item:active {
  background-color: transparent;
}
.cid-tOHV2KuYSm .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tOHV2KuYSm .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tOHV2KuYSm .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tOHV2KuYSm .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-tOHV2KuYSm .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tOHV2KuYSm .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tOHV2KuYSm ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tOHV2KuYSm .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tOHV2KuYSm button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tOHV2KuYSm button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-tOHV2KuYSm button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tOHV2KuYSm button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tOHV2KuYSm button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tOHV2KuYSm button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tOHV2KuYSm nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tOHV2KuYSm nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tOHV2KuYSm nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tOHV2KuYSm nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tOHV2KuYSm .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tOHV2KuYSm a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tOHV2KuYSm .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-tOHV2KuYSm .navbar {
    height: 70px;
  }
  .cid-tOHV2KuYSm .navbar.opened {
    height: auto;
  }
  .cid-tOHV2KuYSm .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tOHV2KZizt {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/3dubleks-2000x1112.jpg");
}
.cid-tOHV2KZizt .mbr-fallback-image.disabled {
  display: none;
}
.cid-tOHV2KZizt .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tOHWtNOuxe {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-tOHWtNOuxe .mbr-section-subtitle {
  color: #353535;
}
.cid-tOHWtNOuxe .mbr-text {
  color: #353535;
}
.cid-tOHVQ7I608 {
  padding-top: 45px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-tOHVQ7I608 .showAlerts {
  display: block !important;
}
.cid-tOHVQ7I608 .rowflexrev {
  display: -webkit-flex;
}
.cid-tOHVQ7I608 .title {
  margin-bottom: 2rem;
}
.cid-tOHVQ7I608 .mbr-section-subtitle {
  color: #767676;
}
.cid-tOHVQ7I608 textarea.form-control {
  min-height: 188px;
}
.cid-tOHVQ7I608 LABEL {
  color: #232323;
  display: initial;
}
.cid-tOHVQ7I608 .mbr-section-terms {
  text-align: center;
  color: #232323;
  margin-bottom: 0px;
}
.cid-tOHVQ7I608 .mbr-section-labels {
  color: #232323;
  padding: 0;
  margin-bottom: .357em;
  text-align: left;
}
.cid-tOHVQ7I608 .mbr-section-autorespond {
  text-align: left;
  color: #232323;
  margin-bottom: 0px;
}
.cid-tOHVQ7I608 .mbr-section-gdpr {
  text-align: left;
  color: #232323;
  margin-bottom: 0px;
}
.cid-tOHVQ7I608 .alert {
  margin-bottom: 0;
}
.cid-tOHVQ7I608 .alert-success {
  background-color: #70c770;
}
.cid-tOHVQ7I608 .alert-danger {
  background-color: #ff4a52;
}
.cid-tOHVQ7I608 .btn {
  display: inline-flex;
}
.cid-tOHVQ7I608 .mbr-alert-success {
  text-align: left;
  color: #ffffff;
}
.cid-tOHVQ7I608 .mbr-alert-danger {
  text-align: left;
  color: #ffffff;
}
.cid-tOHVQ7I608 H2 {
  color: #353535;
}
.cid-tOHWRrDMhq {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background: #ffffff;
}
.cid-tOHWRrDMhq .mbr-fallback-image.disabled {
  display: none;
}
.cid-tOHWRrDMhq .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tOHWRrDMhq .google-map {
  height: 30rem;
  position: relative;
}
.cid-tOHWRrDMhq .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-tOHWRrDMhq .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-tOHWRrDMhq .google-map[data-state] {
  background: #e9e5dc;
}
.cid-tOHWRrDMhq .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-tOHV2MqSVN .float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 33px;
  left: 13px;
  background-color: #25d366;
  color: #ffffff;
  border-radius: 100px;
  text-align: center;
  font-size: 30px;
  box-shadow: 2px 2px 3px #999;
  z-index: 10000;
}
.cid-tOHV2MqSVN .my-float {
  margin-top: 16px;
}
.cid-tOHV2MqSVN P {
  color: #232323;
}
.cid-tOHV2MqSVN DIV {
  color: #ffffff;
}
.cid-tOHV2MqSVN H10 {
  color: #767676;
}
.cid-tOHV2MqSVN .hidden {
  display: none;
}
.cid-tQhf9YGuoE {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #deecf7;
}
.cid-tQhf9YGuoE .mbr-fallback-image.disabled {
  display: none;
}
.cid-tQhf9YGuoE .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (min-width: 1500px) {
  .cid-tQhf9YGuoE .container {
    max-width: 1400px;
  }
}
.cid-tQhf9YGuoE .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #54565a;
  margin-bottom: 2rem;
}
.cid-tQhf9YGuoE .card-wrapper {
  margin-top: 3rem;
}
.cid-tQhf9YGuoE .row {
  justify-content: center;
}
.cid-tQhf9xh2kM {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #deecf7;
}
.cid-tQhf9xh2kM hr {
  border: 0;
  clear: both;
  display: block;
  margin: 2.4rem auto;
  text-align: center;
  width: 100%;
}
.cid-tQhf9xh2kM .progress {
  background: #cccccc;
  opacity: 1;
  height: 1px;
  overflow: hidden;
  position: relative;
}
.cid-tQhf9xh2kM .progress::before {
  animation-duration: 2s;
  animation-timing-function: ease;
  animation-iteration-count: infinite;
  animation-name: progress;
  background: #76bc21;
  content: "";
  display: block;
  height: 1px;
  position: absolute;
  width: 100px;
}
@keyframes progress {
  from {
    margin-left: 0%;
    width: 200px;
  }
  to {
    margin-left: 100%;
    width: 200px;
  }
}
.cid-tOHV2MORHl {
  padding-top: 4rem;
  padding-bottom: 3rem;
  background-color: #deecf7;
}
.cid-tOHV2MORHl .mbr-fallback-image.disabled {
  display: none;
}
.cid-tOHV2MORHl .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tOHV2MORHl .media-wrap {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-tOHV2MORHl .media-wrap {
    margin-bottom: 1rem;
  }
}
@media (max-width: 767px) {
  .cid-tOHV2MORHl .row {
    text-align: center;
  }
  .cid-tOHV2MORHl .row > div {
    margin: auto;
  }
  .cid-tOHV2MORHl .social-row {
    justify-content: center;
  }
}
.cid-tOHV2MORHl .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-tOHV2MORHl .list {
  list-style: none;
  padding-left: 0;
  color: #353535;
}
@media (max-width: 991px) {
  .cid-tOHV2MORHl .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tOHV2MORHl .list {
    margin-bottom: 0rem;
  }
}
.cid-tOHV2MORHl .mbr-text {
  color: #353535;
}
.cid-tOHV2MORHl .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
.cid-tOHV2MORHl .mbr-iconfont {
  color: black;
}
@media (max-width: 991px) {
  .cid-tOHV2MORHl div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-tOHV2MORHl H5 {
  color: #353535;
}
.cid-tYA2JGixrS {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tYA2JGixrS nav.navbar {
  position: fixed;
}
.cid-tYA2JGixrS .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-tYA2JGixrS .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tYA2JGixrS .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tYA2JGixrS .dropdown-item:hover,
.cid-tYA2JGixrS .dropdown-item:focus {
  background: #004a98 !important;
  color: white !important;
}
.cid-tYA2JGixrS .dropdown-item:hover span {
  color: white;
}
.cid-tYA2JGixrS .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tYA2JGixrS .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tYA2JGixrS .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tYA2JGixrS .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tYA2JGixrS .nav-link {
  position: relative;
}
.cid-tYA2JGixrS .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tYA2JGixrS .container {
    flex-wrap: wrap;
  }
}
.cid-tYA2JGixrS .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tYA2JGixrS .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-tYA2JGixrS .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tYA2JGixrS .dropdown-menu,
.cid-tYA2JGixrS .navbar.opened {
  background: #ffffff !important;
}
.cid-tYA2JGixrS .nav-item:focus,
.cid-tYA2JGixrS .nav-link:focus {
  outline: none;
}
.cid-tYA2JGixrS .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tYA2JGixrS .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tYA2JGixrS .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tYA2JGixrS .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tYA2JGixrS .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tYA2JGixrS .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tYA2JGixrS .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-tYA2JGixrS .navbar.opened {
  transition: all 0.3s;
}
.cid-tYA2JGixrS .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tYA2JGixrS .navbar .navbar-logo img {
  width: auto;
}
.cid-tYA2JGixrS .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tYA2JGixrS .navbar.collapsed {
  justify-content: center;
}
.cid-tYA2JGixrS .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tYA2JGixrS .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tYA2JGixrS .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.4rem);
  }
}
.cid-tYA2JGixrS .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tYA2JGixrS .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tYA2JGixrS .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-tYA2JGixrS .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tYA2JGixrS .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tYA2JGixrS .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tYA2JGixrS .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tYA2JGixrS .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tYA2JGixrS .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tYA2JGixrS .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tYA2JGixrS .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-tYA2JGixrS .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tYA2JGixrS .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tYA2JGixrS .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tYA2JGixrS .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tYA2JGixrS .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tYA2JGixrS .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-tYA2JGixrS .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-tYA2JGixrS .navbar.navbar-short {
  min-height: 60px;
}
.cid-tYA2JGixrS .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tYA2JGixrS .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tYA2JGixrS .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-tYA2JGixrS .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tYA2JGixrS .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tYA2JGixrS .dropdown-item.active,
.cid-tYA2JGixrS .dropdown-item:active {
  background-color: transparent;
}
.cid-tYA2JGixrS .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tYA2JGixrS .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tYA2JGixrS .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tYA2JGixrS .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-tYA2JGixrS .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tYA2JGixrS .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tYA2JGixrS ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tYA2JGixrS .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tYA2JGixrS button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tYA2JGixrS button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-tYA2JGixrS button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tYA2JGixrS button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tYA2JGixrS button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tYA2JGixrS button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tYA2JGixrS nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tYA2JGixrS nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tYA2JGixrS nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tYA2JGixrS nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tYA2JGixrS .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tYA2JGixrS a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tYA2JGixrS .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-tYA2JGixrS .navbar {
    height: 70px;
  }
  .cid-tYA2JGixrS .navbar.opened {
    height: auto;
  }
  .cid-tYA2JGixrS .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tYA2JGLgrh {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/fnal-render-13-fotokk-2-2000x1226.jpg");
}
.cid-tYA2JGLgrh .mbr-fallback-image.disabled {
  display: none;
}
.cid-tYA2JGLgrh .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tYA2JH3o41 {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-tYA2JH3o41 .mbr-section-subtitle {
  color: #353535;
}
.cid-tYA2JH3o41 .mbr-text {
  color: #353535;
}
.cid-tYA2JHjbt4 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tYA2JHjbt4 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tYA2JHjbt4 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-tYA2JHjbt4 .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tYA2JHjbt4 img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-tYA2JHjbt4 .text-wrapper {
    padding: 2rem;
  }
}
.cid-tYA8rfGcsi {
  padding-top: 0rem;
  padding-bottom: 2rem;
  background-color: #fafafa;
}
.cid-tYA8rfGcsi .mbr-fallback-image.disabled {
  display: none;
}
.cid-tYA8rfGcsi .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-tYA8rfGcsi .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tYA8rfGcsi .row {
  flex-direction: row-reverse;
}
.cid-tYA8rfGcsi img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-tYA8rfGcsi .text-wrapper {
    padding: 2rem;
  }
}
.cid-tYA2JHHSjs {
  padding-top: 1rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-tYA2JHHSjs .mbr-fallback-image.disabled {
  display: none;
}
.cid-tYA2JHHSjs .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tYA2JHHSjs .item {
  padding-bottom: 2rem;
}
.cid-tYA2JHHSjs .item-wrapper {
  height: 100%;
  position: relative;
}
.cid-tYA2JHHSjs .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-tYA2JHHSjs .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-tYA2JHHSjs .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-tYA2JHHSjs .carousel-control,
.cid-tYA2JHHSjs .close {
  background: #1b1b1b;
}
.cid-tYA2JHHSjs .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-tYA2JHHSjs .carousel-control-prev span {
  margin-right: 5px;
}
.cid-tYA2JHHSjs .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-tYA2JHHSjs .carousel-control-next span {
  margin-left: 5px;
}
.cid-tYA2JHHSjs .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-tYA2JHHSjs .close::before {
  content: '\e91a';
}
.cid-tYA2JHHSjs .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-tYA2JHHSjs .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-tYA2JHHSjs .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tYA2JHHSjs .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-tYA2JHHSjs .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-tYA2JHHSjs .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-tYA2JHHSjs .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-tYA2JHHSjs .carousel-indicators li.active,
.cid-tYA2JHHSjs .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-tYA2JHHSjs .carousel-indicators li::after,
.cid-tYA2JHHSjs .carousel-indicators li::before {
  content: none;
}
.cid-tYA2JHHSjs .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-tYA2JHHSjs .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-tYA2JHHSjs .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-tYA2JHHSjs .carousel-indicators {
    display: none;
  }
}
.cid-tYA2JHHSjs .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-tYA2JHHSjs .carousel-inner > .active {
  display: block;
}
.cid-tYA2JHHSjs .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tYA2JHHSjs .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tYA2JHHSjs .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-tYA2JHHSjs .carousel-control,
  .cid-tYA2JHHSjs .carousel-indicators,
  .cid-tYA2JHHSjs .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-tYA2JHHSjs .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-tYA2JHHSjs .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-tYA2JHHSjs .carousel-indicators .active,
.cid-tYA2JHHSjs .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-tYA2JHHSjs .carousel-indicators .active {
  background: #fff;
}
.cid-tYA2JHHSjs .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-tYA2JHHSjs .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-tYA2JHHSjs .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-tYA2JHHSjs .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-tYA2JHHSjs .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-tYA2JHHSjs .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-tYA2JHHSjs .carousel {
  width: 100%;
}
.cid-tYA2JHHSjs .modal-backdrop.in {
  opacity: 0.8;
}
.cid-tYA2JHHSjs .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-tYA2JHHSjs .modal.fade .modal-dialog,
.cid-tYA2JHHSjs .modal.in .modal-dialog {
  transform: none;
}
.cid-tYA2JHHSjs .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-tYA2JHHSjs H6 {
  text-align: center;
}
.cid-tYAh63yeQ5 {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #fafafa;
}
.cid-tYAh63yeQ5 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tYAh63yeQ5 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-tYAh63yeQ5 .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tYAh63yeQ5 img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-tYAh63yeQ5 .text-wrapper {
    padding: 2rem;
  }
}
.cid-tYAhJXgxc0 {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-tYAhJXgxc0 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tYAhJXgxc0 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tYAhJXgxc0 .item {
  padding-bottom: 2rem;
}
.cid-tYAhJXgxc0 .item-wrapper {
  height: 100%;
  position: relative;
}
.cid-tYAhJXgxc0 .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-tYAhJXgxc0 .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-tYAhJXgxc0 .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-tYAhJXgxc0 .carousel-control,
.cid-tYAhJXgxc0 .close {
  background: #1b1b1b;
}
.cid-tYAhJXgxc0 .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-tYAhJXgxc0 .carousel-control-prev span {
  margin-right: 5px;
}
.cid-tYAhJXgxc0 .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-tYAhJXgxc0 .carousel-control-next span {
  margin-left: 5px;
}
.cid-tYAhJXgxc0 .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-tYAhJXgxc0 .close::before {
  content: '\e91a';
}
.cid-tYAhJXgxc0 .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-tYAhJXgxc0 .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-tYAhJXgxc0 .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tYAhJXgxc0 .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-tYAhJXgxc0 .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-tYAhJXgxc0 .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-tYAhJXgxc0 .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-tYAhJXgxc0 .carousel-indicators li.active,
.cid-tYAhJXgxc0 .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-tYAhJXgxc0 .carousel-indicators li::after,
.cid-tYAhJXgxc0 .carousel-indicators li::before {
  content: none;
}
.cid-tYAhJXgxc0 .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-tYAhJXgxc0 .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-tYAhJXgxc0 .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-tYAhJXgxc0 .carousel-indicators {
    display: none;
  }
}
.cid-tYAhJXgxc0 .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-tYAhJXgxc0 .carousel-inner > .active {
  display: block;
}
.cid-tYAhJXgxc0 .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tYAhJXgxc0 .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tYAhJXgxc0 .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-tYAhJXgxc0 .carousel-control,
  .cid-tYAhJXgxc0 .carousel-indicators,
  .cid-tYAhJXgxc0 .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-tYAhJXgxc0 .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-tYAhJXgxc0 .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-tYAhJXgxc0 .carousel-indicators .active,
.cid-tYAhJXgxc0 .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-tYAhJXgxc0 .carousel-indicators .active {
  background: #fff;
}
.cid-tYAhJXgxc0 .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-tYAhJXgxc0 .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-tYAhJXgxc0 .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-tYAhJXgxc0 .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-tYAhJXgxc0 .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-tYAhJXgxc0 .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-tYAhJXgxc0 .carousel {
  width: 100%;
}
.cid-tYAhJXgxc0 .modal-backdrop.in {
  opacity: 0.8;
}
.cid-tYAhJXgxc0 .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-tYAhJXgxc0 .modal.fade .modal-dialog,
.cid-tYAhJXgxc0 .modal.in .modal-dialog {
  transform: none;
}
.cid-tYAhJXgxc0 .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-tYAhJXgxc0 H6 {
  text-align: center;
}
.cid-tYAadAWNwc {
  padding-top: 0rem;
  padding-bottom: 2rem;
  background-color: #fafafa;
}
.cid-tYAadAWNwc .mbr-fallback-image.disabled {
  display: none;
}
.cid-tYAadAWNwc .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-tYAadAWNwc .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tYAadAWNwc img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-tYAadAWNwc .text-wrapper {
    padding: 2rem;
  }
}
.cid-tYAjDKj3Uh {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-tYAjDKj3Uh .mbr-fallback-image.disabled {
  display: none;
}
.cid-tYAjDKj3Uh .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tYAjDKj3Uh .item {
  padding-bottom: 2rem;
}
.cid-tYAjDKj3Uh .item-wrapper {
  height: 100%;
  position: relative;
}
.cid-tYAjDKj3Uh .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-tYAjDKj3Uh .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-tYAjDKj3Uh .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-tYAjDKj3Uh .carousel-control,
.cid-tYAjDKj3Uh .close {
  background: #1b1b1b;
}
.cid-tYAjDKj3Uh .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-tYAjDKj3Uh .carousel-control-prev span {
  margin-right: 5px;
}
.cid-tYAjDKj3Uh .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-tYAjDKj3Uh .carousel-control-next span {
  margin-left: 5px;
}
.cid-tYAjDKj3Uh .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-tYAjDKj3Uh .close::before {
  content: '\e91a';
}
.cid-tYAjDKj3Uh .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-tYAjDKj3Uh .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-tYAjDKj3Uh .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tYAjDKj3Uh .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-tYAjDKj3Uh .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-tYAjDKj3Uh .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-tYAjDKj3Uh .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-tYAjDKj3Uh .carousel-indicators li.active,
.cid-tYAjDKj3Uh .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-tYAjDKj3Uh .carousel-indicators li::after,
.cid-tYAjDKj3Uh .carousel-indicators li::before {
  content: none;
}
.cid-tYAjDKj3Uh .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-tYAjDKj3Uh .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-tYAjDKj3Uh .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-tYAjDKj3Uh .carousel-indicators {
    display: none;
  }
}
.cid-tYAjDKj3Uh .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-tYAjDKj3Uh .carousel-inner > .active {
  display: block;
}
.cid-tYAjDKj3Uh .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tYAjDKj3Uh .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tYAjDKj3Uh .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-tYAjDKj3Uh .carousel-control,
  .cid-tYAjDKj3Uh .carousel-indicators,
  .cid-tYAjDKj3Uh .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-tYAjDKj3Uh .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-tYAjDKj3Uh .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-tYAjDKj3Uh .carousel-indicators .active,
.cid-tYAjDKj3Uh .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-tYAjDKj3Uh .carousel-indicators .active {
  background: #fff;
}
.cid-tYAjDKj3Uh .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-tYAjDKj3Uh .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-tYAjDKj3Uh .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-tYAjDKj3Uh .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-tYAjDKj3Uh .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-tYAjDKj3Uh .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-tYAjDKj3Uh .carousel {
  width: 100%;
}
.cid-tYAjDKj3Uh .modal-backdrop.in {
  opacity: 0.8;
}
.cid-tYAjDKj3Uh .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-tYAjDKj3Uh .modal.fade .modal-dialog,
.cid-tYAjDKj3Uh .modal.in .modal-dialog {
  transform: none;
}
.cid-tYAjDKj3Uh .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-tYAjDKj3Uh H6 {
  text-align: center;
}
.cid-tYA2JJfVWF {
  padding-top: 3rem;
  padding-bottom: 4rem;
  background-color: #ffffff;
}
.cid-tYA2JJfVWF .mbr-fallback-image.disabled {
  display: none;
}
.cid-tYA2JJfVWF .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tYA2JJfVWF .card-box {
  padding: 2rem;
  width: 58.33%;
}
.cid-tYA2JJfVWF .img-wrapper {
  width: 41.66%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-tYA2JJfVWF .img1 {
  background: #fafafa;
}
.cid-tYA2JJfVWF .img2 {
  background: #fafafa;
}
.cid-tYA2JJfVWF .mbr-iconfont {
  display: block;
  font-size: 8rem;
  color: #ffffff;
  margin-bottom: 2rem;
}
.cid-tYA2JJfVWF .card {
  margin: auto;
  min-height: 280px;
  transition: all 0.3s;
}
.cid-tYA2JJfVWF .card-wrapper {
  background: #fafafa;
  border-radius: 4px;
  display: flex;
  overflow: hidden;
  justify-content: space-between;
}
@media (max-width: 992px) {
  .cid-tYA2JJfVWF .card-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-tYA2JJfVWF .card-wrapper {
    flex-direction: column;
  }
  .cid-tYA2JJfVWF .card-box {
    padding: 1rem;
  }
  .cid-tYA2JJfVWF .card-box,
  .cid-tYA2JJfVWF .img-wrapper {
    width: 100%;
  }
  .cid-tYA2JJfVWF .img-wrapper {
    padding: 4rem 1rem;
  }
  .cid-tYA2JJfVWF .mbr-flex {
    flex-direction: column-reverse;
  }
}
.cid-tYA2JJfVWF .card-subtitle {
  color: #0077ff;
}
.cid-tYA2JJfVWF .mbr-text,
.cid-tYA2JJfVWF .link-wrap {
  color: #555555;
}
.cid-tYA2JJI271 {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #deecf7;
}
.cid-tYA2JJI271 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tYA2JJI271 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (min-width: 1500px) {
  .cid-tYA2JJI271 .container {
    max-width: 1400px;
  }
}
.cid-tYA2JJI271 .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #54565a;
  margin-bottom: 2rem;
}
.cid-tYA2JJI271 .card-wrapper {
  margin-top: 3rem;
}
.cid-tYA2JJI271 .row {
  justify-content: center;
}
.cid-tYA2JKgCF7 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #deecf7;
}
.cid-tYA2JKgCF7 hr {
  border: 0;
  clear: both;
  display: block;
  margin: 2.4rem auto;
  text-align: center;
  width: 100%;
}
.cid-tYA2JKgCF7 .progress {
  background: #cccccc;
  opacity: 1;
  height: 1px;
  overflow: hidden;
  position: relative;
}
.cid-tYA2JKgCF7 .progress::before {
  animation-duration: 2s;
  animation-timing-function: ease;
  animation-iteration-count: infinite;
  animation-name: progress;
  background: #76bc21;
  content: "";
  display: block;
  height: 1px;
  position: absolute;
  width: 100px;
}
@keyframes progress {
  from {
    margin-left: 0%;
    width: 200px;
  }
  to {
    margin-left: 100%;
    width: 200px;
  }
}
.cid-tYA2JKHHl1 {
  padding-top: 4rem;
  padding-bottom: 3rem;
  background-color: #deecf7;
}
.cid-tYA2JKHHl1 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tYA2JKHHl1 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tYA2JKHHl1 .media-wrap {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-tYA2JKHHl1 .media-wrap {
    margin-bottom: 1rem;
  }
}
@media (max-width: 767px) {
  .cid-tYA2JKHHl1 .row {
    text-align: center;
  }
  .cid-tYA2JKHHl1 .row > div {
    margin: auto;
  }
  .cid-tYA2JKHHl1 .social-row {
    justify-content: center;
  }
}
.cid-tYA2JKHHl1 .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-tYA2JKHHl1 .list {
  list-style: none;
  padding-left: 0;
  color: #353535;
}
@media (max-width: 991px) {
  .cid-tYA2JKHHl1 .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tYA2JKHHl1 .list {
    margin-bottom: 0rem;
  }
}
.cid-tYA2JKHHl1 .mbr-text {
  color: #353535;
}
.cid-tYA2JKHHl1 .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
.cid-tYA2JKHHl1 .mbr-iconfont {
  color: black;
}
@media (max-width: 991px) {
  .cid-tYA2JKHHl1 div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-tYA2JKHHl1 H5 {
  color: #353535;
}
.cid-tYA2JLeTji .float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 33px;
  left: 13px;
  background-color: #25d366;
  color: #ffffff;
  border-radius: 100px;
  text-align: center;
  font-size: 30px;
  box-shadow: 2px 2px 3px #999;
  z-index: 10000;
}
.cid-tYA2JLeTji .my-float {
  margin-top: 16px;
}
.cid-tYA2JLeTji P {
  color: #232323;
}
.cid-tYA2JLeTji DIV {
  color: #ffffff;
}
.cid-tYA2JLeTji H10 {
  color: #767676;
}
.cid-tYA2JLeTji .hidden {
  display: none;
}
.cid-tZUaIdbIWI {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tZUaIdbIWI nav.navbar {
  position: fixed;
}
.cid-tZUaIdbIWI .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-tZUaIdbIWI .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tZUaIdbIWI .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tZUaIdbIWI .dropdown-item:hover,
.cid-tZUaIdbIWI .dropdown-item:focus {
  background: #004a98 !important;
  color: white !important;
}
.cid-tZUaIdbIWI .dropdown-item:hover span {
  color: white;
}
.cid-tZUaIdbIWI .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tZUaIdbIWI .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tZUaIdbIWI .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tZUaIdbIWI .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tZUaIdbIWI .nav-link {
  position: relative;
}
.cid-tZUaIdbIWI .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tZUaIdbIWI .container {
    flex-wrap: wrap;
  }
}
.cid-tZUaIdbIWI .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tZUaIdbIWI .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-tZUaIdbIWI .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tZUaIdbIWI .dropdown-menu,
.cid-tZUaIdbIWI .navbar.opened {
  background: #ffffff !important;
}
.cid-tZUaIdbIWI .nav-item:focus,
.cid-tZUaIdbIWI .nav-link:focus {
  outline: none;
}
.cid-tZUaIdbIWI .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tZUaIdbIWI .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tZUaIdbIWI .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tZUaIdbIWI .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tZUaIdbIWI .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tZUaIdbIWI .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tZUaIdbIWI .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-tZUaIdbIWI .navbar.opened {
  transition: all 0.3s;
}
.cid-tZUaIdbIWI .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tZUaIdbIWI .navbar .navbar-logo img {
  width: auto;
}
.cid-tZUaIdbIWI .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tZUaIdbIWI .navbar.collapsed {
  justify-content: center;
}
.cid-tZUaIdbIWI .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tZUaIdbIWI .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tZUaIdbIWI .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.4rem);
  }
}
.cid-tZUaIdbIWI .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tZUaIdbIWI .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tZUaIdbIWI .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-tZUaIdbIWI .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tZUaIdbIWI .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tZUaIdbIWI .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tZUaIdbIWI .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tZUaIdbIWI .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tZUaIdbIWI .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tZUaIdbIWI .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tZUaIdbIWI .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-tZUaIdbIWI .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tZUaIdbIWI .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tZUaIdbIWI .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tZUaIdbIWI .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tZUaIdbIWI .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tZUaIdbIWI .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-tZUaIdbIWI .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-tZUaIdbIWI .navbar.navbar-short {
  min-height: 60px;
}
.cid-tZUaIdbIWI .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tZUaIdbIWI .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tZUaIdbIWI .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-tZUaIdbIWI .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tZUaIdbIWI .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tZUaIdbIWI .dropdown-item.active,
.cid-tZUaIdbIWI .dropdown-item:active {
  background-color: transparent;
}
.cid-tZUaIdbIWI .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tZUaIdbIWI .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tZUaIdbIWI .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tZUaIdbIWI .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-tZUaIdbIWI .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tZUaIdbIWI .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tZUaIdbIWI ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tZUaIdbIWI .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tZUaIdbIWI button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tZUaIdbIWI button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-tZUaIdbIWI button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tZUaIdbIWI button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tZUaIdbIWI button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tZUaIdbIWI button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tZUaIdbIWI nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tZUaIdbIWI nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tZUaIdbIWI nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tZUaIdbIWI nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tZUaIdbIWI .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tZUaIdbIWI a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tZUaIdbIWI .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-tZUaIdbIWI .navbar {
    height: 70px;
  }
  .cid-tZUaIdbIWI .navbar.opened {
    height: auto;
  }
  .cid-tZUaIdbIWI .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tZUaIdFgf8 {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/bbeh7174-1328x747.jpg");
}
.cid-tZUaIdFgf8 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tZUaIdFgf8 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tZUaIdZJKz {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-tZUaIdZJKz .mbr-section-subtitle {
  color: #353535;
}
.cid-tZUaIdZJKz .mbr-text {
  color: #353535;
}
.cid-tZUaIeBVeG {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-tZUaIeBVeG .mbr-fallback-image.disabled {
  display: none;
}
.cid-tZUaIeBVeG .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tZUaIeBVeG .item {
  padding-bottom: 2rem;
}
.cid-tZUaIeBVeG .item-wrapper {
  height: 100%;
  position: relative;
}
.cid-tZUaIeBVeG .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-tZUaIeBVeG .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-tZUaIeBVeG .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-tZUaIeBVeG .carousel-control,
.cid-tZUaIeBVeG .close {
  background: #1b1b1b;
}
.cid-tZUaIeBVeG .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-tZUaIeBVeG .carousel-control-prev span {
  margin-right: 5px;
}
.cid-tZUaIeBVeG .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-tZUaIeBVeG .carousel-control-next span {
  margin-left: 5px;
}
.cid-tZUaIeBVeG .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-tZUaIeBVeG .close::before {
  content: '\e91a';
}
.cid-tZUaIeBVeG .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-tZUaIeBVeG .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-tZUaIeBVeG .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tZUaIeBVeG .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-tZUaIeBVeG .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-tZUaIeBVeG .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-tZUaIeBVeG .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-tZUaIeBVeG .carousel-indicators li.active,
.cid-tZUaIeBVeG .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-tZUaIeBVeG .carousel-indicators li::after,
.cid-tZUaIeBVeG .carousel-indicators li::before {
  content: none;
}
.cid-tZUaIeBVeG .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-tZUaIeBVeG .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-tZUaIeBVeG .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-tZUaIeBVeG .carousel-indicators {
    display: none;
  }
}
.cid-tZUaIeBVeG .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-tZUaIeBVeG .carousel-inner > .active {
  display: block;
}
.cid-tZUaIeBVeG .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tZUaIeBVeG .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tZUaIeBVeG .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-tZUaIeBVeG .carousel-control,
  .cid-tZUaIeBVeG .carousel-indicators,
  .cid-tZUaIeBVeG .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-tZUaIeBVeG .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-tZUaIeBVeG .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-tZUaIeBVeG .carousel-indicators .active,
.cid-tZUaIeBVeG .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-tZUaIeBVeG .carousel-indicators .active {
  background: #fff;
}
.cid-tZUaIeBVeG .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-tZUaIeBVeG .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-tZUaIeBVeG .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-tZUaIeBVeG .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-tZUaIeBVeG .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-tZUaIeBVeG .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-tZUaIeBVeG .carousel {
  width: 100%;
}
.cid-tZUaIeBVeG .modal-backdrop.in {
  opacity: 0.8;
}
.cid-tZUaIeBVeG .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-tZUaIeBVeG .modal.fade .modal-dialog,
.cid-tZUaIeBVeG .modal.in .modal-dialog {
  transform: none;
}
.cid-tZUaIeBVeG .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-tZUaIeBVeG H6 {
  text-align: center;
}
.cid-tZUaIgFrYa {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #deecf7;
}
.cid-tZUaIgFrYa .mbr-fallback-image.disabled {
  display: none;
}
.cid-tZUaIgFrYa .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (min-width: 1500px) {
  .cid-tZUaIgFrYa .container {
    max-width: 1400px;
  }
}
.cid-tZUaIgFrYa .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #54565a;
  margin-bottom: 2rem;
}
.cid-tZUaIgFrYa .card-wrapper {
  margin-top: 3rem;
}
.cid-tZUaIgFrYa .row {
  justify-content: center;
}
.cid-tZUaIhcqxu {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #deecf7;
}
.cid-tZUaIhcqxu hr {
  border: 0;
  clear: both;
  display: block;
  margin: 2.4rem auto;
  text-align: center;
  width: 100%;
}
.cid-tZUaIhcqxu .progress {
  background: #cccccc;
  opacity: 1;
  height: 1px;
  overflow: hidden;
  position: relative;
}
.cid-tZUaIhcqxu .progress::before {
  animation-duration: 2s;
  animation-timing-function: ease;
  animation-iteration-count: infinite;
  animation-name: progress;
  background: #76bc21;
  content: "";
  display: block;
  height: 1px;
  position: absolute;
  width: 100px;
}
@keyframes progress {
  from {
    margin-left: 0%;
    width: 200px;
  }
  to {
    margin-left: 100%;
    width: 200px;
  }
}
.cid-tZUaIhAPsL {
  padding-top: 4rem;
  padding-bottom: 3rem;
  background-color: #deecf7;
}
.cid-tZUaIhAPsL .mbr-fallback-image.disabled {
  display: none;
}
.cid-tZUaIhAPsL .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tZUaIhAPsL .media-wrap {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-tZUaIhAPsL .media-wrap {
    margin-bottom: 1rem;
  }
}
@media (max-width: 767px) {
  .cid-tZUaIhAPsL .row {
    text-align: center;
  }
  .cid-tZUaIhAPsL .row > div {
    margin: auto;
  }
  .cid-tZUaIhAPsL .social-row {
    justify-content: center;
  }
}
.cid-tZUaIhAPsL .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-tZUaIhAPsL .list {
  list-style: none;
  padding-left: 0;
  color: #353535;
}
@media (max-width: 991px) {
  .cid-tZUaIhAPsL .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tZUaIhAPsL .list {
    margin-bottom: 0rem;
  }
}
.cid-tZUaIhAPsL .mbr-text {
  color: #353535;
}
.cid-tZUaIhAPsL .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
.cid-tZUaIhAPsL .mbr-iconfont {
  color: black;
}
@media (max-width: 991px) {
  .cid-tZUaIhAPsL div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-tZUaIhAPsL H5 {
  color: #353535;
}
.cid-tZUaIi7dC9 .float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 33px;
  left: 13px;
  background-color: #25d366;
  color: #ffffff;
  border-radius: 100px;
  text-align: center;
  font-size: 30px;
  box-shadow: 2px 2px 3px #999;
  z-index: 10000;
}
.cid-tZUaIi7dC9 .my-float {
  margin-top: 16px;
}
.cid-tZUaIi7dC9 P {
  color: #232323;
}
.cid-tZUaIi7dC9 DIV {
  color: #ffffff;
}
.cid-tZUaIi7dC9 H10 {
  color: #767676;
}
.cid-tZUaIi7dC9 .hidden {
  display: none;
}
.cid-tZUdzuLY2E {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tZUdzuLY2E nav.navbar {
  position: fixed;
}
.cid-tZUdzuLY2E .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-tZUdzuLY2E .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tZUdzuLY2E .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tZUdzuLY2E .dropdown-item:hover,
.cid-tZUdzuLY2E .dropdown-item:focus {
  background: #004a98 !important;
  color: white !important;
}
.cid-tZUdzuLY2E .dropdown-item:hover span {
  color: white;
}
.cid-tZUdzuLY2E .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tZUdzuLY2E .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tZUdzuLY2E .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tZUdzuLY2E .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tZUdzuLY2E .nav-link {
  position: relative;
}
.cid-tZUdzuLY2E .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tZUdzuLY2E .container {
    flex-wrap: wrap;
  }
}
.cid-tZUdzuLY2E .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tZUdzuLY2E .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-tZUdzuLY2E .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tZUdzuLY2E .dropdown-menu,
.cid-tZUdzuLY2E .navbar.opened {
  background: #ffffff !important;
}
.cid-tZUdzuLY2E .nav-item:focus,
.cid-tZUdzuLY2E .nav-link:focus {
  outline: none;
}
.cid-tZUdzuLY2E .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tZUdzuLY2E .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tZUdzuLY2E .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tZUdzuLY2E .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tZUdzuLY2E .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tZUdzuLY2E .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tZUdzuLY2E .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-tZUdzuLY2E .navbar.opened {
  transition: all 0.3s;
}
.cid-tZUdzuLY2E .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tZUdzuLY2E .navbar .navbar-logo img {
  width: auto;
}
.cid-tZUdzuLY2E .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tZUdzuLY2E .navbar.collapsed {
  justify-content: center;
}
.cid-tZUdzuLY2E .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tZUdzuLY2E .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tZUdzuLY2E .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.4rem);
  }
}
.cid-tZUdzuLY2E .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tZUdzuLY2E .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tZUdzuLY2E .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-tZUdzuLY2E .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tZUdzuLY2E .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tZUdzuLY2E .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tZUdzuLY2E .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tZUdzuLY2E .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tZUdzuLY2E .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tZUdzuLY2E .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tZUdzuLY2E .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-tZUdzuLY2E .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tZUdzuLY2E .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tZUdzuLY2E .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tZUdzuLY2E .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tZUdzuLY2E .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tZUdzuLY2E .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-tZUdzuLY2E .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-tZUdzuLY2E .navbar.navbar-short {
  min-height: 60px;
}
.cid-tZUdzuLY2E .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tZUdzuLY2E .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tZUdzuLY2E .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-tZUdzuLY2E .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tZUdzuLY2E .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tZUdzuLY2E .dropdown-item.active,
.cid-tZUdzuLY2E .dropdown-item:active {
  background-color: transparent;
}
.cid-tZUdzuLY2E .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tZUdzuLY2E .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tZUdzuLY2E .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tZUdzuLY2E .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-tZUdzuLY2E .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tZUdzuLY2E .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tZUdzuLY2E ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tZUdzuLY2E .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tZUdzuLY2E button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tZUdzuLY2E button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-tZUdzuLY2E button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tZUdzuLY2E button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tZUdzuLY2E button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tZUdzuLY2E button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tZUdzuLY2E nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tZUdzuLY2E nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tZUdzuLY2E nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tZUdzuLY2E nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tZUdzuLY2E .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tZUdzuLY2E a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tZUdzuLY2E .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-tZUdzuLY2E .navbar {
    height: 70px;
  }
  .cid-tZUdzuLY2E .navbar.opened {
    height: auto;
  }
  .cid-tZUdzuLY2E .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tZUdzvxab4 {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/img-8857-1600x900.jpg");
}
.cid-tZUdzvxab4 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tZUdzvxab4 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tZUdzwi5xc {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-tZUdzwi5xc .mbr-section-subtitle {
  color: #353535;
}
.cid-tZUdzwi5xc .mbr-text {
  color: #353535;
}
.cid-tZUdI5gY0k {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-tZUdI5gY0k .mbr-fallback-image.disabled {
  display: none;
}
.cid-tZUdI5gY0k .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tZUdI5gY0k .item {
  padding-bottom: 2rem;
}
.cid-tZUdI5gY0k .item-wrapper {
  height: 100%;
  position: relative;
}
.cid-tZUdI5gY0k .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-tZUdI5gY0k .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-tZUdI5gY0k .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-tZUdI5gY0k .carousel-control,
.cid-tZUdI5gY0k .close {
  background: #1b1b1b;
}
.cid-tZUdI5gY0k .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-tZUdI5gY0k .carousel-control-prev span {
  margin-right: 5px;
}
.cid-tZUdI5gY0k .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-tZUdI5gY0k .carousel-control-next span {
  margin-left: 5px;
}
.cid-tZUdI5gY0k .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-tZUdI5gY0k .close::before {
  content: '\e91a';
}
.cid-tZUdI5gY0k .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-tZUdI5gY0k .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-tZUdI5gY0k .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tZUdI5gY0k .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-tZUdI5gY0k .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-tZUdI5gY0k .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-tZUdI5gY0k .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-tZUdI5gY0k .carousel-indicators li.active,
.cid-tZUdI5gY0k .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-tZUdI5gY0k .carousel-indicators li::after,
.cid-tZUdI5gY0k .carousel-indicators li::before {
  content: none;
}
.cid-tZUdI5gY0k .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-tZUdI5gY0k .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-tZUdI5gY0k .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-tZUdI5gY0k .carousel-indicators {
    display: none;
  }
}
.cid-tZUdI5gY0k .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-tZUdI5gY0k .carousel-inner > .active {
  display: block;
}
.cid-tZUdI5gY0k .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tZUdI5gY0k .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tZUdI5gY0k .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-tZUdI5gY0k .carousel-control,
  .cid-tZUdI5gY0k .carousel-indicators,
  .cid-tZUdI5gY0k .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-tZUdI5gY0k .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-tZUdI5gY0k .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-tZUdI5gY0k .carousel-indicators .active,
.cid-tZUdI5gY0k .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-tZUdI5gY0k .carousel-indicators .active {
  background: #fff;
}
.cid-tZUdI5gY0k .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-tZUdI5gY0k .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-tZUdI5gY0k .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-tZUdI5gY0k .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-tZUdI5gY0k .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-tZUdI5gY0k .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-tZUdI5gY0k .carousel {
  width: 100%;
}
.cid-tZUdI5gY0k .modal-backdrop.in {
  opacity: 0.8;
}
.cid-tZUdI5gY0k .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-tZUdI5gY0k .modal.fade .modal-dialog,
.cid-tZUdI5gY0k .modal.in .modal-dialog {
  transform: none;
}
.cid-tZUdI5gY0k .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-tZUdI5gY0k H6 {
  text-align: center;
}
.cid-tZUdzyF3Gg {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #deecf7;
}
.cid-tZUdzyF3Gg .mbr-fallback-image.disabled {
  display: none;
}
.cid-tZUdzyF3Gg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (min-width: 1500px) {
  .cid-tZUdzyF3Gg .container {
    max-width: 1400px;
  }
}
.cid-tZUdzyF3Gg .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #54565a;
  margin-bottom: 2rem;
}
.cid-tZUdzyF3Gg .card-wrapper {
  margin-top: 3rem;
}
.cid-tZUdzyF3Gg .row {
  justify-content: center;
}
.cid-tZUdzzaQaj {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #deecf7;
}
.cid-tZUdzzaQaj hr {
  border: 0;
  clear: both;
  display: block;
  margin: 2.4rem auto;
  text-align: center;
  width: 100%;
}
.cid-tZUdzzaQaj .progress {
  background: #cccccc;
  opacity: 1;
  height: 1px;
  overflow: hidden;
  position: relative;
}
.cid-tZUdzzaQaj .progress::before {
  animation-duration: 2s;
  animation-timing-function: ease;
  animation-iteration-count: infinite;
  animation-name: progress;
  background: #76bc21;
  content: "";
  display: block;
  height: 1px;
  position: absolute;
  width: 100px;
}
@keyframes progress {
  from {
    margin-left: 0%;
    width: 200px;
  }
  to {
    margin-left: 100%;
    width: 200px;
  }
}
.cid-tZUdzzvEaT {
  padding-top: 4rem;
  padding-bottom: 3rem;
  background-color: #deecf7;
}
.cid-tZUdzzvEaT .mbr-fallback-image.disabled {
  display: none;
}
.cid-tZUdzzvEaT .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tZUdzzvEaT .media-wrap {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-tZUdzzvEaT .media-wrap {
    margin-bottom: 1rem;
  }
}
@media (max-width: 767px) {
  .cid-tZUdzzvEaT .row {
    text-align: center;
  }
  .cid-tZUdzzvEaT .row > div {
    margin: auto;
  }
  .cid-tZUdzzvEaT .social-row {
    justify-content: center;
  }
}
.cid-tZUdzzvEaT .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-tZUdzzvEaT .list {
  list-style: none;
  padding-left: 0;
  color: #353535;
}
@media (max-width: 991px) {
  .cid-tZUdzzvEaT .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tZUdzzvEaT .list {
    margin-bottom: 0rem;
  }
}
.cid-tZUdzzvEaT .mbr-text {
  color: #353535;
}
.cid-tZUdzzvEaT .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
.cid-tZUdzzvEaT .mbr-iconfont {
  color: black;
}
@media (max-width: 991px) {
  .cid-tZUdzzvEaT div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-tZUdzzvEaT H5 {
  color: #353535;
}
.cid-tZUdzA4cM3 .float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 33px;
  left: 13px;
  background-color: #25d366;
  color: #ffffff;
  border-radius: 100px;
  text-align: center;
  font-size: 30px;
  box-shadow: 2px 2px 3px #999;
  z-index: 10000;
}
.cid-tZUdzA4cM3 .my-float {
  margin-top: 16px;
}
.cid-tZUdzA4cM3 P {
  color: #232323;
}
.cid-tZUdzA4cM3 DIV {
  color: #ffffff;
}
.cid-tZUdzA4cM3 H10 {
  color: #767676;
}
.cid-tZUdzA4cM3 .hidden {
  display: none;
}
.cid-tZUgvZtrSY {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tZUgvZtrSY nav.navbar {
  position: fixed;
}
.cid-tZUgvZtrSY .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-tZUgvZtrSY .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tZUgvZtrSY .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tZUgvZtrSY .dropdown-item:hover,
.cid-tZUgvZtrSY .dropdown-item:focus {
  background: #004a98 !important;
  color: white !important;
}
.cid-tZUgvZtrSY .dropdown-item:hover span {
  color: white;
}
.cid-tZUgvZtrSY .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tZUgvZtrSY .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tZUgvZtrSY .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tZUgvZtrSY .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tZUgvZtrSY .nav-link {
  position: relative;
}
.cid-tZUgvZtrSY .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tZUgvZtrSY .container {
    flex-wrap: wrap;
  }
}
.cid-tZUgvZtrSY .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tZUgvZtrSY .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-tZUgvZtrSY .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tZUgvZtrSY .dropdown-menu,
.cid-tZUgvZtrSY .navbar.opened {
  background: #ffffff !important;
}
.cid-tZUgvZtrSY .nav-item:focus,
.cid-tZUgvZtrSY .nav-link:focus {
  outline: none;
}
.cid-tZUgvZtrSY .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tZUgvZtrSY .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tZUgvZtrSY .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tZUgvZtrSY .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tZUgvZtrSY .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tZUgvZtrSY .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tZUgvZtrSY .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-tZUgvZtrSY .navbar.opened {
  transition: all 0.3s;
}
.cid-tZUgvZtrSY .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tZUgvZtrSY .navbar .navbar-logo img {
  width: auto;
}
.cid-tZUgvZtrSY .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tZUgvZtrSY .navbar.collapsed {
  justify-content: center;
}
.cid-tZUgvZtrSY .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tZUgvZtrSY .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tZUgvZtrSY .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.4rem);
  }
}
.cid-tZUgvZtrSY .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tZUgvZtrSY .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tZUgvZtrSY .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-tZUgvZtrSY .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tZUgvZtrSY .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tZUgvZtrSY .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tZUgvZtrSY .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tZUgvZtrSY .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tZUgvZtrSY .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tZUgvZtrSY .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tZUgvZtrSY .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-tZUgvZtrSY .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tZUgvZtrSY .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tZUgvZtrSY .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tZUgvZtrSY .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tZUgvZtrSY .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tZUgvZtrSY .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-tZUgvZtrSY .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-tZUgvZtrSY .navbar.navbar-short {
  min-height: 60px;
}
.cid-tZUgvZtrSY .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tZUgvZtrSY .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tZUgvZtrSY .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-tZUgvZtrSY .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tZUgvZtrSY .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tZUgvZtrSY .dropdown-item.active,
.cid-tZUgvZtrSY .dropdown-item:active {
  background-color: transparent;
}
.cid-tZUgvZtrSY .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tZUgvZtrSY .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tZUgvZtrSY .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tZUgvZtrSY .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-tZUgvZtrSY .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tZUgvZtrSY .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tZUgvZtrSY ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tZUgvZtrSY .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tZUgvZtrSY button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tZUgvZtrSY button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-tZUgvZtrSY button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tZUgvZtrSY button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tZUgvZtrSY button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tZUgvZtrSY button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tZUgvZtrSY nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tZUgvZtrSY nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tZUgvZtrSY nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tZUgvZtrSY nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tZUgvZtrSY .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tZUgvZtrSY a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tZUgvZtrSY .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-tZUgvZtrSY .navbar {
    height: 70px;
  }
  .cid-tZUgvZtrSY .navbar.opened {
    height: auto;
  }
  .cid-tZUgvZtrSY .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tZUgw00wLY {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/img-344-1600x900.jpg");
}
.cid-tZUgw00wLY .mbr-fallback-image.disabled {
  display: none;
}
.cid-tZUgw00wLY .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tZUgw0jwr8 {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-tZUgw0jwr8 .mbr-section-subtitle {
  color: #353535;
}
.cid-tZUgw0jwr8 .mbr-text {
  color: #353535;
}
.cid-tZUgOK1OpX {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-tZUgOK1OpX .mbr-fallback-image.disabled {
  display: none;
}
.cid-tZUgOK1OpX .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tZUgOK1OpX .item {
  padding-bottom: 2rem;
}
.cid-tZUgOK1OpX .item-wrapper {
  height: 100%;
  position: relative;
}
.cid-tZUgOK1OpX .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-tZUgOK1OpX .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-tZUgOK1OpX .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-tZUgOK1OpX .carousel-control,
.cid-tZUgOK1OpX .close {
  background: #1b1b1b;
}
.cid-tZUgOK1OpX .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-tZUgOK1OpX .carousel-control-prev span {
  margin-right: 5px;
}
.cid-tZUgOK1OpX .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-tZUgOK1OpX .carousel-control-next span {
  margin-left: 5px;
}
.cid-tZUgOK1OpX .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-tZUgOK1OpX .close::before {
  content: '\e91a';
}
.cid-tZUgOK1OpX .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-tZUgOK1OpX .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-tZUgOK1OpX .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tZUgOK1OpX .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-tZUgOK1OpX .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-tZUgOK1OpX .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-tZUgOK1OpX .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-tZUgOK1OpX .carousel-indicators li.active,
.cid-tZUgOK1OpX .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-tZUgOK1OpX .carousel-indicators li::after,
.cid-tZUgOK1OpX .carousel-indicators li::before {
  content: none;
}
.cid-tZUgOK1OpX .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-tZUgOK1OpX .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-tZUgOK1OpX .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-tZUgOK1OpX .carousel-indicators {
    display: none;
  }
}
.cid-tZUgOK1OpX .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-tZUgOK1OpX .carousel-inner > .active {
  display: block;
}
.cid-tZUgOK1OpX .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tZUgOK1OpX .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tZUgOK1OpX .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-tZUgOK1OpX .carousel-control,
  .cid-tZUgOK1OpX .carousel-indicators,
  .cid-tZUgOK1OpX .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-tZUgOK1OpX .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-tZUgOK1OpX .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-tZUgOK1OpX .carousel-indicators .active,
.cid-tZUgOK1OpX .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-tZUgOK1OpX .carousel-indicators .active {
  background: #fff;
}
.cid-tZUgOK1OpX .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-tZUgOK1OpX .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-tZUgOK1OpX .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-tZUgOK1OpX .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-tZUgOK1OpX .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-tZUgOK1OpX .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-tZUgOK1OpX .carousel {
  width: 100%;
}
.cid-tZUgOK1OpX .modal-backdrop.in {
  opacity: 0.8;
}
.cid-tZUgOK1OpX .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-tZUgOK1OpX .modal.fade .modal-dialog,
.cid-tZUgOK1OpX .modal.in .modal-dialog {
  transform: none;
}
.cid-tZUgOK1OpX .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-tZUgOK1OpX H6 {
  text-align: center;
}
.cid-tZUgw28lzt {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #deecf7;
}
.cid-tZUgw28lzt .mbr-fallback-image.disabled {
  display: none;
}
.cid-tZUgw28lzt .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (min-width: 1500px) {
  .cid-tZUgw28lzt .container {
    max-width: 1400px;
  }
}
.cid-tZUgw28lzt .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #54565a;
  margin-bottom: 2rem;
}
.cid-tZUgw28lzt .card-wrapper {
  margin-top: 3rem;
}
.cid-tZUgw28lzt .row {
  justify-content: center;
}
.cid-tZUgw2F6XJ {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #deecf7;
}
.cid-tZUgw2F6XJ hr {
  border: 0;
  clear: both;
  display: block;
  margin: 2.4rem auto;
  text-align: center;
  width: 100%;
}
.cid-tZUgw2F6XJ .progress {
  background: #cccccc;
  opacity: 1;
  height: 1px;
  overflow: hidden;
  position: relative;
}
.cid-tZUgw2F6XJ .progress::before {
  animation-duration: 2s;
  animation-timing-function: ease;
  animation-iteration-count: infinite;
  animation-name: progress;
  background: #76bc21;
  content: "";
  display: block;
  height: 1px;
  position: absolute;
  width: 100px;
}
@keyframes progress {
  from {
    margin-left: 0%;
    width: 200px;
  }
  to {
    margin-left: 100%;
    width: 200px;
  }
}
.cid-tZUgw33OKa {
  padding-top: 4rem;
  padding-bottom: 3rem;
  background-color: #deecf7;
}
.cid-tZUgw33OKa .mbr-fallback-image.disabled {
  display: none;
}
.cid-tZUgw33OKa .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tZUgw33OKa .media-wrap {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-tZUgw33OKa .media-wrap {
    margin-bottom: 1rem;
  }
}
@media (max-width: 767px) {
  .cid-tZUgw33OKa .row {
    text-align: center;
  }
  .cid-tZUgw33OKa .row > div {
    margin: auto;
  }
  .cid-tZUgw33OKa .social-row {
    justify-content: center;
  }
}
.cid-tZUgw33OKa .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-tZUgw33OKa .list {
  list-style: none;
  padding-left: 0;
  color: #353535;
}
@media (max-width: 991px) {
  .cid-tZUgw33OKa .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tZUgw33OKa .list {
    margin-bottom: 0rem;
  }
}
.cid-tZUgw33OKa .mbr-text {
  color: #353535;
}
.cid-tZUgw33OKa .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
.cid-tZUgw33OKa .mbr-iconfont {
  color: black;
}
@media (max-width: 991px) {
  .cid-tZUgw33OKa div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-tZUgw33OKa H5 {
  color: #353535;
}
.cid-tZUgw3zBpr .float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 33px;
  left: 13px;
  background-color: #25d366;
  color: #ffffff;
  border-radius: 100px;
  text-align: center;
  font-size: 30px;
  box-shadow: 2px 2px 3px #999;
  z-index: 10000;
}
.cid-tZUgw3zBpr .my-float {
  margin-top: 16px;
}
.cid-tZUgw3zBpr P {
  color: #232323;
}
.cid-tZUgw3zBpr DIV {
  color: #ffffff;
}
.cid-tZUgw3zBpr H10 {
  color: #767676;
}
.cid-tZUgw3zBpr .hidden {
  display: none;
}
.cid-tZUkYkdUcX {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tZUkYkdUcX nav.navbar {
  position: fixed;
}
.cid-tZUkYkdUcX .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-tZUkYkdUcX .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tZUkYkdUcX .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tZUkYkdUcX .dropdown-item:hover,
.cid-tZUkYkdUcX .dropdown-item:focus {
  background: #004a98 !important;
  color: white !important;
}
.cid-tZUkYkdUcX .dropdown-item:hover span {
  color: white;
}
.cid-tZUkYkdUcX .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tZUkYkdUcX .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tZUkYkdUcX .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tZUkYkdUcX .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tZUkYkdUcX .nav-link {
  position: relative;
}
.cid-tZUkYkdUcX .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tZUkYkdUcX .container {
    flex-wrap: wrap;
  }
}
.cid-tZUkYkdUcX .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tZUkYkdUcX .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-tZUkYkdUcX .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tZUkYkdUcX .dropdown-menu,
.cid-tZUkYkdUcX .navbar.opened {
  background: #ffffff !important;
}
.cid-tZUkYkdUcX .nav-item:focus,
.cid-tZUkYkdUcX .nav-link:focus {
  outline: none;
}
.cid-tZUkYkdUcX .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tZUkYkdUcX .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tZUkYkdUcX .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tZUkYkdUcX .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tZUkYkdUcX .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tZUkYkdUcX .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tZUkYkdUcX .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-tZUkYkdUcX .navbar.opened {
  transition: all 0.3s;
}
.cid-tZUkYkdUcX .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tZUkYkdUcX .navbar .navbar-logo img {
  width: auto;
}
.cid-tZUkYkdUcX .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tZUkYkdUcX .navbar.collapsed {
  justify-content: center;
}
.cid-tZUkYkdUcX .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tZUkYkdUcX .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tZUkYkdUcX .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.4rem);
  }
}
.cid-tZUkYkdUcX .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tZUkYkdUcX .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tZUkYkdUcX .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-tZUkYkdUcX .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tZUkYkdUcX .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tZUkYkdUcX .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tZUkYkdUcX .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tZUkYkdUcX .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tZUkYkdUcX .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tZUkYkdUcX .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tZUkYkdUcX .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-tZUkYkdUcX .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tZUkYkdUcX .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tZUkYkdUcX .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tZUkYkdUcX .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tZUkYkdUcX .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tZUkYkdUcX .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-tZUkYkdUcX .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-tZUkYkdUcX .navbar.navbar-short {
  min-height: 60px;
}
.cid-tZUkYkdUcX .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tZUkYkdUcX .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tZUkYkdUcX .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-tZUkYkdUcX .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tZUkYkdUcX .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tZUkYkdUcX .dropdown-item.active,
.cid-tZUkYkdUcX .dropdown-item:active {
  background-color: transparent;
}
.cid-tZUkYkdUcX .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tZUkYkdUcX .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tZUkYkdUcX .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tZUkYkdUcX .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-tZUkYkdUcX .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tZUkYkdUcX .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tZUkYkdUcX ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tZUkYkdUcX .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tZUkYkdUcX button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tZUkYkdUcX button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-tZUkYkdUcX button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tZUkYkdUcX button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tZUkYkdUcX button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tZUkYkdUcX button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tZUkYkdUcX nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tZUkYkdUcX nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tZUkYkdUcX nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tZUkYkdUcX nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tZUkYkdUcX .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tZUkYkdUcX a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tZUkYkdUcX .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-tZUkYkdUcX .navbar {
    height: 70px;
  }
  .cid-tZUkYkdUcX .navbar.opened {
    height: auto;
  }
  .cid-tZUkYkdUcX .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tZUkYkEnma {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/wjiz2960-1600x777.jpg");
}
.cid-tZUkYkEnma .mbr-fallback-image.disabled {
  display: none;
}
.cid-tZUkYkEnma .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tZUkYl0wLW {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-tZUkYl0wLW .mbr-section-subtitle {
  color: #353535;
}
.cid-tZUkYl0wLW .mbr-text {
  color: #353535;
}
.cid-tZUlgv8Ov9 {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-tZUlgv8Ov9 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tZUlgv8Ov9 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tZUlgv8Ov9 .item {
  padding-bottom: 2rem;
}
.cid-tZUlgv8Ov9 .item-wrapper {
  height: 100%;
  position: relative;
}
.cid-tZUlgv8Ov9 .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-tZUlgv8Ov9 .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-tZUlgv8Ov9 .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-tZUlgv8Ov9 .carousel-control,
.cid-tZUlgv8Ov9 .close {
  background: #1b1b1b;
}
.cid-tZUlgv8Ov9 .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-tZUlgv8Ov9 .carousel-control-prev span {
  margin-right: 5px;
}
.cid-tZUlgv8Ov9 .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-tZUlgv8Ov9 .carousel-control-next span {
  margin-left: 5px;
}
.cid-tZUlgv8Ov9 .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-tZUlgv8Ov9 .close::before {
  content: '\e91a';
}
.cid-tZUlgv8Ov9 .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-tZUlgv8Ov9 .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-tZUlgv8Ov9 .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tZUlgv8Ov9 .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-tZUlgv8Ov9 .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-tZUlgv8Ov9 .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-tZUlgv8Ov9 .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-tZUlgv8Ov9 .carousel-indicators li.active,
.cid-tZUlgv8Ov9 .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-tZUlgv8Ov9 .carousel-indicators li::after,
.cid-tZUlgv8Ov9 .carousel-indicators li::before {
  content: none;
}
.cid-tZUlgv8Ov9 .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-tZUlgv8Ov9 .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-tZUlgv8Ov9 .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-tZUlgv8Ov9 .carousel-indicators {
    display: none;
  }
}
.cid-tZUlgv8Ov9 .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-tZUlgv8Ov9 .carousel-inner > .active {
  display: block;
}
.cid-tZUlgv8Ov9 .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tZUlgv8Ov9 .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tZUlgv8Ov9 .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-tZUlgv8Ov9 .carousel-control,
  .cid-tZUlgv8Ov9 .carousel-indicators,
  .cid-tZUlgv8Ov9 .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-tZUlgv8Ov9 .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-tZUlgv8Ov9 .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-tZUlgv8Ov9 .carousel-indicators .active,
.cid-tZUlgv8Ov9 .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-tZUlgv8Ov9 .carousel-indicators .active {
  background: #fff;
}
.cid-tZUlgv8Ov9 .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-tZUlgv8Ov9 .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-tZUlgv8Ov9 .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-tZUlgv8Ov9 .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-tZUlgv8Ov9 .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-tZUlgv8Ov9 .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-tZUlgv8Ov9 .carousel {
  width: 100%;
}
.cid-tZUlgv8Ov9 .modal-backdrop.in {
  opacity: 0.8;
}
.cid-tZUlgv8Ov9 .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-tZUlgv8Ov9 .modal.fade .modal-dialog,
.cid-tZUlgv8Ov9 .modal.in .modal-dialog {
  transform: none;
}
.cid-tZUlgv8Ov9 .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-tZUlgv8Ov9 H6 {
  text-align: center;
}
.cid-tZUkYnjp0Z {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #deecf7;
}
.cid-tZUkYnjp0Z .mbr-fallback-image.disabled {
  display: none;
}
.cid-tZUkYnjp0Z .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (min-width: 1500px) {
  .cid-tZUkYnjp0Z .container {
    max-width: 1400px;
  }
}
.cid-tZUkYnjp0Z .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #54565a;
  margin-bottom: 2rem;
}
.cid-tZUkYnjp0Z .card-wrapper {
  margin-top: 3rem;
}
.cid-tZUkYnjp0Z .row {
  justify-content: center;
}
.cid-tZUkYnQY7X {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #deecf7;
}
.cid-tZUkYnQY7X hr {
  border: 0;
  clear: both;
  display: block;
  margin: 2.4rem auto;
  text-align: center;
  width: 100%;
}
.cid-tZUkYnQY7X .progress {
  background: #cccccc;
  opacity: 1;
  height: 1px;
  overflow: hidden;
  position: relative;
}
.cid-tZUkYnQY7X .progress::before {
  animation-duration: 2s;
  animation-timing-function: ease;
  animation-iteration-count: infinite;
  animation-name: progress;
  background: #76bc21;
  content: "";
  display: block;
  height: 1px;
  position: absolute;
  width: 100px;
}
@keyframes progress {
  from {
    margin-left: 0%;
    width: 200px;
  }
  to {
    margin-left: 100%;
    width: 200px;
  }
}
.cid-tZUkYodmre {
  padding-top: 4rem;
  padding-bottom: 3rem;
  background-color: #deecf7;
}
.cid-tZUkYodmre .mbr-fallback-image.disabled {
  display: none;
}
.cid-tZUkYodmre .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tZUkYodmre .media-wrap {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-tZUkYodmre .media-wrap {
    margin-bottom: 1rem;
  }
}
@media (max-width: 767px) {
  .cid-tZUkYodmre .row {
    text-align: center;
  }
  .cid-tZUkYodmre .row > div {
    margin: auto;
  }
  .cid-tZUkYodmre .social-row {
    justify-content: center;
  }
}
.cid-tZUkYodmre .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-tZUkYodmre .list {
  list-style: none;
  padding-left: 0;
  color: #353535;
}
@media (max-width: 991px) {
  .cid-tZUkYodmre .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tZUkYodmre .list {
    margin-bottom: 0rem;
  }
}
.cid-tZUkYodmre .mbr-text {
  color: #353535;
}
.cid-tZUkYodmre .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
.cid-tZUkYodmre .mbr-iconfont {
  color: black;
}
@media (max-width: 991px) {
  .cid-tZUkYodmre div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-tZUkYodmre H5 {
  color: #353535;
}
.cid-tZUkYoI2WP .float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 33px;
  left: 13px;
  background-color: #25d366;
  color: #ffffff;
  border-radius: 100px;
  text-align: center;
  font-size: 30px;
  box-shadow: 2px 2px 3px #999;
  z-index: 10000;
}
.cid-tZUkYoI2WP .my-float {
  margin-top: 16px;
}
.cid-tZUkYoI2WP P {
  color: #232323;
}
.cid-tZUkYoI2WP DIV {
  color: #ffffff;
}
.cid-tZUkYoI2WP H10 {
  color: #767676;
}
.cid-tZUkYoI2WP .hidden {
  display: none;
}
.cid-tZUqzK6mfW {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tZUqzK6mfW nav.navbar {
  position: fixed;
}
.cid-tZUqzK6mfW .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-tZUqzK6mfW .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tZUqzK6mfW .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tZUqzK6mfW .dropdown-item:hover,
.cid-tZUqzK6mfW .dropdown-item:focus {
  background: #004a98 !important;
  color: white !important;
}
.cid-tZUqzK6mfW .dropdown-item:hover span {
  color: white;
}
.cid-tZUqzK6mfW .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tZUqzK6mfW .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tZUqzK6mfW .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tZUqzK6mfW .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tZUqzK6mfW .nav-link {
  position: relative;
}
.cid-tZUqzK6mfW .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tZUqzK6mfW .container {
    flex-wrap: wrap;
  }
}
.cid-tZUqzK6mfW .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tZUqzK6mfW .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-tZUqzK6mfW .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tZUqzK6mfW .dropdown-menu,
.cid-tZUqzK6mfW .navbar.opened {
  background: #ffffff !important;
}
.cid-tZUqzK6mfW .nav-item:focus,
.cid-tZUqzK6mfW .nav-link:focus {
  outline: none;
}
.cid-tZUqzK6mfW .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tZUqzK6mfW .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tZUqzK6mfW .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tZUqzK6mfW .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tZUqzK6mfW .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tZUqzK6mfW .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tZUqzK6mfW .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-tZUqzK6mfW .navbar.opened {
  transition: all 0.3s;
}
.cid-tZUqzK6mfW .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tZUqzK6mfW .navbar .navbar-logo img {
  width: auto;
}
.cid-tZUqzK6mfW .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tZUqzK6mfW .navbar.collapsed {
  justify-content: center;
}
.cid-tZUqzK6mfW .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tZUqzK6mfW .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tZUqzK6mfW .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.4rem);
  }
}
.cid-tZUqzK6mfW .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tZUqzK6mfW .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tZUqzK6mfW .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-tZUqzK6mfW .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tZUqzK6mfW .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tZUqzK6mfW .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tZUqzK6mfW .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tZUqzK6mfW .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tZUqzK6mfW .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tZUqzK6mfW .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tZUqzK6mfW .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-tZUqzK6mfW .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tZUqzK6mfW .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tZUqzK6mfW .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tZUqzK6mfW .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tZUqzK6mfW .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tZUqzK6mfW .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-tZUqzK6mfW .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-tZUqzK6mfW .navbar.navbar-short {
  min-height: 60px;
}
.cid-tZUqzK6mfW .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tZUqzK6mfW .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tZUqzK6mfW .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-tZUqzK6mfW .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tZUqzK6mfW .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tZUqzK6mfW .dropdown-item.active,
.cid-tZUqzK6mfW .dropdown-item:active {
  background-color: transparent;
}
.cid-tZUqzK6mfW .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tZUqzK6mfW .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tZUqzK6mfW .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tZUqzK6mfW .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-tZUqzK6mfW .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tZUqzK6mfW .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tZUqzK6mfW ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tZUqzK6mfW .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tZUqzK6mfW button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tZUqzK6mfW button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-tZUqzK6mfW button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tZUqzK6mfW button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tZUqzK6mfW button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tZUqzK6mfW button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tZUqzK6mfW nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tZUqzK6mfW nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tZUqzK6mfW nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tZUqzK6mfW nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tZUqzK6mfW .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tZUqzK6mfW a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tZUqzK6mfW .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-tZUqzK6mfW .navbar {
    height: 70px;
  }
  .cid-tZUqzK6mfW .navbar.opened {
    height: auto;
  }
  .cid-tZUqzK6mfW .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tZUqzKIqOZ {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/whatsapp-image-2021-08-18-at-22.12.18-6-1024x768.jpg");
}
.cid-tZUqzKIqOZ .mbr-fallback-image.disabled {
  display: none;
}
.cid-tZUqzKIqOZ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tZUqzL3obJ {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-tZUqzL3obJ .mbr-section-subtitle {
  color: #353535;
}
.cid-tZUqzL3obJ .mbr-text {
  color: #353535;
}
.cid-tZUqRreKlM {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-tZUqRreKlM .mbr-fallback-image.disabled {
  display: none;
}
.cid-tZUqRreKlM .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tZUqRreKlM .item {
  padding-bottom: 2rem;
}
.cid-tZUqRreKlM .item-wrapper {
  height: 100%;
  position: relative;
}
.cid-tZUqRreKlM .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-tZUqRreKlM .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-tZUqRreKlM .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-tZUqRreKlM .carousel-control,
.cid-tZUqRreKlM .close {
  background: #1b1b1b;
}
.cid-tZUqRreKlM .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-tZUqRreKlM .carousel-control-prev span {
  margin-right: 5px;
}
.cid-tZUqRreKlM .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-tZUqRreKlM .carousel-control-next span {
  margin-left: 5px;
}
.cid-tZUqRreKlM .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-tZUqRreKlM .close::before {
  content: '\e91a';
}
.cid-tZUqRreKlM .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-tZUqRreKlM .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-tZUqRreKlM .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tZUqRreKlM .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-tZUqRreKlM .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-tZUqRreKlM .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-tZUqRreKlM .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-tZUqRreKlM .carousel-indicators li.active,
.cid-tZUqRreKlM .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-tZUqRreKlM .carousel-indicators li::after,
.cid-tZUqRreKlM .carousel-indicators li::before {
  content: none;
}
.cid-tZUqRreKlM .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-tZUqRreKlM .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-tZUqRreKlM .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-tZUqRreKlM .carousel-indicators {
    display: none;
  }
}
.cid-tZUqRreKlM .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-tZUqRreKlM .carousel-inner > .active {
  display: block;
}
.cid-tZUqRreKlM .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tZUqRreKlM .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tZUqRreKlM .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-tZUqRreKlM .carousel-control,
  .cid-tZUqRreKlM .carousel-indicators,
  .cid-tZUqRreKlM .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-tZUqRreKlM .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-tZUqRreKlM .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-tZUqRreKlM .carousel-indicators .active,
.cid-tZUqRreKlM .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-tZUqRreKlM .carousel-indicators .active {
  background: #fff;
}
.cid-tZUqRreKlM .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-tZUqRreKlM .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-tZUqRreKlM .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-tZUqRreKlM .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-tZUqRreKlM .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-tZUqRreKlM .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-tZUqRreKlM .carousel {
  width: 100%;
}
.cid-tZUqRreKlM .modal-backdrop.in {
  opacity: 0.8;
}
.cid-tZUqRreKlM .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-tZUqRreKlM .modal.fade .modal-dialog,
.cid-tZUqRreKlM .modal.in .modal-dialog {
  transform: none;
}
.cid-tZUqRreKlM .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-tZUqRreKlM H6 {
  text-align: center;
}
.cid-tZUqzNohSl {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #deecf7;
}
.cid-tZUqzNohSl .mbr-fallback-image.disabled {
  display: none;
}
.cid-tZUqzNohSl .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (min-width: 1500px) {
  .cid-tZUqzNohSl .container {
    max-width: 1400px;
  }
}
.cid-tZUqzNohSl .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #54565a;
  margin-bottom: 2rem;
}
.cid-tZUqzNohSl .card-wrapper {
  margin-top: 3rem;
}
.cid-tZUqzNohSl .row {
  justify-content: center;
}
.cid-tZUqzNRm37 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #deecf7;
}
.cid-tZUqzNRm37 hr {
  border: 0;
  clear: both;
  display: block;
  margin: 2.4rem auto;
  text-align: center;
  width: 100%;
}
.cid-tZUqzNRm37 .progress {
  background: #cccccc;
  opacity: 1;
  height: 1px;
  overflow: hidden;
  position: relative;
}
.cid-tZUqzNRm37 .progress::before {
  animation-duration: 2s;
  animation-timing-function: ease;
  animation-iteration-count: infinite;
  animation-name: progress;
  background: #76bc21;
  content: "";
  display: block;
  height: 1px;
  position: absolute;
  width: 100px;
}
@keyframes progress {
  from {
    margin-left: 0%;
    width: 200px;
  }
  to {
    margin-left: 100%;
    width: 200px;
  }
}
.cid-tZUqzOal3h {
  padding-top: 4rem;
  padding-bottom: 3rem;
  background-color: #deecf7;
}
.cid-tZUqzOal3h .mbr-fallback-image.disabled {
  display: none;
}
.cid-tZUqzOal3h .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tZUqzOal3h .media-wrap {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-tZUqzOal3h .media-wrap {
    margin-bottom: 1rem;
  }
}
@media (max-width: 767px) {
  .cid-tZUqzOal3h .row {
    text-align: center;
  }
  .cid-tZUqzOal3h .row > div {
    margin: auto;
  }
  .cid-tZUqzOal3h .social-row {
    justify-content: center;
  }
}
.cid-tZUqzOal3h .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-tZUqzOal3h .list {
  list-style: none;
  padding-left: 0;
  color: #353535;
}
@media (max-width: 991px) {
  .cid-tZUqzOal3h .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tZUqzOal3h .list {
    margin-bottom: 0rem;
  }
}
.cid-tZUqzOal3h .mbr-text {
  color: #353535;
}
.cid-tZUqzOal3h .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
.cid-tZUqzOal3h .mbr-iconfont {
  color: black;
}
@media (max-width: 991px) {
  .cid-tZUqzOal3h div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-tZUqzOal3h H5 {
  color: #353535;
}
.cid-tZUqzOE4L7 .float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 33px;
  left: 13px;
  background-color: #25d366;
  color: #ffffff;
  border-radius: 100px;
  text-align: center;
  font-size: 30px;
  box-shadow: 2px 2px 3px #999;
  z-index: 10000;
}
.cid-tZUqzOE4L7 .my-float {
  margin-top: 16px;
}
.cid-tZUqzOE4L7 P {
  color: #232323;
}
.cid-tZUqzOE4L7 DIV {
  color: #ffffff;
}
.cid-tZUqzOE4L7 H10 {
  color: #767676;
}
.cid-tZUqzOE4L7 .hidden {
  display: none;
}
.cid-tZUrwQCVtz {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tZUrwQCVtz nav.navbar {
  position: fixed;
}
.cid-tZUrwQCVtz .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-tZUrwQCVtz .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tZUrwQCVtz .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tZUrwQCVtz .dropdown-item:hover,
.cid-tZUrwQCVtz .dropdown-item:focus {
  background: #004a98 !important;
  color: white !important;
}
.cid-tZUrwQCVtz .dropdown-item:hover span {
  color: white;
}
.cid-tZUrwQCVtz .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tZUrwQCVtz .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tZUrwQCVtz .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tZUrwQCVtz .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tZUrwQCVtz .nav-link {
  position: relative;
}
.cid-tZUrwQCVtz .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tZUrwQCVtz .container {
    flex-wrap: wrap;
  }
}
.cid-tZUrwQCVtz .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tZUrwQCVtz .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-tZUrwQCVtz .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tZUrwQCVtz .dropdown-menu,
.cid-tZUrwQCVtz .navbar.opened {
  background: #ffffff !important;
}
.cid-tZUrwQCVtz .nav-item:focus,
.cid-tZUrwQCVtz .nav-link:focus {
  outline: none;
}
.cid-tZUrwQCVtz .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tZUrwQCVtz .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tZUrwQCVtz .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tZUrwQCVtz .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tZUrwQCVtz .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tZUrwQCVtz .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tZUrwQCVtz .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-tZUrwQCVtz .navbar.opened {
  transition: all 0.3s;
}
.cid-tZUrwQCVtz .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tZUrwQCVtz .navbar .navbar-logo img {
  width: auto;
}
.cid-tZUrwQCVtz .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tZUrwQCVtz .navbar.collapsed {
  justify-content: center;
}
.cid-tZUrwQCVtz .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tZUrwQCVtz .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tZUrwQCVtz .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.4rem);
  }
}
.cid-tZUrwQCVtz .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tZUrwQCVtz .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tZUrwQCVtz .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-tZUrwQCVtz .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tZUrwQCVtz .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tZUrwQCVtz .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tZUrwQCVtz .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tZUrwQCVtz .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tZUrwQCVtz .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tZUrwQCVtz .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tZUrwQCVtz .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-tZUrwQCVtz .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tZUrwQCVtz .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tZUrwQCVtz .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tZUrwQCVtz .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tZUrwQCVtz .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tZUrwQCVtz .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-tZUrwQCVtz .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-tZUrwQCVtz .navbar.navbar-short {
  min-height: 60px;
}
.cid-tZUrwQCVtz .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tZUrwQCVtz .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tZUrwQCVtz .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-tZUrwQCVtz .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tZUrwQCVtz .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tZUrwQCVtz .dropdown-item.active,
.cid-tZUrwQCVtz .dropdown-item:active {
  background-color: transparent;
}
.cid-tZUrwQCVtz .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tZUrwQCVtz .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tZUrwQCVtz .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tZUrwQCVtz .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-tZUrwQCVtz .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tZUrwQCVtz .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tZUrwQCVtz ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tZUrwQCVtz .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tZUrwQCVtz button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tZUrwQCVtz button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-tZUrwQCVtz button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tZUrwQCVtz button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tZUrwQCVtz button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tZUrwQCVtz button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tZUrwQCVtz nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tZUrwQCVtz nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tZUrwQCVtz nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tZUrwQCVtz nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tZUrwQCVtz .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tZUrwQCVtz a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tZUrwQCVtz .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-tZUrwQCVtz .navbar {
    height: 70px;
  }
  .cid-tZUrwQCVtz .navbar.opened {
    height: auto;
  }
  .cid-tZUrwQCVtz .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tZUrwR7rUx {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/whatsapp-image-2021-08-18-at-22.09.24-17-1024x768.jpg");
}
.cid-tZUrwR7rUx .mbr-fallback-image.disabled {
  display: none;
}
.cid-tZUrwR7rUx .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tZUrwRxOJF {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-tZUrwRxOJF .mbr-section-subtitle {
  color: #353535;
}
.cid-tZUrwRxOJF .mbr-text {
  color: #353535;
}
.cid-tZUrC8t1NM {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-tZUrC8t1NM .mbr-fallback-image.disabled {
  display: none;
}
.cid-tZUrC8t1NM .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tZUrC8t1NM .item {
  padding-bottom: 2rem;
}
.cid-tZUrC8t1NM .item-wrapper {
  height: 100%;
  position: relative;
}
.cid-tZUrC8t1NM .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-tZUrC8t1NM .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-tZUrC8t1NM .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-tZUrC8t1NM .carousel-control,
.cid-tZUrC8t1NM .close {
  background: #1b1b1b;
}
.cid-tZUrC8t1NM .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-tZUrC8t1NM .carousel-control-prev span {
  margin-right: 5px;
}
.cid-tZUrC8t1NM .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-tZUrC8t1NM .carousel-control-next span {
  margin-left: 5px;
}
.cid-tZUrC8t1NM .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-tZUrC8t1NM .close::before {
  content: '\e91a';
}
.cid-tZUrC8t1NM .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-tZUrC8t1NM .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-tZUrC8t1NM .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tZUrC8t1NM .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-tZUrC8t1NM .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-tZUrC8t1NM .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-tZUrC8t1NM .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-tZUrC8t1NM .carousel-indicators li.active,
.cid-tZUrC8t1NM .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-tZUrC8t1NM .carousel-indicators li::after,
.cid-tZUrC8t1NM .carousel-indicators li::before {
  content: none;
}
.cid-tZUrC8t1NM .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-tZUrC8t1NM .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-tZUrC8t1NM .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-tZUrC8t1NM .carousel-indicators {
    display: none;
  }
}
.cid-tZUrC8t1NM .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-tZUrC8t1NM .carousel-inner > .active {
  display: block;
}
.cid-tZUrC8t1NM .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tZUrC8t1NM .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tZUrC8t1NM .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-tZUrC8t1NM .carousel-control,
  .cid-tZUrC8t1NM .carousel-indicators,
  .cid-tZUrC8t1NM .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-tZUrC8t1NM .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-tZUrC8t1NM .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-tZUrC8t1NM .carousel-indicators .active,
.cid-tZUrC8t1NM .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-tZUrC8t1NM .carousel-indicators .active {
  background: #fff;
}
.cid-tZUrC8t1NM .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-tZUrC8t1NM .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-tZUrC8t1NM .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-tZUrC8t1NM .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-tZUrC8t1NM .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-tZUrC8t1NM .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-tZUrC8t1NM .carousel {
  width: 100%;
}
.cid-tZUrC8t1NM .modal-backdrop.in {
  opacity: 0.8;
}
.cid-tZUrC8t1NM .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-tZUrC8t1NM .modal.fade .modal-dialog,
.cid-tZUrC8t1NM .modal.in .modal-dialog {
  transform: none;
}
.cid-tZUrC8t1NM .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-tZUrC8t1NM H6 {
  text-align: center;
}
.cid-tZUrwT9JzK {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #deecf7;
}
.cid-tZUrwT9JzK .mbr-fallback-image.disabled {
  display: none;
}
.cid-tZUrwT9JzK .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (min-width: 1500px) {
  .cid-tZUrwT9JzK .container {
    max-width: 1400px;
  }
}
.cid-tZUrwT9JzK .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #54565a;
  margin-bottom: 2rem;
}
.cid-tZUrwT9JzK .card-wrapper {
  margin-top: 3rem;
}
.cid-tZUrwT9JzK .row {
  justify-content: center;
}
.cid-tZUrwTDGD1 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #deecf7;
}
.cid-tZUrwTDGD1 hr {
  border: 0;
  clear: both;
  display: block;
  margin: 2.4rem auto;
  text-align: center;
  width: 100%;
}
.cid-tZUrwTDGD1 .progress {
  background: #cccccc;
  opacity: 1;
  height: 1px;
  overflow: hidden;
  position: relative;
}
.cid-tZUrwTDGD1 .progress::before {
  animation-duration: 2s;
  animation-timing-function: ease;
  animation-iteration-count: infinite;
  animation-name: progress;
  background: #76bc21;
  content: "";
  display: block;
  height: 1px;
  position: absolute;
  width: 100px;
}
@keyframes progress {
  from {
    margin-left: 0%;
    width: 200px;
  }
  to {
    margin-left: 100%;
    width: 200px;
  }
}
.cid-tZUrwTW6Hs {
  padding-top: 4rem;
  padding-bottom: 3rem;
  background-color: #deecf7;
}
.cid-tZUrwTW6Hs .mbr-fallback-image.disabled {
  display: none;
}
.cid-tZUrwTW6Hs .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tZUrwTW6Hs .media-wrap {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-tZUrwTW6Hs .media-wrap {
    margin-bottom: 1rem;
  }
}
@media (max-width: 767px) {
  .cid-tZUrwTW6Hs .row {
    text-align: center;
  }
  .cid-tZUrwTW6Hs .row > div {
    margin: auto;
  }
  .cid-tZUrwTW6Hs .social-row {
    justify-content: center;
  }
}
.cid-tZUrwTW6Hs .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-tZUrwTW6Hs .list {
  list-style: none;
  padding-left: 0;
  color: #353535;
}
@media (max-width: 991px) {
  .cid-tZUrwTW6Hs .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tZUrwTW6Hs .list {
    margin-bottom: 0rem;
  }
}
.cid-tZUrwTW6Hs .mbr-text {
  color: #353535;
}
.cid-tZUrwTW6Hs .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
.cid-tZUrwTW6Hs .mbr-iconfont {
  color: black;
}
@media (max-width: 991px) {
  .cid-tZUrwTW6Hs div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-tZUrwTW6Hs H5 {
  color: #353535;
}
.cid-tZUrwUrByS .float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 33px;
  left: 13px;
  background-color: #25d366;
  color: #ffffff;
  border-radius: 100px;
  text-align: center;
  font-size: 30px;
  box-shadow: 2px 2px 3px #999;
  z-index: 10000;
}
.cid-tZUrwUrByS .my-float {
  margin-top: 16px;
}
.cid-tZUrwUrByS P {
  color: #232323;
}
.cid-tZUrwUrByS DIV {
  color: #ffffff;
}
.cid-tZUrwUrByS H10 {
  color: #767676;
}
.cid-tZUrwUrByS .hidden {
  display: none;
}
