body {
  font-family: 'PT Sans Narrow', sans-serif;
}
.display-1 {
  font-family: 'PT Sans Narrow', sans-serif;
  font-size: 4.6rem;
  line-height: 1.1;
}
.display-1 > .mbr-iconfont {
  font-size: 5.75rem;
}
.display-2 {
  font-family: 'PT Sans Narrow', sans-serif;
  font-size: 2.6rem;
  line-height: 1.1;
}
.display-2 > .mbr-iconfont {
  font-size: 3.25rem;
}
.display-4 {
  font-family: 'PT Sans Narrow', sans-serif;
  font-size: 1.3rem;
  line-height: 1.2;
}
.display-4 > .mbr-iconfont {
  font-size: 1.625rem;
}
.display-5 {
  font-family: 'PT Sans Narrow', sans-serif;
  font-size: 1.75rem;
  line-height: 1.2;
}
.display-5 > .mbr-iconfont {
  font-size: 2.1875rem;
}
.display-7 {
  font-family: 'PT Sans Narrow', sans-serif;
  font-size: 1.3rem;
  line-height: 1.25;
}
.display-7 > .mbr-iconfont {
  font-size: 1.625rem;
}
/* ---- 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.08rem;
    font-size: calc( 1.56rem + (2.6 - 1.56) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (1.56rem + (2.6 - 1.56) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 1.04rem;
    font-size: calc( 1.105rem + (1.3 - 1.105) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.2 * (1.105rem + (1.3 - 1.105) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 1.4rem;
    font-size: calc( 1.2625rem + (1.75 - 1.2625) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.2 * (1.2625rem + (1.75 - 1.2625) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-7 {
    font-size: 1.04rem;
    font-size: calc( 1.105rem + (1.3 - 1.105) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.25 * (1.105rem + (1.3 - 1.105) * ((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: #ffda00 !important;
}
.bg-success {
  background-color: #64ff54 !important;
}
.bg-info {
  background-color: #56f1ff !important;
}
.bg-warning {
  background-color: #fdff54 !important;
}
.bg-danger {
  background-color: #a0a218 !important;
}
.btn-primary .btn-overlay {
  background-color: #a99623 !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #ffda00 !important;
  border-color: #ffda00 !important;
  color: #000000 !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #000000 !important;
  background-color: #a99623 !important;
  border-color: #a99623 !important;
}
.btn-secondary .btn-overlay {
  background-color: #8e9d51 !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #bcd948 !important;
  border-color: #bcd948 !important;
  color: #181c06 !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #181c06 !important;
  background-color: #8e9d51 !important;
  border-color: #8e9d51 !important;
}
.btn-info .btn-overlay {
  background-color: #48ceda !important;
}
.btn-info,
.btn-info:active {
  background-color: #56f1ff !important;
  border-color: #56f1ff !important;
  color: #004f56 !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-info.disabled,
.btn-info:disabled {
  color: #004f56 !important;
  background-color: #48ceda !important;
  border-color: #48ceda !important;
}
.btn-success .btn-overlay {
  background-color: #54d947 !important;
}
.btn-success,
.btn-success:active {
  background-color: #64ff54 !important;
  border-color: #64ff54 !important;
  color: #085400 !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-success.disabled,
.btn-success:disabled {
  color: #085400 !important;
  background-color: #54d947 !important;
  border-color: #54d947 !important;
}
.btn-warning .btn-overlay {
  background-color: #d8d947 !important;
}
.btn-warning,
.btn-warning:active {
  background-color: #fdff54 !important;
  border-color: #fdff54 !important;
  color: #535400 !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #535400 !important;
  background-color: #d8d947 !important;
  border-color: #d8d947 !important;
}
.btn-danger .btn-overlay {
  background-color: #5e5f28 !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #a0a218 !important;
  border-color: #a0a218 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #5e5f28 !important;
  border-color: #5e5f28 !important;
}
.btn-white .btn-overlay {
  background-color: #e1e1e1 !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.disabled,
.btn-white:disabled {
  color: #7a7a7a !important;
  background-color: #e1e1e1 !important;
  border-color: #e1e1e1 !important;
}
.btn-black .btn-overlay {
  background-color: #000000 !important;
}
.btn-black,
.btn-black:active {
  background-color: #1b1f0a !important;
  border-color: #1b1f0a !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 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 {
  padding-left: 0 !important;
  padding-right: 0 !important;
}
.btn-primary-outline,
.btn-primary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ffda00;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #a89000 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #000000 !important;
  background-color: #ffda00 !important;
  border-color: #ffda00 !important;
}
.btn-secondary-outline {
  padding-left: 0 !important;
  padding-right: 0 !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #bcd948;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #8da823 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #181c06 !important;
  background-color: #bcd948 !important;
  border-color: #bcd948 !important;
}
.btn-info-outline {
  padding-left: 0 !important;
  padding-right: 0 !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #56f1ff;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #00e9fe !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #004f56 !important;
  background-color: #56f1ff !important;
  border-color: #56f1ff !important;
}
.btn-success-outline {
  padding-left: 0 !important;
  padding-right: 0 !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #64ff54;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #18fc00 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #085400 !important;
  background-color: #64ff54 !important;
  border-color: #64ff54 !important;
}
.btn-warning-outline {
  padding-left: 0 !important;
  padding-right: 0 !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #fdff54;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #f9fc00 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #535400 !important;
  background-color: #fdff54 !important;
  border-color: #fdff54 !important;
}
.btn-danger-outline {
  padding-left: 0 !important;
  padding-right: 0 !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #a0a218;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #55560d !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: #a0a218 !important;
  border-color: #a0a218 !important;
}
.btn-black-outline {
  padding-left: 0 !important;
  padding-right: 0 !important;
}
.btn-black-outline,
.btn-black-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #1b1f0a;
}
.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: #1b1f0a !important;
  border-color: #1b1f0a !important;
}
.btn-white-outline {
  padding-left: 0 !important;
  padding-right: 0 !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: #ffda00 !important;
}
.text-secondary {
  color: #bcd948 !important;
}
.text-success {
  color: #64ff54 !important;
}
.text-info {
  color: #56f1ff !important;
}
.text-warning {
  color: #fdff54 !important;
}
.text-danger {
  color: #a0a218 !important;
}
.text-white {
  color: #fafafa !important;
}
.text-black {
  color: #1B1F0A !important;
}
a.text-primary:hover,
a.text-primary:focus,
a.text-primary.active {
  color: #998300 !important;
}
a.text-secondary:hover,
a.text-secondary:focus,
a.text-secondary.active {
  color: #829b20 !important;
}
a.text-success:hover,
a.text-success:focus,
a.text-success.active {
  color: #16ed00 !important;
}
a.text-info:hover,
a.text-info:focus,
a.text-info.active {
  color: #00dbef !important;
}
a.text-warning:hover,
a.text-warning:focus,
a.text-warning.active {
  color: #eaed00 !important;
}
a.text-danger:hover,
a.text-danger:focus,
a.text-danger.active {
  color: #48490b !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) {
  transition: 0.2s;
  position: relative;
  background-image: linear-gradient(currentColor 50%, currentColor 50%);
  background-size: 10000px 2px;
  background-repeat: no-repeat;
  background-position: 0 1.2em;
}
.nav-tabs .nav-link.active {
  color: #ffda00;
}
.nav-tabs .nav-link:not(.active) {
  color: #1B1F0A;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #56f1ff;
}
.alert-warning {
  background-color: #fdff54;
}
.alert-danger {
  background-color: #a0a218;
}
.mbr-section-btn a.btn:not(.btn-form) {
  border-radius: 100px;
}
.mbr-gallery-filter li a {
  border-radius: 100px !important;
}
.mbr-gallery-filter li.active .btn {
  background-color: #ffda00;
  border-color: #ffda00;
  color: #191600;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
.nav-tabs .nav-link {
  border-radius: 100px !important;
}
a,
a:hover {
  color: #ffda00;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #fff8cc;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #e4e654;
}
/* Scroll to top button*/
.scrollToTop_wraper {
  display: none;
}
.form-control {
  font-family: 'PT Sans Narrow', sans-serif;
  font-size: 1.3rem;
  line-height: 1.2;
  font-weight: 400;
}
.form-control > .mbr-iconfont {
  font-size: 1.625rem;
}
.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: #ffda00 !important;
}
.form-control:-webkit-input-placeholder {
  font-family: 'PT Sans Narrow', sans-serif;
  font-size: 1.3rem;
  line-height: 1.2;
  font-weight: 400;
}
.form-control:-webkit-input-placeholder > .mbr-iconfont {
  font-size: 1.625rem;
}
blockquote {
  border-color: #ffda00;
}
/* Forms */
.mbr-form .input-group-btn a.btn {
  border-radius: 100px !important;
}
.mbr-form .input-group-btn a.btn:hover {
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.mbr-form .input-group-btn button[type="submit"] {
  border-radius: 100px !important;
  padding: 1rem 3rem;
}
.mbr-form .input-group-btn button[type="submit"]:hover {
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #ffda00;
  color: #000000;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #ffda00;
}
.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: #ffda00;
  border-bottom-color: #ffda00;
}
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_default,
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_current,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div.xdsoft_current {
  color: #000000 !important;
  background-color: #ffda00 !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: #bcd948 !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='%23ffda00' %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;
}
a:hover {
  background-image: none !important;
}
.container {
  width: 90%;
  max-width: 70rem;
  margin-right: auto;
  margin-left: auto;
  padding-left: 0;
  padding-right: 0;
}
.row {
  margin-left: 0;
  margin-right: 0;
  justify-content: center;
}
.row > [class*="col"] {
  padding-left: 0;
  padding-right: 0;
}
.mbr-section-btn .btn {
  min-width: 100px;
  border-radius: 100vw;
  padding: 1rem 1.5rem;
  line-height: 1.25;
  font-weight: 600 !important;
  box-shadow: none !important;
  border: none !important;
  position: relative;
  overflow: hidden;
}
.mbr-section-btn .btn .mbr-iconfont {
  position: relative;
  z-index: 1000;
}
.mbr-section-btn .btn-transform {
  position: relative;
  overflow: hidden;
  transition: 0.3s all !important;
}
.mbr-section-btn .btn-transform .btn-transform-1 {
  transform: translate3d(0px, 0%, 0px) scale3d(1, 1, 1) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(0deg, 0deg);
  transform-style: preserve-3d;
  transition: 0.3s all !important;
  animation: btn-move-out 0.3s ease-in-out;
}
.mbr-section-btn .btn-overlay {
  transform: translate3d(0px, 0px, 0px) scale3d(1, 0, 1) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(0deg, 0deg);
  transform-style: preserve-3d;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  display: block;
  height: 100%;
  -webkit-transform-origin: 50% 100%;
  -ms-transform-origin: 50% 100%;
  transform-origin: 50% 100%;
  transition: 0.3s all !important;
}
.mbr-section-btn .btn {
  transition: 0.3s all !important;
}
.mbr-section-btn .btn:hover .btn-transform .btn-transform-1 {
  animation: btn-move 0.3s ease-in-out;
}
.mbr-section-btn .btn:hover .btn-overlay {
  transform: translate3d(0px, 0px, 0px) scale3d(1, 1, 1) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(0deg, 0deg) !important;
}
@media (max-width: 575px) {
  .mbr-section-btn {
    display: flex;
    flex-wrap: wrap;
  }
  .mbr-section-btn .btn {
    width: 100%;
    box-shadow: none !important;
  }
}
b {
  font-weight: 600 !important;
}
@keyframes btn-move {
  0% {
    transform: translate3d(0px, 0%, 0px) scale3d(1, 1, 1) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(0deg, 0deg);
  }
  49% {
    transform: translate3d(0px, -100%, 0px) scale3d(1, 1, 1) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(0deg, 0deg);
  }
  50% {
    transform: translate3d(0px, -100%, 0px) scale3d(1, 0, 1) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(0deg, 0deg);
  }
  51% {
    transform: translate3d(0px, 100%, 0px) scale3d(1, 0, 1) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(0deg, 0deg);
  }
  52% {
    transform: translate3d(0px, 100%, 0px) scale3d(1, 1, 1) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(0deg, 0deg);
  }
  100% {
    transform: translate3d(0px, 0%, 0px) scale3d(1, 1, 1) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(0deg, 0deg);
  }
}
@keyframes btn-move-out {
  0% {
    transform: translate3d(0px, 0%, 0px) scale3d(1, 1, 1) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(0deg, 0deg);
  }
  49% {
    transform: translate3d(0px, 100%, 0px) scale3d(1, 1, 1) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(0deg, 0deg);
  }
  50% {
    transform: translate3d(0px, 100%, 0px) scale3d(1, 0, 1) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(0deg, 0deg);
  }
  51% {
    transform: translate3d(0px, -100%, 0px) scale3d(1, 0, 1) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(0deg, 0deg);
  }
  52% {
    transform: translate3d(0px, -100%, 0px) scale3d(1, 1, 1) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(0deg, 0deg);
  }
  100% {
    transform: translate3d(0px, 0%, 0px) scale3d(1, 1, 1) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(0deg, 0deg);
  }
}
.cid-uSAV9VjxN4 .navbar-dropdown {
  background-color: #e5e6e3 !important;
  padding: 0;
}
.cid-uSAV9VjxN4 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background-color: #e5e6e3 !important;
  background: #e5e6e3;
}
.cid-uSAV9VjxN4 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
@media (max-width: 991px) {
  .cid-uSAV9VjxN4 .menu_box .navbar.opened,
  .cid-uSAV9VjxN4 .menu_box .navbar-collapse {
    background-color: transparent !important;
    transition: all 0s ease 0s;
  }
}
.cid-uSAV9VjxN4 .navbar-dropdown {
  position: relative !important;
}
.cid-uSAV9VjxN4 .icons-menu-main {
  display: flex;
  flex-wrap: wrap;
  max-width: 150px;
}
@media (max-width: 991px) {
  .cid-uSAV9VjxN4 .icons-menu-main {
    max-width: 100%;
    margin: 1rem 0 1rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uSAV9VjxN4 .mbr-section-btn-main {
    margin-top: 1rem;
  }
}
.cid-uSAV9VjxN4 .btn {
  min-height: 55px;
  box-shadow: none;
  margin-top: 0;
}
.cid-uSAV9VjxN4 .btn:hover {
  box-shadow: none;
}
@media (min-width: 992px) {
  .cid-uSAV9VjxN4 .offcanvas {
    padding: 120px 60px 35px;
    width: 480px;
    background-color: #454545;
  }
  .cid-uSAV9VjxN4 .offcanvas_image img {
    width: auto;
    object-fit: cover;
    display: inline-block;
  }
  .cid-uSAV9VjxN4 .offcanvas-header {
    position: relative;
    padding: 0;
  }
  .cid-uSAV9VjxN4 .offcanvas-header .btn-close {
    position: absolute;
    top: -70px;
    right: 0;
    width: 35px;
    height: 30px;
  }
  .cid-uSAV9VjxN4 .offcanvas-body {
    text-align: center;
    padding: 0;
  }
  .cid-uSAV9VjxN4 .offcanvas-body .mbr-text,
  .cid-uSAV9VjxN4 .offcanvas-body .mbr-section-subtitle {
    margin-top: 14px;
  }
  .cid-uSAV9VjxN4 .offcanvas-body .offcanvas_contact {
    margin: 35px 0;
  }
  .cid-uSAV9VjxN4 .offcanvas_box button.btn_offcanvas {
    outline: none;
    width: 40px;
    height: 40px;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
    align-self: center;
  }
  .cid-uSAV9VjxN4 .offcanvas_box button.btn_offcanvas .hamburger span {
    position: absolute;
    right: 0;
    width: 40px;
    height: 2px;
    border-right: 5px;
    background-color: #181818;
  }
  .cid-uSAV9VjxN4 .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(1) {
    top: 18px;
    transition: all 0.2s;
  }
  .cid-uSAV9VjxN4 .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(2) {
    top: 25px;
    transition: all 0.2s;
  }
  .cid-uSAV9VjxN4 .offcanvas_box button.btn_offcanvas:hover .hamburger span {
    width: 36px;
  }
  .cid-uSAV9VjxN4 .offcanvas_box button.btn_offcanvas:hover .hamburger span:nth-child(2) {
    width: 33px;
    transition-delay: 0.2s;
  }
  .cid-uSAV9VjxN4 ul.navbar-nav {
    padding-bottom: 1.5rem;
  }
  .cid-uSAV9VjxN4 .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-uSAV9VjxN4 .link.dropdown-toggle::after {
    display: inline-block;
    width: 7px;
    height: 7px;
    margin-left: .5rem;
    margin-bottom: 2px;
    content: "";
    border: 2px solid;
    border-left: none;
    border-top: none;
    transform: rotate(-45deg);
  }
  .cid-uSAV9VjxN4 .link.dropdown-toggle::after {
    padding: 0 !important;
    transform: rotate(45deg);
  }
  .cid-uSAV9VjxN4 li.nav-item {
    position: relative;
    display: inline-block;
    padding: 1px 7px !important;
    vertical-align: middle;
    line-height: 2em !important;
    font-weight: 600 !important;
    text-decoration: none;
    letter-spacing: 0 !important;
  }
  .cid-uSAV9VjxN4 li.nav-item:hover {
    opacity: .8;
  }
  .cid-uSAV9VjxN4 .lg_brand {
    margin: 0 1rem;
  }
}
.cid-uSAV9VjxN4 .nav-item {
  margin: 4px 15px;
}
@media (min-width: 1200px) {
  .cid-uSAV9VjxN4 .nav-item {
    margin: 4px 20px;
  }
}
@media (max-width: 991px) {
  .cid-uSAV9VjxN4 .nav-item {
    margin: 0 !important;
  }
}
.cid-uSAV9VjxN4 .dropdown-menu {
  border-radius: 0;
  box-shadow: none;
  text-align: left;
}
@media (min-width: 992px) {
  .cid-uSAV9VjxN4 .dropdown-menu {
    padding: 18px 34px 22px;
    min-width: 250px;
    top: 72px !important;
    left: -40px !important;
  }
  .cid-uSAV9VjxN4 .dropdown-menu.dropdown-submenu {
    left: 215px !important;
    top: -45% !important;
  }
}
@media (max-width: 991px) {
  .cid-uSAV9VjxN4 .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-uSAV9VjxN4 .link.dropdown-toggle::after {
    display: inline-block;
    width: 7px;
    height: 7px;
    margin-left: .5rem;
    margin-bottom: 2px;
    content: "";
    border: 2px solid;
    border-left: none;
    border-top: none;
    transform: rotate(-45deg);
    right: 15px;
    position: absolute;
    margin-top: -2px;
  }
  .cid-uSAV9VjxN4 .show.dropdown-toggle[aria-expanded="true"]::after {
    transform: rotate(45deg);
    margin-top: -4px;
  }
  .cid-uSAV9VjxN4 .offcanvas_box {
    display: none;
  }
}
.cid-uSAV9VjxN4 .dropdown-item {
  border: none;
  font-weight: 400 !important;
}
.cid-uSAV9VjxN4 .nav-dropdown .link {
  font-weight: 700 !important;
  padding: 0 !important;
  margin: 0 !important;
}
.cid-uSAV9VjxN4 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uSAV9VjxN4 .container {
  display: flex;
  margin: auto;
}
.cid-uSAV9VjxN4 .iconfont-wrapper {
  color: #181818;
  font-size: 17px;
  margin-right: 10px;
  margin-bottom: 5px;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.2s ease-in-out;
}
.cid-uSAV9VjxN4 .iconfont-wrapper:last-child {
  margin-right: 0;
}
.cid-uSAV9VjxN4 .iconfont-wrapper:hover {
  color: #ffda00;
}
.cid-uSAV9VjxN4 .navbar-caption {
  color: #181818;
}
.cid-uSAV9VjxN4 .navbar-nav {
  margin: 0 1rem;
}
@media (min-width: 992px) {
  .cid-uSAV9VjxN4 .navbar-nav {
    margin: 0;
  }
}
.cid-uSAV9VjxN4 .dropdown-menu,
.cid-uSAV9VjxN4 .navbar.opened {
  background-color: false !important;
}
.cid-uSAV9VjxN4 .nav-item:focus,
.cid-uSAV9VjxN4 .nav-link:focus {
  outline: none;
}
.cid-uSAV9VjxN4 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uSAV9VjxN4 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uSAV9VjxN4 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uSAV9VjxN4 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uSAV9VjxN4 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uSAV9VjxN4 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uSAV9VjxN4 .navbar {
  min-height: 140px;
  padding: 20px 0;
  transition: all 0.3s;
  border-bottom-width: 0px;
}
.cid-uSAV9VjxN4 .navbar.opened {
  transition: all 0.3s;
}
.cid-uSAV9VjxN4 .navbar .dropdown-item {
  padding: 0;
  margin: 8px 0;
}
.cid-uSAV9VjxN4 .navbar .navbar-logo img {
  min-width: 100px;
  min-height: 100px;
  object-fit: cover;
}
.cid-uSAV9VjxN4 .navbar .navbar-collapse {
  justify-content: space-between;
  z-index: 1;
}
.cid-uSAV9VjxN4 .navbar.collapsed {
  justify-content: center;
}
.cid-uSAV9VjxN4 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uSAV9VjxN4 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-uSAV9VjxN4 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uSAV9VjxN4 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uSAV9VjxN4 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uSAV9VjxN4 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: left;
}
.cid-uSAV9VjxN4 .navbar.collapsed .icons-menu {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-uSAV9VjxN4 .navbar .nav-item {
    padding: .5rem 0;
  }
  .cid-uSAV9VjxN4 .navbar .navbar-collapse {
    padding: 34px 0;
    border-radius: 25px;
  }
  .cid-uSAV9VjxN4 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uSAV9VjxN4 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uSAV9VjxN4 .navbar .dropdown-menu {
    padding: 6px 0 6px 15px;
  }
  .cid-uSAV9VjxN4 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uSAV9VjxN4 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uSAV9VjxN4 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uSAV9VjxN4 .navbar ul.navbar-nav {
    overflow: hidden;
  }
  .cid-uSAV9VjxN4 .navbar ul.navbar-nav li {
    margin: 0;
  }
  .cid-uSAV9VjxN4 .navbar .dropdown-menu .dropdown-item {
    padding: 0 !important;
    margin: 0;
    margin-top: 8px;
    text-align: left;
  }
  .cid-uSAV9VjxN4 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uSAV9VjxN4 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uSAV9VjxN4 .navbar .icons-menu {
    padding: 0;
  }
}
.cid-uSAV9VjxN4 .navbar.navbar-short {
  min-height: 60px;
}
.cid-uSAV9VjxN4 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uSAV9VjxN4 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uSAV9VjxN4 .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-uSAV9VjxN4 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uSAV9VjxN4 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uSAV9VjxN4 .dropdown-item.active,
.cid-uSAV9VjxN4 .dropdown-item:active {
  background-color: transparent;
}
.cid-uSAV9VjxN4 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uSAV9VjxN4 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uSAV9VjxN4 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uSAV9VjxN4 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uSAV9VjxN4 ul.navbar-nav {
  flex-wrap: wrap;
  padding-bottom: 0;
}
.cid-uSAV9VjxN4 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uSAV9VjxN4 button.navbar-toggler {
  outline: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  color: #e5e6e3;
  background: #ffffff;
}
.cid-uSAV9VjxN4 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 10px;
  margin-top: 14px;
  width: 26px;
  height: 2px;
  border-right: 5px;
  background-color: #181818;
}
.cid-uSAV9VjxN4 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uSAV9VjxN4 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uSAV9VjxN4 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uSAV9VjxN4 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uSAV9VjxN4 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uSAV9VjxN4 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uSAV9VjxN4 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uSAV9VjxN4 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uSAV9VjxN4 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.cid-uSAV9VjxN4 .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding: 0;
  text-align: center;
  margin-bottom: 35px;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uSAV9VjxN4 .navbar {
    height: 70px;
  }
  .cid-uSAV9VjxN4 .navbar.opened {
    height: auto;
  }
  .cid-uSAV9VjxN4 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uSAV9VjxN4 .navbar-dropdown .navbar-logo {
  margin-right: 15px;
}
@media (min-width: 768px) {
  .cid-uSAV9VjxN4 .container-fluid {
    padding-left: 60px;
    padding-right: 60px;
  }
}
.cid-uSAV9VjxN4 .navbar-caption:hover {
  color: #ffda00;
}
.cid-uSAV9VjxN4 .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uSAV9VjxN4 .mbr-text {
  color: #ffffff;
  text-align: left;
}
.cid-uSAV9VjxN4 .text_widget {
  color: #ffffff;
}
.cid-uSAV9VjxN4 .mbr-section-subtitle,
.cid-uSAV9VjxN4 .text_widget {
  text-align: left;
}
.cid-uSAV9VjxN4 a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  background-image: none;
}
.cid-uSAUK5uLQH {
  background-color: #000000;
}
.cid-uSAUK5uLQH .mbr-fallback-image.disabled {
  display: none;
}
.cid-uSAUK5uLQH .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uSAUK5uLQH .content-wrap {
  margin: 0;
}
.cid-uSAUK5uLQH .content-wrap .card {
  padding: 0;
  justify-content: center;
}
.cid-uSAUK5uLQH .content-wrapper {
  padding: 0 112px;
}
@media (max-width: 1440px) {
  .cid-uSAUK5uLQH .content-wrapper {
    padding: 0 64px;
  }
}
@media (max-width: 1200px) {
  .cid-uSAUK5uLQH .content-wrapper {
    padding: 0 32px;
  }
}
@media (max-width: 992px) {
  .cid-uSAUK5uLQH .content-wrapper {
    padding: 0;
    margin-bottom: 32px;
  }
}
.cid-uSAUK5uLQH .content-wrapper .mbr-section-title {
  margin-bottom: 64px;
}
@media (max-width: 992px) {
  .cid-uSAUK5uLQH .content-wrapper .mbr-section-title {
    margin-bottom: 32px;
  }
}
.cid-uSAUK5uLQH .content-wrapper .text-wrapper .mbr-text {
  display: inline-block;
  width: 80%;
  margin-bottom: 64px;
}
@media (max-width: 992px) {
  .cid-uSAUK5uLQH .content-wrapper .text-wrapper .mbr-text {
    width: 100%;
    margin-bottom: 32px;
  }
}
.cid-uSAUK5uLQH .content-wrapper .mbr-desc {
  margin-top: 122px;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-uSAUK5uLQH .content-wrapper .mbr-desc {
    margin-top: 32px;
  }
}
.cid-uSAUK5uLQH .image-wrapper {
  height: 100%;
  padding-left: 112px;
  border-left: 3px dashed #ffffff;
}
@media (max-width: 1440px) {
  .cid-uSAUK5uLQH .image-wrapper {
    padding-left: 64px;
  }
}
@media (max-width: 1200px) {
  .cid-uSAUK5uLQH .image-wrapper {
    padding-left: 32px;
  }
}
@media (max-width: 992px) {
  .cid-uSAUK5uLQH .image-wrapper {
    padding-left: 0;
    border-left: none;
    border-top: 3px dashed #ffffff;
    padding-top: 22px;
  }
}
.cid-uSAUK5uLQH .image-wrapper img {
  height: 100%;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-uSAUK5uLQH .image-wrapper img {
    height: 350px;
  }
}
.cid-uSAUK5uLQH .mbr-section-title {
  color: #c10b02;
}
.cid-uSAUK5uLQH .mbr-text,
.cid-uSAUK5uLQH .text-wrapper {
  color: #ffffff;
  text-align: center;
}
.cid-uSAUK5uLQH .mbr-desc {
  color: #4b4949;
  text-align: center;
}
.cid-uSAUK5uLQH .mbr-section-title,
.cid-uSAUK5uLQH .mbr-section-btn {
  text-align: center;
  color: #ffffff;
}
.cid-uSxE5lVeUk {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-uSxE5lVeUk .badge {
  display: inline-block;
  border-radius: 10rem;
  padding: 8px 14px 6px 14px;
  color: #ffda00;
  background-color: rgba(132, 138, 189, 0.15);
  margin-bottom: 16px;
}
.cid-uSxE5lVeUk .badge.display-4 {
  font-size: 11px;
  line-height: 1.81;
  letter-spacing: 0.5px;
}
.cid-uSxE5lVeUk .main-title {
  color: #404040;
  margin-bottom: 26px;
}
.cid-uSxE5lVeUk .main-title.display-2 {
  line-height: 1.375;
}
.cid-uSxE5lVeUk .mbr-section-subtitle {
  color: #5f86be;
  font-weight: 600;
  margin-bottom: 21px;
}
.cid-uSxE5lVeUk .mbr-text {
  color: #606060;
}
.cid-uSxE5lVeUk .mbr-text.display-4 {
  line-height: 1.75;
}
.cid-uSxE5lVeUk .mbr-section-btn {
  margin-top: 24px;
}
.cid-uSxE5lVeUk .mbr-section-btn .btn {
  margin-left: 14.1px;
  padding: 18px 26px;
}
.cid-uSxE5lVeUk .mbr-section-btn .btn.display-4 {
  font-size: 13px;
  line-height: 1;
}
.cid-uSxE5lVeUk .mbr-section-btn .btn:hover {
  box-shadow: 0 0 0 5px rgba(60, 113, 211, 0.2) !important;
  -webkit-box-shadow: 0 0 0 5px rgba(60, 113, 211, 0.2) !important;
}
.cid-uSxE5lVeUk .mbr-fallback-image.disabled {
  display: none;
}
.cid-uSxE5lVeUk .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uSxE5lVeUk .mbr-text,
.cid-uSxE5lVeUk .mbr-section-btn {
  color: #000000;
}
.cid-uSxE5lVeUk .main-title,
.cid-uSxE5lVeUk .mbr-section-btn {
  color: #000000;
}
.cid-uSAWHExNZq {
  padding-top: 5rem;
  padding-bottom: 5rem;
  overflow: hidden;
  background-image: url("../../../assets/images/adobestock-463936420-1024x683.jpeg-1024x683.jpg");
}
.cid-uSAWHExNZq .mbr-fallback-image.disabled {
  display: none;
}
.cid-uSAWHExNZq .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uSAWHExNZq .row {
  justify-content: center;
}
.cid-uSAWHExNZq .content-wrapper .title-wrapper {
  position: relative;
  margin-bottom: 60px;
  padding-bottom: 90px;
}
@media (max-width: 992px) {
  .cid-uSAWHExNZq .content-wrapper .title-wrapper {
    margin-bottom: 30px;
  }
}
@media (max-width: 992px) {
  .cid-uSAWHExNZq .content-wrapper .title-wrapper {
    padding-bottom: 60px;
  }
}
.cid-uSAWHExNZq .content-wrapper .title-wrapper::before {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  height: 32px;
  width: 100%;
  background-color: #ffffff;
}
@media (max-width: 992px) {
  .cid-uSAWHExNZq .content-wrapper .title-wrapper::before {
    height: 24px;
  }
}
.cid-uSAWHExNZq .content-wrapper .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-uSAWHExNZq .content-wrapper .title-wrapper .mbr-section-subtitle {
  margin-bottom: 0;
}
.cid-uSAWHExNZq .content-wrapper .text-wrapper .mbr-text {
  display: inline-block;
  width: 80%;
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .cid-uSAWHExNZq .content-wrapper .text-wrapper .mbr-text {
    width: 100%;
    margin-bottom: 30px;
  }
}
.cid-uSAWHExNZq .mbr-section-title {
  color: #ffffff;
}
.cid-uSAWHExNZq .mbr-section-subtitle {
  color: #cbff5b;
  text-align: center;
}
.cid-uSAWHExNZq .mbr-text,
.cid-uSAWHExNZq .text-wrapper {
  color: #ffffff;
  text-align: center;
}
.cid-uSAWHExNZq .mbr-section-title,
.cid-uSAWHExNZq .mbr-section-btn {
  text-align: center;
  color: #ffffff;
}
.cid-uSxWyldI5E {
  padding-top: 0rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-uSxWyldI5E .mbr-fallback-image.disabled {
  display: none;
}
.cid-uSxWyldI5E .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uSxWyldI5E .content-wrapper {
  position: relative;
  padding: 80px 60px;
  display: flex;
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-uSxWyldI5E .content-wrapper {
    display: block;
    padding: 32px 16px;
  }
}
.cid-uSxWyldI5E .content-wrapper .image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.cid-uSxWyldI5E .content-wrapper .image-wrapper img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .5;
}
.cid-uSxWyldI5E .content-wrapper .card-wrapper {
  position: relative;
  z-index: 1;
  width: 75%;
  padding: 48px;
  background-color: #f7fff7;
  border: 3px solid #3e0bed;
  box-shadow: 4px 4px 0 0 #3e0bed;
  -webkit-flex: inherit;
}
@media (max-width: 992px) {
  .cid-uSxWyldI5E .content-wrapper .card-wrapper {
    width: 100%;
    padding: 32px 16px;
  }
}
.cid-uSxWyldI5E .content-wrapper .card-wrapper .mbr-section-title {
  margin-bottom: 32px;
}
@media (max-width: 992px) {
  .cid-uSxWyldI5E .content-wrapper .card-wrapper .mbr-section-title {
    margin-bottom: 24px;
  }
}
.cid-uSxWyldI5E .content-wrapper .card-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-uSxWyldI5E .mbr-section-title {
  color: #ff9063;
  text-align: center;
}
.cid-uSxWyldI5E .mbr-text {
  color: #010101;
  text-align: center;
}
.cid-uSxWyldI5E .mbr-section-title,
.cid-uSxWyldI5E .mbr-section-btn {
  color: #010101;
}
.cid-uSAWTHEkqK {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uSAWTHEkqK .mbr-fallback-image.disabled {
  display: none;
}
.cid-uSAWTHEkqK .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uSAWTHEkqK .row {
  justify-content: center;
}
.cid-uSAWTHEkqK .card {
  justify-content: center;
}
.cid-uSAWTHEkqK .image-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-right: 100px;
  padding-right: 0;
  padding-left: 100px;
}
@media (max-width: 992px) {
  .cid-uSAWTHEkqK .image-wrapper {
    padding-right: 0;
    margin-bottom: 40px;
    display: block;
  }
}
@media (max-width: 992px) {
  .cid-uSAWTHEkqK .image-wrapper {
    padding-left: 0;
  }
}
.cid-uSAWTHEkqK .image-wrapper::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 100%;
  background-image: radial-gradient(#cbff5b, transparent);
  filter: blur(100px);
}
.cid-uSAWTHEkqK .image-wrapper .image-wrap {
  position: relative;
  z-index: 1;
}
.cid-uSAWTHEkqK .image-wrapper .image-wrap img {
  height: 700px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-uSAWTHEkqK .image-wrapper .image-wrap img {
    height: 350px;
  }
}
.cid-uSAWTHEkqK .content-wrapper .title-wrapper {
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .cid-uSAWTHEkqK .content-wrapper .title-wrapper {
    margin-bottom: 30px;
  }
}
.cid-uSAWTHEkqK .content-wrapper .title-wrapper .title-wrap .mbr-section-title {
  display: inline-block;
  background-color: #000000;
  padding: 5px 32px;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-uSAWTHEkqK .content-wrapper .title-wrapper .title-wrap .mbr-section-title {
    padding: 5px 16px;
  }
}
.cid-uSAWTHEkqK .content-wrapper .title-wrapper .mbr-section-subtitle {
  margin-bottom: 0;
  padding: 0 32px;
}
@media (max-width: 992px) {
  .cid-uSAWTHEkqK .content-wrapper .title-wrapper .mbr-section-subtitle {
    padding: 0;
  }
}
.cid-uSAWTHEkqK .content-wrapper .text-wrapper .mbr-text {
  display: inline-block;
  width: 60%;
  margin-bottom: 40px;
  padding: 0 32px;
}
@media (max-width: 992px) {
  .cid-uSAWTHEkqK .content-wrapper .text-wrapper .mbr-text {
    margin-bottom: 30px;
    width: 100%;
    padding: 0;
  }
}
.cid-uSAWTHEkqK .mbr-section-title {
  color: #000000;
}
.cid-uSAWTHEkqK .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uSAWTHEkqK .mbr-text {
  color: #ffffff;
}
.cid-uSAWTHEkqK .mbr-text,
.cid-uSAWTHEkqK .mbr-section-btn,
.cid-uSAWTHEkqK .text-wrapper {
  color: #010101;
}
.cid-uSAWTHEkqK .mbr-section-title,
.cid-uSAWTHEkqK .title-wrap {
  color: #ffffff;
}
.cid-t2ZkCfcHJd {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-t2ZkCfcHJd .row {
  align-items: center;
  width: 100%;
}
.cid-t2ZkCfcHJd .content-container {
  display: flex;
  flex-direction: column;
  padding: 6rem 0 0 0 !important;
  background-color: #ffffff;
}
@media (max-width: 767px) {
  .cid-t2ZkCfcHJd .content-container {
    padding: 2.5rem 0 0 0 !important;
  }
}
.cid-t2ZkCfcHJd .col-text {
  display: flex;
  align-items: center;
  width: 100%;
}
.cid-t2ZkCfcHJd .text-container {
  max-width: 37.5rem;
  margin-right: auto;
  margin-bottom: 1.5rem;
  margin-left: auto;
}
@media (max-width: 767px) {
  .cid-t2ZkCfcHJd .text-container {
    padding-right: 1.5rem;
    padding-left: 1.5rem;
  }
}
.cid-t2ZkCfcHJd .text-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.cid-t2ZkCfcHJd .label-text {
  width: 100%;
  margin-bottom: 0.8rem;
  color: #1B1F0A;
}
.cid-t2ZkCfcHJd .label-text span {
  padding: 0.375rem 0.625rem;
  border-style: solid;
  border-width: 1px;
  border-color: currentColor;
  border-radius: 100vw;
  color: currentColor;
}
.cid-t2ZkCfcHJd .mbr-section-title {
  width: 100%;
  color: #1B1F0A;
  margin-bottom: 8px;
}
.cid-t2ZkCfcHJd .mbr-text {
  letter-spacing: inherit;
  color: #1B1F0A;
  width: 100%;
  margin-bottom: 0;
  opacity: 0.8;
}
.cid-t2ZkCfcHJd .btn-container {
  width: 100%;
}
.cid-t2ZkCfcHJd .mbr-section-btn {
  margin-top: 0.6rem;
}
@media (max-width: 575px) {
  .cid-t2ZkCfcHJd .mbr-section-btn {
    display: flex;
    flex-wrap: wrap;
  }
}
.cid-t2ZkCfcHJd .col-img {
  width: 100%;
  max-width: 100%;
}
.cid-t2ZkCfcHJd .img-container {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  width: 100%;
  height: 100%;
  max-height: 326px;
}
.cid-t2ZkCfcHJd .img-container img {
  max-width: 100%;
  max-height: 326px;
  width: auto;
  height: auto;
}
.cid-t2ZkCfcHJd .mbr-section-title,
.cid-t2ZkCfcHJd .mbr-section-btn DIV {
  text-align: left;
}
.cid-t2ZkCfcHJd .mbr-section-title,
.cid-t2ZkCfcHJd .mbr-section-btn {
  color: #000000;
}
.cid-uSAYNIt4EN {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #dbd4c5;
}
.cid-uSAYNIt4EN .mbr-fallback-image.disabled {
  display: none;
}
.cid-uSAYNIt4EN .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uSAYNIt4EN .container-fluid {
  padding: 0;
}
@media (max-width: 992px) {
  .cid-uSAYNIt4EN .container-fluid {
    padding: 0;
  }
}
@media (max-width: 992px) {
  .cid-uSAYNIt4EN .container {
    padding: 0 20px;
  }
}
.cid-uSAYNIt4EN .row {
  margin: 0;
}
.cid-uSAYNIt4EN .card {
  padding: 0;
}
.cid-uSAYNIt4EN .image-wrapper img {
  height: 800px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-uSAYNIt4EN .image-wrapper img {
    height: 450px;
  }
}
.cid-uSAYNIt4EN .title-wrapper {
  height: 100%;
  margin-bottom: 10%;
  background-color: #000000;
  display: flex;
  align-items: center;
  padding: 24px 115px;
}
@media (max-width: 992px) {
  .cid-uSAYNIt4EN .title-wrapper {
    padding: 50px 20px;
  }
}
.cid-uSAYNIt4EN .title-wrapper .title-wrap {
  width: 100%;
}
.cid-uSAYNIt4EN .title-wrapper .title-wrap .mbr-section-title {
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .cid-uSAYNIt4EN .title-wrapper .title-wrap .mbr-section-title {
    margin-bottom: 24px;
  }
}
.cid-uSAYNIt4EN .title-wrapper .title-wrap .mbr-text {
  margin-bottom: 50px;
  line-height: 1.78;
}
@media (max-width: 992px) {
  .cid-uSAYNIt4EN .title-wrapper .title-wrap .mbr-text {
    margin-bottom: 24px;
  }
}
.cid-uSAYNIt4EN .mbr-section-title {
  color: #c2b299;
}
.cid-uSAYNIt4EN .mbr-text {
  color: #e4dfd4;
}
.cid-uSAYNIt4EN .mbr-section-title,
.cid-uSAYNIt4EN .mbr-section-btn {
  color: #ffffff;
}
.cid-uSAZ53R8Ro {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-uSAZ53R8Ro .mbr-fallback-image.disabled {
  display: none;
}
.cid-uSAZ53R8Ro .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uSAZ53R8Ro .container-fluid {
  padding: 0 50px;
}
@media (max-width: 992px) {
  .cid-uSAZ53R8Ro .container-fluid {
    padding: 0 30px;
  }
}
@media (max-width: 992px) {
  .cid-uSAZ53R8Ro .container {
    padding: 0 30px;
  }
}
.cid-uSAZ53R8Ro .title-wrapper .mbr-section-title {
  margin-bottom: 70px;
}
@media (max-width: 992px) {
  .cid-uSAZ53R8Ro .title-wrapper .mbr-section-title {
    margin-bottom: 30px;
  }
}
.cid-uSAZ53R8Ro .mbr-section-btn {
  margin-bottom: 70px;
  text-align: right;
}
@media (max-width: 992px) {
  .cid-uSAZ53R8Ro .mbr-section-btn {
    margin-bottom: 0;
    text-align: left;
  }
}
.cid-uSAZ53R8Ro .text-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-uSAZ53R8Ro .mbr-section-title {
  color: #ffffff;
}
.cid-uSAZ53R8Ro .mbr-text {
  color: #ffffff;
}
.cid-uUFNU0oQj4 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uUFNU0oQj4 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uUFNU0oQj4 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uUFNU0oQj4 .row {
  justify-content: space-between;
}
.cid-uUFNU0oQj4 .content-wrapper .label-wrapper .mbr-label {
  display: inline-block;
  padding: 4px 20px;
  margin-bottom: 20px;
  border: 1px solid #fafafa;
}
.cid-uUFNU0oQj4 .content-wrapper .mbr-section-title {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uUFNU0oQj4 .content-wrapper .mbr-section-title {
    margin-bottom: 20px;
  }
}
.cid-uUFNU0oQj4 .content-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-uUFNU0oQj4 .content-wrapper .mbr-section-btn {
  margin-top: 20px;
}
.cid-uUFNU0oQj4 .google-map iframe {
  height: 500px;
  filter: grayscale(1);
}
@media (max-width: 992px) {
  .cid-uUFNU0oQj4 .google-map iframe {
    height: 350px;
  }
}
.cid-uUFNU0oQj4 .mbr-label {
  color: #000000;
}
.cid-uUFNU0oQj4 .mbr-section-title {
  color: #000000;
}
.cid-uUFNU0oQj4 .mbr-desc {
  color: #000000;
}
.cid-uUFNU0oQj4 .mbr-text {
  color: #8a8a8a;
}
.cid-uUFNU0oQj4 .mbr-label,
.cid-uUFNU0oQj4 .label-wrapper {
  color: #ffffff;
}
.cid-uUFNU0oQj4 .mbr-section-title,
.cid-uUFNU0oQj4 .mbr-section-btn {
  color: #ffffff;
}
.cid-uUFO6i6NxY {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-uUFO6i6NxY .media-container-row .mbr-text {
  color: #fdfde1;
}
.cid-uSAV9VjxN4 .navbar-dropdown {
  background-color: #e5e6e3 !important;
  padding: 0;
}
.cid-uSAV9VjxN4 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background-color: #e5e6e3 !important;
  background: #e5e6e3;
}
.cid-uSAV9VjxN4 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
@media (max-width: 991px) {
  .cid-uSAV9VjxN4 .menu_box .navbar.opened,
  .cid-uSAV9VjxN4 .menu_box .navbar-collapse {
    background-color: transparent !important;
    transition: all 0s ease 0s;
  }
}
.cid-uSAV9VjxN4 .navbar-dropdown {
  position: relative !important;
}
.cid-uSAV9VjxN4 .icons-menu-main {
  display: flex;
  flex-wrap: wrap;
  max-width: 150px;
}
@media (max-width: 991px) {
  .cid-uSAV9VjxN4 .icons-menu-main {
    max-width: 100%;
    margin: 1rem 0 1rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uSAV9VjxN4 .mbr-section-btn-main {
    margin-top: 1rem;
  }
}
.cid-uSAV9VjxN4 .btn {
  min-height: 55px;
  box-shadow: none;
  margin-top: 0;
}
.cid-uSAV9VjxN4 .btn:hover {
  box-shadow: none;
}
@media (min-width: 992px) {
  .cid-uSAV9VjxN4 .offcanvas {
    padding: 120px 60px 35px;
    width: 480px;
    background-color: #454545;
  }
  .cid-uSAV9VjxN4 .offcanvas_image img {
    width: auto;
    object-fit: cover;
    display: inline-block;
  }
  .cid-uSAV9VjxN4 .offcanvas-header {
    position: relative;
    padding: 0;
  }
  .cid-uSAV9VjxN4 .offcanvas-header .btn-close {
    position: absolute;
    top: -70px;
    right: 0;
    width: 35px;
    height: 30px;
  }
  .cid-uSAV9VjxN4 .offcanvas-body {
    text-align: center;
    padding: 0;
  }
  .cid-uSAV9VjxN4 .offcanvas-body .mbr-text,
  .cid-uSAV9VjxN4 .offcanvas-body .mbr-section-subtitle {
    margin-top: 14px;
  }
  .cid-uSAV9VjxN4 .offcanvas-body .offcanvas_contact {
    margin: 35px 0;
  }
  .cid-uSAV9VjxN4 .offcanvas_box button.btn_offcanvas {
    outline: none;
    width: 40px;
    height: 40px;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
    align-self: center;
  }
  .cid-uSAV9VjxN4 .offcanvas_box button.btn_offcanvas .hamburger span {
    position: absolute;
    right: 0;
    width: 40px;
    height: 2px;
    border-right: 5px;
    background-color: #181818;
  }
  .cid-uSAV9VjxN4 .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(1) {
    top: 18px;
    transition: all 0.2s;
  }
  .cid-uSAV9VjxN4 .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(2) {
    top: 25px;
    transition: all 0.2s;
  }
  .cid-uSAV9VjxN4 .offcanvas_box button.btn_offcanvas:hover .hamburger span {
    width: 36px;
  }
  .cid-uSAV9VjxN4 .offcanvas_box button.btn_offcanvas:hover .hamburger span:nth-child(2) {
    width: 33px;
    transition-delay: 0.2s;
  }
  .cid-uSAV9VjxN4 ul.navbar-nav {
    padding-bottom: 1.5rem;
  }
  .cid-uSAV9VjxN4 .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-uSAV9VjxN4 .link.dropdown-toggle::after {
    display: inline-block;
    width: 7px;
    height: 7px;
    margin-left: .5rem;
    margin-bottom: 2px;
    content: "";
    border: 2px solid;
    border-left: none;
    border-top: none;
    transform: rotate(-45deg);
  }
  .cid-uSAV9VjxN4 .link.dropdown-toggle::after {
    padding: 0 !important;
    transform: rotate(45deg);
  }
  .cid-uSAV9VjxN4 li.nav-item {
    position: relative;
    display: inline-block;
    padding: 1px 7px !important;
    vertical-align: middle;
    line-height: 2em !important;
    font-weight: 600 !important;
    text-decoration: none;
    letter-spacing: 0 !important;
  }
  .cid-uSAV9VjxN4 li.nav-item:hover {
    opacity: .8;
  }
  .cid-uSAV9VjxN4 .lg_brand {
    margin: 0 1rem;
  }
}
.cid-uSAV9VjxN4 .nav-item {
  margin: 4px 15px;
}
@media (min-width: 1200px) {
  .cid-uSAV9VjxN4 .nav-item {
    margin: 4px 20px;
  }
}
@media (max-width: 991px) {
  .cid-uSAV9VjxN4 .nav-item {
    margin: 0 !important;
  }
}
.cid-uSAV9VjxN4 .dropdown-menu {
  border-radius: 0;
  box-shadow: none;
  text-align: left;
}
@media (min-width: 992px) {
  .cid-uSAV9VjxN4 .dropdown-menu {
    padding: 18px 34px 22px;
    min-width: 250px;
    top: 72px !important;
    left: -40px !important;
  }
  .cid-uSAV9VjxN4 .dropdown-menu.dropdown-submenu {
    left: 215px !important;
    top: -45% !important;
  }
}
@media (max-width: 991px) {
  .cid-uSAV9VjxN4 .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-uSAV9VjxN4 .link.dropdown-toggle::after {
    display: inline-block;
    width: 7px;
    height: 7px;
    margin-left: .5rem;
    margin-bottom: 2px;
    content: "";
    border: 2px solid;
    border-left: none;
    border-top: none;
    transform: rotate(-45deg);
    right: 15px;
    position: absolute;
    margin-top: -2px;
  }
  .cid-uSAV9VjxN4 .show.dropdown-toggle[aria-expanded="true"]::after {
    transform: rotate(45deg);
    margin-top: -4px;
  }
  .cid-uSAV9VjxN4 .offcanvas_box {
    display: none;
  }
}
.cid-uSAV9VjxN4 .dropdown-item {
  border: none;
  font-weight: 400 !important;
}
.cid-uSAV9VjxN4 .nav-dropdown .link {
  font-weight: 700 !important;
  padding: 0 !important;
  margin: 0 !important;
}
.cid-uSAV9VjxN4 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uSAV9VjxN4 .container {
  display: flex;
  margin: auto;
}
.cid-uSAV9VjxN4 .iconfont-wrapper {
  color: #181818;
  font-size: 17px;
  margin-right: 10px;
  margin-bottom: 5px;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.2s ease-in-out;
}
.cid-uSAV9VjxN4 .iconfont-wrapper:last-child {
  margin-right: 0;
}
.cid-uSAV9VjxN4 .iconfont-wrapper:hover {
  color: #ffda00;
}
.cid-uSAV9VjxN4 .navbar-caption {
  color: #181818;
}
.cid-uSAV9VjxN4 .navbar-nav {
  margin: 0 1rem;
}
@media (min-width: 992px) {
  .cid-uSAV9VjxN4 .navbar-nav {
    margin: 0;
  }
}
.cid-uSAV9VjxN4 .dropdown-menu,
.cid-uSAV9VjxN4 .navbar.opened {
  background-color: false !important;
}
.cid-uSAV9VjxN4 .nav-item:focus,
.cid-uSAV9VjxN4 .nav-link:focus {
  outline: none;
}
.cid-uSAV9VjxN4 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uSAV9VjxN4 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uSAV9VjxN4 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uSAV9VjxN4 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uSAV9VjxN4 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uSAV9VjxN4 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uSAV9VjxN4 .navbar {
  min-height: 140px;
  padding: 20px 0;
  transition: all 0.3s;
  border-bottom-width: 0px;
}
.cid-uSAV9VjxN4 .navbar.opened {
  transition: all 0.3s;
}
.cid-uSAV9VjxN4 .navbar .dropdown-item {
  padding: 0;
  margin: 8px 0;
}
.cid-uSAV9VjxN4 .navbar .navbar-logo img {
  min-width: 100px;
  min-height: 100px;
  object-fit: cover;
}
.cid-uSAV9VjxN4 .navbar .navbar-collapse {
  justify-content: space-between;
  z-index: 1;
}
.cid-uSAV9VjxN4 .navbar.collapsed {
  justify-content: center;
}
.cid-uSAV9VjxN4 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uSAV9VjxN4 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-uSAV9VjxN4 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uSAV9VjxN4 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uSAV9VjxN4 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uSAV9VjxN4 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: left;
}
.cid-uSAV9VjxN4 .navbar.collapsed .icons-menu {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-uSAV9VjxN4 .navbar .nav-item {
    padding: .5rem 0;
  }
  .cid-uSAV9VjxN4 .navbar .navbar-collapse {
    padding: 34px 0;
    border-radius: 25px;
  }
  .cid-uSAV9VjxN4 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uSAV9VjxN4 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uSAV9VjxN4 .navbar .dropdown-menu {
    padding: 6px 0 6px 15px;
  }
  .cid-uSAV9VjxN4 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uSAV9VjxN4 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uSAV9VjxN4 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uSAV9VjxN4 .navbar ul.navbar-nav {
    overflow: hidden;
  }
  .cid-uSAV9VjxN4 .navbar ul.navbar-nav li {
    margin: 0;
  }
  .cid-uSAV9VjxN4 .navbar .dropdown-menu .dropdown-item {
    padding: 0 !important;
    margin: 0;
    margin-top: 8px;
    text-align: left;
  }
  .cid-uSAV9VjxN4 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uSAV9VjxN4 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uSAV9VjxN4 .navbar .icons-menu {
    padding: 0;
  }
}
.cid-uSAV9VjxN4 .navbar.navbar-short {
  min-height: 60px;
}
.cid-uSAV9VjxN4 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uSAV9VjxN4 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uSAV9VjxN4 .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-uSAV9VjxN4 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uSAV9VjxN4 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uSAV9VjxN4 .dropdown-item.active,
.cid-uSAV9VjxN4 .dropdown-item:active {
  background-color: transparent;
}
.cid-uSAV9VjxN4 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uSAV9VjxN4 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uSAV9VjxN4 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uSAV9VjxN4 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uSAV9VjxN4 ul.navbar-nav {
  flex-wrap: wrap;
  padding-bottom: 0;
}
.cid-uSAV9VjxN4 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uSAV9VjxN4 button.navbar-toggler {
  outline: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  color: #e5e6e3;
  background: #ffffff;
}
.cid-uSAV9VjxN4 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 10px;
  margin-top: 14px;
  width: 26px;
  height: 2px;
  border-right: 5px;
  background-color: #181818;
}
.cid-uSAV9VjxN4 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uSAV9VjxN4 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uSAV9VjxN4 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uSAV9VjxN4 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uSAV9VjxN4 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uSAV9VjxN4 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uSAV9VjxN4 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uSAV9VjxN4 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uSAV9VjxN4 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.cid-uSAV9VjxN4 .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding: 0;
  text-align: center;
  margin-bottom: 35px;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uSAV9VjxN4 .navbar {
    height: 70px;
  }
  .cid-uSAV9VjxN4 .navbar.opened {
    height: auto;
  }
  .cid-uSAV9VjxN4 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uSAV9VjxN4 .navbar-dropdown .navbar-logo {
  margin-right: 15px;
}
@media (min-width: 768px) {
  .cid-uSAV9VjxN4 .container-fluid {
    padding-left: 60px;
    padding-right: 60px;
  }
}
.cid-uSAV9VjxN4 .navbar-caption:hover {
  color: #ffda00;
}
.cid-uSAV9VjxN4 .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uSAV9VjxN4 .mbr-text {
  color: #ffffff;
  text-align: left;
}
.cid-uSAV9VjxN4 .text_widget {
  color: #ffffff;
}
.cid-uSAV9VjxN4 .mbr-section-subtitle,
.cid-uSAV9VjxN4 .text_widget {
  text-align: left;
}
.cid-uSAV9VjxN4 a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  background-image: none;
}
.cid-uSB3PmIfBS {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-uSB3PmIfBS .mbr-fallback-image.disabled {
  display: none;
}
.cid-uSB3PmIfBS .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uSB3PmIfBS .container-fluid {
  padding: 0;
}
@media (max-width: 992px) {
  .cid-uSB3PmIfBS .container-fluid {
    padding: 0;
  }
}
@media (max-width: 992px) {
  .cid-uSB3PmIfBS .container {
    padding: 0 30px;
  }
}
.cid-uSB3PmIfBS .text-wrapper {
  padding: 0 18px 0 50px;
  display: flex;
  align-items: flex-end;
  height: 100%;
  padding: 0 50px 0 18px;
}
@media (max-width: 992px) {
  .cid-uSB3PmIfBS .text-wrapper {
    padding: 0 30px;
  }
}
@media (max-width: 992px) {
  .cid-uSB3PmIfBS .text-wrapper {
    padding: 0 30px;
    height: auto;
  }
}
.cid-uSB3PmIfBS .text-wrapper .text-wrap .mbr-text {
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-uSB3PmIfBS .text-wrapper .text-wrap .mbr-text {
    margin-bottom: 50px;
  }
}
.cid-uSB3PmIfBS .image-wrapper img {
  height: 300px;
  object-fit: cover;
  border-top-left-radius: 3em;
  border-bottom-left-radius: 3em;
  border-top-right-radius: 3em;
  border-bottom-right-radius: 3em;
}
.cid-uSB3PmIfBS .mbr-text {
  color: #ffffff;
}
.cid-uSB3UpB5Hs {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uSB3UpB5Hs .mbr-fallback-image.disabled {
  display: none;
}
.cid-uSB3UpB5Hs .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uSB3UpB5Hs .container-fluid {
  padding: 0 50px;
}
@media (max-width: 992px) {
  .cid-uSB3UpB5Hs .container-fluid {
    padding: 0 30px;
  }
}
@media (max-width: 992px) {
  .cid-uSB3UpB5Hs .container {
    padding: 0 30px;
  }
}
.cid-uSB3UpB5Hs .title-wrapper .mbr-section-title {
  margin-bottom: 70px;
}
@media (max-width: 992px) {
  .cid-uSB3UpB5Hs .title-wrapper .mbr-section-title {
    margin-bottom: 30px;
  }
}
.cid-uSB3UpB5Hs .card-wrapper {
  display: flex;
  justify-content: space-between;
  padding: 70px 70px 70px 230px;
  background-color: #000000;
  border-radius: 16em 3em;
  margin-bottom: 2em;
  padding: 70px 230px 70px 70px;
  border-radius: 3em 16em;
}
@media (max-width: 992px) {
  .cid-uSB3UpB5Hs .card-wrapper {
    border-radius: 0 3em 0 3em;
    padding: 30px 20px;
  }
}
@media (max-width: 992px) {
  .cid-uSB3UpB5Hs .card-wrapper {
    border-radius: 3em 0 3em 0;
    padding: 30px 20px;
    display: block;
  }
}
.cid-uSB3UpB5Hs .card-wrapper .mbr-number {
  margin: 0 0 0 50px;
  width: 20%;
  white-space: nowrap;
  margin: 0 50px 0 0;
}
@media (max-width: 992px) {
  .cid-uSB3UpB5Hs .card-wrapper .mbr-number {
    margin: 0 0 16px 0;
  }
}
@media (max-width: 992px) {
  .cid-uSB3UpB5Hs .card-wrapper .mbr-number {
    width: 100%;
    margin: 0 0 16px 0;
  }
}
.cid-uSB3UpB5Hs .card-wrapper .content-wrap {
  width: 80%;
}
.cid-uSB3UpB5Hs .card-wrapper .content-wrap .mbr-card-title {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uSB3UpB5Hs .card-wrapper .content-wrap .mbr-card-title {
    width: 100%;
    margin-bottom: 20px;
  }
}
.cid-uSB3UpB5Hs .card-wrapper .content-wrap .mbr-text {
  margin-bottom: 0;
}
.cid-uSB3UpB5Hs .mbr-section-title {
  color: #ffffff;
}
.cid-uSB3UpB5Hs .mbr-card-title {
  color: #2b2b2b;
}
.cid-uSB3UpB5Hs .mbr-text {
  color: #ffffff;
  text-align: left;
}
.cid-uSB3UpB5Hs .mbr-number {
  color: #FE5115;
}
.cid-uUFPvdAlFM {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-uUFPvdAlFM .mbr-fallback-image.disabled {
  display: none;
}
.cid-uUFPvdAlFM .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uUFPvdAlFM .row {
  justify-content: space-between;
}
.cid-uUFPvdAlFM .content-wrapper .label-wrapper .mbr-label {
  display: inline-block;
  padding: 4px 20px;
  margin-bottom: 20px;
  border: 1px solid #ffffff;
}
.cid-uUFPvdAlFM .content-wrapper .mbr-section-title {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uUFPvdAlFM .content-wrapper .mbr-section-title {
    margin-bottom: 20px;
  }
}
.cid-uUFPvdAlFM .content-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-uUFPvdAlFM .content-wrapper .mbr-section-btn {
  margin-top: 20px;
}
.cid-uUFPvdAlFM .google-map iframe {
  height: 500px;
  filter: grayscale(1);
}
@media (max-width: 992px) {
  .cid-uUFPvdAlFM .google-map iframe {
    height: 350px;
  }
}
.cid-uUFPvdAlFM .mbr-label {
  color: #000000;
}
.cid-uUFPvdAlFM .mbr-section-title {
  color: #000000;
}
.cid-uUFPvdAlFM .mbr-desc {
  color: #000000;
}
.cid-uUFPvdAlFM .mbr-text {
  color: #8a8a8a;
}
.cid-uUFPvdAlFM .mbr-label,
.cid-uUFPvdAlFM .label-wrapper {
  color: #ffffff;
}
.cid-uUFPvdAlFM .mbr-section-title,
.cid-uUFPvdAlFM .mbr-section-btn {
  color: #ffffff;
}
.cid-uUFO6i6NxY {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-uUFO6i6NxY .media-container-row .mbr-text {
  color: #fdfde1;
}
.cid-uUFQcsRO2q .navbar-dropdown {
  background-color: #e5e6e3 !important;
  padding: 0;
}
.cid-uUFQcsRO2q .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background-color: #e5e6e3 !important;
  background: #e5e6e3;
}
.cid-uUFQcsRO2q .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
@media (max-width: 991px) {
  .cid-uUFQcsRO2q .menu_box .navbar.opened,
  .cid-uUFQcsRO2q .menu_box .navbar-collapse {
    background-color: transparent !important;
    transition: all 0s ease 0s;
  }
}
.cid-uUFQcsRO2q .navbar-dropdown {
  position: relative !important;
}
.cid-uUFQcsRO2q .icons-menu-main {
  display: flex;
  flex-wrap: wrap;
  max-width: 150px;
}
@media (max-width: 991px) {
  .cid-uUFQcsRO2q .icons-menu-main {
    max-width: 100%;
    margin: 1rem 0 1rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uUFQcsRO2q .mbr-section-btn-main {
    margin-top: 1rem;
  }
}
.cid-uUFQcsRO2q .btn {
  min-height: 55px;
  box-shadow: none;
  margin-top: 0;
}
.cid-uUFQcsRO2q .btn:hover {
  box-shadow: none;
}
@media (min-width: 992px) {
  .cid-uUFQcsRO2q .offcanvas {
    padding: 120px 60px 35px;
    width: 480px;
    background-color: #454545;
  }
  .cid-uUFQcsRO2q .offcanvas_image img {
    width: auto;
    object-fit: cover;
    display: inline-block;
  }
  .cid-uUFQcsRO2q .offcanvas-header {
    position: relative;
    padding: 0;
  }
  .cid-uUFQcsRO2q .offcanvas-header .btn-close {
    position: absolute;
    top: -70px;
    right: 0;
    width: 35px;
    height: 30px;
  }
  .cid-uUFQcsRO2q .offcanvas-body {
    text-align: center;
    padding: 0;
  }
  .cid-uUFQcsRO2q .offcanvas-body .mbr-text,
  .cid-uUFQcsRO2q .offcanvas-body .mbr-section-subtitle {
    margin-top: 14px;
  }
  .cid-uUFQcsRO2q .offcanvas-body .offcanvas_contact {
    margin: 35px 0;
  }
  .cid-uUFQcsRO2q .offcanvas_box button.btn_offcanvas {
    outline: none;
    width: 40px;
    height: 40px;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
    align-self: center;
  }
  .cid-uUFQcsRO2q .offcanvas_box button.btn_offcanvas .hamburger span {
    position: absolute;
    right: 0;
    width: 40px;
    height: 2px;
    border-right: 5px;
    background-color: #181818;
  }
  .cid-uUFQcsRO2q .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(1) {
    top: 18px;
    transition: all 0.2s;
  }
  .cid-uUFQcsRO2q .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(2) {
    top: 25px;
    transition: all 0.2s;
  }
  .cid-uUFQcsRO2q .offcanvas_box button.btn_offcanvas:hover .hamburger span {
    width: 36px;
  }
  .cid-uUFQcsRO2q .offcanvas_box button.btn_offcanvas:hover .hamburger span:nth-child(2) {
    width: 33px;
    transition-delay: 0.2s;
  }
  .cid-uUFQcsRO2q ul.navbar-nav {
    padding-bottom: 1.5rem;
  }
  .cid-uUFQcsRO2q .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-uUFQcsRO2q .link.dropdown-toggle::after {
    display: inline-block;
    width: 7px;
    height: 7px;
    margin-left: .5rem;
    margin-bottom: 2px;
    content: "";
    border: 2px solid;
    border-left: none;
    border-top: none;
    transform: rotate(-45deg);
  }
  .cid-uUFQcsRO2q .link.dropdown-toggle::after {
    padding: 0 !important;
    transform: rotate(45deg);
  }
  .cid-uUFQcsRO2q li.nav-item {
    position: relative;
    display: inline-block;
    padding: 1px 7px !important;
    vertical-align: middle;
    line-height: 2em !important;
    font-weight: 600 !important;
    text-decoration: none;
    letter-spacing: 0 !important;
  }
  .cid-uUFQcsRO2q li.nav-item:hover {
    opacity: .8;
  }
  .cid-uUFQcsRO2q .lg_brand {
    margin: 0 1rem;
  }
}
.cid-uUFQcsRO2q .nav-item {
  margin: 4px 15px;
}
@media (min-width: 1200px) {
  .cid-uUFQcsRO2q .nav-item {
    margin: 4px 20px;
  }
}
@media (max-width: 991px) {
  .cid-uUFQcsRO2q .nav-item {
    margin: 0 !important;
  }
}
.cid-uUFQcsRO2q .dropdown-menu {
  border-radius: 0;
  box-shadow: none;
  text-align: left;
}
@media (min-width: 992px) {
  .cid-uUFQcsRO2q .dropdown-menu {
    padding: 18px 34px 22px;
    min-width: 250px;
    top: 72px !important;
    left: -40px !important;
  }
  .cid-uUFQcsRO2q .dropdown-menu.dropdown-submenu {
    left: 215px !important;
    top: -45% !important;
  }
}
@media (max-width: 991px) {
  .cid-uUFQcsRO2q .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-uUFQcsRO2q .link.dropdown-toggle::after {
    display: inline-block;
    width: 7px;
    height: 7px;
    margin-left: .5rem;
    margin-bottom: 2px;
    content: "";
    border: 2px solid;
    border-left: none;
    border-top: none;
    transform: rotate(-45deg);
    right: 15px;
    position: absolute;
    margin-top: -2px;
  }
  .cid-uUFQcsRO2q .show.dropdown-toggle[aria-expanded="true"]::after {
    transform: rotate(45deg);
    margin-top: -4px;
  }
  .cid-uUFQcsRO2q .offcanvas_box {
    display: none;
  }
}
.cid-uUFQcsRO2q .dropdown-item {
  border: none;
  font-weight: 400 !important;
}
.cid-uUFQcsRO2q .nav-dropdown .link {
  font-weight: 700 !important;
  padding: 0 !important;
  margin: 0 !important;
}
.cid-uUFQcsRO2q .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uUFQcsRO2q .container {
  display: flex;
  margin: auto;
}
.cid-uUFQcsRO2q .iconfont-wrapper {
  color: #181818;
  font-size: 17px;
  margin-right: 10px;
  margin-bottom: 5px;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.2s ease-in-out;
}
.cid-uUFQcsRO2q .iconfont-wrapper:last-child {
  margin-right: 0;
}
.cid-uUFQcsRO2q .iconfont-wrapper:hover {
  color: #ffda00;
}
.cid-uUFQcsRO2q .navbar-caption {
  color: #181818;
}
.cid-uUFQcsRO2q .navbar-nav {
  margin: 0 1rem;
}
@media (min-width: 992px) {
  .cid-uUFQcsRO2q .navbar-nav {
    margin: 0;
  }
}
.cid-uUFQcsRO2q .dropdown-menu,
.cid-uUFQcsRO2q .navbar.opened {
  background-color: false !important;
}
.cid-uUFQcsRO2q .nav-item:focus,
.cid-uUFQcsRO2q .nav-link:focus {
  outline: none;
}
.cid-uUFQcsRO2q .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uUFQcsRO2q .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uUFQcsRO2q .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uUFQcsRO2q .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uUFQcsRO2q .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uUFQcsRO2q .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uUFQcsRO2q .navbar {
  min-height: 140px;
  padding: 20px 0;
  transition: all 0.3s;
  border-bottom-width: 0px;
}
.cid-uUFQcsRO2q .navbar.opened {
  transition: all 0.3s;
}
.cid-uUFQcsRO2q .navbar .dropdown-item {
  padding: 0;
  margin: 8px 0;
}
.cid-uUFQcsRO2q .navbar .navbar-logo img {
  min-width: 100px;
  min-height: 100px;
  object-fit: cover;
}
.cid-uUFQcsRO2q .navbar .navbar-collapse {
  justify-content: space-between;
  z-index: 1;
}
.cid-uUFQcsRO2q .navbar.collapsed {
  justify-content: center;
}
.cid-uUFQcsRO2q .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uUFQcsRO2q .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-uUFQcsRO2q .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uUFQcsRO2q .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uUFQcsRO2q .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uUFQcsRO2q .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: left;
}
.cid-uUFQcsRO2q .navbar.collapsed .icons-menu {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-uUFQcsRO2q .navbar .nav-item {
    padding: .5rem 0;
  }
  .cid-uUFQcsRO2q .navbar .navbar-collapse {
    padding: 34px 0;
    border-radius: 25px;
  }
  .cid-uUFQcsRO2q .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uUFQcsRO2q .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uUFQcsRO2q .navbar .dropdown-menu {
    padding: 6px 0 6px 15px;
  }
  .cid-uUFQcsRO2q .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uUFQcsRO2q .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uUFQcsRO2q .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uUFQcsRO2q .navbar ul.navbar-nav {
    overflow: hidden;
  }
  .cid-uUFQcsRO2q .navbar ul.navbar-nav li {
    margin: 0;
  }
  .cid-uUFQcsRO2q .navbar .dropdown-menu .dropdown-item {
    padding: 0 !important;
    margin: 0;
    margin-top: 8px;
    text-align: left;
  }
  .cid-uUFQcsRO2q .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uUFQcsRO2q .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uUFQcsRO2q .navbar .icons-menu {
    padding: 0;
  }
}
.cid-uUFQcsRO2q .navbar.navbar-short {
  min-height: 60px;
}
.cid-uUFQcsRO2q .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uUFQcsRO2q .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uUFQcsRO2q .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-uUFQcsRO2q .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uUFQcsRO2q .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uUFQcsRO2q .dropdown-item.active,
.cid-uUFQcsRO2q .dropdown-item:active {
  background-color: transparent;
}
.cid-uUFQcsRO2q .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uUFQcsRO2q .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uUFQcsRO2q .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uUFQcsRO2q .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uUFQcsRO2q ul.navbar-nav {
  flex-wrap: wrap;
  padding-bottom: 0;
}
.cid-uUFQcsRO2q .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uUFQcsRO2q button.navbar-toggler {
  outline: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  color: #e5e6e3;
  background: #ffffff;
}
.cid-uUFQcsRO2q button.navbar-toggler .hamburger span {
  position: absolute;
  right: 10px;
  margin-top: 14px;
  width: 26px;
  height: 2px;
  border-right: 5px;
  background-color: #181818;
}
.cid-uUFQcsRO2q button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uUFQcsRO2q button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uUFQcsRO2q button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uUFQcsRO2q button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uUFQcsRO2q nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uUFQcsRO2q nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uUFQcsRO2q nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uUFQcsRO2q nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uUFQcsRO2q a.nav-link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.cid-uUFQcsRO2q .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding: 0;
  text-align: center;
  margin-bottom: 35px;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uUFQcsRO2q .navbar {
    height: 70px;
  }
  .cid-uUFQcsRO2q .navbar.opened {
    height: auto;
  }
  .cid-uUFQcsRO2q .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uUFQcsRO2q .navbar-dropdown .navbar-logo {
  margin-right: 15px;
}
@media (min-width: 768px) {
  .cid-uUFQcsRO2q .container-fluid {
    padding-left: 60px;
    padding-right: 60px;
  }
}
.cid-uUFQcsRO2q .navbar-caption:hover {
  color: #ffda00;
}
.cid-uUFQcsRO2q .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uUFQcsRO2q .mbr-text {
  color: #ffffff;
  text-align: left;
}
.cid-uUFQcsRO2q .text_widget {
  color: #ffffff;
}
.cid-uUFQcsRO2q .mbr-section-subtitle,
.cid-uUFQcsRO2q .text_widget {
  text-align: left;
}
.cid-uUFQcsRO2q a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  background-image: none;
}
.cid-uUFQcu61T5 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-uUFQcu61T5 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uUFQcu61T5 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uUFQcu61T5 .container-fluid {
  padding: 0;
}
@media (max-width: 992px) {
  .cid-uUFQcu61T5 .container-fluid {
    padding: 0;
  }
}
@media (max-width: 992px) {
  .cid-uUFQcu61T5 .container {
    padding: 0 30px;
  }
}
.cid-uUFQcu61T5 .text-wrapper {
  padding: 0 18px 0 50px;
  display: flex;
  align-items: flex-end;
  height: 100%;
  padding: 0 50px 0 18px;
}
@media (max-width: 992px) {
  .cid-uUFQcu61T5 .text-wrapper {
    padding: 0 30px;
  }
}
@media (max-width: 992px) {
  .cid-uUFQcu61T5 .text-wrapper {
    padding: 0 30px;
    height: auto;
  }
}
.cid-uUFQcu61T5 .text-wrapper .text-wrap .mbr-text {
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-uUFQcu61T5 .text-wrapper .text-wrap .mbr-text {
    margin-bottom: 50px;
  }
}
.cid-uUFQcu61T5 .image-wrapper img {
  height: 300px;
  object-fit: cover;
  border-top-left-radius: 3em;
  border-bottom-left-radius: 3em;
  border-top-right-radius: 3em;
  border-bottom-right-radius: 3em;
}
.cid-uUFQcu61T5 .mbr-text {
  color: #ffffff;
}
.cid-uUFQcurbJs {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uUFQcurbJs .mbr-fallback-image.disabled {
  display: none;
}
.cid-uUFQcurbJs .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uUFQcurbJs .container-fluid {
  padding: 0 50px;
}
@media (max-width: 992px) {
  .cid-uUFQcurbJs .container-fluid {
    padding: 0 30px;
  }
}
@media (max-width: 992px) {
  .cid-uUFQcurbJs .container {
    padding: 0 30px;
  }
}
.cid-uUFQcurbJs .title-wrapper .mbr-section-title {
  margin-bottom: 70px;
}
@media (max-width: 992px) {
  .cid-uUFQcurbJs .title-wrapper .mbr-section-title {
    margin-bottom: 30px;
  }
}
.cid-uUFQcurbJs .card-wrapper {
  display: flex;
  justify-content: space-between;
  padding: 70px 70px 70px 230px;
  background-color: #000000;
  border-radius: 16em 3em;
  margin-bottom: 2em;
  padding: 70px 230px 70px 70px;
  border-radius: 3em 16em;
}
@media (max-width: 992px) {
  .cid-uUFQcurbJs .card-wrapper {
    border-radius: 0 3em 0 3em;
    padding: 30px 20px;
  }
}
@media (max-width: 992px) {
  .cid-uUFQcurbJs .card-wrapper {
    border-radius: 3em 0 3em 0;
    padding: 30px 20px;
    display: block;
  }
}
.cid-uUFQcurbJs .card-wrapper .mbr-number {
  margin: 0 0 0 50px;
  width: 20%;
  white-space: nowrap;
  margin: 0 50px 0 0;
}
@media (max-width: 992px) {
  .cid-uUFQcurbJs .card-wrapper .mbr-number {
    margin: 0 0 16px 0;
  }
}
@media (max-width: 992px) {
  .cid-uUFQcurbJs .card-wrapper .mbr-number {
    width: 100%;
    margin: 0 0 16px 0;
  }
}
.cid-uUFQcurbJs .card-wrapper .content-wrap {
  width: 80%;
}
.cid-uUFQcurbJs .card-wrapper .content-wrap .mbr-card-title {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uUFQcurbJs .card-wrapper .content-wrap .mbr-card-title {
    width: 100%;
    margin-bottom: 20px;
  }
}
.cid-uUFQcurbJs .card-wrapper .content-wrap .mbr-text {
  margin-bottom: 0;
}
.cid-uUFQcurbJs .mbr-section-title {
  color: #ffffff;
}
.cid-uUFQcurbJs .mbr-card-title {
  color: #2b2b2b;
}
.cid-uUFQcurbJs .mbr-text {
  color: #ffffff;
  text-align: left;
}
.cid-uUFQcurbJs .mbr-number {
  color: #FE5115;
}
.cid-uUFQcuTx5O {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-uUFQcuTx5O .mbr-fallback-image.disabled {
  display: none;
}
.cid-uUFQcuTx5O .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uUFQcuTx5O .row {
  justify-content: space-between;
}
.cid-uUFQcuTx5O .content-wrapper .label-wrapper .mbr-label {
  display: inline-block;
  padding: 4px 20px;
  margin-bottom: 20px;
  border: 1px solid #ffffff;
}
.cid-uUFQcuTx5O .content-wrapper .mbr-section-title {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uUFQcuTx5O .content-wrapper .mbr-section-title {
    margin-bottom: 20px;
  }
}
.cid-uUFQcuTx5O .content-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-uUFQcuTx5O .content-wrapper .mbr-section-btn {
  margin-top: 20px;
}
.cid-uUFQcuTx5O .google-map iframe {
  height: 500px;
  filter: grayscale(1);
}
@media (max-width: 992px) {
  .cid-uUFQcuTx5O .google-map iframe {
    height: 350px;
  }
}
.cid-uUFQcuTx5O .mbr-label {
  color: #000000;
}
.cid-uUFQcuTx5O .mbr-section-title {
  color: #000000;
}
.cid-uUFQcuTx5O .mbr-desc {
  color: #000000;
}
.cid-uUFQcuTx5O .mbr-text {
  color: #8a8a8a;
}
.cid-uUFQcuTx5O .mbr-label,
.cid-uUFQcuTx5O .label-wrapper {
  color: #ffffff;
}
.cid-uUFQcuTx5O .mbr-section-title,
.cid-uUFQcuTx5O .mbr-section-btn {
  color: #ffffff;
}
.cid-uUFQcvjNzH {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-uUFQcvjNzH .media-container-row .mbr-text {
  color: #fdfde1;
}
.cid-uUFQdcvxo3 .navbar-dropdown {
  background-color: #e5e6e3 !important;
  padding: 0;
}
.cid-uUFQdcvxo3 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background-color: #e5e6e3 !important;
  background: #e5e6e3;
}
.cid-uUFQdcvxo3 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
@media (max-width: 991px) {
  .cid-uUFQdcvxo3 .menu_box .navbar.opened,
  .cid-uUFQdcvxo3 .menu_box .navbar-collapse {
    background-color: transparent !important;
    transition: all 0s ease 0s;
  }
}
.cid-uUFQdcvxo3 .navbar-dropdown {
  position: relative !important;
}
.cid-uUFQdcvxo3 .icons-menu-main {
  display: flex;
  flex-wrap: wrap;
  max-width: 150px;
}
@media (max-width: 991px) {
  .cid-uUFQdcvxo3 .icons-menu-main {
    max-width: 100%;
    margin: 1rem 0 1rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uUFQdcvxo3 .mbr-section-btn-main {
    margin-top: 1rem;
  }
}
.cid-uUFQdcvxo3 .btn {
  min-height: 55px;
  box-shadow: none;
  margin-top: 0;
}
.cid-uUFQdcvxo3 .btn:hover {
  box-shadow: none;
}
@media (min-width: 992px) {
  .cid-uUFQdcvxo3 .offcanvas {
    padding: 120px 60px 35px;
    width: 480px;
    background-color: #454545;
  }
  .cid-uUFQdcvxo3 .offcanvas_image img {
    width: auto;
    object-fit: cover;
    display: inline-block;
  }
  .cid-uUFQdcvxo3 .offcanvas-header {
    position: relative;
    padding: 0;
  }
  .cid-uUFQdcvxo3 .offcanvas-header .btn-close {
    position: absolute;
    top: -70px;
    right: 0;
    width: 35px;
    height: 30px;
  }
  .cid-uUFQdcvxo3 .offcanvas-body {
    text-align: center;
    padding: 0;
  }
  .cid-uUFQdcvxo3 .offcanvas-body .mbr-text,
  .cid-uUFQdcvxo3 .offcanvas-body .mbr-section-subtitle {
    margin-top: 14px;
  }
  .cid-uUFQdcvxo3 .offcanvas-body .offcanvas_contact {
    margin: 35px 0;
  }
  .cid-uUFQdcvxo3 .offcanvas_box button.btn_offcanvas {
    outline: none;
    width: 40px;
    height: 40px;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
    align-self: center;
  }
  .cid-uUFQdcvxo3 .offcanvas_box button.btn_offcanvas .hamburger span {
    position: absolute;
    right: 0;
    width: 40px;
    height: 2px;
    border-right: 5px;
    background-color: #181818;
  }
  .cid-uUFQdcvxo3 .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(1) {
    top: 18px;
    transition: all 0.2s;
  }
  .cid-uUFQdcvxo3 .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(2) {
    top: 25px;
    transition: all 0.2s;
  }
  .cid-uUFQdcvxo3 .offcanvas_box button.btn_offcanvas:hover .hamburger span {
    width: 36px;
  }
  .cid-uUFQdcvxo3 .offcanvas_box button.btn_offcanvas:hover .hamburger span:nth-child(2) {
    width: 33px;
    transition-delay: 0.2s;
  }
  .cid-uUFQdcvxo3 ul.navbar-nav {
    padding-bottom: 1.5rem;
  }
  .cid-uUFQdcvxo3 .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-uUFQdcvxo3 .link.dropdown-toggle::after {
    display: inline-block;
    width: 7px;
    height: 7px;
    margin-left: .5rem;
    margin-bottom: 2px;
    content: "";
    border: 2px solid;
    border-left: none;
    border-top: none;
    transform: rotate(-45deg);
  }
  .cid-uUFQdcvxo3 .link.dropdown-toggle::after {
    padding: 0 !important;
    transform: rotate(45deg);
  }
  .cid-uUFQdcvxo3 li.nav-item {
    position: relative;
    display: inline-block;
    padding: 1px 7px !important;
    vertical-align: middle;
    line-height: 2em !important;
    font-weight: 600 !important;
    text-decoration: none;
    letter-spacing: 0 !important;
  }
  .cid-uUFQdcvxo3 li.nav-item:hover {
    opacity: .8;
  }
  .cid-uUFQdcvxo3 .lg_brand {
    margin: 0 1rem;
  }
}
.cid-uUFQdcvxo3 .nav-item {
  margin: 4px 15px;
}
@media (min-width: 1200px) {
  .cid-uUFQdcvxo3 .nav-item {
    margin: 4px 20px;
  }
}
@media (max-width: 991px) {
  .cid-uUFQdcvxo3 .nav-item {
    margin: 0 !important;
  }
}
.cid-uUFQdcvxo3 .dropdown-menu {
  border-radius: 0;
  box-shadow: none;
  text-align: left;
}
@media (min-width: 992px) {
  .cid-uUFQdcvxo3 .dropdown-menu {
    padding: 18px 34px 22px;
    min-width: 250px;
    top: 72px !important;
    left: -40px !important;
  }
  .cid-uUFQdcvxo3 .dropdown-menu.dropdown-submenu {
    left: 215px !important;
    top: -45% !important;
  }
}
@media (max-width: 991px) {
  .cid-uUFQdcvxo3 .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-uUFQdcvxo3 .link.dropdown-toggle::after {
    display: inline-block;
    width: 7px;
    height: 7px;
    margin-left: .5rem;
    margin-bottom: 2px;
    content: "";
    border: 2px solid;
    border-left: none;
    border-top: none;
    transform: rotate(-45deg);
    right: 15px;
    position: absolute;
    margin-top: -2px;
  }
  .cid-uUFQdcvxo3 .show.dropdown-toggle[aria-expanded="true"]::after {
    transform: rotate(45deg);
    margin-top: -4px;
  }
  .cid-uUFQdcvxo3 .offcanvas_box {
    display: none;
  }
}
.cid-uUFQdcvxo3 .dropdown-item {
  border: none;
  font-weight: 400 !important;
}
.cid-uUFQdcvxo3 .nav-dropdown .link {
  font-weight: 700 !important;
  padding: 0 !important;
  margin: 0 !important;
}
.cid-uUFQdcvxo3 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uUFQdcvxo3 .container {
  display: flex;
  margin: auto;
}
.cid-uUFQdcvxo3 .iconfont-wrapper {
  color: #181818;
  font-size: 17px;
  margin-right: 10px;
  margin-bottom: 5px;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.2s ease-in-out;
}
.cid-uUFQdcvxo3 .iconfont-wrapper:last-child {
  margin-right: 0;
}
.cid-uUFQdcvxo3 .iconfont-wrapper:hover {
  color: #ffda00;
}
.cid-uUFQdcvxo3 .navbar-caption {
  color: #181818;
}
.cid-uUFQdcvxo3 .navbar-nav {
  margin: 0 1rem;
}
@media (min-width: 992px) {
  .cid-uUFQdcvxo3 .navbar-nav {
    margin: 0;
  }
}
.cid-uUFQdcvxo3 .dropdown-menu,
.cid-uUFQdcvxo3 .navbar.opened {
  background-color: false !important;
}
.cid-uUFQdcvxo3 .nav-item:focus,
.cid-uUFQdcvxo3 .nav-link:focus {
  outline: none;
}
.cid-uUFQdcvxo3 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uUFQdcvxo3 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uUFQdcvxo3 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uUFQdcvxo3 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uUFQdcvxo3 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uUFQdcvxo3 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uUFQdcvxo3 .navbar {
  min-height: 140px;
  padding: 20px 0;
  transition: all 0.3s;
  border-bottom-width: 0px;
}
.cid-uUFQdcvxo3 .navbar.opened {
  transition: all 0.3s;
}
.cid-uUFQdcvxo3 .navbar .dropdown-item {
  padding: 0;
  margin: 8px 0;
}
.cid-uUFQdcvxo3 .navbar .navbar-logo img {
  min-width: 100px;
  min-height: 100px;
  object-fit: cover;
}
.cid-uUFQdcvxo3 .navbar .navbar-collapse {
  justify-content: space-between;
  z-index: 1;
}
.cid-uUFQdcvxo3 .navbar.collapsed {
  justify-content: center;
}
.cid-uUFQdcvxo3 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uUFQdcvxo3 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-uUFQdcvxo3 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uUFQdcvxo3 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uUFQdcvxo3 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uUFQdcvxo3 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: left;
}
.cid-uUFQdcvxo3 .navbar.collapsed .icons-menu {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-uUFQdcvxo3 .navbar .nav-item {
    padding: .5rem 0;
  }
  .cid-uUFQdcvxo3 .navbar .navbar-collapse {
    padding: 34px 0;
    border-radius: 25px;
  }
  .cid-uUFQdcvxo3 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uUFQdcvxo3 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uUFQdcvxo3 .navbar .dropdown-menu {
    padding: 6px 0 6px 15px;
  }
  .cid-uUFQdcvxo3 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uUFQdcvxo3 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uUFQdcvxo3 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uUFQdcvxo3 .navbar ul.navbar-nav {
    overflow: hidden;
  }
  .cid-uUFQdcvxo3 .navbar ul.navbar-nav li {
    margin: 0;
  }
  .cid-uUFQdcvxo3 .navbar .dropdown-menu .dropdown-item {
    padding: 0 !important;
    margin: 0;
    margin-top: 8px;
    text-align: left;
  }
  .cid-uUFQdcvxo3 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uUFQdcvxo3 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uUFQdcvxo3 .navbar .icons-menu {
    padding: 0;
  }
}
.cid-uUFQdcvxo3 .navbar.navbar-short {
  min-height: 60px;
}
.cid-uUFQdcvxo3 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uUFQdcvxo3 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uUFQdcvxo3 .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-uUFQdcvxo3 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uUFQdcvxo3 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uUFQdcvxo3 .dropdown-item.active,
.cid-uUFQdcvxo3 .dropdown-item:active {
  background-color: transparent;
}
.cid-uUFQdcvxo3 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uUFQdcvxo3 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uUFQdcvxo3 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uUFQdcvxo3 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uUFQdcvxo3 ul.navbar-nav {
  flex-wrap: wrap;
  padding-bottom: 0;
}
.cid-uUFQdcvxo3 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uUFQdcvxo3 button.navbar-toggler {
  outline: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  color: #e5e6e3;
  background: #ffffff;
}
.cid-uUFQdcvxo3 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 10px;
  margin-top: 14px;
  width: 26px;
  height: 2px;
  border-right: 5px;
  background-color: #181818;
}
.cid-uUFQdcvxo3 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uUFQdcvxo3 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uUFQdcvxo3 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uUFQdcvxo3 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uUFQdcvxo3 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uUFQdcvxo3 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uUFQdcvxo3 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uUFQdcvxo3 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uUFQdcvxo3 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.cid-uUFQdcvxo3 .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding: 0;
  text-align: center;
  margin-bottom: 35px;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uUFQdcvxo3 .navbar {
    height: 70px;
  }
  .cid-uUFQdcvxo3 .navbar.opened {
    height: auto;
  }
  .cid-uUFQdcvxo3 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uUFQdcvxo3 .navbar-dropdown .navbar-logo {
  margin-right: 15px;
}
@media (min-width: 768px) {
  .cid-uUFQdcvxo3 .container-fluid {
    padding-left: 60px;
    padding-right: 60px;
  }
}
.cid-uUFQdcvxo3 .navbar-caption:hover {
  color: #ffda00;
}
.cid-uUFQdcvxo3 .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uUFQdcvxo3 .mbr-text {
  color: #ffffff;
  text-align: left;
}
.cid-uUFQdcvxo3 .text_widget {
  color: #ffffff;
}
.cid-uUFQdcvxo3 .mbr-section-subtitle,
.cid-uUFQdcvxo3 .text_widget {
  text-align: left;
}
.cid-uUFQdcvxo3 a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  background-image: none;
}
.cid-uUFQddu3kp {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-uUFQddu3kp .mbr-fallback-image.disabled {
  display: none;
}
.cid-uUFQddu3kp .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uUFQddu3kp .container-fluid {
  padding: 0;
}
@media (max-width: 992px) {
  .cid-uUFQddu3kp .container-fluid {
    padding: 0;
  }
}
@media (max-width: 992px) {
  .cid-uUFQddu3kp .container {
    padding: 0 30px;
  }
}
.cid-uUFQddu3kp .text-wrapper {
  padding: 0 18px 0 50px;
  display: flex;
  align-items: flex-end;
  height: 100%;
  padding: 0 50px 0 18px;
}
@media (max-width: 992px) {
  .cid-uUFQddu3kp .text-wrapper {
    padding: 0 30px;
  }
}
@media (max-width: 992px) {
  .cid-uUFQddu3kp .text-wrapper {
    padding: 0 30px;
    height: auto;
  }
}
.cid-uUFQddu3kp .text-wrapper .text-wrap .mbr-text {
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-uUFQddu3kp .text-wrapper .text-wrap .mbr-text {
    margin-bottom: 50px;
  }
}
.cid-uUFQddu3kp .image-wrapper img {
  height: 300px;
  object-fit: cover;
  border-top-left-radius: 3em;
  border-bottom-left-radius: 3em;
  border-top-right-radius: 3em;
  border-bottom-right-radius: 3em;
}
.cid-uUFQddu3kp .mbr-text {
  color: #ffffff;
}
.cid-uUFQddQNdJ {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uUFQddQNdJ .mbr-fallback-image.disabled {
  display: none;
}
.cid-uUFQddQNdJ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uUFQddQNdJ .container-fluid {
  padding: 0 50px;
}
@media (max-width: 992px) {
  .cid-uUFQddQNdJ .container-fluid {
    padding: 0 30px;
  }
}
@media (max-width: 992px) {
  .cid-uUFQddQNdJ .container {
    padding: 0 30px;
  }
}
.cid-uUFQddQNdJ .title-wrapper .mbr-section-title {
  margin-bottom: 70px;
}
@media (max-width: 992px) {
  .cid-uUFQddQNdJ .title-wrapper .mbr-section-title {
    margin-bottom: 30px;
  }
}
.cid-uUFQddQNdJ .card-wrapper {
  display: flex;
  justify-content: space-between;
  padding: 70px 70px 70px 230px;
  background-color: #000000;
  border-radius: 16em 3em;
  margin-bottom: 2em;
  padding: 70px 230px 70px 70px;
  border-radius: 3em 16em;
}
@media (max-width: 992px) {
  .cid-uUFQddQNdJ .card-wrapper {
    border-radius: 0 3em 0 3em;
    padding: 30px 20px;
  }
}
@media (max-width: 992px) {
  .cid-uUFQddQNdJ .card-wrapper {
    border-radius: 3em 0 3em 0;
    padding: 30px 20px;
    display: block;
  }
}
.cid-uUFQddQNdJ .card-wrapper .mbr-number {
  margin: 0 0 0 50px;
  width: 20%;
  white-space: nowrap;
  margin: 0 50px 0 0;
}
@media (max-width: 992px) {
  .cid-uUFQddQNdJ .card-wrapper .mbr-number {
    margin: 0 0 16px 0;
  }
}
@media (max-width: 992px) {
  .cid-uUFQddQNdJ .card-wrapper .mbr-number {
    width: 100%;
    margin: 0 0 16px 0;
  }
}
.cid-uUFQddQNdJ .card-wrapper .content-wrap {
  width: 80%;
}
.cid-uUFQddQNdJ .card-wrapper .content-wrap .mbr-card-title {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uUFQddQNdJ .card-wrapper .content-wrap .mbr-card-title {
    width: 100%;
    margin-bottom: 20px;
  }
}
.cid-uUFQddQNdJ .card-wrapper .content-wrap .mbr-text {
  margin-bottom: 0;
}
.cid-uUFQddQNdJ .mbr-section-title {
  color: #ffffff;
}
.cid-uUFQddQNdJ .mbr-card-title {
  color: #2b2b2b;
}
.cid-uUFQddQNdJ .mbr-text {
  color: #ffffff;
  text-align: left;
}
.cid-uUFQddQNdJ .mbr-number {
  color: #FE5115;
}
.cid-uUFQdelWxQ {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-uUFQdelWxQ .mbr-fallback-image.disabled {
  display: none;
}
.cid-uUFQdelWxQ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uUFQdelWxQ .row {
  justify-content: space-between;
}
.cid-uUFQdelWxQ .content-wrapper .label-wrapper .mbr-label {
  display: inline-block;
  padding: 4px 20px;
  margin-bottom: 20px;
  border: 1px solid #ffffff;
}
.cid-uUFQdelWxQ .content-wrapper .mbr-section-title {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uUFQdelWxQ .content-wrapper .mbr-section-title {
    margin-bottom: 20px;
  }
}
.cid-uUFQdelWxQ .content-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-uUFQdelWxQ .content-wrapper .mbr-section-btn {
  margin-top: 20px;
}
.cid-uUFQdelWxQ .google-map iframe {
  height: 500px;
  filter: grayscale(1);
}
@media (max-width: 992px) {
  .cid-uUFQdelWxQ .google-map iframe {
    height: 350px;
  }
}
.cid-uUFQdelWxQ .mbr-label {
  color: #000000;
}
.cid-uUFQdelWxQ .mbr-section-title {
  color: #000000;
}
.cid-uUFQdelWxQ .mbr-desc {
  color: #000000;
}
.cid-uUFQdelWxQ .mbr-text {
  color: #8a8a8a;
}
.cid-uUFQdelWxQ .mbr-label,
.cid-uUFQdelWxQ .label-wrapper {
  color: #ffffff;
}
.cid-uUFQdelWxQ .mbr-section-title,
.cid-uUFQdelWxQ .mbr-section-btn {
  color: #ffffff;
}
.cid-uUFQdeRAa6 {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-uUFQdeRAa6 .media-container-row .mbr-text {
  color: #fdfde1;
}
