.btn {
  border-width: 2px;
}
body {
  font-family: Syne;
}
.display-1 {
  font-family: 'Syne', sans-serif;
  font-size: 4rem;
  line-height: .89;
  letter-spacing: -0.05em;
}
.display-1 > .mbr-iconfont {
  font-size: 5rem;
}
.display-2 {
  font-family: 'Syne', sans-serif;
  font-size: 3.5rem;
  line-height: 1;
  letter-spacing: -0.06em;
}
.display-2 > .mbr-iconfont {
  font-size: 4.375rem;
}
.display-4 {
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  line-height: 1.5rem;
  letter-spacing: -0.01em;
}
.display-4 > .mbr-iconfont {
  font-size: 1.25rem;
}
.display-5 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.5rem;
  line-height: 1.56;
  letter-spacing: -0.01em;
}
.display-5 > .mbr-iconfont {
  font-size: 1.875rem;
}
.display-7 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.2rem;
  line-height: 1.53;
  letter-spacing: -0.01em;
}
.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.2rem;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 2.8rem;
    font-size: calc( 2.05rem + (4 - 2.05) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (2.05rem + (4 - 2.05) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 2.8rem;
    font-size: calc( 1.875rem + (3.5 - 1.875) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.3 * (1.875rem + (3.5 - 1.875) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 0.8rem;
    font-size: calc( 1rem + (1 - 1) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1rem + (1 - 1) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 1.2rem;
    font-size: calc( 1.175rem + (1.5 - 1.175) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.175rem + (1.5 - 1.175) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-7 {
    font-size: 0.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: 200px;
}
.btn-sm {
  padding: 0.6rem 1.2rem;
  border-radius: 200px;
}
.btn-md {
  padding: 0.6rem 1.2rem;
  border-radius: 200px;
}
.btn-lg {
  padding: 1rem 2.6rem;
  border-radius: 200px;
}
.bg-primary {
  background-color: #181818 !important;
}
.bg-success {
  background-color: #ffffff !important;
}
.bg-info {
  background-color: #ffffff !important;
}
.bg-warning {
  background-color: #838b9c !important;
}
.bg-danger {
  background-color: #9d5578 !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #181818 !important;
  border-color: #181818 !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: #000000 !important;
  border-color: #000000 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #454545 !important;
  border-color: #454545 !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: #1a1a1a !important;
  border-color: #1a1a1a !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #1a1a1a !important;
  border-color: #1a1a1a !important;
}
.btn-info,
.btn-info:active {
  background-color: #ffffff !important;
  border-color: #ffffff !important;
  color: #808080 !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus,
.btn-info.active {
  color: #545454 !important;
  background-color: #d4d4d4 !important;
  border-color: #d4d4d4 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-info.disabled,
.btn-info:disabled {
  color: #808080 !important;
  background-color: #d4d4d4 !important;
  border-color: #d4d4d4 !important;
}
.btn-success,
.btn-success:active {
  background-color: #ffffff !important;
  border-color: #ffffff !important;
  color: #808080 !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus,
.btn-success.active {
  color: #545454 !important;
  background-color: #d4d4d4 !important;
  border-color: #d4d4d4 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-success.disabled,
.btn-success:disabled {
  color: #808080 !important;
  background-color: #d4d4d4 !important;
  border-color: #d4d4d4 !important;
}
.btn-warning,
.btn-warning:active {
  background-color: #838b9c !important;
  border-color: #838b9c !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus,
.btn-warning.active {
  color: #ffffff !important;
  background-color: #59606f !important;
  border-color: #59606f !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #ffffff !important;
  background-color: #59606f !important;
  border-color: #59606f !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #9d5578 !important;
  border-color: #9d5578 !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: #65374d !important;
  border-color: #65374d !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #65374d !important;
  border-color: #65374d !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: #181818;
  color: #181818;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #000000 !important;
  background-color: transparent!important;
  border-color: #000000 !important;
  box-shadow: none!important;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #181818 !important;
  border-color: #181818 !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background-color: transparent !important;
  border-color: #454545;
  color: #454545;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #1a1a1a !important;
  background-color: transparent!important;
  border-color: #1a1a1a !important;
  box-shadow: none!important;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #454545 !important;
  border-color: #454545 !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background-color: transparent !important;
  border-color: #ffffff;
  color: #ffffff;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #d4d4d4 !important;
  background-color: transparent!important;
  border-color: #d4d4d4 !important;
  box-shadow: none!important;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #808080 !important;
  background-color: #ffffff !important;
  border-color: #ffffff !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background-color: transparent !important;
  border-color: #ffffff;
  color: #ffffff;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #d4d4d4 !important;
  background-color: transparent!important;
  border-color: #d4d4d4 !important;
  box-shadow: none!important;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #808080 !important;
  background-color: #ffffff !important;
  border-color: #ffffff !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background-color: transparent !important;
  border-color: #838b9c;
  color: #838b9c;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #59606f !important;
  background-color: transparent!important;
  border-color: #59606f !important;
  box-shadow: none!important;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #ffffff !important;
  background-color: #838b9c !important;
  border-color: #838b9c !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background-color: transparent !important;
  border-color: #9d5578;
  color: #9d5578;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #65374d !important;
  background-color: transparent!important;
  border-color: #65374d !important;
  box-shadow: none!important;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #9d5578 !important;
  border-color: #9d5578 !important;
}
.btn-black-outline,
.btn-black-outline:active {
  background-color: transparent !important;
  border-color: #232323;
  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: #000000 !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: #fafafa;
  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: #cfcfcf !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: #181818 !important;
}
.text-secondary {
  color: #454545 !important;
}
.text-success {
  color: #ffffff !important;
}
.text-info {
  color: #ffffff !important;
}
.text-warning {
  color: #838b9c !important;
}
.text-danger {
  color: #9d5578 !important;
}
.text-white {
  color: #fafafa !important;
}
.text-black {
  color: #232323 !important;
}
a.text-primary:hover,
a.text-primary:focus,
a.text-primary.active {
  color: #000000 !important;
}
a.text-secondary:hover,
a.text-secondary:focus,
a.text-secondary.active {
  color: #121212 !important;
}
a.text-success:hover,
a.text-success:focus,
a.text-success.active {
  color: #cccccc !important;
}
a.text-info:hover,
a.text-info:focus,
a.text-info.active {
  color: #cccccc !important;
}
a.text-warning:hover,
a.text-warning:focus,
a.text-warning.active {
  color: #525967 !important;
}
a.text-danger:hover,
a.text-danger:focus,
a.text-danger.active {
  color: #5b3145 !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: #181818;
}
.nav-tabs .nav-link:not(.active) {
  color: #232323;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #ffffff;
}
.alert-warning {
  background-color: #838b9c;
}
.alert-danger {
  background-color: #9d5578;
}
.mbr-gallery-filter li.active .btn {
  background-color: #181818;
  border-color: #181818;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
a,
a:hover {
  color: #181818;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #cbcbcb;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #cacdd5;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #cea4b8;
}
/* Scroll to top button*/
.scrollToTop_wraper {
  display: none;
}
.form-control {
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  line-height: 1.5rem;
  letter-spacing: -0.01em;
  font-weight: 400;
}
.form-control > .mbr-iconfont {
  font-size: 1.25rem;
}
.form-control:hover,
.form-control:focus {
  box-shadow: rgba(0, 0, 0, 0.07) 0px 1px 1px 0px, rgba(0, 0, 0, 0.07) 0px 1px 3px 0px, rgba(0, 0, 0, 0.03) 0px 0px 0px 1px;
  border-color: #181818 !important;
}
.form-control:-webkit-input-placeholder {
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  line-height: 1.5rem;
  letter-spacing: -0.01em;
  font-weight: 400;
}
.form-control:-webkit-input-placeholder > .mbr-iconfont {
  font-size: 1.25rem;
}
blockquote {
  border-color: #181818;
}
/* Forms */
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #181818;
  color: #ffffff;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #181818;
}
.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: #181818;
  border-bottom-color: #181818;
}
.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: #181818 !important;
  box-shadow: none !important;
}
.xdsoft_datetimepicker .xdsoft_calendar td:hover,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div:hover {
  color: #ffffff !important;
  background: #454545 !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='%23181818' %3e%3cg fill='none' fill-rule='evenodd'%3e%3cg transform='translate(16 16)' stroke-width='2'%3e%3ccircle stroke-opacity='.5' cx='16' cy='16' r='16'/%3e%3cpath d='M32 16c0-9.94-8.06-16-16-16'%3e%3canimateTransform attributeName='transform' type='rotate' from='0 16 16' to='360 16 16' dur='1s' repeatCount='indefinite'/%3e%3c/path%3e%3c/g%3e%3c/g%3e%3c/svg%3e");
}
section.lazy-placeholder:after {
  opacity: 0.5;
}
body {
  overflow-x: hidden;
}
a {
  transition: color 0.6s;
}
.mbr-section-btn .btn,
.mbr-section-btn-main .btn {
  min-width: 148px;
  max-height: 55px;
  font-weight: 400;
  box-shadow: none;
}
.mbr-section-btn .btn:hover,
.mbr-section-btn-main .btn:hover {
  box-shadow: none;
}
.mbr-section-btn .btn-info,
.mbr-section-btn-main .btn-info {
  color: #181818 !important;
}
.mbr-section-btn .btn-primary-outline,
.mbr-section-btn-main .btn-primary-outline {
  border-color: #181818;
}
.mbr-section-btn .btn-secondary-outline,
.mbr-section-btn-main .btn-secondary-outline {
  border-color: #454545;
}
.mbr-section-btn .btn-success-outline,
.mbr-section-btn-main .btn-success-outline {
  border-color: #ffffff;
}
.mbr-section-btn .btn-info-outline,
.mbr-section-btn-main .btn-info-outline {
  border-color: #ffffff;
}
.mbr-section-btn .btn-warning-outline,
.mbr-section-btn-main .btn-warning-outline {
  border-color: #838b9c;
}
.mbr-section-btn .btn-danger-outline,
.mbr-section-btn-main .btn-danger-outline {
  border-color: #9d5578;
}
.cid-tIo8LJWxBA .modal-body .close {
  background: #1b1b1b;
}
.cid-tIo8LJWxBA .modal-body .close span {
  font-style: normal;
}
.cid-tIo8LJWxBA .carousel-inner > .active,
.cid-tIo8LJWxBA .carousel-inner > .next,
.cid-tIo8LJWxBA .carousel-inner > .prev {
  display: flex;
}
.cid-tIo8LJWxBA .carousel-control .icon-next,
.cid-tIo8LJWxBA .carousel-control .icon-prev {
  margin-top: -18px;
  font-size: 40px;
  line-height: 27px;
}
.cid-tIo8LJWxBA .carousel-control:hover {
  background: #181818;
  color: #fff;
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-tIo8LJWxBA .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-tIo8LJWxBA .boxed-slider {
  position: relative;
  padding: 93px 0;
}
.cid-tIo8LJWxBA .boxed-slider > div {
  position: relative;
}
.cid-tIo8LJWxBA .container img {
  width: 100%;
}
.cid-tIo8LJWxBA .container img + .row {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 2;
}
.cid-tIo8LJWxBA .mbr-section {
  padding: 0;
  background-attachment: scroll;
}
.cid-tIo8LJWxBA .mbr-table-cell {
  padding: 0;
}
.cid-tIo8LJWxBA .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-tIo8LJWxBA .carousel-caption {
  top: 50%;
  right: 0;
  bottom: auto;
  left: 0;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.cid-tIo8LJWxBA .container-slide.container {
  width: 100%;
  min-height: 100vh;
  padding: 0;
}
.cid-tIo8LJWxBA .carousel-item {
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: cover;
  opacity: 1;
}
.cid-tIo8LJWxBA .carousel-item.active.right,
.cid-tIo8LJWxBA .carousel-item.next {
  left: 0;
  transition: opacity 0.7s ease-in-out;
  opacity: 0;
}
.cid-tIo8LJWxBA .carousel-item.active.left,
.cid-tIo8LJWxBA .carousel-item.prev {
  left: 0;
  transition: opacity 0.7s ease-in-out;
  opacity: 0;
}
.cid-tIo8LJWxBA .carousel-item.active,
.cid-tIo8LJWxBA .carousel-item.next.left,
.cid-tIo8LJWxBA .carousel-item.prev.right {
  left: 0;
  opacity: 1;
}
.cid-tIo8LJWxBA .mbr-slider .carousel-control {
  top: 50%;
  margin-top: -1.9rem;
  width: 60px;
  height: 60px;
  font-size: 25px;
  border: 2px solid #fff;
  border-radius: 0 !important;
  transition: all 0.3s;
  z-index: 11;
}
.cid-tIo8LJWxBA .mbr-slider .carousel-control.carousel-control-prev {
  left: 0;
}
.cid-tIo8LJWxBA .mbr-slider .carousel-control.carousel-control-next {
  right: 0;
}
@media (max-width: 767px) {
  .cid-tIo8LJWxBA .mbr-slider .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-tIo8LJWxBA .mbr-slider .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem !important;
}
.cid-tIo8LJWxBA .mbr-slider .carousel-indicators li {
  max-width: 20px;
  width: 20px;
  height: 20px;
  max-height: 20px;
  margin: 3px;
  background-color: #181818;
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-tIo8LJWxBA .mbr-slider .carousel-indicators li.active,
.cid-tIo8LJWxBA .mbr-slider .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-tIo8LJWxBA .mbr-slider .carousel-indicators li::after,
.cid-tIo8LJWxBA .mbr-slider .carousel-indicators li::before {
  content: none;
}
.cid-tIo8LJWxBA .mbr-slider .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 576px) {
  .cid-tIo8LJWxBA .mbr-slider .carousel-indicators {
    display: none !important;
  }
}
.cid-tIo8LJWxBA .mbr-slider > .container img {
  width: 100%;
}
.cid-tIo8LJWxBA .mbr-slider > .container img + .row {
  position: absolute;
  top: 50%;
  right: 0;
  left: 0;
  z-index: 2;
  -moz-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.cid-tIo8LJWxBA .mbr-slider > .container .carousel-indicators {
  margin-bottom: 3px;
}
@media (max-width: 576px) {
  .cid-tIo8LJWxBA .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-tIo8LJWxBA .mbr-slider .mbr-section {
  padding: 0;
  background-attachment: scroll;
}
.cid-tIo8LJWxBA .mbr-slider .mbr-table-cell {
  padding: 0;
}
.cid-tIo8LJWxBA .carousel-item .container.container-slide {
  position: initial;
  min-height: 0;
}
.cid-tIo8LJWxBA .full-screen .slider-fullscreen-image {
  min-height: 100vh;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: cover;
}
.cid-tIo8LJWxBA .full-screen .slider-fullscreen-image.active {
  display: flex;
}
.cid-tIo8LJWxBA .full-screen .container {
  width: auto;
  padding-right: 0;
  padding-left: 0;
}
.cid-tIo8LJWxBA .full-screen .carousel-item .container.container-slide {
  min-width: 100%;
  min-height: 100vh;
  padding: 0;
}
.cid-tIo8LJWxBA .full-screen .carousel-item .container.container-slide img {
  display: none;
}
.cid-tIo8LJWxBA .mbr-background-video-preview {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.cid-tIo8LJWxBA .mbr-overlay ~ .container-slide {
  z-index: auto;
}
.cid-tIogjZ28Gv {
  background-color: #f8f8f8;
}
.cid-tIogjZ28Gv .container-fluid {
  padding-right: 0;
}
.cid-tIogjZ28Gv .mbr-fallback-image.disabled {
  display: none;
}
.cid-tIogjZ28Gv .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tIogjZ28Gv .title-wrapper {
  padding: 0 1rem;
}
@media (max-width: 992px) {
  .cid-tIogjZ28Gv .title-wrapper {
    padding: 0 12px;
  }
}
.cid-tIogjZ28Gv .title {
  display: flex;
  align-items: center;
}
.cid-tIogjZ28Gv .title-wrapper {
  width: 100%;
}
.cid-tIogjZ28Gv .title-wrapper .mbr-section-subtitle {
  margin-bottom: 24px;
}
@media (max-width: 992px) {
  .cid-tIogjZ28Gv .title-wrapper .mbr-section-subtitle {
    margin-bottom: 19.5px;
  }
}
.cid-tIogjZ28Gv .title-wrapper .mbr-section-title {
  margin-bottom: 24px;
}
@media (max-width: 992px) {
  .cid-tIogjZ28Gv .title-wrapper .mbr-section-title {
    margin-bottom: 19.5px;
  }
}
.cid-tIogjZ28Gv .title-wrapper .mbr-text {
  margin-bottom: 48px;
}
@media (max-width: 992px) {
  .cid-tIogjZ28Gv .title-wrapper .mbr-text {
    margin-bottom: 19.5px;
  }
}
@media (max-width: 992px) {
  .cid-tIogjZ28Gv .image-wrapper {
    margin-top: 39px;
  }
}
.cid-tIogjZ28Gv .image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-tIogjZ28Gv .mbr-section-subtitle {
  color: #181818;
}
.cid-tIogjZ28Gv .mbr-section-title {
  color: #181818;
}
.cid-tIogjZ28Gv .mbr-text {
  color: #454545;
}
.cid-ueLZvGVd6u {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/img-9980-2000x1500.jpg");
}
.cid-ueLZvGVd6u .mbr-fallback-image.disabled {
  display: none;
}
.cid-ueLZvGVd6u .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ueLZvGVd6u .row {
  justify-content: center;
}
.cid-ueLZvGVd6u .row {
  padding: 0 1rem;
}
@media (max-width: 992px) {
  .cid-ueLZvGVd6u .row {
    padding: 0 12px;
  }
}
.cid-ueLZvGVd6u .item-wrap {
  z-index: 1;
}
.cid-ueLZvGVd6u .mbr-section-subtitle {
  margin-bottom: 46px;
  color: #ffffff;
}
@media (max-width: 992px) {
  .cid-ueLZvGVd6u .mbr-section-subtitle {
    margin-bottom: 37px;
  }
}
.cid-ueLZvGVd6u .title-wrapper .mbr-section-title {
  margin-bottom: 19.5px;
}
.cid-ueLZvGVd6u .text-wrapper .mbr-text {
  margin-bottom: 46px;
  padding-top: 8px;
  opacity: .8;
}
@media (max-width: 992px) {
  .cid-ueLZvGVd6u .text-wrapper .mbr-text {
    margin-bottom: 37px;
    padding-top: 6.5px;
  }
}
.cid-ueLZvGVd6u .mbr-section-title {
  color: #ffffff;
}
.cid-ueLZvGVd6u .mbr-text {
  color: #ffffff;
}
.cid-tMg2RFJwM9.popup-builder {
  background-color: #ffffff;
}
.cid-tMg2RFJwM9.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-tMg2RFJwM9.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-tMg2RFJwM9 .modal-content,
.cid-tMg2RFJwM9 .modal-dialog {
  height: auto;
}
.cid-tMg2RFJwM9 .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-tMg2RFJwM9 .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-tMg2RFJwM9 .form-wrapper .mbr-form .form-group,
  .cid-tMg2RFJwM9 .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-tMg2RFJwM9 .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-tMg2RFJwM9 .mbr-figure img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}
.cid-tMg2RFJwM9 .mbr-text {
  text-align: center;
}
.cid-tMg2RFJwM9 .pt-0 {
  padding-top: 0 !important;
}
.cid-tMg2RFJwM9 .pb-0 {
  padding-bottom: 0 !important;
}
.cid-tMg2RFJwM9 .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-tMg2RFJwM9 .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-tMg2RFJwM9 .modal-open {
  overflow: hidden;
}
.cid-tMg2RFJwM9 .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-tMg2RFJwM9 .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-tMg2RFJwM9 .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-tMg2RFJwM9 .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
.cid-tMg2RFJwM9 .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-tMg2RFJwM9 .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-tMg2RFJwM9 .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-tMg2RFJwM9 .modal-content {
  background: #d9d9d9;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  outline: 0;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.cid-tMg2RFJwM9 .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-tMg2RFJwM9 .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-tMg2RFJwM9 .modal-backdrop.fade {
  opacity: 0;
}
.cid-tMg2RFJwM9 .modal-backdrop.show {
  opacity: .5;
}
.cid-tMg2RFJwM9 .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border-bottom: none;
}
@media (min-width: 992px) {
  .cid-tMg2RFJwM9 .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-tMg2RFJwM9 .modal-header {
    padding: 1rem;
  }
}
.cid-tMg2RFJwM9 .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-tMg2RFJwM9 .modal-header .close svg {
  fill: #000000;
}
.cid-tMg2RFJwM9 .modal-header .close:hover {
  opacity: 1;
}
.cid-tMg2RFJwM9 .modal-header .close:focus {
  outline: none;
}
.cid-tMg2RFJwM9 .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
}
.cid-tMg2RFJwM9 .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-tMg2RFJwM9 .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tMg2RFJwM9 .modal-body {
    padding: 1rem;
  }
}
.cid-tMg2RFJwM9 .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-top: none;
  text-align: center;
}
@media (min-width: 992px) {
  .cid-tMg2RFJwM9 .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tMg2RFJwM9 .modal-footer {
    padding: 1rem;
  }
}
.cid-tMg2RFJwM9 .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-tMg2RFJwM9 .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-tMg2RFJwM9 .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-tMg2RFJwM9 .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-tMg2RFJwM9 .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-tMg2RFJwM9 .modal-lg,
  .cid-tMg2RFJwM9 .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-tMg2RFJwM9 .modal-xl {
    max-width: 1140px;
  }
}
.cid-tMg2RFJwM9 .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-tMg2RFJwM9 .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.cid-tMg2RFJwM9 .form-group {
  margin-bottom: 1rem;
}
.cid-tMg2RFJwM9 .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-tMg2RFJwM9 .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-tMg2RFJwM9 .col-md-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.cid-tMg2RFJwM9 .mbr-section-btn {
  margin: 0;
}
.cid-tMg2RFJwM9 .mbr-section-btn .btn {
  margin: 0;
}
.cid-tIqe0AlRPZ {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
  overflow: hidden;
}
.cid-tIqe0AlRPZ .container {
  max-width: 100% !important;
}
.cid-tIqe0AlRPZ .mbr-section-head {
  max-width: 1300px;
  width: 100%;
  padding: 40px 0 50px;
  margin: 0 auto;
}
@media (max-width: 1439px) {
  .cid-tIqe0AlRPZ .mbr-section-head {
    max-width: 1100px;
  }
}
@media (max-width: 1199px) {
  .cid-tIqe0AlRPZ .mbr-section-head {
    max-width: 960px;
  }
}
@media (max-width: 991px) {
  .cid-tIqe0AlRPZ .mbr-section-head {
    max-width: 86%;
  }
}
@media (max-width: 767px) {
  .cid-tIqe0AlRPZ .mbr-section-head {
    padding: 30px 0 40px;
  }
}
.cid-tIqe0AlRPZ .mbr-section-title {
  color: #303030;
}
.cid-tIqe0AlRPZ .mbr-section-subtitle {
  color: #303030;
  margin-top: 16px;
}
.cid-tIqe0AlRPZ .items-row {
  position: relative;
  margin-top: -1px;
  margin-left: -3px !important;
  margin-right: -3px !important;
  border-top: 1px solid #d9d9d9;
}
.cid-tIqe0AlRPZ .items-row:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 1px;
  width: 101vw;
  background-color: #d9d9d9;
}
.cid-tIqe0AlRPZ .item-wrapper {
  width: 100%;
  height: 100%;
  padding: 15% 15% 13% 15%;
  transition: .3s all;
}
@media (max-width: 767px) {
  .cid-tIqe0AlRPZ .item-wrapper {
    padding: 13% 7% 12%;
  }
}
.cid-tIqe0AlRPZ .item {
  padding: 0 !important;
  margin: -1px -1px 0;
  overflow: hidden;
  border: 1px solid #d9d9d9;
}
.cid-tIqe0AlRPZ .item:nth-child(1n) .item-wrapper {
  background: linear-gradient(to left, #ffffff 0 50%, #f6f6f6 50% 100%);
  background-size: 200% 100%;
  background-position: right;
}
.cid-tIqe0AlRPZ .item:nth-child(1n) .item-wrapper:hover {
  background-position: left;
}
.cid-tIqe0AlRPZ .item:nth-child(2n) .item-wrapper {
  background: linear-gradient(to top, #ffffff 0 50%, #f6f6f6 50% 100%);
  background-size: 100% 200%;
  background-position: bottom;
}
.cid-tIqe0AlRPZ .item:nth-child(2n) .item-wrapper:hover {
  background-position: top;
}
.cid-tIqe0AlRPZ .item:nth-child(3n) .item-wrapper {
  background: linear-gradient(to right, #ffffff 0 50%, #f6f6f6 50% 100%);
  background-size: 200% 100%;
  background-position: left;
}
.cid-tIqe0AlRPZ .item:nth-child(3n) .item-wrapper:hover {
  background-position: right;
}
.cid-tIqe0AlRPZ .item-img {
  width: 100%;
  border: 1px solid #d9d9d9;
}
.cid-tIqe0AlRPZ .item-img img {
  width: 100%;
  aspect-ratio: calc(425 / (124 * 4));
  object-fit: cover;
}
.cid-tIqe0AlRPZ .item-content {
  margin-top: 15px;
}
.cid-tIqe0AlRPZ .mbr-text {
  margin-top: 15px;
  color: #303030;
}
.cid-tIqe0AlRPZ .item-title {
  margin-top: 15px;
  color: #303030;
}
.cid-tIqe0AlRPZ .mbr-section-btn {
  padding-top: 10px;
  margin-top: auto !important;
}
.cid-tIok2tc3LD {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/banners-oficiais-oxigenium-1-1920x800.jpg");
}
.cid-tIok2tc3LD .mbr-fallback-image.disabled {
  display: none;
}
.cid-tIok2tc3LD .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tIok2tc3LD .row {
  justify-content: center;
}
.cid-tIok2tc3LD .row {
  padding: 0 1rem;
}
@media (max-width: 992px) {
  .cid-tIok2tc3LD .row {
    padding: 0 12px;
  }
}
.cid-tIok2tc3LD .item-wrap {
  z-index: 1;
}
.cid-tIok2tc3LD .image-wrapper {
  margin-bottom: 24px;
}
@media (max-width: 992px) {
  .cid-tIok2tc3LD .image-wrapper {
    margin-bottom: 19.5px;
  }
}
.cid-tIok2tc3LD .image-wrapper img {
  display: inline-block;
  width: 70px;
  object-fit: cover;
}
.cid-tIok2tc3LD .title-wrapper {
  margin-bottom: 80px;
}
@media (max-width: 992px) {
  .cid-tIok2tc3LD .title-wrapper {
    margin-bottom: 19.5px;
  }
}
.cid-tIok2tc3LD .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-tIok2tc3LD .text-wrapper {
  margin-bottom: 80px;
}
@media (max-width: 992px) {
  .cid-tIok2tc3LD .text-wrapper {
    margin-bottom: 65px;
  }
}
.cid-tIok2tc3LD .text-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-tIok2tc3LD .border-wrap {
  width: 100%;
  height: 1px;
  background-color: #ffffff;
}
.cid-tIok2tc3LD .mbr-section-title {
  color: #ffffff;
}
.cid-tIok2tc3LD .mbr-text {
  color: #ffffff;
}
.cid-timnxsRVKY {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #f8f8f8;
}
.cid-timnxsRVKY .mbr-fallback-image.disabled {
  display: none;
}
.cid-timnxsRVKY .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-timnxsRVKY .row {
  justify-content: center;
}
.cid-timnxsRVKY .row {
  padding: 0 1rem;
}
@media (max-width: 992px) {
  .cid-timnxsRVKY .row {
    padding: 0 12px;
  }
}
.cid-timnxsRVKY .item-wrap {
  z-index: 1;
}
.cid-timnxsRVKY .title-wrapper {
  max-width: 46.5rem;
  margin: 0 auto 34px;
}
@media (max-width: 992px) {
  .cid-timnxsRVKY .title-wrapper {
    margin-bottom: 28px;
  }
}
.cid-timnxsRVKY .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-timnxsRVKY .title-wrapper .mbr-section-title {
    margin-bottom: 13px;
    text-align: center;
  }
}
.cid-timnxsRVKY .mbr-text ul {
  display: flex;
  justify-content: center;
  padding: 0;
  margin: 0;
  list-style: none;
}
@media (max-width: 992px) {
  .cid-timnxsRVKY .mbr-text ul {
    display: block;
    text-align: center;
  }
}
.cid-timnxsRVKY .mbr-text ul li {
  margin: 0 12px 26px;
  list-style: none;
  padding-left: 24px;
  position: relative;
}
.cid-timnxsRVKY .mbr-text ul li::before {
  content: "✔";
  display: block;
  position: absolute;
  width: 16px;
  height: 100%;
  top: 0;
  left: 0;
  font-size: 1rem;
  font-weight: 600;
  color: #181818;
  padding-top: 3px;
}
@media (max-width: 992px) {
  .cid-timnxsRVKY .mbr-text ul li::before {
    display: none;
  }
}
.cid-timnxsRVKY .mbr-section-btn {
  max-width: 46.5rem;
  margin: 0 auto;
}
.cid-timnxsRVKY .mbr-section-title {
  color: #181818;
}
.cid-timnxsRVKY .mbr-text,
.cid-timnxsRVKY .mbr-iconfont {
  color: #454545;
}
.cid-timnxsRVKY .mbr-section-title,
.cid-timnxsRVKY .mbr-section-btn {
  text-align: center;
}
.cid-timnxsRVKY .mbr-text,
.cid-timnxsRVKY .mbr-iconfont UL {
  text-align: right;
}
.cid-tIohuF5pgH {
  padding-top: 1rem;
  padding-bottom: 2rem;
  background-color: #f8f8f8;
}
.cid-tIohuF5pgH .mbr-fallback-image.disabled {
  display: none;
}
.cid-tIohuF5pgH .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tIohuF5pgH .row {
  justify-content: center;
}
.cid-tIohuF5pgH .row {
  padding: 0 2rem;
}
@media (max-width: 992px) {
  .cid-tIohuF5pgH .row {
    padding: 0 19px;
  }
}
.cid-tIohuF5pgH .item {
  padding: 0 !important;
  height: 230px;
}
@media (max-width: 768px) {
  .cid-tIohuF5pgH .item {
    height: 150px;
  }
}
.cid-tIohuF5pgH .item-wrap {
  z-index: 1;
  padding: 0;
}
@media (max-width: 992px) {
  .cid-tIohuF5pgH .item-wrap {
    padding: 0 5px;
  }
}
.cid-tIohuF5pgH .border-wrap {
  width: 100%;
  height: 2px;
  background-color: #181818;
  margin-bottom: 46px;
}
.cid-tIohuF5pgH .mbr-section-title {
  margin-bottom: 64px;
  color: #181818;
}
@media (max-width: 992px) {
  .cid-tIohuF5pgH .mbr-section-title {
    margin-bottom: 32px;
  }
}
.cid-tIohuF5pgH .link-wrapper {
  width: 100%;
  display: block;
  margin-bottom: 64px;
}
.cid-tIohuF5pgH .link-wrapper:hover .mbr-link {
  color: #d9d9d9;
}
@media (max-width: 992px) {
  .cid-tIohuF5pgH .link-wrapper {
    margin-bottom: 32px;
  }
}
.cid-tIohuF5pgH .link-wrapper .mbr-link {
  margin-bottom: 0;
  transition: all .3s ease;
}
.cid-tIohuF5pgH .item-wrapper .item-link {
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
}
.cid-tIohuF5pgH .item-wrapper .item-link:hover img {
  transform: scale(1.1, 1.1);
}
.cid-tIohuF5pgH .item-wrapper .item-link img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  transition: all .3s ease;
}
@media (max-width: 768px) {
  .cid-tIohuF5pgH .item-wrapper .item-link img {
    height: 150px;
  }
}
.cid-tIohuF5pgH .item-wrapper .item-link .icon-wrapper {
  position: absolute;
  bottom: 1rem;
  padding: 0 1rem;
  display: flex;
  justify-content: space-between;
  width: 100%;
}
.cid-tIohuF5pgH .item-wrapper .item-link .icon-wrapper .mbr-like {
  line-height: 1.3;
  display: flex;
  align-items: flex-end;
  margin-bottom: 0;
}
.cid-tIohuF5pgH .item-wrapper .item-link .icon-wrapper .mbr-like .mbr-iconfont {
  font-size: 11px !important;
  display: block;
  margin-right: 5px;
}
.cid-tIohuF5pgH .item-wrapper .item-link .icon-wrapper .mbr-comment {
  line-height: 1.3;
  display: flex;
  align-items: flex-end;
  margin-bottom: 0;
}
.cid-tIohuF5pgH .item-wrapper .item-link .icon-wrapper .mbr-comment .mbr-iconfont {
  font-size: 11px !important;
  display: block;
  margin-right: 5px;
}
.cid-tIohuF5pgH .mbr-link {
  color: #181818;
  text-align: right;
}
.cid-tIohuF5pgH .mbr-like {
  color: #ffffff;
}
.cid-tIohuF5pgH .mbr-comment,
.cid-tIohuF5pgH .mbr-iconfont {
  color: #ffffff;
}
.cid-tIYUPxREwJ {
  padding-top: 15px;
  padding-bottom: 75px;
  background-color: #f8f8f8;
}
.cid-tIYUPxREwJ .card-wrapper {
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  border-radius: 30px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  background-color: #ffffff;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  padding: 1rem 1rem !important;
  box-shadow: 0 15px 50px 10px rgba(179, 179, 179, 0.6);
}
.cid-tIYUPxREwJ .card-wrapper:hover {
  -webkit-transform: translateY(1rem);
  transform: translateY(1rem);
}
.cid-tIYUPxREwJ .card-wrapper:hover .ico2 {
  color: #181818 !important;
}
.cid-tIYUPxREwJ .ico2 {
  color: #ffffff !important;
  -webkit-transition: all 0.6s;
  transition: all 0.6s;
}
.cid-tIYUPxREwJ .text-info:hover {
  color: inherit !important;
}
.cid-tIYUPxREwJ .card-box {
  padding: 0rem 1rem;
}
.cid-tIYUPxREwJ .ico1 {
  font-size: 3rem !important;
}
.cid-tIYUPxREwJ h3,
.cid-tIYUPxREwJ h4 {
  padding: 0;
  margin: 0;
}
.cid-tIYUPxREwJ .mbr-fallback-image.disabled {
  display: none;
}
.cid-tIYUPxREwJ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tIomSfKie0 {
  background-color: #f8f8f8;
}
.cid-tIomSfKie0 .container-fluid {
  padding-right: 0;
  padding-right: 32px;
  padding-left: 0;
}
.cid-tIomSfKie0 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tIomSfKie0 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tIomSfKie0 .title-wrapper {
  padding: 0 1rem;
}
@media (max-width: 992px) {
  .cid-tIomSfKie0 .title-wrapper {
    padding: 0 12px;
  }
}
.cid-tIomSfKie0 .title {
  display: flex;
  align-items: center;
}
.cid-tIomSfKie0 .title-wrapper {
  width: 100%;
}
.cid-tIomSfKie0 .title-wrapper .mbr-section-subtitle {
  margin-bottom: 24px;
}
@media (max-width: 992px) {
  .cid-tIomSfKie0 .title-wrapper .mbr-section-subtitle {
    margin-bottom: 19.5px;
  }
}
.cid-tIomSfKie0 .title-wrapper .mbr-section-title {
  margin-bottom: 24px;
}
@media (max-width: 992px) {
  .cid-tIomSfKie0 .title-wrapper .mbr-section-title {
    margin-bottom: 19.5px;
  }
}
.cid-tIomSfKie0 .title-wrapper .mbr-text {
  margin-bottom: 48px;
}
@media (max-width: 992px) {
  .cid-tIomSfKie0 .title-wrapper .mbr-text {
    margin-bottom: 19.5px;
  }
}
@media (max-width: 992px) {
  .cid-tIomSfKie0 .image-wrapper {
    margin-top: 39px;
  }
}
.cid-tIomSfKie0 .image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-tIomSfKie0 .mbr-section-subtitle {
  color: #181818;
}
.cid-tIomSfKie0 .mbr-section-title {
  color: #181818;
}
.cid-tIomSfKie0 .mbr-text {
  color: #454545;
}
.cid-timbQhoAYb {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/img-9949-2000x1125.jpg");
}
.cid-timbQhoAYb .mbr-fallback-image.disabled {
  display: none;
}
.cid-timbQhoAYb .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-timbQhoAYb .row {
  justify-content: center;
}
.cid-timbQhoAYb .row {
  padding: 0 1rem;
}
@media (max-width: 992px) {
  .cid-timbQhoAYb .row {
    padding: 0 12px;
  }
}
.cid-timbQhoAYb .item-wrap {
  z-index: 1;
}
.cid-timbQhoAYb .image-wrapper {
  margin-bottom: 24px;
}
@media (max-width: 992px) {
  .cid-timbQhoAYb .image-wrapper {
    margin-bottom: 19.5px;
  }
}
.cid-timbQhoAYb .image-wrapper img {
  display: inline-block;
  width: 70px;
  object-fit: cover;
}
.cid-timbQhoAYb .title-wrapper {
  margin-bottom: 80px;
}
@media (max-width: 992px) {
  .cid-timbQhoAYb .title-wrapper {
    margin-bottom: 19.5px;
  }
}
.cid-timbQhoAYb .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-timbQhoAYb .text-wrapper {
  margin-bottom: 80px;
}
@media (max-width: 992px) {
  .cid-timbQhoAYb .text-wrapper {
    margin-bottom: 65px;
  }
}
.cid-timbQhoAYb .text-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-timbQhoAYb .border-wrap {
  width: 100%;
  height: 1px;
  background-color: #ffffff;
}
.cid-timbQhoAYb .mbr-section-title {
  color: #ffffff;
}
.cid-timbQhoAYb .mbr-text {
  color: #ffffff;
}
.cid-tIoL4G0tSX {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #f8f8f8;
}
.cid-tIoL4G0tSX .mbr-fallback-image.disabled {
  display: none;
}
.cid-tIoL4G0tSX .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tIoL4G0tSX .row {
  justify-content: center;
}
.cid-tIoL4G0tSX .row {
  padding: 0 1rem;
}
@media (max-width: 992px) {
  .cid-tIoL4G0tSX .row {
    padding: 0 12px;
  }
}
.cid-tIoL4G0tSX .item-wrap {
  z-index: 1;
}
.cid-tIoL4G0tSX .title-wrapper {
  max-width: 46.5rem;
  margin: 0 auto 34px;
}
@media (max-width: 992px) {
  .cid-tIoL4G0tSX .title-wrapper {
    margin-bottom: 28px;
  }
}
.cid-tIoL4G0tSX .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-tIoL4G0tSX .title-wrapper .mbr-section-title {
    margin-bottom: 13px;
    text-align: center;
  }
}
.cid-tIoL4G0tSX .mbr-text ul {
  display: flex;
  justify-content: center;
  padding: 0;
  margin: 0;
  list-style: none;
}
@media (max-width: 992px) {
  .cid-tIoL4G0tSX .mbr-text ul {
    display: block;
    text-align: center;
  }
}
.cid-tIoL4G0tSX .mbr-text ul li {
  margin: 0 12px 26px;
  list-style: none;
  padding-left: 24px;
  position: relative;
}
.cid-tIoL4G0tSX .mbr-text ul li::before {
  content: "✔";
  display: block;
  position: absolute;
  width: 16px;
  height: 100%;
  top: 0;
  left: 0;
  font-size: 1rem;
  font-weight: 600;
  color: #181818;
  padding-top: 3px;
}
@media (max-width: 992px) {
  .cid-tIoL4G0tSX .mbr-text ul li::before {
    display: none;
  }
}
.cid-tIoL4G0tSX .mbr-section-btn {
  max-width: 46.5rem;
  margin: 0 auto;
}
.cid-tIoL4G0tSX .mbr-section-title {
  color: #181818;
}
.cid-tIoL4G0tSX .mbr-text,
.cid-tIoL4G0tSX .mbr-iconfont {
  color: #454545;
}
.cid-tIoL4G0tSX .mbr-section-title,
.cid-tIoL4G0tSX .mbr-section-btn {
  text-align: center;
}
.cid-tIoL4G0tSX .mbr-text,
.cid-tIoL4G0tSX .mbr-iconfont UL {
  text-align: right;
}
.cid-tIoKgwoALG {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #f8f8f8;
}
.cid-tIoKgwoALG .mbr-fallback-image.disabled {
  display: none;
}
.cid-tIoKgwoALG .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tIoKgwoALG .mbr-section-head {
  margin-bottom: 32px;
}
.cid-tIoKgwoALG .mbr-section-title {
  color: #24262b;
}
.cid-tIoKgwoALG .mbr-section-subtitle {
  color: #24262b;
}
.cid-tIoKgwoALG .items-row {
  row-gap: 32px;
}
.cid-tIoKgwoALG .item-wrapper {
  position: relative;
  overflow: hidden;
}
.cid-tIoKgwoALG .item-wrapper img {
  width: 100%;
  aspect-ratio: calc(8 / (1 * 6));
  object-fit: cover;
  transition: all 0.3s;
}
.cid-tIoKgwoALG .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  z-index: 3;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  border-radius: 50%;
  opacity: 0;
  color: #24262b;
  transform: translateX(-50%) translateY(-50%);
  background-color: #FFFFFF;
  transition: 0.3s;
}
.cid-tIoKgwoALG .item-wrapper .img-overlay {
  position: absolute;
  pointer-events: none;
  transition: all 0.3s;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #33363b;
  opacity: 0;
  z-index: 2;
}
.cid-tIoKgwoALG .item-wrapper:hover img {
  transform: scale(1.05);
}
.cid-tIoKgwoALG .item-wrapper:hover .icon-wrapper {
  opacity: 1;
}
.cid-tIoKgwoALG .item-wrapper:hover .img-overlay {
  opacity: 0.3;
}
.cid-tIoKgwoALG .mbr-item-subtitle {
  color: #24262b;
}
.cid-tIoKgwoALG .carousel-control,
.cid-tIoKgwoALG .close {
  background: #1b1b1b;
}
.cid-tIoKgwoALG .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-tIoKgwoALG .carousel-control-prev span {
  margin-right: 5px;
}
.cid-tIoKgwoALG .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-tIoKgwoALG .carousel-control-next span {
  margin-left: 5px;
}
.cid-tIoKgwoALG .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-tIoKgwoALG .close::before {
  content: '\e91a';
}
.cid-tIoKgwoALG .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-tIoKgwoALG .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-tIoKgwoALG .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tIoKgwoALG .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-tIoKgwoALG .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-tIoKgwoALG .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-tIoKgwoALG .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-tIoKgwoALG .carousel-indicators li.active,
.cid-tIoKgwoALG .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-tIoKgwoALG .carousel-indicators li::after,
.cid-tIoKgwoALG .carousel-indicators li::before {
  content: none;
}
.cid-tIoKgwoALG .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-tIoKgwoALG .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-tIoKgwoALG .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-tIoKgwoALG .carousel-indicators {
    display: none;
  }
}
.cid-tIoKgwoALG .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-tIoKgwoALG .carousel-inner > .active {
  display: block;
}
.cid-tIoKgwoALG .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tIoKgwoALG .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tIoKgwoALG .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-tIoKgwoALG .carousel-control,
  .cid-tIoKgwoALG .carousel-indicators,
  .cid-tIoKgwoALG .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-tIoKgwoALG .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-tIoKgwoALG .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-tIoKgwoALG .carousel-indicators .active,
.cid-tIoKgwoALG .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-tIoKgwoALG .carousel-indicators .active {
  background: #fff;
}
.cid-tIoKgwoALG .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-tIoKgwoALG .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-tIoKgwoALG .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-tIoKgwoALG .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-tIoKgwoALG .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-tIoKgwoALG .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-tIoKgwoALG .carousel {
  width: 100%;
}
.cid-tIoKgwoALG .modal-backdrop.in {
  opacity: 0.8;
}
.cid-tIoKgwoALG .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-tIoKgwoALG .modal.fade .modal-dialog,
.cid-tIoKgwoALG .modal.in .modal-dialog {
  transform: none;
}
.cid-tIoKgwoALG .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-tIoKgwoALG H6 {
  text-align: center;
}
.cid-timbRr9kVB {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/img-9980-2000x1500.jpg");
}
.cid-timbRr9kVB .mbr-fallback-image.disabled {
  display: none;
}
.cid-timbRr9kVB .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-timbRr9kVB .row {
  justify-content: center;
}
.cid-timbRr9kVB .row {
  padding: 0 1rem;
}
@media (max-width: 992px) {
  .cid-timbRr9kVB .row {
    padding: 0 12px;
  }
}
.cid-timbRr9kVB .item-wrap {
  z-index: 1;
}
.cid-timbRr9kVB .mbr-section-subtitle {
  margin-bottom: 46px;
  color: #ffffff;
}
@media (max-width: 992px) {
  .cid-timbRr9kVB .mbr-section-subtitle {
    margin-bottom: 37px;
  }
}
.cid-timbRr9kVB .title-wrapper .mbr-section-title {
  margin-bottom: 19.5px;
}
.cid-timbRr9kVB .text-wrapper .mbr-text {
  margin-bottom: 46px;
  padding-top: 8px;
  opacity: .8;
}
@media (max-width: 992px) {
  .cid-timbRr9kVB .text-wrapper .mbr-text {
    margin-bottom: 37px;
    padding-top: 6.5px;
  }
}
.cid-timbRr9kVB .mbr-section-title {
  color: #ffffff;
}
.cid-timbRr9kVB .mbr-text {
  color: #ffffff;
}
.cid-tIoSGQ232Z {
  padding-top: 75px;
  padding-bottom: 75px;
  background-color: #f8f8f8;
}
.cid-tIoSGQ232Z .card-wrapper {
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  border-radius: 30px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  background-color: #ffffff;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  padding: 1rem 1rem !important;
  box-shadow: 0 15px 50px 10px rgba(179, 179, 179, 0.6);
}
.cid-tIoSGQ232Z .card-wrapper:hover {
  -webkit-transform: translateY(1rem);
  transform: translateY(1rem);
}
.cid-tIoSGQ232Z .card-wrapper:hover .ico2 {
  color: #181818 !important;
}
.cid-tIoSGQ232Z .ico2 {
  color: #ffffff !important;
  -webkit-transition: all 0.6s;
  transition: all 0.6s;
}
.cid-tIoSGQ232Z .text-info:hover {
  color: inherit !important;
}
.cid-tIoSGQ232Z .card-box {
  padding: 0rem 1rem;
}
.cid-tIoSGQ232Z .ico1 {
  font-size: 3rem !important;
}
.cid-tIoSGQ232Z h3,
.cid-tIoSGQ232Z h4 {
  padding: 0;
  margin: 0;
}
.cid-tIoSGQ232Z .mbr-fallback-image.disabled {
  display: none;
}
.cid-tIoSGQ232Z .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tIpgsnnXk1 .google-map {
  height: 25rem;
  position: relative;
  -webkit-filter: grayscale(100%);
  -moz-filter: grayscale(100%);
  -ms-filter: grayscale(100%);
  -o-filter: grayscale(100%);
  filter: gray;
}
.cid-tIpgsnnXk1 .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-tIpgsnnXk1 .google-map [data-state-details] {
  color: #6b6763;
  font-family: Montserrat;
  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-tIpgsnnXk1 .google-map[data-state] {
  background: #e9e5dc;
}
.cid-tIpgsnnXk1 .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-tIoWVbrCFv {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f8f8f8;
}
.cid-tIoWVbrCFv .mbr-section-title {
  margin-bottom: 1rem;
  color: #202020;
}
.cid-tIoWVbrCFv .footer_logo {
  margin-bottom: 2rem;
  text-align: center;
}
.cid-tIoWVbrCFv .footer_logo img {
  width: auto;
  object-fit: cover;
  display: inline-block;
}
.cid-tIoWVbrCFv .mbr-text {
  margin: 10px 0;
  text-align: center;
}
.cid-tIoWVbrCFv .footer_info {
  margin: 10px 0;
  text-align: center;
}
.cid-tIoWVbrCFv .social_icons {
  text-align: center;
}
.cid-tIoWVbrCFv .icons_footer {
  margin-top: 35px;
  padding: 0;
  display: inline-flex;
}
.cid-tIoWVbrCFv .iconfont-wrapper {
  color: #000000 !important;
  font-size: 17px;
  margin-right: 25px;
  width: 56px;
  height: 56px;
  background-color: #ffffff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.2s ease-in-out;
}
.cid-tIoWVbrCFv .iconfont-wrapper:last-child {
  margin-right: 0;
}
.cid-tIoWVbrCFv .iconfont-wrapper:hover {
  background-color: #f2f2f2;
}
@media (max-width: 767px) {
  .cid-tIoWVbrCFv .footer_timework {
    margin-top: 50px;
  }
  .cid-tIoWVbrCFv .footer_contact {
    margin-bottom: 50px;
  }
}
.cid-tIoWYvLHXy {
  padding-top: 3rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-tIoWYvLHXy .mbr-text {
  color: #eae8e4;
  margin-bottom: 0;
  line-height: 1.25;
  text-align: left;
}
.cid-tIoWYvLHXy .foot-menu {
  margin-bottom: 0;
}
.cid-tIoWYvLHXy ul {
  list-style: none;
  padding: 0;
  text-align: right;
}
.cid-tIoWYvLHXy li {
  display: inline-block;
  line-height: 1.5;
  margin: .5rem .75rem;
}
.cid-tIoWYvLHXy li > a[class*="text-"]:not(.btn):not([role]):not(.navbar-caption):hover:after {
  opacity: 0;
}
@media (max-width: 767px) {
  .cid-tIoWYvLHXy ul {
    text-align: left;
  }
  .cid-tIoWYvLHXy .mbr-text {
    margin-bottom: .75rem;
    margin-left: .75rem;
  }
}
.cid-tIiXREZwK9 {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 80px;
}
.cid-tIiXREZwK9 nav.navbar {
  position: fixed;
}
.cid-tIiXREZwK9 .navbar-brand {
  border-left: 4px solid #000000;
  flex-shrink: 0;
  padding: 0;
  padding-left: 1rem !important;
  align-items: center;
  margin-right: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tIiXREZwK9 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tIiXREZwK9 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tIiXREZwK9 .navbar-dropdown.navbar-short .navbar-brand {
  padding: 0;
}
.cid-tIiXREZwK9 .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-tIiXREZwK9 .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tIiXREZwK9 .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tIiXREZwK9 .dropdown-item:hover,
.cid-tIiXREZwK9 .dropdown-item:focus {
  background: #181818 !important;
  color: white !important;
}
.cid-tIiXREZwK9 .dropdown-item:hover span {
  color: white;
}
.cid-tIiXREZwK9 .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tIiXREZwK9 .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tIiXREZwK9 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tIiXREZwK9 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tIiXREZwK9 .nav-link {
  position: relative;
}
.cid-tIiXREZwK9 .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-tIiXREZwK9 .container {
    flex-wrap: nowrap;
  }
}
.cid-tIiXREZwK9 .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tIiXREZwK9 .dropdown-menu,
.cid-tIiXREZwK9 .navbar.opened {
  background: #d9d9d9 !important;
}
.cid-tIiXREZwK9 .nav-item:focus,
.cid-tIiXREZwK9 .nav-link:focus {
  outline: none;
}
.cid-tIiXREZwK9 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tIiXREZwK9 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tIiXREZwK9 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tIiXREZwK9 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tIiXREZwK9 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tIiXREZwK9 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tIiXREZwK9 .navbar {
  min-height: 80px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: #d9d9d9;
}
.cid-tIiXREZwK9 .navbar.opened {
  transition: all 0.3s;
}
.cid-tIiXREZwK9 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tIiXREZwK9 .navbar .navbar-logo img {
  width: auto;
}
.cid-tIiXREZwK9 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tIiXREZwK9 .navbar.collapsed {
  justify-content: center;
}
.cid-tIiXREZwK9 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tIiXREZwK9 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tIiXREZwK9 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-tIiXREZwK9 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tIiXREZwK9 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tIiXREZwK9 .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-tIiXREZwK9 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tIiXREZwK9 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tIiXREZwK9 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tIiXREZwK9 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tIiXREZwK9 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tIiXREZwK9 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tIiXREZwK9 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tIiXREZwK9 .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-tIiXREZwK9 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tIiXREZwK9 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tIiXREZwK9 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tIiXREZwK9 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tIiXREZwK9 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tIiXREZwK9 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-tIiXREZwK9 .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-tIiXREZwK9 .navbar.navbar-short {
  min-height: 70px;
}
.cid-tIiXREZwK9 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tIiXREZwK9 .dropdown-item.active,
.cid-tIiXREZwK9 .dropdown-item:active {
  background-color: transparent;
}
.cid-tIiXREZwK9 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tIiXREZwK9 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tIiXREZwK9 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tIiXREZwK9 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #d9d9d9;
}
.cid-tIiXREZwK9 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tIiXREZwK9 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tIiXREZwK9 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tIiXREZwK9 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tIiXREZwK9 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tIiXREZwK9 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #00004c;
}
.cid-tIiXREZwK9 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tIiXREZwK9 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tIiXREZwK9 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tIiXREZwK9 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tIiXREZwK9 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tIiXREZwK9 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tIiXREZwK9 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tIiXREZwK9 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tIiXREZwK9 .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tIiXREZwK9 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tIiXREZwK9 .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-tIiXREZwK9 .navbar {
    height: 80px;
  }
  .cid-tIiXREZwK9 .navbar.opened {
    height: auto;
  }
  .cid-tIiXREZwK9 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
