.btn {
  border-width: 2px;
}
body {
  font-family: Jost;
}
.display-1 {
  font-family: 'Rubik', sans-serif;
  font-size: 4.5rem;
  line-height: 1.1;
}
.display-1 > .mbr-iconfont {
  font-size: 5.625rem;
}
.display-2 {
  font-family: 'Philosopher', sans-serif;
  font-size: 3rem;
  line-height: 1.1;
}
.display-2 > .mbr-iconfont {
  font-size: 3.75rem;
}
.display-4 {
  font-family: 'Open Sans', sans-serif;
  font-size: 1rem;
  line-height: 1.5;
}
.display-4 > .mbr-iconfont {
  font-size: 1.25rem;
}
.display-5 {
  font-family: 'Open Sans', sans-serif;
  font-size: 1.5rem;
  line-height: 1.5;
}
.display-5 > .mbr-iconfont {
  font-size: 1.875rem;
}
.display-7 {
  font-family: 'Open Sans', sans-serif;
  font-size: 1rem;
  line-height: 1.5;
}
.display-7 > .mbr-iconfont {
  font-size: 1.25rem;
}
/* ---- Fluid typography for mobile devices ---- */
/* 1.4 - font scale ratio ( bootstrap == 1.42857 ) */
/* 100vw - current viewport width */
/* (48 - 20)  48 == 48rem == 768px, 20 == 20rem == 320px(minimal supported viewport) */
/* 0.65 - min scale variable, may vary */
@media (max-width: 992px) {
  .display-1 {
    font-size: 3.6rem;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 3.15rem;
    font-size: calc( 2.225rem + (4.5 - 2.225) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (2.225rem + (4.5 - 2.225) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 2.4rem;
    font-size: calc( 1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.3 * (1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 0.8rem;
    font-size: calc( 1rem + (1 - 1) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1rem + (1 - 1) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 1.2rem;
    font-size: calc( 1.175rem + (1.5 - 1.175) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.175rem + (1.5 - 1.175) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-7 {
    font-size: 0.8rem;
    font-size: calc( 1rem + (1 - 1) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1rem + (1 - 1) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* Buttons */
.btn {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-sm {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-md {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-lg {
  padding: 1rem 2.6rem;
  border-radius: 4px;
}
.bg-primary {
  background-color: #fc5000 !important;
}
.bg-success {
  background-color: #40b0bf !important;
}
.bg-info {
  background-color: #47b5ed !important;
}
.bg-warning {
  background-color: #ffe161 !important;
}
.bg-danger {
  background-color: #ff9966 !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #fc5000 !important;
  border-color: #fc5000 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus,
.btn-primary.active {
  color: #ffffff !important;
  background-color: #a53400 !important;
  border-color: #a53400 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #a53400 !important;
  border-color: #a53400 !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #ff6666 !important;
  border-color: #ff6666 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus,
.btn-secondary.active {
  color: #ffffff !important;
  background-color: #ff0f0f !important;
  border-color: #ff0f0f !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #ff0f0f !important;
  border-color: #ff0f0f !important;
}
.btn-info,
.btn-info:active {
  background-color: #47b5ed !important;
  border-color: #47b5ed !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus,
.btn-info.active {
  color: #ffffff !important;
  background-color: #148cca !important;
  border-color: #148cca !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #148cca !important;
  border-color: #148cca !important;
}
.btn-success,
.btn-success:active {
  background-color: #40b0bf !important;
  border-color: #40b0bf !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus,
.btn-success.active {
  color: #ffffff !important;
  background-color: #2a747e !important;
  border-color: #2a747e !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #2a747e !important;
  border-color: #2a747e !important;
}
.btn-warning,
.btn-warning:active {
  background-color: #ffe161 !important;
  border-color: #ffe161 !important;
  color: #614f00 !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus,
.btn-warning.active {
  color: #0a0800 !important;
  background-color: #ffd10a !important;
  border-color: #ffd10a !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #614f00 !important;
  background-color: #ffd10a !important;
  border-color: #ffd10a !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #ff9966 !important;
  border-color: #ff9966 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus,
.btn-danger.active {
  color: #ffffff !important;
  background-color: #ff5f0f !important;
  border-color: #ff5f0f !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #ff5f0f !important;
  border-color: #ff5f0f !important;
}
.btn-white,
.btn-white:active {
  background-color: #fafafa !important;
  border-color: #fafafa !important;
  color: #7a7a7a !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus,
.btn-white.active {
  color: #4f4f4f !important;
  background-color: #cfcfcf !important;
  border-color: #cfcfcf !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-white.disabled,
.btn-white:disabled {
  color: #7a7a7a !important;
  background-color: #cfcfcf !important;
  border-color: #cfcfcf !important;
}
.btn-black,
.btn-black:active {
  background-color: #232323 !important;
  border-color: #232323 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-black:hover,
.btn-black:focus,
.btn-black.focus,
.btn-black.active {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-black.disabled,
.btn-black:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-primary-outline,
.btn-primary-outline:active {
  background-color: transparent !important;
  border-color: #fc5000;
  color: #fc5000;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #a53400 !important;
  background-color: transparent!important;
  border-color: #a53400 !important;
  box-shadow: none!important;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #fc5000 !important;
  border-color: #fc5000 !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background-color: transparent !important;
  border-color: #ff6666;
  color: #ff6666;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #ff0f0f !important;
  background-color: transparent!important;
  border-color: #ff0f0f !important;
  box-shadow: none!important;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #ff6666 !important;
  border-color: #ff6666 !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background-color: transparent !important;
  border-color: #47b5ed;
  color: #47b5ed;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #148cca !important;
  background-color: transparent!important;
  border-color: #148cca !important;
  box-shadow: none!important;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #47b5ed !important;
  border-color: #47b5ed !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background-color: transparent !important;
  border-color: #40b0bf;
  color: #40b0bf;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #2a747e !important;
  background-color: transparent!important;
  border-color: #2a747e !important;
  box-shadow: none!important;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #ffffff !important;
  background-color: #40b0bf !important;
  border-color: #40b0bf !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background-color: transparent !important;
  border-color: #ffe161;
  color: #ffe161;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #ffd10a !important;
  background-color: transparent!important;
  border-color: #ffd10a !important;
  box-shadow: none!important;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #614f00 !important;
  background-color: #ffe161 !important;
  border-color: #ffe161 !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background-color: transparent !important;
  border-color: #ff9966;
  color: #ff9966;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #ff5f0f !important;
  background-color: transparent!important;
  border-color: #ff5f0f !important;
  box-shadow: none!important;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #ff9966 !important;
  border-color: #ff9966 !important;
}
.btn-black-outline,
.btn-black-outline:active {
  background-color: transparent !important;
  border-color: #232323;
  color: #232323;
}
.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.focus,
.btn-black-outline.active {
  color: #000000 !important;
  background-color: transparent!important;
  border-color: #000000 !important;
  box-shadow: none!important;
}
.btn-black-outline.disabled,
.btn-black-outline:disabled {
  color: #ffffff !important;
  background-color: #232323 !important;
  border-color: #232323 !important;
}
.btn-white-outline,
.btn-white-outline:active {
  background-color: transparent !important;
  border-color: #fafafa;
  color: #fafafa;
}
.btn-white-outline:hover,
.btn-white-outline:focus,
.btn-white-outline.focus,
.btn-white-outline.active {
  color: #cfcfcf !important;
  background-color: transparent!important;
  border-color: #cfcfcf !important;
  box-shadow: none!important;
}
.btn-white-outline.disabled,
.btn-white-outline:disabled {
  color: #7a7a7a !important;
  background-color: #fafafa !important;
  border-color: #fafafa !important;
}
.text-primary {
  color: #fc5000 !important;
}
.text-secondary {
  color: #ff6666 !important;
}
.text-success {
  color: #40b0bf !important;
}
.text-info {
  color: #47b5ed !important;
}
.text-warning {
  color: #ffe161 !important;
}
.text-danger {
  color: #ff9966 !important;
}
.text-white {
  color: #fafafa !important;
}
.text-black {
  color: #232323 !important;
}
a.text-primary:hover,
a.text-primary:focus,
a.text-primary.active {
  color: #963000 !important;
}
a.text-secondary:hover,
a.text-secondary:focus,
a.text-secondary.active {
  color: #ff0000 !important;
}
a.text-success:hover,
a.text-success:focus,
a.text-success.active {
  color: #266a73 !important;
}
a.text-info:hover,
a.text-info:focus,
a.text-info.active {
  color: #1283bc !important;
}
a.text-warning:hover,
a.text-warning:focus,
a.text-warning.active {
  color: #facb00 !important;
}
a.text-danger:hover,
a.text-danger:focus,
a.text-danger.active {
  color: #ff5500 !important;
}
a.text-white:hover,
a.text-white:focus,
a.text-white.active {
  color: #c7c7c7 !important;
}
a.text-black:hover,
a.text-black:focus,
a.text-black.active {
  color: #000000 !important;
}
a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption) {
  position: relative;
  background-image: transparent;
  background-size: 10000px 2px;
  background-repeat: no-repeat;
  background-position: 0px 1.2em;
  background-position: -10000px 1.2em;
}
a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  transition: background-position 2s ease-in-out;
  background-image: linear-gradient(currentColor 50%, currentColor 50%);
  background-position: 0px 1.2em;
}
.nav-tabs .nav-link.active {
  color: #fc5000;
}
.nav-tabs .nav-link:not(.active) {
  color: #232323;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #47b5ed;
}
.alert-warning {
  background-color: #ffe161;
}
.alert-danger {
  background-color: #ff9966;
}
.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: #fc5000;
  border-color: #fc5000;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
.nav-tabs .nav-link {
  border-radius: 100px !important;
}
a,
a:hover {
  color: #fc5000;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #ffdac9;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #a0d8df;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #ffffff;
}
/* Scroll to top button*/
.scrollToTop_wraper {
  display: none;
}
.form-control {
  font-family: 'Open Sans', sans-serif;
  font-size: 1rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control > .mbr-iconfont {
  font-size: 1.25rem;
}
.form-control:hover,
.form-control:focus {
  box-shadow: rgba(0, 0, 0, 0.07) 0px 1px 1px 0px, rgba(0, 0, 0, 0.07) 0px 1px 3px 0px, rgba(0, 0, 0, 0.03) 0px 0px 0px 1px;
  border-color: #fc5000 !important;
}
.form-control:-webkit-input-placeholder {
  font-family: 'Open Sans', sans-serif;
  font-size: 1rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control:-webkit-input-placeholder > .mbr-iconfont {
  font-size: 1.25rem;
}
blockquote {
  border-color: #fc5000;
}
/* 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: #fc5000;
  color: #ffffff;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #fc5000;
}
.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: #fc5000;
  border-bottom-color: #fc5000;
}
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_default,
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_current,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div.xdsoft_current {
  color: #ffffff !important;
  background-color: #fc5000 !important;
  box-shadow: none !important;
}
.xdsoft_datetimepicker .xdsoft_calendar td:hover,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div:hover {
  color: #000000 !important;
  background: #ff6666 !important;
  box-shadow: none !important;
}
.lazy-bg {
  background-image: none !important;
}
.lazy-placeholder:not(section),
.lazy-none {
  display: block;
  position: relative;
  padding-bottom: 56.25%;
  width: 100%;
  height: auto;
}
iframe.lazy-placeholder,
.lazy-placeholder:after {
  content: '';
  position: absolute;
  width: 200px;
  height: 200px;
  background: transparent no-repeat center;
  background-size: contain;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 64 64' xmlns='http://www.w3.org/2000/svg' stroke='%23fc5000' %3e%3cg fill='none' fill-rule='evenodd'%3e%3cg transform='translate(16 16)' stroke-width='2'%3e%3ccircle stroke-opacity='.5' cx='16' cy='16' r='16'/%3e%3cpath d='M32 16c0-9.94-8.06-16-16-16'%3e%3canimateTransform attributeName='transform' type='rotate' from='0 16 16' to='360 16 16' dur='1s' repeatCount='indefinite'/%3e%3c/path%3e%3c/g%3e%3c/g%3e%3c/svg%3e");
}
section.lazy-placeholder:after {
  opacity: 0.5;
}
body {
  overflow-x: hidden;
}
a {
  transition: color 0.6s;
}
.cid-uzHJd1IEj4 .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-uzHJd1IEj4 .nav-item:focus,
.cid-uzHJd1IEj4 .nav-link:focus {
  outline: none;
}
.cid-uzHJd1IEj4 .navbar-short {
  box-shadow: 0px 0px 10px 0px rgba(150, 150, 150, 0.3);
}
.cid-uzHJd1IEj4 .dropdown .dropdown-menu .dropdown-item {
  font-weight: 700 !important;
  padding: 0 !important;
  border-bottom: 1px solid lightgray;
  margin: 0.5rem 1rem !important;
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-uzHJd1IEj4 .dropdown .dropdown-menu .dropdown-item:hover,
.cid-uzHJd1IEj4 .dropdown .dropdown-menu .dropdown-item:active,
.cid-uzHJd1IEj4 .dropdown .dropdown-menu .dropdown-item:focus {
  color: #fc5000 !important;
}
.cid-uzHJd1IEj4 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uzHJd1IEj4 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-uzHJd1IEj4 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-uzHJd1IEj4 .navbar-caption:hover {
  color: inherit !important;
}
.cid-uzHJd1IEj4 .container {
  max-width: 1380px;
}
.cid-uzHJd1IEj4 .nav-dropdown .link {
  padding: 0.8rem 0 !important;
  margin: 0rem 1.5rem !important;
}
.cid-uzHJd1IEj4 .nav-link {
  font-weight: 700 !important;
  border-bottom: 3px solid transparent;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.cid-uzHJd1IEj4 .nav-link:hover,
.cid-uzHJd1IEj4 .nav-link:active,
.cid-uzHJd1IEj4 .nav-link:focus {
  border-bottom: 3px solid #fc5000;
  color: #fc5000 !important;
}
.cid-uzHJd1IEj4 .navbar {
  min-height: 77px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  background: #ffffff;
}
.cid-uzHJd1IEj4 .navbar.opened {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  background: #ffffff !important;
}
.cid-uzHJd1IEj4 .navbar .dropdown-item {
  padding: 0.235rem 1.5rem;
}
.cid-uzHJd1IEj4 .navbar .navbar-collapse {
  -webkit-box-pack: end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-uzHJd1IEj4 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uzHJd1IEj4 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uzHJd1IEj4 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-uzHJd1IEj4 .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-uzHJd1IEj4 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uzHJd1IEj4 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uzHJd1IEj4 .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle='dropdown-submenu']:after {
  margin-left: 0.25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-uzHJd1IEj4 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uzHJd1IEj4 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uzHJd1IEj4 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uzHJd1IEj4 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uzHJd1IEj4 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uzHJd1IEj4 .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-uzHJd1IEj4 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uzHJd1IEj4 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uzHJd1IEj4 .navbar .dropdown-menu .dropdown-toggle[data-toggle='dropdown-submenu']:after {
    margin-left: 0.25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-uzHJd1IEj4 .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-uzHJd1IEj4 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uzHJd1IEj4 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uzHJd1IEj4 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-uzHJd1IEj4 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uzHJd1IEj4 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uzHJd1IEj4 .navbar.navbar-short {
  background: #ffffff !important;
  min-height: 60px;
}
.cid-uzHJd1IEj4 .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-uzHJd1IEj4 .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-uzHJd1IEj4 .icons-menu span {
  color: #ed6436 !important;
}
.cid-uzHJd1IEj4 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uzHJd1IEj4 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  -webkit-transition: none;
  transition: none;
  margin: 0 !important;
}
.cid-uzHJd1IEj4 .navbar-brand {
  flex-shrink: 0;
  -webkit-box-align: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uzHJd1IEj4 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uzHJd1IEj4 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uzHJd1IEj4 .dropdown-item.active,
.cid-uzHJd1IEj4 .dropdown-item:active {
  background-color: transparent;
}
.cid-uzHJd1IEj4 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uzHJd1IEj4 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uzHJd1IEj4 .nav-dropdown .link.dropdown-toggle[aria-expanded='true'] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uzHJd1IEj4 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-uzHJd1IEj4 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uzHJd1IEj4 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uzHJd1IEj4 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uzHJd1IEj4 .navbar-buttons {
  text-align: center;
}
.cid-uzHJd1IEj4 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-uzHJd1IEj4 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #181818;
}
.cid-uzHJd1IEj4 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.cid-uzHJd1IEj4 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  -webkit-transition: all 0.15s;
  transition: all 0.15s;
}
.cid-uzHJd1IEj4 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  -webkit-transition: all 0.15s;
  transition: all 0.15s;
}
.cid-uzHJd1IEj4 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.cid-uzHJd1IEj4 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.cid-uzHJd1IEj4 nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  -webkit-transition: all 0.25s;
  transition: all 0.25s;
}
.cid-uzHJd1IEj4 nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  -webkit-transition: all 0.25s;
  transition: all 0.25s;
}
.cid-uzHJd1IEj4 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.cid-uzHJd1IEj4 .navbar-dropdown {
  padding: 0.5rem 1rem;
  position: fixed;
}
.cid-uzHJd1IEj4 a.nav-link {
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: center;
  justify-content: center;
}
.cid-uzHJd1IEj4 .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uzHJd1IEj4 .icons-menu {
  flex-wrap: wrap;
  display: flex;
  -webkit-box-pack: center;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  text-align: center;
}
.cid-uzHJd1IEj4 .icons-menu span {
  font-size: 20px;
  color: #ffffff;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uzHJd1IEj4 .navbar {
    height: 77px;
  }
  .cid-uzHJd1IEj4 .navbar.opened {
    height: auto;
  }
  .cid-uzHJd1IEj4 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uzIt0wNKHy {
  padding-top: 0rem;
  padding-bottom: 0rem;
  min-height: 750px;
  display: flex;
  align-items: center;
  background-image: url("../../../assets/images/churrasco-em-casa-chama-espeto-5.jpg");
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}
.cid-uzIt0wNKHy .mbr-fallback-image.disabled {
  display: none;
}
.cid-uzIt0wNKHy .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uzIt0wNKHy .mbr-section-head {
  width: 100%;
}
.cid-uzIt0wNKHy .mbr-section-title {
  color: #ffffff;
}
.cid-uzIt0wNKHy .mbr-section-subtitle {
  color: #FF014E;
  margin-top: 20px;
}
.cid-uzIt0wNKHy .mbr-section-btn {
  margin-top: 40px;
}
.cid-uzIt0wNKHy .mbr-section-subtitle,
.cid-uzIt0wNKHy .mbr-section-btn {
  color: #ffffff;
}
.cid-uzIt0wNKHy H1 {
  text-shadow: black 0.02em 0.02em 0.04em;
}
.cid-uzIt0wNKHy H2 {
  text-shadow: black 0.02em 0.02em 0.04em;
}
.cid-uzIt0wNKHy H3 {
  text-shadow: black 0.02em 0.02em 0.05em;
}
.cid-uzIt0wNKHy P {
  text-shadow: black 0.02em 0.02em 0.05em;
}
.cid-uzGMrNdVlp {
  padding-top: 6rem;
  padding-bottom: 0rem;
  background: #ffffff;
}
.cid-uzGMrNdVlp .mbr-fallback-image.disabled {
  display: none;
}
.cid-uzGMrNdVlp .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uzGMrNdVlp .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  height: 390px;
  min-width: 280px;
  max-width: 440px;
  overflow: hidden;
}
@media (max-width: 768px) {
  .cid-uzGMrNdVlp .embla__slide {
    height: 320px;
    min-width: 70%;
    max-width: initial;
    margin-left: 1rem !important;
    margin-right: 1rem !important;
  }
}
.cid-uzGMrNdVlp .embla__slide .slider-link:hover img {
  transform: scale(1);
  transition: 0.7s ease-out;
}
.cid-uzGMrNdVlp .embla__slide .slider-link img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.04);
}
.cid-uzGMrNdVlp .embla__button--next,
.cid-uzGMrNdVlp .embla__button--prev {
  display: flex;
}
.cid-uzGMrNdVlp .embla__button {
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: transparent;
  color: #fc5000;
  border: none;
  border-radius: 50%;
  transition: all 0.3s;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-uzGMrNdVlp .embla__button .mbr-iconfont {
  font-size: 48px;
}
@media (max-width: 768px) {
  .cid-uzGMrNdVlp .embla__button .mbr-iconfont {
    font-size: 22px;
  }
}
@media (max-width: 768px) {
  .cid-uzGMrNdVlp .embla__button {
    display: none;
  }
}
.cid-uzGMrNdVlp .embla__button:disabled {
  cursor: default;
  display: none;
}
.cid-uzGMrNdVlp .embla__button:hover {
  background: transparent;
  color: #fc5000;
  border: none;
  opacity: .65;
}
.cid-uzGMrNdVlp .embla__button.embla__button--prev {
  left: 0;
  margin-left: 0;
}
.cid-uzGMrNdVlp .embla__button.embla__button--next {
  right: 0;
  margin-right: 0;
}
@media (max-width: 767px) {
  .cid-uzGMrNdVlp .embla__button {
    top: auto;
    bottom: -5rem;
  }
}
.cid-uzGMrNdVlp .embla {
  position: relative;
  width: 100%;
}
.cid-uzGMrNdVlp .embla__viewport {
  overflow: hidden;
  width: 100%;
}
.cid-uzGMrNdVlp .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-uzGMrNdVlp .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-uzGMrNdVlp .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-uzKdQ8pYOJ {
  padding-top: 2rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uzKdQ8pYOJ .mbr-fallback-image.disabled {
  display: none;
}
.cid-uzKdQ8pYOJ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uzKdQ8pYOJ .video-wrapper iframe {
  width: 100%;
}
.cid-uzKdQ8pYOJ .mbr-section-title,
.cid-uzKdQ8pYOJ .mbr-description {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-uzKdQ8pYOJ .text-wrapper {
    padding: 2rem;
  }
}
.cid-uB6D7kcA0J {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #fff1e2;
}
.cid-uB6D7kcA0J .mbr-fallback-image.disabled {
  display: none;
}
.cid-uB6D7kcA0J .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uB6D7kcA0J .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 100%;
  max-width: 100%;
}
@media (max-width: 767px) {
  .cid-uB6D7kcA0J .embla__slide {
    min-width: 100%;
    max-width: 100%;
  }
}
.cid-uB6D7kcA0J .embla__slide .slide-content {
  width: 100%;
}
.cid-uB6D7kcA0J .embla__slide .slide-content .item-wrapper {
  display: flex;
  justify-content: space-between;
  padding: 10px;
}
@media (max-width: 992px) {
  .cid-uB6D7kcA0J .embla__slide .slide-content .item-wrapper {
    padding: 30px 20px;
    display: block;
  }
}
.cid-uB6D7kcA0J .embla__slide .slide-content .item-wrapper .item-content {
  position: relative;
  z-index: 1;
  width: 44%;
  padding: 70px 0 70px 50px;
}
@media (max-width: 992px) {
  .cid-uB6D7kcA0J .embla__slide .slide-content .item-wrapper .item-content {
    width: 100%;
    padding: 0;
  }
}
.cid-uB6D7kcA0J .embla__slide .slide-content .item-wrapper .item-content .item-title {
  margin-bottom: 16px;
}
.cid-uB6D7kcA0J .embla__slide .slide-content .item-wrapper .item-content .item-title span {
  color: #ed463f;
}
.cid-uB6D7kcA0J .embla__slide .slide-content .item-wrapper .item-content .item-text {
  margin-bottom: 20px;
}
.cid-uB6D7kcA0J .embla__slide .slide-content .item-wrapper .item-content .mbr-section-btn .btn {
  margin-bottom: 0;
}
.cid-uB6D7kcA0J .embla__slide .slide-content .item-wrapper .item-img {
  width: 46%;
}
@media (max-width: 992px) {
  .cid-uB6D7kcA0J .embla__slide .slide-content .item-wrapper .item-img {
    width: 100%;
    margin-top: 20px;
  }
}
.cid-uB6D7kcA0J .embla__slide .slide-content .item-wrapper .item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-uB6D7kcA0J .embla__slide .slide-content .item-wrapper .item-img img {
    min-height: 180px;
  }
}
.cid-uB6D7kcA0J .embla__button--next,
.cid-uB6D7kcA0J .embla__button--prev {
  display: flex;
}
.cid-uB6D7kcA0J .embla__button {
  bottom: 30px;
  width: 40px;
  height: 40px;
  font-size: 16px;
  background-color: #404349 !important;
  color: #ffffff !important;
  border: none !important;
  border-radius: 100%;
  transition: all 0.3s;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 1 !important;
  display: none;
}
@media (max-width: 992px) {
  .cid-uB6D7kcA0J .embla__button {
    bottom: 0;
  }
}
@media (max-width: 768px) {
  .cid-uB6D7kcA0J .embla__button {
    display: none;
  }
}
.cid-uB6D7kcA0J .embla__button:disabled {
  cursor: default;
  display: none;
}
.cid-uB6D7kcA0J .embla__button:hover {
  background-color: #ed463f !important;
}
.cid-uB6D7kcA0J .embla__button.embla__button--prev {
  right: 90px;
}
.cid-uB6D7kcA0J .embla__button.embla__button--next {
  right: 30px;
}
.cid-uB6D7kcA0J .embla {
  position: relative;
  width: 100%;
}
.cid-uB6D7kcA0J .embla__viewport {
  overflow: hidden;
  width: 100%;
  margin-right: 1rem;
  background-color: #f8e7d2;
}
.cid-uB6D7kcA0J .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-uB6D7kcA0J .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-uB6D7kcA0J .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-uB6D7kcA0J .item-menu-overlay {
  opacity: 0 !important;
}
.cid-uB6D7kcA0J .mbr-section-title {
  color: #404349;
}
.cid-uB6D7kcA0J .mbr-text {
  color: #404349;
}
.cid-uB6D7kcA0J .mbr-desc {
  color: #404349;
}
.cid-uzZBylcF0J {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uzZBylcF0J .mbr-fallback-image.disabled {
  display: none;
}
.cid-uzZBylcF0J .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uzZBIDtJLU {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uzZBIDtJLU .video-wrapper iframe {
  width: 100%;
}
.cid-uzZBIDtJLU .mbr-section-title,
.cid-uzZBIDtJLU .mbr-section-subtitle,
.cid-uzZBIDtJLU .mbr-text {
  text-align: center;
}
.cid-uzZBIDtJLU .mbr-section-subtitle {
  text-align: center;
}
.cid-uzZDvCXleN {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-uzZDvCXleN .video-wrapper iframe {
  width: 100%;
}
.cid-uzZDvCXleN .mbr-section-title,
.cid-uzZDvCXleN .mbr-section-subtitle,
.cid-uzZDvCXleN .mbr-text {
  text-align: center;
}
.cid-uzZDvCXleN .mbr-section-subtitle {
  text-align: center;
}
.cid-uzK6nU7zJ7 {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-image: url("../../../assets/images/bg15-1920x1080.jpg");
}
.cid-uzK6nU7zJ7 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uzK6nU7zJ7 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uzK6nU7zJ7 .item {
  margin-bottom: 2rem;
}
@media (max-width: 767px) {
  .cid-uzK6nU7zJ7 .item {
    margin-bottom: 1rem;
  }
}
.cid-uzK6nU7zJ7 .item-wrapper {
  position: relative;
}
.cid-uzK6nU7zJ7 .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid transparent;
  border-radius: 50%;
  opacity: 0;
  color: #464845 !important;
  transform: translateX(-50%) translateY(-50%);
  background-color: #edefea !important;
  transition: 0.2s;
}
.cid-uzK6nU7zJ7 .item-wrapper:hover .icon-wrapper {
  opacity: 1;
}
.cid-uzK6nU7zJ7 .carousel-control,
.cid-uzK6nU7zJ7 .close {
  background: #1b1b1b;
}
.cid-uzK6nU7zJ7 .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-uzK6nU7zJ7 .carousel-control-prev span {
  margin-right: 5px;
}
.cid-uzK6nU7zJ7 .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-uzK6nU7zJ7 .carousel-control-next span {
  margin-left: 5px;
}
.cid-uzK6nU7zJ7 .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  font-family: 'Moririse2';
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-uzK6nU7zJ7 .close::before {
  content: '\e91a';
}
.cid-uzK6nU7zJ7 .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-uzK6nU7zJ7 .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-uzK6nU7zJ7 .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uzK6nU7zJ7 .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-uzK6nU7zJ7 .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-uzK6nU7zJ7 .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-uzK6nU7zJ7 .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-uzK6nU7zJ7 .carousel-indicators li.active,
.cid-uzK6nU7zJ7 .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-uzK6nU7zJ7 .carousel-indicators li::after,
.cid-uzK6nU7zJ7 .carousel-indicators li::before {
  content: none;
}
.cid-uzK6nU7zJ7 .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-uzK6nU7zJ7 .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-uzK6nU7zJ7 .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-uzK6nU7zJ7 .carousel-indicators {
    display: none;
  }
}
.cid-uzK6nU7zJ7 .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-uzK6nU7zJ7 .carousel-inner > .active {
  display: block;
}
.cid-uzK6nU7zJ7 .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uzK6nU7zJ7 .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-uzK6nU7zJ7 .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-uzK6nU7zJ7 .carousel-control,
  .cid-uzK6nU7zJ7 .carousel-indicators,
  .cid-uzK6nU7zJ7 .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-uzK6nU7zJ7 .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-uzK6nU7zJ7 .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-uzK6nU7zJ7 .carousel-indicators .active,
.cid-uzK6nU7zJ7 .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-uzK6nU7zJ7 .carousel-indicators .active {
  background: #fff;
}
.cid-uzK6nU7zJ7 .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-uzK6nU7zJ7 .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-uzK6nU7zJ7 .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-uzK6nU7zJ7 .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-uzK6nU7zJ7 .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-uzK6nU7zJ7 .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-uzK6nU7zJ7 .carousel {
  width: 100%;
}
.cid-uzK6nU7zJ7 .modal-backdrop.in {
  opacity: 0.8;
}
.cid-uzK6nU7zJ7 .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-uzK6nU7zJ7 .modal.fade .modal-dialog,
.cid-uzK6nU7zJ7 .modal.in .modal-dialog {
  transform: none;
}
.cid-uzK6nU7zJ7 .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-uzK6nU7zJ7 .content-head {
  max-width: 800px;
}
.cid-uzK6nU7zJ7 H3 {
  text-align: center;
}
.cid-uzK6nU7zJ7 H4 {
  text-align: center;
}
.cid-uzLUBF9644 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  position: relative;
  overflow: hidden;
  background-color: #f4f2ef;
}
.cid-uzLUBF9644 .border-wrap {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 1000vh;
  height: 1px;
  background-color: #b89c23;
}
.cid-uzLUBF9644 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uzLUBF9644 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uzLUBF9644 .content-wrap {
  margin: 0;
}
.cid-uzLUBF9644 .content-wrap .card {
  padding: 0;
}
.cid-uzLUBF9644 .image-wrapper {
  height: 100%;
  border-right: 1px solid #b89c23;
}
@media (max-width: 992px) {
  .cid-uzLUBF9644 .image-wrapper {
    border-right: none;
    border-bottom: 1px solid #b89c23;
  }
}
.cid-uzLUBF9644 .image-wrapper img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-uzLUBF9644 .image-wrapper img {
    height: 350px;
    object-fit: cover;
  }
}
.cid-uzLUBF9644 .content-wrapper {
  padding: 40px 72px;
}
@media (max-width: 1640px) {
  .cid-uzLUBF9644 .content-wrapper {
    padding: 40px 24px;
  }
}
@media (max-width: 992px) {
  .cid-uzLUBF9644 .content-wrapper {
    padding: 40px 0;
  }
}
.cid-uzLUBF9644 .content-wrapper .mbr-section-title {
  margin-bottom: 54px;
}
@media (max-width: 992px) {
  .cid-uzLUBF9644 .content-wrapper .mbr-section-title {
    margin-bottom: 40px;
  }
}
.cid-uzLUBF9644 .content-wrapper .form-wrapper .dragArea.row {
  position: relative;
  z-index: 1;
}
.cid-uzLUBF9644 .content-wrapper .form-wrapper .dragArea.row .form-group {
  margin-bottom: 20px !important;
}
.cid-uzLUBF9644 .content-wrapper .form-wrapper .dragArea.row .form-group .form-control-label {
  width: 100%;
  margin-bottom: 8px;
}
.cid-uzLUBF9644 .content-wrapper .form-wrapper .dragArea.row .form-group .form-control {
  position: relative;
  z-index: 1;
  padding: 16px 25px;
  border: 2px solid #fc5000 !important;
  box-shadow: 4px 3px 0 0 #fc5000;
  background-color: transparent;
  line-height: 1 !important;
}
.cid-uzLUBF9644 .content-wrapper .form-wrapper .dragArea.row .form-group .form-control:hover,
.cid-uzLUBF9644 .content-wrapper .form-wrapper .dragArea.row .form-group .form-control:focus {
  border: 2px solid #fc5000 !important;
}
.cid-uzLUBF9644 .content-wrapper .form-wrapper .dragArea.row .form-group .form-control::placeholder {
  color: #fc5000;
  opacity: .6;
}
.cid-uzLUBF9644 .content-wrapper .form-wrapper .dragArea.row .form-group textarea {
  min-height: 100px;
}
.cid-uzLUBF9644 .content-wrapper .form-wrapper .dragArea.row .form-group .form-check {
  padding-left: 2.3em;
  margin-bottom: 16px;
}
.cid-uzLUBF9644 .content-wrapper .form-wrapper .dragArea.row .form-group .form-check .form-check-input {
  background-color: #fc5000;
  border-color: #fc5000;
}
.cid-uzLUBF9644 .content-wrapper .form-wrapper .dragArea.row .mbr-section-btn {
  width: 100%;
}
.cid-uzLUBF9644 .mbr-section-title {
  color: #150764;
}
.cid-uzLUBF9644 label {
  color: #150764;
}
.cid-uzLUBF9644 .mbr-section-title,
.cid-uzLUBF9644 .mbr-section-btn {
  text-align: center;
  color: #000000;
}
.cid-uzLUBF9644 .mbr-text {
  text-align: center;
}
.cid-uzHf4DWcio {
  padding-top: 75px;
  padding-bottom: 0px;
  background-color: #222222;
}
.cid-uzHf4DWcio section {
  position: relative;
}
.cid-uzHf4DWcio h4 {
  margin: 0;
}
.cid-uzHf4DWcio img {
  height: 100px;
  padding-rigth: 8px;
}
.cid-uzHf4DWcio a {
  font-weight: 300;
}
.cid-uzHf4DWcio .img1 {
  color: #fc5000;
}
.cid-uzHf4DWcio .img2 {
  color: #fc5000;
}
.cid-uzHf4DWcio .line {
  width: 35px;
  height: 3px;
  display: inline-block;
  background: #fc5000;
  transition: background 0.3s;
  margin-bottom: 2rem;
}
.cid-uzHf4DWcio .media-wrap {
  display: flex;
  margin-bottom: 1rem;
  align-items: center;
}
@media (max-width: 992px) {
  .cid-uzHf4DWcio .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-uzHf4DWcio .item,
.cid-uzHf4DWcio .link {
  display: flex;
  align-items: center;
  padding-bottom: 0.5rem;
  margin-bottom: 0.6rem;
}
.cid-uzHf4DWcio .item h4,
.cid-uzHf4DWcio .link h4 {
  padding-left: 10px;
  margin: 0;
}
.cid-uzHf4DWcio .link {
  border-bottom: 1px solid #4a535e;
}
@media (max-width: 767px) {
  .cid-uzHf4DWcio .item {
    justify-content: center;
  }
}
.cid-uzHf4DWcio .item-title {
  color: #bbbbbb;
  text-align: left;
}
.cid-uzHf4DWcio .text1 {
  text-align: left;
}
.cid-uzHf4DWcio .link-title {
  text-align: left;
}
.cid-uzHfD2vncU {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #222222;
}
.cid-uzHfD2vncU .mbr-text {
  color: #f6f6ef;
}
.cid-uzN99lRRvG .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-uzN99lRRvG .nav-item:focus,
.cid-uzN99lRRvG .nav-link:focus {
  outline: none;
}
.cid-uzN99lRRvG .navbar-short {
  box-shadow: 0px 0px 10px 0px rgba(150, 150, 150, 0.3);
}
.cid-uzN99lRRvG .dropdown .dropdown-menu .dropdown-item {
  font-weight: 700 !important;
  padding: 0 !important;
  border-bottom: 1px solid lightgray;
  margin: 0.5rem 1rem !important;
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-uzN99lRRvG .dropdown .dropdown-menu .dropdown-item:hover,
.cid-uzN99lRRvG .dropdown .dropdown-menu .dropdown-item:active,
.cid-uzN99lRRvG .dropdown .dropdown-menu .dropdown-item:focus {
  color: #fc5000 !important;
}
.cid-uzN99lRRvG .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uzN99lRRvG .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-uzN99lRRvG .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-uzN99lRRvG .navbar-caption:hover {
  color: inherit !important;
}
.cid-uzN99lRRvG .container {
  max-width: 1380px;
}
.cid-uzN99lRRvG .nav-dropdown .link {
  padding: 0.8rem 0 !important;
  margin: 0rem 1.5rem !important;
}
.cid-uzN99lRRvG .nav-link {
  font-weight: 700 !important;
  border-bottom: 3px solid transparent;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.cid-uzN99lRRvG .nav-link:hover,
.cid-uzN99lRRvG .nav-link:active,
.cid-uzN99lRRvG .nav-link:focus {
  border-bottom: 3px solid #fc5000;
  color: #fc5000 !important;
}
.cid-uzN99lRRvG .navbar {
  min-height: 77px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  background: #ffffff;
}
.cid-uzN99lRRvG .navbar.opened {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  background: #ffffff !important;
}
.cid-uzN99lRRvG .navbar .dropdown-item {
  padding: 0.235rem 1.5rem;
}
.cid-uzN99lRRvG .navbar .navbar-collapse {
  -webkit-box-pack: end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-uzN99lRRvG .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uzN99lRRvG .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uzN99lRRvG .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-uzN99lRRvG .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-uzN99lRRvG .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uzN99lRRvG .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uzN99lRRvG .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle='dropdown-submenu']:after {
  margin-left: 0.25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-uzN99lRRvG .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uzN99lRRvG .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uzN99lRRvG .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uzN99lRRvG .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uzN99lRRvG .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uzN99lRRvG .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-uzN99lRRvG .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uzN99lRRvG .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uzN99lRRvG .navbar .dropdown-menu .dropdown-toggle[data-toggle='dropdown-submenu']:after {
    margin-left: 0.25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-uzN99lRRvG .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-uzN99lRRvG .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uzN99lRRvG .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uzN99lRRvG .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-uzN99lRRvG .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uzN99lRRvG .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uzN99lRRvG .navbar.navbar-short {
  background: #ffffff !important;
  min-height: 60px;
}
.cid-uzN99lRRvG .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-uzN99lRRvG .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-uzN99lRRvG .icons-menu span {
  color: #ed6436 !important;
}
.cid-uzN99lRRvG .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uzN99lRRvG .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  -webkit-transition: none;
  transition: none;
  margin: 0 !important;
}
.cid-uzN99lRRvG .navbar-brand {
  flex-shrink: 0;
  -webkit-box-align: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uzN99lRRvG .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uzN99lRRvG .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uzN99lRRvG .dropdown-item.active,
.cid-uzN99lRRvG .dropdown-item:active {
  background-color: transparent;
}
.cid-uzN99lRRvG .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uzN99lRRvG .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uzN99lRRvG .nav-dropdown .link.dropdown-toggle[aria-expanded='true'] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uzN99lRRvG .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-uzN99lRRvG .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uzN99lRRvG .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uzN99lRRvG ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uzN99lRRvG .navbar-buttons {
  text-align: center;
}
.cid-uzN99lRRvG button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-uzN99lRRvG button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #181818;
}
.cid-uzN99lRRvG button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.cid-uzN99lRRvG button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  -webkit-transition: all 0.15s;
  transition: all 0.15s;
}
.cid-uzN99lRRvG button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  -webkit-transition: all 0.15s;
  transition: all 0.15s;
}
.cid-uzN99lRRvG button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.cid-uzN99lRRvG nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.cid-uzN99lRRvG nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  -webkit-transition: all 0.25s;
  transition: all 0.25s;
}
.cid-uzN99lRRvG nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  -webkit-transition: all 0.25s;
  transition: all 0.25s;
}
.cid-uzN99lRRvG nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.cid-uzN99lRRvG .navbar-dropdown {
  padding: 0.5rem 1rem;
  position: fixed;
}
.cid-uzN99lRRvG a.nav-link {
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: center;
  justify-content: center;
}
.cid-uzN99lRRvG .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uzN99lRRvG .icons-menu {
  flex-wrap: wrap;
  display: flex;
  -webkit-box-pack: center;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  text-align: center;
}
.cid-uzN99lRRvG .icons-menu span {
  font-size: 20px;
  color: #ffffff;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uzN99lRRvG .navbar {
    height: 77px;
  }
  .cid-uzN99lRRvG .navbar.opened {
    height: auto;
  }
  .cid-uzN99lRRvG .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uzNawRh0dC {
  background-image: url("../../../assets/images/churrasco-em-casa-chama-espeto-108.jpg");
}
.cid-uzNawRh0dC .text {
  display: flex;
  align-items: center;
}
.cid-uzNawRh0dC .mbr-section-subtitle {
  margin: 0 0 22px 0;
  letter-spacing: .13em;
  color: #FF4712;
}
.cid-uzNawRh0dC .mbr-section-title {
  margin: 0 0 33px 0;
  color: #ffffff;
}
.cid-uzNawRh0dC .btn {
  height: 55px;
  min-width: 170px;
  box-shadow: none;
}
.cid-uzNawRh0dC .btn:hover {
  box-shadow: none;
}
.cid-uzNawRh0dC .image-wrapper {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  position: relative;
}
@media (max-width: 992px) {
  .cid-uzNawRh0dC .image-wrapper {
    margin-top: 2rem;
  }
}
.cid-uzNawRh0dC .image-wrapper img {
  width: 372px;
  height: 427px;
  object-fit: cover;
  transform: rotate(5deg);
  transition: all .4s ease;
  border: 8px solid #ffffff;
}
@media (max-width: 992px) {
  .cid-uzNawRh0dC .image-wrapper img {
    transform: none;
  }
}
@media (max-width: 768px) {
  .cid-uzNawRh0dC .image-wrapper img {
    width: 240px;
    height: 275px;
  }
}
.cid-uzNawRh0dC .image-wrapper .image-absolute {
  position: absolute;
  top: 20px;
  right: 23%;
  width: 372px;
  height: 427px;
  object-fit: cover;
  transform: rotate(5deg);
  transition: all .4s ease;
  border: 8px solid #ffffff;
}
@media (max-width: 992px) {
  .cid-uzNawRh0dC .image-wrapper .image-absolute {
    transform: none;
  }
}
@media (max-width: 768px) {
  .cid-uzNawRh0dC .image-wrapper .image-absolute {
    width: 240px;
    height: 275px;
  }
}
@media (max-width: 425px) {
  .cid-uzNawRh0dC .image-wrapper .image-absolute {
    display: none;
  }
}
.cid-uzNawRh0dC .row:hover img {
  transform: rotate(0deg);
}
.cid-uzNawRh0dC .mbr-fallback-image.disabled {
  display: none;
}
.cid-uzNawRh0dC .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uzN99nxmTa {
  padding-top: 2rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uzN99nxmTa .mbr-fallback-image.disabled {
  display: none;
}
.cid-uzN99nxmTa .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uzN99nxmTa .video-wrapper iframe {
  width: 100%;
}
.cid-uzN99nxmTa .mbr-section-title,
.cid-uzN99nxmTa .mbr-description {
  text-align: center;
}
.cid-uzN99nxmTa .text-wrapper {
  padding: 1rem;
}
@media (min-width: 992px) {
  .cid-uzN99nxmTa .text-wrapper {
    padding: 2rem;
    padding-right: 4rem;
  }
}
.cid-uzYO1aG9h9 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uzYO1aG9h9 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uzYO1aG9h9 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uzYNTYccRm {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background: #ffffff;
}
.cid-uzYNTYccRm .mbr-fallback-image.disabled {
  display: none;
}
.cid-uzYNTYccRm .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uzYNTYccRm .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  height: 390px;
  min-width: 280px;
  max-width: 440px;
  overflow: hidden;
}
@media (max-width: 768px) {
  .cid-uzYNTYccRm .embla__slide {
    height: 320px;
    min-width: 70%;
    max-width: initial;
    margin-left: 1rem !important;
    margin-right: 1rem !important;
  }
}
.cid-uzYNTYccRm .embla__slide .slider-link:hover img {
  transform: scale(1);
  transition: 0.7s ease-out;
}
.cid-uzYNTYccRm .embla__slide .slider-link img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.04);
}
.cid-uzYNTYccRm .embla__button--next,
.cid-uzYNTYccRm .embla__button--prev {
  display: flex;
}
.cid-uzYNTYccRm .embla__button {
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: transparent;
  color: #fc5000;
  border: none;
  border-radius: 50%;
  transition: all 0.3s;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-uzYNTYccRm .embla__button .mbr-iconfont {
  font-size: 48px;
}
@media (max-width: 768px) {
  .cid-uzYNTYccRm .embla__button .mbr-iconfont {
    font-size: 22px;
  }
}
@media (max-width: 768px) {
  .cid-uzYNTYccRm .embla__button {
    display: none;
  }
}
.cid-uzYNTYccRm .embla__button:disabled {
  cursor: default;
  display: none;
}
.cid-uzYNTYccRm .embla__button:hover {
  background: transparent;
  color: #fc5000;
  border: none;
  opacity: .65;
}
.cid-uzYNTYccRm .embla__button.embla__button--prev {
  left: 0;
  margin-left: 0;
}
.cid-uzYNTYccRm .embla__button.embla__button--next {
  right: 0;
  margin-right: 0;
}
@media (max-width: 767px) {
  .cid-uzYNTYccRm .embla__button {
    top: auto;
    bottom: -5rem;
  }
}
.cid-uzYNTYccRm .embla {
  position: relative;
  width: 100%;
}
.cid-uzYNTYccRm .embla__viewport {
  overflow: hidden;
  width: 100%;
}
.cid-uzYNTYccRm .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-uzYNTYccRm .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-uzYNTYccRm .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-uzN99nXCzp {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-image: url("../../../assets/images/bg15-1920x1080.jpg");
}
.cid-uzN99nXCzp .mbr-fallback-image.disabled {
  display: none;
}
.cid-uzN99nXCzp .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uzN99nXCzp .item {
  margin-bottom: 2rem;
}
@media (max-width: 767px) {
  .cid-uzN99nXCzp .item {
    margin-bottom: 1rem;
  }
}
.cid-uzN99nXCzp .item-wrapper {
  position: relative;
}
.cid-uzN99nXCzp .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid transparent;
  border-radius: 50%;
  opacity: 0;
  color: #464845 !important;
  transform: translateX(-50%) translateY(-50%);
  background-color: #edefea !important;
  transition: 0.2s;
}
.cid-uzN99nXCzp .item-wrapper:hover .icon-wrapper {
  opacity: 1;
}
.cid-uzN99nXCzp .carousel-control,
.cid-uzN99nXCzp .close {
  background: #1b1b1b;
}
.cid-uzN99nXCzp .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-uzN99nXCzp .carousel-control-prev span {
  margin-right: 5px;
}
.cid-uzN99nXCzp .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-uzN99nXCzp .carousel-control-next span {
  margin-left: 5px;
}
.cid-uzN99nXCzp .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  font-family: 'Moririse2';
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-uzN99nXCzp .close::before {
  content: '\e91a';
}
.cid-uzN99nXCzp .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-uzN99nXCzp .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-uzN99nXCzp .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uzN99nXCzp .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-uzN99nXCzp .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-uzN99nXCzp .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-uzN99nXCzp .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-uzN99nXCzp .carousel-indicators li.active,
.cid-uzN99nXCzp .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-uzN99nXCzp .carousel-indicators li::after,
.cid-uzN99nXCzp .carousel-indicators li::before {
  content: none;
}
.cid-uzN99nXCzp .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-uzN99nXCzp .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-uzN99nXCzp .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-uzN99nXCzp .carousel-indicators {
    display: none;
  }
}
.cid-uzN99nXCzp .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-uzN99nXCzp .carousel-inner > .active {
  display: block;
}
.cid-uzN99nXCzp .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uzN99nXCzp .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-uzN99nXCzp .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-uzN99nXCzp .carousel-control,
  .cid-uzN99nXCzp .carousel-indicators,
  .cid-uzN99nXCzp .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-uzN99nXCzp .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-uzN99nXCzp .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-uzN99nXCzp .carousel-indicators .active,
.cid-uzN99nXCzp .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-uzN99nXCzp .carousel-indicators .active {
  background: #fff;
}
.cid-uzN99nXCzp .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-uzN99nXCzp .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-uzN99nXCzp .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-uzN99nXCzp .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-uzN99nXCzp .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-uzN99nXCzp .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-uzN99nXCzp .carousel {
  width: 100%;
}
.cid-uzN99nXCzp .modal-backdrop.in {
  opacity: 0.8;
}
.cid-uzN99nXCzp .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-uzN99nXCzp .modal.fade .modal-dialog,
.cid-uzN99nXCzp .modal.in .modal-dialog {
  transform: none;
}
.cid-uzN99nXCzp .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-uzN99nXCzp .content-head {
  max-width: 800px;
}
.cid-uzN99nXCzp H3 {
  text-align: center;
}
.cid-uzN99nXCzp H4 {
  text-align: center;
}
.cid-uzN99oRSBS {
  padding-top: 0rem;
  padding-bottom: 0rem;
  position: relative;
  overflow: hidden;
  background-color: #f4f2ef;
}
.cid-uzN99oRSBS .border-wrap {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 1000vh;
  height: 1px;
  background-color: #b89c23;
}
.cid-uzN99oRSBS .mbr-fallback-image.disabled {
  display: none;
}
.cid-uzN99oRSBS .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uzN99oRSBS .content-wrap {
  margin: 0;
}
.cid-uzN99oRSBS .content-wrap .card {
  padding: 0;
}
.cid-uzN99oRSBS .image-wrapper {
  height: 100%;
  border-right: 1px solid #b89c23;
}
@media (max-width: 992px) {
  .cid-uzN99oRSBS .image-wrapper {
    border-right: none;
    border-bottom: 1px solid #b89c23;
  }
}
.cid-uzN99oRSBS .image-wrapper img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-uzN99oRSBS .image-wrapper img {
    height: 350px;
    object-fit: cover;
  }
}
.cid-uzN99oRSBS .content-wrapper {
  padding: 40px 72px;
}
@media (max-width: 1640px) {
  .cid-uzN99oRSBS .content-wrapper {
    padding: 40px 24px;
  }
}
@media (max-width: 992px) {
  .cid-uzN99oRSBS .content-wrapper {
    padding: 40px 0;
  }
}
.cid-uzN99oRSBS .content-wrapper .mbr-section-title {
  margin-bottom: 54px;
}
@media (max-width: 992px) {
  .cid-uzN99oRSBS .content-wrapper .mbr-section-title {
    margin-bottom: 40px;
  }
}
.cid-uzN99oRSBS .content-wrapper .form-wrapper .dragArea.row {
  position: relative;
  z-index: 1;
}
.cid-uzN99oRSBS .content-wrapper .form-wrapper .dragArea.row .form-group {
  margin-bottom: 20px !important;
}
.cid-uzN99oRSBS .content-wrapper .form-wrapper .dragArea.row .form-group .form-control-label {
  width: 100%;
  margin-bottom: 8px;
}
.cid-uzN99oRSBS .content-wrapper .form-wrapper .dragArea.row .form-group .form-control {
  position: relative;
  z-index: 1;
  padding: 16px 25px;
  border: 2px solid #fc5000 !important;
  box-shadow: 4px 3px 0 0 #fc5000;
  background-color: transparent;
  line-height: 1 !important;
}
.cid-uzN99oRSBS .content-wrapper .form-wrapper .dragArea.row .form-group .form-control:hover,
.cid-uzN99oRSBS .content-wrapper .form-wrapper .dragArea.row .form-group .form-control:focus {
  border: 2px solid #fc5000 !important;
}
.cid-uzN99oRSBS .content-wrapper .form-wrapper .dragArea.row .form-group .form-control::placeholder {
  color: #fc5000;
  opacity: .6;
}
.cid-uzN99oRSBS .content-wrapper .form-wrapper .dragArea.row .form-group textarea {
  min-height: 100px;
}
.cid-uzN99oRSBS .content-wrapper .form-wrapper .dragArea.row .form-group .form-check {
  padding-left: 2.3em;
  margin-bottom: 16px;
}
.cid-uzN99oRSBS .content-wrapper .form-wrapper .dragArea.row .form-group .form-check .form-check-input {
  background-color: #fc5000;
  border-color: #fc5000;
}
.cid-uzN99oRSBS .content-wrapper .form-wrapper .dragArea.row .mbr-section-btn {
  width: 100%;
}
.cid-uzN99oRSBS .mbr-section-title {
  color: #150764;
}
.cid-uzN99oRSBS label {
  color: #150764;
}
.cid-uzN99oRSBS .mbr-section-title,
.cid-uzN99oRSBS .mbr-section-btn {
  text-align: center;
  color: #000000;
}
.cid-uzN99oRSBS .mbr-text {
  text-align: center;
}
.cid-uB6RXfta54 {
  padding-top: 75px;
  padding-bottom: 0px;
  background-color: #222222;
}
.cid-uB6RXfta54 section {
  position: relative;
}
.cid-uB6RXfta54 h4 {
  margin: 0;
}
.cid-uB6RXfta54 img {
  height: 100px;
  padding-rigth: 8px;
}
.cid-uB6RXfta54 a {
  font-weight: 300;
}
.cid-uB6RXfta54 .img1 {
  color: #fc5000;
}
.cid-uB6RXfta54 .img2 {
  color: #fc5000;
}
.cid-uB6RXfta54 .line {
  width: 35px;
  height: 3px;
  display: inline-block;
  background: #fc5000;
  transition: background 0.3s;
  margin-bottom: 2rem;
}
.cid-uB6RXfta54 .media-wrap {
  display: flex;
  margin-bottom: 1rem;
  align-items: center;
}
@media (max-width: 992px) {
  .cid-uB6RXfta54 .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-uB6RXfta54 .item,
.cid-uB6RXfta54 .link {
  display: flex;
  align-items: center;
  padding-bottom: 0.5rem;
  margin-bottom: 0.6rem;
}
.cid-uB6RXfta54 .item h4,
.cid-uB6RXfta54 .link h4 {
  padding-left: 10px;
  margin: 0;
}
.cid-uB6RXfta54 .link {
  border-bottom: 1px solid #4a535e;
}
@media (max-width: 767px) {
  .cid-uB6RXfta54 .item {
    justify-content: center;
  }
}
.cid-uB6RXfta54 .item-title {
  color: #bbbbbb;
  text-align: left;
}
.cid-uB6RXfta54 .text1 {
  text-align: left;
}
.cid-uB6RXfta54 .link-title {
  text-align: left;
}
.cid-uzN99pZPeV {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #222222;
}
.cid-uzN99pZPeV .mbr-text {
  color: #f6f6ef;
}
.cid-uzN9dCCWII .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-uzN9dCCWII .nav-item:focus,
.cid-uzN9dCCWII .nav-link:focus {
  outline: none;
}
.cid-uzN9dCCWII .navbar-short {
  box-shadow: 0px 0px 10px 0px rgba(150, 150, 150, 0.3);
}
.cid-uzN9dCCWII .dropdown .dropdown-menu .dropdown-item {
  font-weight: 700 !important;
  padding: 0 !important;
  border-bottom: 1px solid lightgray;
  margin: 0.5rem 1rem !important;
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-uzN9dCCWII .dropdown .dropdown-menu .dropdown-item:hover,
.cid-uzN9dCCWII .dropdown .dropdown-menu .dropdown-item:active,
.cid-uzN9dCCWII .dropdown .dropdown-menu .dropdown-item:focus {
  color: #fc5000 !important;
}
.cid-uzN9dCCWII .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uzN9dCCWII .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-uzN9dCCWII .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-uzN9dCCWII .navbar-caption:hover {
  color: inherit !important;
}
.cid-uzN9dCCWII .container {
  max-width: 1380px;
}
.cid-uzN9dCCWII .nav-dropdown .link {
  padding: 0.8rem 0 !important;
  margin: 0rem 1.5rem !important;
}
.cid-uzN9dCCWII .nav-link {
  font-weight: 700 !important;
  border-bottom: 3px solid transparent;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.cid-uzN9dCCWII .nav-link:hover,
.cid-uzN9dCCWII .nav-link:active,
.cid-uzN9dCCWII .nav-link:focus {
  border-bottom: 3px solid #fc5000;
  color: #fc5000 !important;
}
.cid-uzN9dCCWII .navbar {
  min-height: 77px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  background: #ffffff;
}
.cid-uzN9dCCWII .navbar.opened {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  background: #ffffff !important;
}
.cid-uzN9dCCWII .navbar .dropdown-item {
  padding: 0.235rem 1.5rem;
}
.cid-uzN9dCCWII .navbar .navbar-collapse {
  -webkit-box-pack: end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-uzN9dCCWII .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uzN9dCCWII .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uzN9dCCWII .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-uzN9dCCWII .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-uzN9dCCWII .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uzN9dCCWII .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uzN9dCCWII .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle='dropdown-submenu']:after {
  margin-left: 0.25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-uzN9dCCWII .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uzN9dCCWII .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uzN9dCCWII .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uzN9dCCWII .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uzN9dCCWII .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uzN9dCCWII .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-uzN9dCCWII .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uzN9dCCWII .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uzN9dCCWII .navbar .dropdown-menu .dropdown-toggle[data-toggle='dropdown-submenu']:after {
    margin-left: 0.25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-uzN9dCCWII .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-uzN9dCCWII .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uzN9dCCWII .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uzN9dCCWII .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-uzN9dCCWII .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uzN9dCCWII .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uzN9dCCWII .navbar.navbar-short {
  background: #ffffff !important;
  min-height: 60px;
}
.cid-uzN9dCCWII .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-uzN9dCCWII .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-uzN9dCCWII .icons-menu span {
  color: #ed6436 !important;
}
.cid-uzN9dCCWII .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uzN9dCCWII .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  -webkit-transition: none;
  transition: none;
  margin: 0 !important;
}
.cid-uzN9dCCWII .navbar-brand {
  flex-shrink: 0;
  -webkit-box-align: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uzN9dCCWII .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uzN9dCCWII .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uzN9dCCWII .dropdown-item.active,
.cid-uzN9dCCWII .dropdown-item:active {
  background-color: transparent;
}
.cid-uzN9dCCWII .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uzN9dCCWII .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uzN9dCCWII .nav-dropdown .link.dropdown-toggle[aria-expanded='true'] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uzN9dCCWII .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-uzN9dCCWII .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uzN9dCCWII .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uzN9dCCWII ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uzN9dCCWII .navbar-buttons {
  text-align: center;
}
.cid-uzN9dCCWII button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-uzN9dCCWII button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #181818;
}
.cid-uzN9dCCWII button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.cid-uzN9dCCWII button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  -webkit-transition: all 0.15s;
  transition: all 0.15s;
}
.cid-uzN9dCCWII button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  -webkit-transition: all 0.15s;
  transition: all 0.15s;
}
.cid-uzN9dCCWII button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.cid-uzN9dCCWII nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.cid-uzN9dCCWII nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  -webkit-transition: all 0.25s;
  transition: all 0.25s;
}
.cid-uzN9dCCWII nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  -webkit-transition: all 0.25s;
  transition: all 0.25s;
}
.cid-uzN9dCCWII nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.cid-uzN9dCCWII .navbar-dropdown {
  padding: 0.5rem 1rem;
  position: fixed;
}
.cid-uzN9dCCWII a.nav-link {
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: center;
  justify-content: center;
}
.cid-uzN9dCCWII .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uzN9dCCWII .icons-menu {
  flex-wrap: wrap;
  display: flex;
  -webkit-box-pack: center;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  text-align: center;
}
.cid-uzN9dCCWII .icons-menu span {
  font-size: 20px;
  color: #ffffff;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uzN9dCCWII .navbar {
    height: 77px;
  }
  .cid-uzN9dCCWII .navbar.opened {
    height: auto;
  }
  .cid-uzN9dCCWII .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uzO0NpoLcq {
  padding-top: 0rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uzO7aAq6c0 {
  background-image: url("../../../assets/images/churrasco-em-casa-chama-espeto-75.jpg");
}
.cid-uzO7aAq6c0 .text {
  display: flex;
  align-items: center;
}
.cid-uzO7aAq6c0 .mbr-section-subtitle {
  margin: 0 0 22px 0;
  letter-spacing: .13em;
  color: #FF4712;
}
.cid-uzO7aAq6c0 .mbr-section-title {
  margin: 0 0 33px 0;
  color: #ffffff;
}
.cid-uzO7aAq6c0 .btn {
  height: 55px;
  min-width: 170px;
  box-shadow: none;
}
.cid-uzO7aAq6c0 .btn:hover {
  box-shadow: none;
}
.cid-uzO7aAq6c0 .image-wrapper {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  position: relative;
}
@media (max-width: 992px) {
  .cid-uzO7aAq6c0 .image-wrapper {
    margin-top: 2rem;
  }
}
.cid-uzO7aAq6c0 .image-wrapper img {
  width: 372px;
  height: 427px;
  object-fit: cover;
  transform: rotate(5deg);
  transition: all .4s ease;
  border: 8px solid #ffffff;
}
@media (max-width: 992px) {
  .cid-uzO7aAq6c0 .image-wrapper img {
    transform: none;
  }
}
@media (max-width: 768px) {
  .cid-uzO7aAq6c0 .image-wrapper img {
    width: 240px;
    height: 275px;
  }
}
.cid-uzO7aAq6c0 .image-wrapper .image-absolute {
  position: absolute;
  top: 20px;
  right: 23%;
  width: 372px;
  height: 427px;
  object-fit: cover;
  transform: rotate(5deg);
  transition: all .4s ease;
  border: 8px solid #ffffff;
}
@media (max-width: 992px) {
  .cid-uzO7aAq6c0 .image-wrapper .image-absolute {
    transform: none;
  }
}
@media (max-width: 768px) {
  .cid-uzO7aAq6c0 .image-wrapper .image-absolute {
    width: 240px;
    height: 275px;
  }
}
@media (max-width: 425px) {
  .cid-uzO7aAq6c0 .image-wrapper .image-absolute {
    display: none;
  }
}
.cid-uzO7aAq6c0 .row:hover img {
  transform: rotate(0deg);
}
.cid-uzO7aAq6c0 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uzO7aAq6c0 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uzSaHISOAJ {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uzSaHISOAJ .line {
  border-bottom: 1px solid #ffffff;
}
.cid-uzSaHISOAJ .block__inner {
  padding: 30px 0 50px;
}
.cid-uzSaHISOAJ .quotes .mbr-iconfont {
  color: #ebeaed;
  font-size: 36px;
  font-weight: 700;
}
.cid-uzSaHISOAJ .mbr-text {
  padding-top: 10px;
  margin-bottom: 0;
}
.cid-uzSaHISOAJ .author__info {
  margin-top: 20px;
}
.cid-uzSaHISOAJ .image {
  display: inline-block;
}
.cid-uzSaHISOAJ .image img {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  object-fit: cover;
}
.cid-uzSaHISOAJ .descr__text {
  display: inline-block;
  margin: 10px 0 0 15px;
  color: #919DAB;
  letter-spacing: 2px;
}
.cid-uzSaHISOAJ .mbr-fallback-image.disabled {
  display: none;
}
.cid-uzSaHISOAJ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uzNuQMW9DO {
  padding-top: 4rem;
  padding-bottom: 5rem;
  background-color: #fff1e2;
}
.cid-uzNuQMW9DO .mbr-fallback-image.disabled {
  display: none;
}
.cid-uzNuQMW9DO .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uzNuQMW9DO .content-wrap {
  padding: 60px;
  background-color: #f8e7d2;
}
@media (max-width: 992px) {
  .cid-uzNuQMW9DO .content-wrap {
    padding: 30px 20px;
  }
}
.cid-uzNuQMW9DO .content-wrap .title-wrapper {
  margin-bottom: 54px;
}
@media (max-width: 992px) {
  .cid-uzNuQMW9DO .content-wrap .title-wrapper {
    margin-bottom: 40px;
  }
}
.cid-uzNuQMW9DO .content-wrap .title-wrapper .mbr-section-title {
  display: inline-block;
  width: 60%;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-uzNuQMW9DO .content-wrap .title-wrapper .mbr-section-title {
    width: 100%;
  }
}
.cid-uzNuQMW9DO .content-wrap .title-wrapper .mbr-section-title span {
  color: #ed463f;
}
.cid-uzNuQMW9DO .content-wrap .tabs-wrapper {
  margin-bottom: 20px;
}
.cid-uzNuQMW9DO .content-wrap .tabs-wrapper .nav.nav-tabs {
  border: none;
  padding: 0;
  border-radius: 0 !important;
  background-color: transparent;
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: center;
}
.cid-uzNuQMW9DO .content-wrap .tabs-wrapper .nav.nav-tabs .nav-item {
  padding: 0;
  border: none;
  display: block;
  margin: 0 10px 10px;
}
.cid-uzNuQMW9DO .content-wrap .tabs-wrapper .nav.nav-tabs .nav-item .nav-link {
  color: #b19a7c;
  padding: 8px 16px;
  border: 1px solid transparent;
  margin-bottom: 0;
  background-color: #fff1e2;
}
.cid-uzNuQMW9DO .content-wrap .tabs-wrapper .nav.nav-tabs .nav-item .nav-link.active {
  border: 1px solid #b19a7c;
}
.cid-uzNuQMW9DO .content-wrap .tab-content .tab-pane .content-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 992px) {
  .cid-uzNuQMW9DO .content-wrap .tab-content .tab-pane .content-wrapper {
    display: block;
  }
}
.cid-uzNuQMW9DO .content-wrap .tab-content .tab-pane .content-wrapper .image-wrapper {
  width: 50%;
}
@media (max-width: 992px) {
  .cid-uzNuQMW9DO .content-wrap .tab-content .tab-pane .content-wrapper .image-wrapper {
    width: 100%;
    margin-top: 30px;
  }
}
.cid-uzNuQMW9DO .content-wrap .tab-content .tab-pane .content-wrapper .image-wrapper img {
  display: inline-flex;
  height: 400px;
  width: 100%;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-uzNuQMW9DO .content-wrap .tab-content .tab-pane .content-wrapper .image-wrapper img {
    height: 350px;
  }
}
.cid-uzNuQMW9DO .content-wrap .tab-content .tab-pane .content-wrapper .text-wrapper {
  width: 43%;
}
@media (max-width: 992px) {
  .cid-uzNuQMW9DO .content-wrap .tab-content .tab-pane .content-wrapper .text-wrapper {
    width: 100%;
  }
}
.cid-uzNuQMW9DO .content-wrap .tab-content .tab-pane .content-wrapper .text-wrapper .item-title {
  margin-bottom: 20px;
}
.cid-uzNuQMW9DO .content-wrap .tab-content .tab-pane .content-wrapper .text-wrapper .item-text {
  margin-bottom: 0;
}
.cid-uzNuQMW9DO .mbr-section-title {
  color: #404349;
}
.cid-uzNuQMW9DO .item-title {
  color: #404349;
}
.cid-uzNuQMW9DO .item-text {
  color: #404349;
}
.cid-uzNuQMW9DO .tabs-wrapper {
  text-align: center;
}
.cid-uzNP79Bu6N {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #fff1e2;
}
.cid-uzNP79Bu6N .mbr-fallback-image.disabled {
  display: none;
}
.cid-uzNP79Bu6N .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uzNP79Bu6N .title-wrapper {
  margin-bottom: 54px;
}
@media (max-width: 992px) {
  .cid-uzNP79Bu6N .title-wrapper {
    margin-bottom: 40px;
  }
}
.cid-uzNP79Bu6N .title-wrapper .desc-wrapper .mbr-desc {
  display: inline-block;
  background-color: #f8e7d2;
  padding: 8px 16px;
  margin-bottom: 16px;
}
.cid-uzNP79Bu6N .title-wrapper .title-wrap .mbr-section-title {
  display: inline-block;
  width: 60%;
  margin-bottom: 0;
}
@media (max-width: 1200px) {
  .cid-uzNP79Bu6N .title-wrapper .title-wrap .mbr-section-title {
    width: 100%;
  }
}
.cid-uzNP79Bu6N .title-wrapper .title-wrap .mbr-section-title span {
  color: #ed463f;
}
.cid-uzNP79Bu6N .items-wrapper {
  justify-content: center;
  margin: 0 -10px;
}
.cid-uzNP79Bu6N .item {
  padding: 0 10px;
  margin-bottom: 20px;
}
.cid-uzNP79Bu6N .item .item-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  background-color: #ffffff;
  padding: 30px;
}
@media (max-width: 992px) {
  .cid-uzNP79Bu6N .item .item-wrapper {
    height: auto;
    padding: 20px;
  }
}
.cid-uzNP79Bu6N .item .item-wrapper .icon-wrapper {
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .cid-uzNP79Bu6N .item .item-wrapper .icon-wrapper {
    margin-bottom: 40px;
  }
}
.cid-uzNP79Bu6N .item .item-wrapper .icon-wrapper .mbr-iconfont {
  width: 60px;
  height: 60px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  color: #ffffff;
  background-color: #ed463f;
  border-radius: 12px;
}
.cid-uzNP79Bu6N .item .item-wrapper .card-box .item-title {
  margin-bottom: 20px;
}
.cid-uzNP79Bu6N .item .item-wrapper .card-box .item-text {
  margin-bottom: 0;
}
.cid-uzNP79Bu6N .mbr-section-title {
  color: #404349;
}
.cid-uzNP79Bu6N .mbr-desc {
  color: #b19a7c;
}
.cid-uzNP79Bu6N .item-title {
  color: #404349;
}
.cid-uzNP79Bu6N .item-text {
  color: #404349;
}
.cid-uzNP79Bu6N .mbr-section-title,
.cid-uzNP79Bu6N .title-wrap {
  text-align: center;
}
.cid-uzOeIOWcEh {
  padding-top: 0rem;
  padding-bottom: 5rem;
  background-color: #fff1e2;
}
.cid-uzNEKOAeJH {
  padding-top: 2rem;
  padding-bottom: 5rem;
  background-color: #fff1e2;
}
.cid-uzNEKOAeJH .mbr-fallback-image.disabled {
  display: none;
}
.cid-uzNEKOAeJH .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uzNEKOAeJH .content-wrap {
  padding: 60px;
  background-color: #f8e7d2;
}
@media (max-width: 992px) {
  .cid-uzNEKOAeJH .content-wrap {
    padding: 30px 20px;
  }
}
.cid-uzNEKOAeJH .content-wrap .title-wrapper {
  margin-bottom: 54px;
}
@media (max-width: 992px) {
  .cid-uzNEKOAeJH .content-wrap .title-wrapper {
    margin-bottom: 40px;
  }
}
.cid-uzNEKOAeJH .content-wrap .title-wrapper .mbr-section-title {
  display: inline-block;
  width: 60%;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-uzNEKOAeJH .content-wrap .title-wrapper .mbr-section-title {
    width: 100%;
  }
}
.cid-uzNEKOAeJH .content-wrap .title-wrapper .mbr-section-title span {
  color: #ed463f;
}
.cid-uzNEKOAeJH .content-wrap .tabs-wrapper {
  margin-bottom: 20px;
}
.cid-uzNEKOAeJH .content-wrap .tabs-wrapper .nav.nav-tabs {
  border: none;
  padding: 0;
  border-radius: 0 !important;
  background-color: transparent;
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: center;
}
.cid-uzNEKOAeJH .content-wrap .tabs-wrapper .nav.nav-tabs .nav-item {
  padding: 0;
  border: none;
  display: block;
  margin: 0 10px 10px;
}
.cid-uzNEKOAeJH .content-wrap .tabs-wrapper .nav.nav-tabs .nav-item .nav-link {
  color: #b19a7c;
  padding: 8px 16px;
  border: 1px solid transparent;
  margin-bottom: 0;
  background-color: #fff1e2;
}
.cid-uzNEKOAeJH .content-wrap .tabs-wrapper .nav.nav-tabs .nav-item .nav-link.active {
  border: 1px solid #b19a7c;
}
.cid-uzNEKOAeJH .content-wrap .tab-content .tab-pane .content-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 992px) {
  .cid-uzNEKOAeJH .content-wrap .tab-content .tab-pane .content-wrapper {
    display: block;
  }
}
.cid-uzNEKOAeJH .content-wrap .tab-content .tab-pane .content-wrapper .image-wrapper {
  width: 50%;
}
@media (max-width: 992px) {
  .cid-uzNEKOAeJH .content-wrap .tab-content .tab-pane .content-wrapper .image-wrapper {
    width: 100%;
    margin-top: 30px;
  }
}
.cid-uzNEKOAeJH .content-wrap .tab-content .tab-pane .content-wrapper .image-wrapper img {
  display: inline-flex;
  height: 400px;
  width: 100%;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-uzNEKOAeJH .content-wrap .tab-content .tab-pane .content-wrapper .image-wrapper img {
    height: 350px;
  }
}
.cid-uzNEKOAeJH .content-wrap .tab-content .tab-pane .content-wrapper .text-wrapper {
  width: 43%;
}
@media (max-width: 992px) {
  .cid-uzNEKOAeJH .content-wrap .tab-content .tab-pane .content-wrapper .text-wrapper {
    width: 100%;
  }
}
.cid-uzNEKOAeJH .content-wrap .tab-content .tab-pane .content-wrapper .text-wrapper .item-title {
  margin-bottom: 20px;
}
.cid-uzNEKOAeJH .content-wrap .tab-content .tab-pane .content-wrapper .text-wrapper .item-text {
  margin-bottom: 0;
}
.cid-uzNEKOAeJH .mbr-section-title {
  color: #404349;
}
.cid-uzNEKOAeJH .item-title {
  color: #404349;
}
.cid-uzNEKOAeJH .item-text {
  color: #404349;
}
.cid-uzNEKOAeJH .tabs-wrapper {
  text-align: center;
}
.cid-uzO5uFvOox {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #fff1e2;
}
.cid-uzO5uFvOox .mbr-fallback-image.disabled {
  display: none;
}
.cid-uzO5uFvOox .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uzO5uFvOox .title-wrapper {
  margin-bottom: 54px;
}
@media (max-width: 992px) {
  .cid-uzO5uFvOox .title-wrapper {
    margin-bottom: 40px;
  }
}
.cid-uzO5uFvOox .title-wrapper .desc-wrapper .mbr-desc {
  display: inline-block;
  background-color: #f8e7d2;
  padding: 8px 16px;
  margin-bottom: 16px;
}
.cid-uzO5uFvOox .title-wrapper .title-wrap .mbr-section-title {
  display: inline-block;
  width: 60%;
  margin-bottom: 0;
}
@media (max-width: 1200px) {
  .cid-uzO5uFvOox .title-wrapper .title-wrap .mbr-section-title {
    width: 100%;
  }
}
.cid-uzO5uFvOox .title-wrapper .title-wrap .mbr-section-title span {
  color: #ed463f;
}
.cid-uzO5uFvOox .items-wrapper {
  justify-content: center;
  margin: 0 -10px;
}
.cid-uzO5uFvOox .item {
  padding: 0 10px;
  margin-bottom: 20px;
}
.cid-uzO5uFvOox .item .item-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  background-color: #ffffff;
  padding: 30px;
}
@media (max-width: 992px) {
  .cid-uzO5uFvOox .item .item-wrapper {
    height: auto;
    padding: 20px;
  }
}
.cid-uzO5uFvOox .item .item-wrapper .icon-wrapper {
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .cid-uzO5uFvOox .item .item-wrapper .icon-wrapper {
    margin-bottom: 40px;
  }
}
.cid-uzO5uFvOox .item .item-wrapper .icon-wrapper .mbr-iconfont {
  width: 60px;
  height: 60px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  color: #ffffff;
  background-color: #ed463f;
  border-radius: 12px;
}
.cid-uzO5uFvOox .item .item-wrapper .card-box .item-title {
  margin-bottom: 20px;
}
.cid-uzO5uFvOox .item .item-wrapper .card-box .item-text {
  margin-bottom: 0;
}
.cid-uzO5uFvOox .mbr-section-title {
  color: #404349;
}
.cid-uzO5uFvOox .mbr-desc {
  color: #b19a7c;
}
.cid-uzO5uFvOox .item-title {
  color: #404349;
}
.cid-uzO5uFvOox .item-text {
  color: #404349;
}
.cid-uzO5uFvOox .mbr-section-title,
.cid-uzO5uFvOox .title-wrap {
  text-align: center;
}
.cid-uzSCZtGMfa {
  padding-top: 0rem;
  padding-bottom: 5rem;
  background-color: #fff1e2;
}
.cid-uzYDTCVt81 {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #fff1e2;
}
.cid-uzYDTCVt81 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uzYDTCVt81 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uzYDTCVt81 .content-wrap {
  padding: 60px;
  background-color: #f8e7d2;
}
@media (max-width: 992px) {
  .cid-uzYDTCVt81 .content-wrap {
    padding: 30px 20px;
  }
}
.cid-uzYDTCVt81 .content-wrap .title-wrapper {
  margin-bottom: 54px;
}
@media (max-width: 992px) {
  .cid-uzYDTCVt81 .content-wrap .title-wrapper {
    margin-bottom: 40px;
  }
}
.cid-uzYDTCVt81 .content-wrap .title-wrapper .mbr-section-title {
  display: inline-block;
  width: 60%;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-uzYDTCVt81 .content-wrap .title-wrapper .mbr-section-title {
    width: 100%;
  }
}
.cid-uzYDTCVt81 .content-wrap .title-wrapper .mbr-section-title span {
  color: #ed463f;
}
.cid-uzYDTCVt81 .content-wrap .tabs-wrapper {
  margin-bottom: 20px;
}
.cid-uzYDTCVt81 .content-wrap .tabs-wrapper .nav.nav-tabs {
  border: none;
  padding: 0;
  border-radius: 0 !important;
  background-color: transparent;
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: center;
}
.cid-uzYDTCVt81 .content-wrap .tabs-wrapper .nav.nav-tabs .nav-item {
  padding: 0;
  border: none;
  display: block;
  margin: 0 10px 10px;
}
.cid-uzYDTCVt81 .content-wrap .tabs-wrapper .nav.nav-tabs .nav-item .nav-link {
  color: #b19a7c;
  padding: 8px 16px;
  border: 1px solid transparent;
  margin-bottom: 0;
  background-color: #fff1e2;
}
.cid-uzYDTCVt81 .content-wrap .tabs-wrapper .nav.nav-tabs .nav-item .nav-link.active {
  border: 1px solid #b19a7c;
}
.cid-uzYDTCVt81 .content-wrap .tab-content .tab-pane .content-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 992px) {
  .cid-uzYDTCVt81 .content-wrap .tab-content .tab-pane .content-wrapper {
    display: block;
  }
}
.cid-uzYDTCVt81 .content-wrap .tab-content .tab-pane .content-wrapper .image-wrapper {
  width: 50%;
}
@media (max-width: 992px) {
  .cid-uzYDTCVt81 .content-wrap .tab-content .tab-pane .content-wrapper .image-wrapper {
    width: 100%;
    margin-top: 30px;
  }
}
.cid-uzYDTCVt81 .content-wrap .tab-content .tab-pane .content-wrapper .image-wrapper img {
  display: inline-flex;
  height: 400px;
  width: 100%;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-uzYDTCVt81 .content-wrap .tab-content .tab-pane .content-wrapper .image-wrapper img {
    height: 350px;
  }
}
.cid-uzYDTCVt81 .content-wrap .tab-content .tab-pane .content-wrapper .text-wrapper {
  width: 43%;
}
@media (max-width: 992px) {
  .cid-uzYDTCVt81 .content-wrap .tab-content .tab-pane .content-wrapper .text-wrapper {
    width: 100%;
  }
}
.cid-uzYDTCVt81 .content-wrap .tab-content .tab-pane .content-wrapper .text-wrapper .item-title {
  margin-bottom: 20px;
}
.cid-uzYDTCVt81 .content-wrap .tab-content .tab-pane .content-wrapper .text-wrapper .item-text {
  margin-bottom: 0;
}
.cid-uzYDTCVt81 .mbr-section-title {
  color: #404349;
}
.cid-uzYDTCVt81 .item-title {
  color: #404349;
}
.cid-uzYDTCVt81 .item-text {
  color: #404349;
}
.cid-uzYDTCVt81 .tabs-wrapper {
  text-align: center;
}
.cid-uzYMZt5WHD {
  padding-top: 0rem;
  padding-bottom: 5rem;
  background-color: #fff1e2;
}
.cid-uzSdRaXIOo {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-uzSdRaXIOo .mbr-fallback-image.disabled {
  display: none;
}
.cid-uzSdRaXIOo .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uzSdRaXIOo .item {
  padding-bottom: 2rem;
}
.cid-uzSdRaXIOo .item-wrapper {
  height: 100%;
  position: relative;
}
.cid-uzSdRaXIOo .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-uzSdRaXIOo .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
  border-radius: 50%;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  background-color: #1b1b1b;
  transition: 0.2s;
}
.cid-uzSdRaXIOo .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-uzSdRaXIOo .carousel-control,
.cid-uzSdRaXIOo .close {
  background: #1b1b1b;
}
.cid-uzSdRaXIOo .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-uzSdRaXIOo .carousel-control-prev span {
  margin-right: 5px;
}
.cid-uzSdRaXIOo .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-uzSdRaXIOo .carousel-control-next span {
  margin-left: 5px;
}
.cid-uzSdRaXIOo .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  font-family: 'Moririse2';
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-uzSdRaXIOo .close::before {
  content: '\e91a';
}
.cid-uzSdRaXIOo .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-uzSdRaXIOo .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-uzSdRaXIOo .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uzSdRaXIOo .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-uzSdRaXIOo .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-uzSdRaXIOo .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-uzSdRaXIOo .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-uzSdRaXIOo .carousel-indicators li.active,
.cid-uzSdRaXIOo .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-uzSdRaXIOo .carousel-indicators li::after,
.cid-uzSdRaXIOo .carousel-indicators li::before {
  content: none;
}
.cid-uzSdRaXIOo .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-uzSdRaXIOo .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-uzSdRaXIOo .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-uzSdRaXIOo .carousel-indicators {
    display: none;
  }
}
.cid-uzSdRaXIOo .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-uzSdRaXIOo .carousel-inner > .active {
  display: block;
}
.cid-uzSdRaXIOo .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uzSdRaXIOo .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-uzSdRaXIOo .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-uzSdRaXIOo .carousel-control,
  .cid-uzSdRaXIOo .carousel-indicators,
  .cid-uzSdRaXIOo .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-uzSdRaXIOo .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-uzSdRaXIOo .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-uzSdRaXIOo .carousel-indicators .active,
.cid-uzSdRaXIOo .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-uzSdRaXIOo .carousel-indicators .active {
  background: #fff;
}
.cid-uzSdRaXIOo .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-uzSdRaXIOo .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-uzSdRaXIOo .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-uzSdRaXIOo .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-uzSdRaXIOo .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-uzSdRaXIOo .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-uzSdRaXIOo .carousel {
  width: 100%;
}
.cid-uzSdRaXIOo .modal-backdrop.in {
  opacity: 0.8;
}
.cid-uzSdRaXIOo .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-uzSdRaXIOo .modal.fade .modal-dialog,
.cid-uzSdRaXIOo .modal.in .modal-dialog {
  transform: none;
}
.cid-uzSdRaXIOo .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-uzSdRaXIOo H6 {
  text-align: center;
}
.cid-uzSBP1Kx46 {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uzSBP1Kx46 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uzSBP1Kx46 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uzSBV3u83g {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uzSBV3u83g .video-wrapper iframe {
  width: 100%;
}
.cid-uzSBV3u83g .mbr-section-title,
.cid-uzSBV3u83g .mbr-section-subtitle,
.cid-uzSBV3u83g .mbr-text {
  text-align: center;
}
.cid-uzSBV3u83g .mbr-section-subtitle {
  text-align: center;
}
.cid-uzZ6K5bELL {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uzZ6K5bELL .video-wrapper iframe {
  width: 100%;
}
.cid-uzZ6K5bELL .mbr-section-title,
.cid-uzZ6K5bELL .mbr-section-subtitle,
.cid-uzZ6K5bELL .mbr-text {
  text-align: center;
}
.cid-uzZ6K5bELL .mbr-section-subtitle {
  text-align: center;
}
.cid-uzZ6Sm8XoX {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uzZ6Sm8XoX .video-wrapper iframe {
  width: 100%;
}
.cid-uzZ6Sm8XoX .mbr-section-title,
.cid-uzZ6Sm8XoX .mbr-section-subtitle,
.cid-uzZ6Sm8XoX .mbr-text {
  text-align: center;
}
.cid-uzZ6Sm8XoX .mbr-section-subtitle {
  text-align: center;
}
.cid-uzSJtNtf8A {
  padding-top: 0rem;
  padding-bottom: 4rem;
  background-color: #ffffff;
}
.cid-uzSJtNtf8A .video-wrapper iframe {
  width: 100%;
}
.cid-uzSJtNtf8A .mbr-section-title,
.cid-uzSJtNtf8A .mbr-section-subtitle,
.cid-uzSJtNtf8A .mbr-text {
  text-align: center;
}
.cid-uzSJtNtf8A .mbr-section-subtitle {
  text-align: center;
}
.cid-uzN9dEhEAQ {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-image: url("../../../assets/images/bg15-1920x1080.jpg");
}
.cid-uzN9dEhEAQ .mbr-fallback-image.disabled {
  display: none;
}
.cid-uzN9dEhEAQ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uzN9dEhEAQ .item {
  margin-bottom: 2rem;
}
@media (max-width: 767px) {
  .cid-uzN9dEhEAQ .item {
    margin-bottom: 1rem;
  }
}
.cid-uzN9dEhEAQ .item-wrapper {
  position: relative;
}
.cid-uzN9dEhEAQ .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid transparent;
  border-radius: 50%;
  opacity: 0;
  color: #464845 !important;
  transform: translateX(-50%) translateY(-50%);
  background-color: #edefea !important;
  transition: 0.2s;
}
.cid-uzN9dEhEAQ .item-wrapper:hover .icon-wrapper {
  opacity: 1;
}
.cid-uzN9dEhEAQ .carousel-control,
.cid-uzN9dEhEAQ .close {
  background: #1b1b1b;
}
.cid-uzN9dEhEAQ .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-uzN9dEhEAQ .carousel-control-prev span {
  margin-right: 5px;
}
.cid-uzN9dEhEAQ .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-uzN9dEhEAQ .carousel-control-next span {
  margin-left: 5px;
}
.cid-uzN9dEhEAQ .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  font-family: 'Moririse2';
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-uzN9dEhEAQ .close::before {
  content: '\e91a';
}
.cid-uzN9dEhEAQ .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-uzN9dEhEAQ .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-uzN9dEhEAQ .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uzN9dEhEAQ .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-uzN9dEhEAQ .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-uzN9dEhEAQ .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-uzN9dEhEAQ .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-uzN9dEhEAQ .carousel-indicators li.active,
.cid-uzN9dEhEAQ .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-uzN9dEhEAQ .carousel-indicators li::after,
.cid-uzN9dEhEAQ .carousel-indicators li::before {
  content: none;
}
.cid-uzN9dEhEAQ .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-uzN9dEhEAQ .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-uzN9dEhEAQ .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-uzN9dEhEAQ .carousel-indicators {
    display: none;
  }
}
.cid-uzN9dEhEAQ .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-uzN9dEhEAQ .carousel-inner > .active {
  display: block;
}
.cid-uzN9dEhEAQ .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uzN9dEhEAQ .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-uzN9dEhEAQ .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-uzN9dEhEAQ .carousel-control,
  .cid-uzN9dEhEAQ .carousel-indicators,
  .cid-uzN9dEhEAQ .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-uzN9dEhEAQ .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-uzN9dEhEAQ .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-uzN9dEhEAQ .carousel-indicators .active,
.cid-uzN9dEhEAQ .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-uzN9dEhEAQ .carousel-indicators .active {
  background: #fff;
}
.cid-uzN9dEhEAQ .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-uzN9dEhEAQ .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-uzN9dEhEAQ .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-uzN9dEhEAQ .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-uzN9dEhEAQ .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-uzN9dEhEAQ .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-uzN9dEhEAQ .carousel {
  width: 100%;
}
.cid-uzN9dEhEAQ .modal-backdrop.in {
  opacity: 0.8;
}
.cid-uzN9dEhEAQ .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-uzN9dEhEAQ .modal.fade .modal-dialog,
.cid-uzN9dEhEAQ .modal.in .modal-dialog {
  transform: none;
}
.cid-uzN9dEhEAQ .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-uzN9dEhEAQ .content-head {
  max-width: 800px;
}
.cid-uzN9dEhEAQ H3 {
  text-align: center;
}
.cid-uzN9dEhEAQ H4 {
  text-align: center;
}
.cid-uzN9dF3aQg {
  padding-top: 0rem;
  padding-bottom: 0rem;
  position: relative;
  overflow: hidden;
  background-color: #f4f2ef;
}
.cid-uzN9dF3aQg .border-wrap {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 1000vh;
  height: 1px;
  background-color: #b89c23;
}
.cid-uzN9dF3aQg .mbr-fallback-image.disabled {
  display: none;
}
.cid-uzN9dF3aQg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uzN9dF3aQg .content-wrap {
  margin: 0;
}
.cid-uzN9dF3aQg .content-wrap .card {
  padding: 0;
}
.cid-uzN9dF3aQg .image-wrapper {
  height: 100%;
  border-right: 1px solid #b89c23;
}
@media (max-width: 992px) {
  .cid-uzN9dF3aQg .image-wrapper {
    border-right: none;
    border-bottom: 1px solid #b89c23;
  }
}
.cid-uzN9dF3aQg .image-wrapper img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-uzN9dF3aQg .image-wrapper img {
    height: 350px;
    object-fit: cover;
  }
}
.cid-uzN9dF3aQg .content-wrapper {
  padding: 40px 72px;
}
@media (max-width: 1640px) {
  .cid-uzN9dF3aQg .content-wrapper {
    padding: 40px 24px;
  }
}
@media (max-width: 992px) {
  .cid-uzN9dF3aQg .content-wrapper {
    padding: 40px 0;
  }
}
.cid-uzN9dF3aQg .content-wrapper .mbr-section-title {
  margin-bottom: 54px;
}
@media (max-width: 992px) {
  .cid-uzN9dF3aQg .content-wrapper .mbr-section-title {
    margin-bottom: 40px;
  }
}
.cid-uzN9dF3aQg .content-wrapper .form-wrapper .dragArea.row {
  position: relative;
  z-index: 1;
}
.cid-uzN9dF3aQg .content-wrapper .form-wrapper .dragArea.row .form-group {
  margin-bottom: 20px !important;
}
.cid-uzN9dF3aQg .content-wrapper .form-wrapper .dragArea.row .form-group .form-control-label {
  width: 100%;
  margin-bottom: 8px;
}
.cid-uzN9dF3aQg .content-wrapper .form-wrapper .dragArea.row .form-group .form-control {
  position: relative;
  z-index: 1;
  padding: 16px 25px;
  border: 2px solid #fc5000 !important;
  box-shadow: 4px 3px 0 0 #fc5000;
  background-color: transparent;
  line-height: 1 !important;
}
.cid-uzN9dF3aQg .content-wrapper .form-wrapper .dragArea.row .form-group .form-control:hover,
.cid-uzN9dF3aQg .content-wrapper .form-wrapper .dragArea.row .form-group .form-control:focus {
  border: 2px solid #fc5000 !important;
}
.cid-uzN9dF3aQg .content-wrapper .form-wrapper .dragArea.row .form-group .form-control::placeholder {
  color: #fc5000;
  opacity: .6;
}
.cid-uzN9dF3aQg .content-wrapper .form-wrapper .dragArea.row .form-group textarea {
  min-height: 100px;
}
.cid-uzN9dF3aQg .content-wrapper .form-wrapper .dragArea.row .form-group .form-check {
  padding-left: 2.3em;
  margin-bottom: 16px;
}
.cid-uzN9dF3aQg .content-wrapper .form-wrapper .dragArea.row .form-group .form-check .form-check-input {
  background-color: #fc5000;
  border-color: #fc5000;
}
.cid-uzN9dF3aQg .content-wrapper .form-wrapper .dragArea.row .mbr-section-btn {
  width: 100%;
}
.cid-uzN9dF3aQg .mbr-section-title {
  color: #150764;
}
.cid-uzN9dF3aQg label {
  color: #150764;
}
.cid-uzN9dF3aQg .mbr-section-title,
.cid-uzN9dF3aQg .mbr-section-btn {
  text-align: center;
  color: #000000;
}
.cid-uzN9dF3aQg .mbr-text {
  text-align: center;
}
.cid-uB6S3cLAuR {
  padding-top: 75px;
  padding-bottom: 0px;
  background-color: #222222;
}
.cid-uB6S3cLAuR section {
  position: relative;
}
.cid-uB6S3cLAuR h4 {
  margin: 0;
}
.cid-uB6S3cLAuR img {
  height: 100px;
  padding-rigth: 8px;
}
.cid-uB6S3cLAuR a {
  font-weight: 300;
}
.cid-uB6S3cLAuR .img1 {
  color: #fc5000;
}
.cid-uB6S3cLAuR .img2 {
  color: #fc5000;
}
.cid-uB6S3cLAuR .line {
  width: 35px;
  height: 3px;
  display: inline-block;
  background: #fc5000;
  transition: background 0.3s;
  margin-bottom: 2rem;
}
.cid-uB6S3cLAuR .media-wrap {
  display: flex;
  margin-bottom: 1rem;
  align-items: center;
}
@media (max-width: 992px) {
  .cid-uB6S3cLAuR .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-uB6S3cLAuR .item,
.cid-uB6S3cLAuR .link {
  display: flex;
  align-items: center;
  padding-bottom: 0.5rem;
  margin-bottom: 0.6rem;
}
.cid-uB6S3cLAuR .item h4,
.cid-uB6S3cLAuR .link h4 {
  padding-left: 10px;
  margin: 0;
}
.cid-uB6S3cLAuR .link {
  border-bottom: 1px solid #4a535e;
}
@media (max-width: 767px) {
  .cid-uB6S3cLAuR .item {
    justify-content: center;
  }
}
.cid-uB6S3cLAuR .item-title {
  color: #bbbbbb;
  text-align: left;
}
.cid-uB6S3cLAuR .text1 {
  text-align: left;
}
.cid-uB6S3cLAuR .link-title {
  text-align: left;
}
.cid-uzN9dG2WJO {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #222222;
}
.cid-uzN9dG2WJO .mbr-text {
  color: #f6f6ef;
}
.cid-uzN9viIhpi .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-uzN9viIhpi .nav-item:focus,
.cid-uzN9viIhpi .nav-link:focus {
  outline: none;
}
.cid-uzN9viIhpi .navbar-short {
  box-shadow: 0px 0px 10px 0px rgba(150, 150, 150, 0.3);
}
.cid-uzN9viIhpi .dropdown .dropdown-menu .dropdown-item {
  font-weight: 700 !important;
  padding: 0 !important;
  border-bottom: 1px solid lightgray;
  margin: 0.5rem 1rem !important;
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-uzN9viIhpi .dropdown .dropdown-menu .dropdown-item:hover,
.cid-uzN9viIhpi .dropdown .dropdown-menu .dropdown-item:active,
.cid-uzN9viIhpi .dropdown .dropdown-menu .dropdown-item:focus {
  color: #fc5000 !important;
}
.cid-uzN9viIhpi .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uzN9viIhpi .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-uzN9viIhpi .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-uzN9viIhpi .navbar-caption:hover {
  color: inherit !important;
}
.cid-uzN9viIhpi .container {
  max-width: 1380px;
}
.cid-uzN9viIhpi .nav-dropdown .link {
  padding: 0.8rem 0 !important;
  margin: 0rem 1.5rem !important;
}
.cid-uzN9viIhpi .nav-link {
  font-weight: 700 !important;
  border-bottom: 3px solid transparent;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.cid-uzN9viIhpi .nav-link:hover,
.cid-uzN9viIhpi .nav-link:active,
.cid-uzN9viIhpi .nav-link:focus {
  border-bottom: 3px solid #fc5000;
  color: #fc5000 !important;
}
.cid-uzN9viIhpi .navbar {
  min-height: 77px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  background: #ffffff;
}
.cid-uzN9viIhpi .navbar.opened {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  background: #ffffff !important;
}
.cid-uzN9viIhpi .navbar .dropdown-item {
  padding: 0.235rem 1.5rem;
}
.cid-uzN9viIhpi .navbar .navbar-collapse {
  -webkit-box-pack: end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-uzN9viIhpi .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uzN9viIhpi .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uzN9viIhpi .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-uzN9viIhpi .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-uzN9viIhpi .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uzN9viIhpi .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uzN9viIhpi .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle='dropdown-submenu']:after {
  margin-left: 0.25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-uzN9viIhpi .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uzN9viIhpi .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uzN9viIhpi .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uzN9viIhpi .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uzN9viIhpi .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uzN9viIhpi .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-uzN9viIhpi .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uzN9viIhpi .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uzN9viIhpi .navbar .dropdown-menu .dropdown-toggle[data-toggle='dropdown-submenu']:after {
    margin-left: 0.25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-uzN9viIhpi .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-uzN9viIhpi .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uzN9viIhpi .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uzN9viIhpi .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-uzN9viIhpi .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uzN9viIhpi .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uzN9viIhpi .navbar.navbar-short {
  background: #ffffff !important;
  min-height: 60px;
}
.cid-uzN9viIhpi .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-uzN9viIhpi .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-uzN9viIhpi .icons-menu span {
  color: #ed6436 !important;
}
.cid-uzN9viIhpi .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uzN9viIhpi .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  -webkit-transition: none;
  transition: none;
  margin: 0 !important;
}
.cid-uzN9viIhpi .navbar-brand {
  flex-shrink: 0;
  -webkit-box-align: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uzN9viIhpi .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uzN9viIhpi .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uzN9viIhpi .dropdown-item.active,
.cid-uzN9viIhpi .dropdown-item:active {
  background-color: transparent;
}
.cid-uzN9viIhpi .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uzN9viIhpi .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uzN9viIhpi .nav-dropdown .link.dropdown-toggle[aria-expanded='true'] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uzN9viIhpi .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-uzN9viIhpi .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uzN9viIhpi .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uzN9viIhpi ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uzN9viIhpi .navbar-buttons {
  text-align: center;
}
.cid-uzN9viIhpi button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-uzN9viIhpi button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #181818;
}
.cid-uzN9viIhpi button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.cid-uzN9viIhpi button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  -webkit-transition: all 0.15s;
  transition: all 0.15s;
}
.cid-uzN9viIhpi button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  -webkit-transition: all 0.15s;
  transition: all 0.15s;
}
.cid-uzN9viIhpi button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.cid-uzN9viIhpi nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.cid-uzN9viIhpi nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  -webkit-transition: all 0.25s;
  transition: all 0.25s;
}
.cid-uzN9viIhpi nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  -webkit-transition: all 0.25s;
  transition: all 0.25s;
}
.cid-uzN9viIhpi nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.cid-uzN9viIhpi .navbar-dropdown {
  padding: 0.5rem 1rem;
  position: fixed;
}
.cid-uzN9viIhpi a.nav-link {
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: center;
  justify-content: center;
}
.cid-uzN9viIhpi .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uzN9viIhpi .icons-menu {
  flex-wrap: wrap;
  display: flex;
  -webkit-box-pack: center;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  text-align: center;
}
.cid-uzN9viIhpi .icons-menu span {
  font-size: 20px;
  color: #ffffff;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uzN9viIhpi .navbar {
    height: 77px;
  }
  .cid-uzN9viIhpi .navbar.opened {
    height: auto;
  }
  .cid-uzN9viIhpi .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uzNhtzwRMK {
  padding-top: 6rem;
  padding-bottom: 0rem;
  background-color: #fef8f5;
}
.cid-uzNhtzwRMK .content_block {
  padding: 60px 15px;
  padding-right: 20%;
}
.cid-uzNhtzwRMK .content_block:hover .mbr-section-title a {
  color: #ff6666 !important;
}
.cid-uzNhtzwRMK .card_topic,
.cid-uzNhtzwRMK .mbr-section-subtitle {
  margin-bottom: 12px;
}
.cid-uzNhtzwRMK .card_topic .mbr-iconfont {
  font-size: 1rem;
  color: #ff6666;
  margin-left: 10px;
  margin-right: 3px;
}
.cid-uzNhtzwRMK .image {
  position: relative;
}
.cid-uzNhtzwRMK .image:before {
  content: "";
  position: absolute;
  width: 60%;
  height: 100%;
  right: -1px;
  background-image: linear-gradient(to right, rgba(255, 255, 255, 0), #fef8f5);
  z-index: 1;
  pointer-events: none;
}
.cid-uzNhtzwRMK .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-uzNhtzwRMK .mbr-section-btn .btn-secondary-outline {
  padding: 3px 0;
  margin-bottom: 0;
  border: none !important;
  background-color: transparent !important;
}
.cid-uzNhtzwRMK .mbr-section-btn .btn-secondary-outline:hover,
.cid-uzNhtzwRMK .mbr-section-btn .btn-secondary-outline .active,
.cid-uzNhtzwRMK .mbr-section-btn .btn-secondary-outline:focus {
  color: #fc5000 !important;
}
.cid-uzNhtzwRMK .category_content {
  opacity: .8;
}
@media (max-width: 991px) {
  .cid-uzNhtzwRMK .content_block {
    padding: 30px 15px;
  }
  .cid-uzNhtzwRMK .mbr-figure {
    padding: 0;
  }
  .cid-uzNhtzwRMK .image:before {
    width: 100%;
    height: 60%;
    bottom: 0;
    left: 0;
    background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0), rgba(254, 248, 245, 0.99));
  }
}
.cid-uzNtYfcTkn {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #ffffff;
}
.cid-uzNtYfcTkn .mbr-section-subtitle {
  color: #14191e;
}
.cid-uzNtYfcTkn .mbr-text {
  color: #777777;
}
.cid-uzNtYfcTkn ul {
  margin: 0;
  list-style: none;
  padding-left: 1rem;
}
.cid-uzNtYfcTkn ul li {
  margin-bottom: 1rem;
  position: relative;
  list-style: none;
  padding-left: 1rem;
}
.cid-uzNtYfcTkn ul li:before {
  position: absolute;
  left: -20px;
  content: "✓";
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fc5000;
  width: 25px;
  height: 25px;
}
.cid-uzNtYfcTkn .mbr-list {
  color: #777777;
}
.cid-uzNBApxxuB {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background: #ffffff;
}
.cid-uzNBApxxuB .mbr-fallback-image.disabled {
  display: none;
}
.cid-uzNBApxxuB .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uzNBApxxuB .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  height: 390px;
  min-width: 280px;
  max-width: 440px;
  overflow: hidden;
}
@media (max-width: 768px) {
  .cid-uzNBApxxuB .embla__slide {
    height: 320px;
    min-width: 70%;
    max-width: initial;
    margin-left: 1rem !important;
    margin-right: 1rem !important;
  }
}
.cid-uzNBApxxuB .embla__slide .slider-link:hover img {
  transform: scale(1);
  transition: 0.7s ease-out;
}
.cid-uzNBApxxuB .embla__slide .slider-link img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.04);
}
.cid-uzNBApxxuB .embla__button--next,
.cid-uzNBApxxuB .embla__button--prev {
  display: flex;
}
.cid-uzNBApxxuB .embla__button {
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: transparent;
  color: #fc5000;
  border: none;
  border-radius: 50%;
  transition: all 0.3s;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-uzNBApxxuB .embla__button .mbr-iconfont {
  font-size: 48px;
}
@media (max-width: 768px) {
  .cid-uzNBApxxuB .embla__button .mbr-iconfont {
    font-size: 22px;
  }
}
@media (max-width: 768px) {
  .cid-uzNBApxxuB .embla__button {
    display: none;
  }
}
.cid-uzNBApxxuB .embla__button:disabled {
  cursor: default;
  display: none;
}
.cid-uzNBApxxuB .embla__button:hover {
  background: transparent;
  color: #fc5000;
  border: none;
  opacity: .65;
}
.cid-uzNBApxxuB .embla__button.embla__button--prev {
  left: 0;
  margin-left: 0;
}
.cid-uzNBApxxuB .embla__button.embla__button--next {
  right: 0;
  margin-right: 0;
}
@media (max-width: 767px) {
  .cid-uzNBApxxuB .embla__button {
    top: auto;
    bottom: -5rem;
  }
}
.cid-uzNBApxxuB .embla {
  position: relative;
  width: 100%;
}
.cid-uzNBApxxuB .embla__viewport {
  overflow: hidden;
  width: 100%;
}
.cid-uzNBApxxuB .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-uzNBApxxuB .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-uzNBApxxuB .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-uzN9vkAio7 {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-image: url("../../../assets/images/bg15-1920x1080.jpg");
}
.cid-uzN9vkAio7 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uzN9vkAio7 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uzN9vkAio7 .item {
  margin-bottom: 2rem;
}
@media (max-width: 767px) {
  .cid-uzN9vkAio7 .item {
    margin-bottom: 1rem;
  }
}
.cid-uzN9vkAio7 .item-wrapper {
  position: relative;
}
.cid-uzN9vkAio7 .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid transparent;
  border-radius: 50%;
  opacity: 0;
  color: #464845 !important;
  transform: translateX(-50%) translateY(-50%);
  background-color: #edefea !important;
  transition: 0.2s;
}
.cid-uzN9vkAio7 .item-wrapper:hover .icon-wrapper {
  opacity: 1;
}
.cid-uzN9vkAio7 .carousel-control,
.cid-uzN9vkAio7 .close {
  background: #1b1b1b;
}
.cid-uzN9vkAio7 .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-uzN9vkAio7 .carousel-control-prev span {
  margin-right: 5px;
}
.cid-uzN9vkAio7 .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-uzN9vkAio7 .carousel-control-next span {
  margin-left: 5px;
}
.cid-uzN9vkAio7 .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  font-family: 'Moririse2';
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-uzN9vkAio7 .close::before {
  content: '\e91a';
}
.cid-uzN9vkAio7 .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-uzN9vkAio7 .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-uzN9vkAio7 .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uzN9vkAio7 .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-uzN9vkAio7 .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-uzN9vkAio7 .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-uzN9vkAio7 .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-uzN9vkAio7 .carousel-indicators li.active,
.cid-uzN9vkAio7 .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-uzN9vkAio7 .carousel-indicators li::after,
.cid-uzN9vkAio7 .carousel-indicators li::before {
  content: none;
}
.cid-uzN9vkAio7 .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-uzN9vkAio7 .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-uzN9vkAio7 .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-uzN9vkAio7 .carousel-indicators {
    display: none;
  }
}
.cid-uzN9vkAio7 .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-uzN9vkAio7 .carousel-inner > .active {
  display: block;
}
.cid-uzN9vkAio7 .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uzN9vkAio7 .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-uzN9vkAio7 .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-uzN9vkAio7 .carousel-control,
  .cid-uzN9vkAio7 .carousel-indicators,
  .cid-uzN9vkAio7 .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-uzN9vkAio7 .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-uzN9vkAio7 .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-uzN9vkAio7 .carousel-indicators .active,
.cid-uzN9vkAio7 .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-uzN9vkAio7 .carousel-indicators .active {
  background: #fff;
}
.cid-uzN9vkAio7 .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-uzN9vkAio7 .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-uzN9vkAio7 .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-uzN9vkAio7 .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-uzN9vkAio7 .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-uzN9vkAio7 .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-uzN9vkAio7 .carousel {
  width: 100%;
}
.cid-uzN9vkAio7 .modal-backdrop.in {
  opacity: 0.8;
}
.cid-uzN9vkAio7 .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-uzN9vkAio7 .modal.fade .modal-dialog,
.cid-uzN9vkAio7 .modal.in .modal-dialog {
  transform: none;
}
.cid-uzN9vkAio7 .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-uzN9vkAio7 .content-head {
  max-width: 800px;
}
.cid-uzN9vkAio7 H3 {
  text-align: center;
}
.cid-uzN9vkAio7 H4 {
  text-align: center;
}
.cid-uzN9vls2Vx {
  padding-top: 0rem;
  padding-bottom: 0rem;
  position: relative;
  overflow: hidden;
  background-color: #f4f2ef;
}
.cid-uzN9vls2Vx .border-wrap {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 1000vh;
  height: 1px;
  background-color: #b89c23;
}
.cid-uzN9vls2Vx .mbr-fallback-image.disabled {
  display: none;
}
.cid-uzN9vls2Vx .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uzN9vls2Vx .content-wrap {
  margin: 0;
}
.cid-uzN9vls2Vx .content-wrap .card {
  padding: 0;
}
.cid-uzN9vls2Vx .image-wrapper {
  height: 100%;
  border-right: 1px solid #b89c23;
}
@media (max-width: 992px) {
  .cid-uzN9vls2Vx .image-wrapper {
    border-right: none;
    border-bottom: 1px solid #b89c23;
  }
}
.cid-uzN9vls2Vx .image-wrapper img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-uzN9vls2Vx .image-wrapper img {
    height: 350px;
    object-fit: cover;
  }
}
.cid-uzN9vls2Vx .content-wrapper {
  padding: 40px 72px;
}
@media (max-width: 1640px) {
  .cid-uzN9vls2Vx .content-wrapper {
    padding: 40px 24px;
  }
}
@media (max-width: 992px) {
  .cid-uzN9vls2Vx .content-wrapper {
    padding: 40px 0;
  }
}
.cid-uzN9vls2Vx .content-wrapper .mbr-section-title {
  margin-bottom: 54px;
}
@media (max-width: 992px) {
  .cid-uzN9vls2Vx .content-wrapper .mbr-section-title {
    margin-bottom: 40px;
  }
}
.cid-uzN9vls2Vx .content-wrapper .form-wrapper .dragArea.row {
  position: relative;
  z-index: 1;
}
.cid-uzN9vls2Vx .content-wrapper .form-wrapper .dragArea.row .form-group {
  margin-bottom: 20px !important;
}
.cid-uzN9vls2Vx .content-wrapper .form-wrapper .dragArea.row .form-group .form-control-label {
  width: 100%;
  margin-bottom: 8px;
}
.cid-uzN9vls2Vx .content-wrapper .form-wrapper .dragArea.row .form-group .form-control {
  position: relative;
  z-index: 1;
  padding: 16px 25px;
  border: 2px solid #fc5000 !important;
  box-shadow: 4px 3px 0 0 #fc5000;
  background-color: transparent;
  line-height: 1 !important;
}
.cid-uzN9vls2Vx .content-wrapper .form-wrapper .dragArea.row .form-group .form-control:hover,
.cid-uzN9vls2Vx .content-wrapper .form-wrapper .dragArea.row .form-group .form-control:focus {
  border: 2px solid #fc5000 !important;
}
.cid-uzN9vls2Vx .content-wrapper .form-wrapper .dragArea.row .form-group .form-control::placeholder {
  color: #fc5000;
  opacity: .6;
}
.cid-uzN9vls2Vx .content-wrapper .form-wrapper .dragArea.row .form-group textarea {
  min-height: 100px;
}
.cid-uzN9vls2Vx .content-wrapper .form-wrapper .dragArea.row .form-group .form-check {
  padding-left: 2.3em;
  margin-bottom: 16px;
}
.cid-uzN9vls2Vx .content-wrapper .form-wrapper .dragArea.row .form-group .form-check .form-check-input {
  background-color: #fc5000;
  border-color: #fc5000;
}
.cid-uzN9vls2Vx .content-wrapper .form-wrapper .dragArea.row .mbr-section-btn {
  width: 100%;
}
.cid-uzN9vls2Vx .mbr-section-title {
  color: #150764;
}
.cid-uzN9vls2Vx label {
  color: #150764;
}
.cid-uzN9vls2Vx .mbr-section-title,
.cid-uzN9vls2Vx .mbr-section-btn {
  text-align: center;
  color: #000000;
}
.cid-uzN9vls2Vx .mbr-text {
  text-align: center;
}
.cid-uB6S6NBp8w {
  padding-top: 75px;
  padding-bottom: 0px;
  background-color: #222222;
}
.cid-uB6S6NBp8w section {
  position: relative;
}
.cid-uB6S6NBp8w h4 {
  margin: 0;
}
.cid-uB6S6NBp8w img {
  height: 100px;
  padding-rigth: 8px;
}
.cid-uB6S6NBp8w a {
  font-weight: 300;
}
.cid-uB6S6NBp8w .img1 {
  color: #fc5000;
}
.cid-uB6S6NBp8w .img2 {
  color: #fc5000;
}
.cid-uB6S6NBp8w .line {
  width: 35px;
  height: 3px;
  display: inline-block;
  background: #fc5000;
  transition: background 0.3s;
  margin-bottom: 2rem;
}
.cid-uB6S6NBp8w .media-wrap {
  display: flex;
  margin-bottom: 1rem;
  align-items: center;
}
@media (max-width: 992px) {
  .cid-uB6S6NBp8w .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-uB6S6NBp8w .item,
.cid-uB6S6NBp8w .link {
  display: flex;
  align-items: center;
  padding-bottom: 0.5rem;
  margin-bottom: 0.6rem;
}
.cid-uB6S6NBp8w .item h4,
.cid-uB6S6NBp8w .link h4 {
  padding-left: 10px;
  margin: 0;
}
.cid-uB6S6NBp8w .link {
  border-bottom: 1px solid #4a535e;
}
@media (max-width: 767px) {
  .cid-uB6S6NBp8w .item {
    justify-content: center;
  }
}
.cid-uB6S6NBp8w .item-title {
  color: #bbbbbb;
  text-align: left;
}
.cid-uB6S6NBp8w .text1 {
  text-align: left;
}
.cid-uB6S6NBp8w .link-title {
  text-align: left;
}
.cid-uzN9vmvfou {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #222222;
}
.cid-uzN9vmvfou .mbr-text {
  color: #f6f6ef;
}
.cid-uzN9RWJpsQ .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-uzN9RWJpsQ .nav-item:focus,
.cid-uzN9RWJpsQ .nav-link:focus {
  outline: none;
}
.cid-uzN9RWJpsQ .navbar-short {
  box-shadow: 0px 0px 10px 0px rgba(150, 150, 150, 0.3);
}
.cid-uzN9RWJpsQ .dropdown .dropdown-menu .dropdown-item {
  font-weight: 700 !important;
  padding: 0 !important;
  border-bottom: 1px solid lightgray;
  margin: 0.5rem 1rem !important;
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-uzN9RWJpsQ .dropdown .dropdown-menu .dropdown-item:hover,
.cid-uzN9RWJpsQ .dropdown .dropdown-menu .dropdown-item:active,
.cid-uzN9RWJpsQ .dropdown .dropdown-menu .dropdown-item:focus {
  color: #fc5000 !important;
}
.cid-uzN9RWJpsQ .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uzN9RWJpsQ .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-uzN9RWJpsQ .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-uzN9RWJpsQ .navbar-caption:hover {
  color: inherit !important;
}
.cid-uzN9RWJpsQ .container {
  max-width: 1380px;
}
.cid-uzN9RWJpsQ .nav-dropdown .link {
  padding: 0.8rem 0 !important;
  margin: 0rem 1.5rem !important;
}
.cid-uzN9RWJpsQ .nav-link {
  font-weight: 700 !important;
  border-bottom: 3px solid transparent;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.cid-uzN9RWJpsQ .nav-link:hover,
.cid-uzN9RWJpsQ .nav-link:active,
.cid-uzN9RWJpsQ .nav-link:focus {
  border-bottom: 3px solid #fc5000;
  color: #fc5000 !important;
}
.cid-uzN9RWJpsQ .navbar {
  min-height: 77px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  background: #ffffff;
}
.cid-uzN9RWJpsQ .navbar.opened {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  background: #ffffff !important;
}
.cid-uzN9RWJpsQ .navbar .dropdown-item {
  padding: 0.235rem 1.5rem;
}
.cid-uzN9RWJpsQ .navbar .navbar-collapse {
  -webkit-box-pack: end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-uzN9RWJpsQ .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uzN9RWJpsQ .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uzN9RWJpsQ .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-uzN9RWJpsQ .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-uzN9RWJpsQ .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uzN9RWJpsQ .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uzN9RWJpsQ .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle='dropdown-submenu']:after {
  margin-left: 0.25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-uzN9RWJpsQ .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uzN9RWJpsQ .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uzN9RWJpsQ .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uzN9RWJpsQ .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uzN9RWJpsQ .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uzN9RWJpsQ .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-uzN9RWJpsQ .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uzN9RWJpsQ .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uzN9RWJpsQ .navbar .dropdown-menu .dropdown-toggle[data-toggle='dropdown-submenu']:after {
    margin-left: 0.25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-uzN9RWJpsQ .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-uzN9RWJpsQ .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uzN9RWJpsQ .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uzN9RWJpsQ .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-uzN9RWJpsQ .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uzN9RWJpsQ .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uzN9RWJpsQ .navbar.navbar-short {
  background: #ffffff !important;
  min-height: 60px;
}
.cid-uzN9RWJpsQ .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-uzN9RWJpsQ .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-uzN9RWJpsQ .icons-menu span {
  color: #ed6436 !important;
}
.cid-uzN9RWJpsQ .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uzN9RWJpsQ .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  -webkit-transition: none;
  transition: none;
  margin: 0 !important;
}
.cid-uzN9RWJpsQ .navbar-brand {
  flex-shrink: 0;
  -webkit-box-align: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uzN9RWJpsQ .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uzN9RWJpsQ .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uzN9RWJpsQ .dropdown-item.active,
.cid-uzN9RWJpsQ .dropdown-item:active {
  background-color: transparent;
}
.cid-uzN9RWJpsQ .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uzN9RWJpsQ .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uzN9RWJpsQ .nav-dropdown .link.dropdown-toggle[aria-expanded='true'] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uzN9RWJpsQ .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-uzN9RWJpsQ .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uzN9RWJpsQ .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uzN9RWJpsQ ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uzN9RWJpsQ .navbar-buttons {
  text-align: center;
}
.cid-uzN9RWJpsQ button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-uzN9RWJpsQ button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #181818;
}
.cid-uzN9RWJpsQ button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.cid-uzN9RWJpsQ button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  -webkit-transition: all 0.15s;
  transition: all 0.15s;
}
.cid-uzN9RWJpsQ button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  -webkit-transition: all 0.15s;
  transition: all 0.15s;
}
.cid-uzN9RWJpsQ button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.cid-uzN9RWJpsQ nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.cid-uzN9RWJpsQ nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  -webkit-transition: all 0.25s;
  transition: all 0.25s;
}
.cid-uzN9RWJpsQ nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  -webkit-transition: all 0.25s;
  transition: all 0.25s;
}
.cid-uzN9RWJpsQ nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.cid-uzN9RWJpsQ .navbar-dropdown {
  padding: 0.5rem 1rem;
  position: fixed;
}
.cid-uzN9RWJpsQ a.nav-link {
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: center;
  justify-content: center;
}
.cid-uzN9RWJpsQ .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uzN9RWJpsQ .icons-menu {
  flex-wrap: wrap;
  display: flex;
  -webkit-box-pack: center;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  text-align: center;
}
.cid-uzN9RWJpsQ .icons-menu span {
  font-size: 20px;
  color: #ffffff;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uzN9RWJpsQ .navbar {
    height: 77px;
  }
  .cid-uzN9RWJpsQ .navbar.opened {
    height: auto;
  }
  .cid-uzN9RWJpsQ .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uzN9RYxO6l {
  padding-top: 10rem;
  padding-bottom: 4rem;
  background-image: url("../../../assets/images/bg15-1920x1080.jpg");
}
.cid-uzN9RYxO6l .mbr-fallback-image.disabled {
  display: none;
}
.cid-uzN9RYxO6l .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uzN9RYxO6l .item {
  margin-bottom: 2rem;
}
@media (max-width: 767px) {
  .cid-uzN9RYxO6l .item {
    margin-bottom: 1rem;
  }
}
.cid-uzN9RYxO6l .item-wrapper {
  position: relative;
}
.cid-uzN9RYxO6l .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid transparent;
  border-radius: 50%;
  opacity: 0;
  color: #464845 !important;
  transform: translateX(-50%) translateY(-50%);
  background-color: #edefea !important;
  transition: 0.2s;
}
.cid-uzN9RYxO6l .item-wrapper:hover .icon-wrapper {
  opacity: 1;
}
.cid-uzN9RYxO6l .carousel-control,
.cid-uzN9RYxO6l .close {
  background: #1b1b1b;
}
.cid-uzN9RYxO6l .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-uzN9RYxO6l .carousel-control-prev span {
  margin-right: 5px;
}
.cid-uzN9RYxO6l .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-uzN9RYxO6l .carousel-control-next span {
  margin-left: 5px;
}
.cid-uzN9RYxO6l .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  font-family: 'Moririse2';
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-uzN9RYxO6l .close::before {
  content: '\e91a';
}
.cid-uzN9RYxO6l .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-uzN9RYxO6l .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-uzN9RYxO6l .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uzN9RYxO6l .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-uzN9RYxO6l .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-uzN9RYxO6l .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-uzN9RYxO6l .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-uzN9RYxO6l .carousel-indicators li.active,
.cid-uzN9RYxO6l .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-uzN9RYxO6l .carousel-indicators li::after,
.cid-uzN9RYxO6l .carousel-indicators li::before {
  content: none;
}
.cid-uzN9RYxO6l .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-uzN9RYxO6l .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-uzN9RYxO6l .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-uzN9RYxO6l .carousel-indicators {
    display: none;
  }
}
.cid-uzN9RYxO6l .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-uzN9RYxO6l .carousel-inner > .active {
  display: block;
}
.cid-uzN9RYxO6l .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uzN9RYxO6l .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-uzN9RYxO6l .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-uzN9RYxO6l .carousel-control,
  .cid-uzN9RYxO6l .carousel-indicators,
  .cid-uzN9RYxO6l .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-uzN9RYxO6l .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-uzN9RYxO6l .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-uzN9RYxO6l .carousel-indicators .active,
.cid-uzN9RYxO6l .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-uzN9RYxO6l .carousel-indicators .active {
  background: #fff;
}
.cid-uzN9RYxO6l .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-uzN9RYxO6l .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-uzN9RYxO6l .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-uzN9RYxO6l .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-uzN9RYxO6l .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-uzN9RYxO6l .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-uzN9RYxO6l .carousel {
  width: 100%;
}
.cid-uzN9RYxO6l .modal-backdrop.in {
  opacity: 0.8;
}
.cid-uzN9RYxO6l .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-uzN9RYxO6l .modal.fade .modal-dialog,
.cid-uzN9RYxO6l .modal.in .modal-dialog {
  transform: none;
}
.cid-uzN9RYxO6l .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-uzN9RYxO6l .content-head {
  max-width: 800px;
}
.cid-uzN9RYxO6l H3 {
  text-align: center;
}
.cid-uzN9RYxO6l H4 {
  text-align: center;
}
.cid-uzN9RZugaY {
  padding-top: 0rem;
  padding-bottom: 0rem;
  position: relative;
  overflow: hidden;
  background-color: #f4f2ef;
}
.cid-uzN9RZugaY .border-wrap {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 1000vh;
  height: 1px;
  background-color: #b89c23;
}
.cid-uzN9RZugaY .mbr-fallback-image.disabled {
  display: none;
}
.cid-uzN9RZugaY .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uzN9RZugaY .content-wrap {
  margin: 0;
}
.cid-uzN9RZugaY .content-wrap .card {
  padding: 0;
}
.cid-uzN9RZugaY .image-wrapper {
  height: 100%;
  border-right: 1px solid #b89c23;
}
@media (max-width: 992px) {
  .cid-uzN9RZugaY .image-wrapper {
    border-right: none;
    border-bottom: 1px solid #b89c23;
  }
}
.cid-uzN9RZugaY .image-wrapper img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-uzN9RZugaY .image-wrapper img {
    height: 350px;
    object-fit: cover;
  }
}
.cid-uzN9RZugaY .content-wrapper {
  padding: 40px 72px;
}
@media (max-width: 1640px) {
  .cid-uzN9RZugaY .content-wrapper {
    padding: 40px 24px;
  }
}
@media (max-width: 992px) {
  .cid-uzN9RZugaY .content-wrapper {
    padding: 40px 0;
  }
}
.cid-uzN9RZugaY .content-wrapper .mbr-section-title {
  margin-bottom: 54px;
}
@media (max-width: 992px) {
  .cid-uzN9RZugaY .content-wrapper .mbr-section-title {
    margin-bottom: 40px;
  }
}
.cid-uzN9RZugaY .content-wrapper .form-wrapper .dragArea.row {
  position: relative;
  z-index: 1;
}
.cid-uzN9RZugaY .content-wrapper .form-wrapper .dragArea.row .form-group {
  margin-bottom: 20px !important;
}
.cid-uzN9RZugaY .content-wrapper .form-wrapper .dragArea.row .form-group .form-control-label {
  width: 100%;
  margin-bottom: 8px;
}
.cid-uzN9RZugaY .content-wrapper .form-wrapper .dragArea.row .form-group .form-control {
  position: relative;
  z-index: 1;
  padding: 16px 25px;
  border: 2px solid #fc5000 !important;
  box-shadow: 4px 3px 0 0 #fc5000;
  background-color: transparent;
  line-height: 1 !important;
}
.cid-uzN9RZugaY .content-wrapper .form-wrapper .dragArea.row .form-group .form-control:hover,
.cid-uzN9RZugaY .content-wrapper .form-wrapper .dragArea.row .form-group .form-control:focus {
  border: 2px solid #fc5000 !important;
}
.cid-uzN9RZugaY .content-wrapper .form-wrapper .dragArea.row .form-group .form-control::placeholder {
  color: #fc5000;
  opacity: .6;
}
.cid-uzN9RZugaY .content-wrapper .form-wrapper .dragArea.row .form-group textarea {
  min-height: 100px;
}
.cid-uzN9RZugaY .content-wrapper .form-wrapper .dragArea.row .form-group .form-check {
  padding-left: 2.3em;
  margin-bottom: 16px;
}
.cid-uzN9RZugaY .content-wrapper .form-wrapper .dragArea.row .form-group .form-check .form-check-input {
  background-color: #fc5000;
  border-color: #fc5000;
}
.cid-uzN9RZugaY .content-wrapper .form-wrapper .dragArea.row .mbr-section-btn {
  width: 100%;
}
.cid-uzN9RZugaY .mbr-section-title {
  color: #150764;
}
.cid-uzN9RZugaY label {
  color: #150764;
}
.cid-uzN9RZugaY .mbr-section-title,
.cid-uzN9RZugaY .mbr-section-btn {
  text-align: center;
  color: #000000;
}
.cid-uzN9RZugaY .mbr-text {
  text-align: center;
}
.cid-uB6S9rzpDW {
  padding-top: 75px;
  padding-bottom: 0px;
  background-color: #222222;
}
.cid-uB6S9rzpDW section {
  position: relative;
}
.cid-uB6S9rzpDW h4 {
  margin: 0;
}
.cid-uB6S9rzpDW img {
  height: 100px;
  padding-rigth: 8px;
}
.cid-uB6S9rzpDW a {
  font-weight: 300;
}
.cid-uB6S9rzpDW .img1 {
  color: #fc5000;
}
.cid-uB6S9rzpDW .img2 {
  color: #fc5000;
}
.cid-uB6S9rzpDW .line {
  width: 35px;
  height: 3px;
  display: inline-block;
  background: #fc5000;
  transition: background 0.3s;
  margin-bottom: 2rem;
}
.cid-uB6S9rzpDW .media-wrap {
  display: flex;
  margin-bottom: 1rem;
  align-items: center;
}
@media (max-width: 992px) {
  .cid-uB6S9rzpDW .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-uB6S9rzpDW .item,
.cid-uB6S9rzpDW .link {
  display: flex;
  align-items: center;
  padding-bottom: 0.5rem;
  margin-bottom: 0.6rem;
}
.cid-uB6S9rzpDW .item h4,
.cid-uB6S9rzpDW .link h4 {
  padding-left: 10px;
  margin: 0;
}
.cid-uB6S9rzpDW .link {
  border-bottom: 1px solid #4a535e;
}
@media (max-width: 767px) {
  .cid-uB6S9rzpDW .item {
    justify-content: center;
  }
}
.cid-uB6S9rzpDW .item-title {
  color: #bbbbbb;
  text-align: left;
}
.cid-uB6S9rzpDW .text1 {
  text-align: left;
}
.cid-uB6S9rzpDW .link-title {
  text-align: left;
}
.cid-uzN9S0tpid {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #222222;
}
.cid-uzN9S0tpid .mbr-text {
  color: #f6f6ef;
}
.cid-uzN9VI18YC .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-uzN9VI18YC .nav-item:focus,
.cid-uzN9VI18YC .nav-link:focus {
  outline: none;
}
.cid-uzN9VI18YC .navbar-short {
  box-shadow: 0px 0px 10px 0px rgba(150, 150, 150, 0.3);
}
.cid-uzN9VI18YC .dropdown .dropdown-menu .dropdown-item {
  font-weight: 700 !important;
  padding: 0 !important;
  border-bottom: 1px solid lightgray;
  margin: 0.5rem 1rem !important;
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-uzN9VI18YC .dropdown .dropdown-menu .dropdown-item:hover,
.cid-uzN9VI18YC .dropdown .dropdown-menu .dropdown-item:active,
.cid-uzN9VI18YC .dropdown .dropdown-menu .dropdown-item:focus {
  color: #fc5000 !important;
}
.cid-uzN9VI18YC .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uzN9VI18YC .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-uzN9VI18YC .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-uzN9VI18YC .navbar-caption:hover {
  color: inherit !important;
}
.cid-uzN9VI18YC .container {
  max-width: 1380px;
}
.cid-uzN9VI18YC .nav-dropdown .link {
  padding: 0.8rem 0 !important;
  margin: 0rem 1.5rem !important;
}
.cid-uzN9VI18YC .nav-link {
  font-weight: 700 !important;
  border-bottom: 3px solid transparent;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.cid-uzN9VI18YC .nav-link:hover,
.cid-uzN9VI18YC .nav-link:active,
.cid-uzN9VI18YC .nav-link:focus {
  border-bottom: 3px solid #fc5000;
  color: #fc5000 !important;
}
.cid-uzN9VI18YC .navbar {
  min-height: 77px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  background: #ffffff;
}
.cid-uzN9VI18YC .navbar.opened {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  background: #ffffff !important;
}
.cid-uzN9VI18YC .navbar .dropdown-item {
  padding: 0.235rem 1.5rem;
}
.cid-uzN9VI18YC .navbar .navbar-collapse {
  -webkit-box-pack: end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-uzN9VI18YC .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uzN9VI18YC .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uzN9VI18YC .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-uzN9VI18YC .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-uzN9VI18YC .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uzN9VI18YC .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uzN9VI18YC .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle='dropdown-submenu']:after {
  margin-left: 0.25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-uzN9VI18YC .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uzN9VI18YC .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uzN9VI18YC .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uzN9VI18YC .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uzN9VI18YC .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uzN9VI18YC .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-uzN9VI18YC .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uzN9VI18YC .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uzN9VI18YC .navbar .dropdown-menu .dropdown-toggle[data-toggle='dropdown-submenu']:after {
    margin-left: 0.25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-uzN9VI18YC .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-uzN9VI18YC .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uzN9VI18YC .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uzN9VI18YC .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-uzN9VI18YC .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uzN9VI18YC .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uzN9VI18YC .navbar.navbar-short {
  background: #ffffff !important;
  min-height: 60px;
}
.cid-uzN9VI18YC .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-uzN9VI18YC .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-uzN9VI18YC .icons-menu span {
  color: #ed6436 !important;
}
.cid-uzN9VI18YC .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uzN9VI18YC .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  -webkit-transition: none;
  transition: none;
  margin: 0 !important;
}
.cid-uzN9VI18YC .navbar-brand {
  flex-shrink: 0;
  -webkit-box-align: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uzN9VI18YC .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uzN9VI18YC .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uzN9VI18YC .dropdown-item.active,
.cid-uzN9VI18YC .dropdown-item:active {
  background-color: transparent;
}
.cid-uzN9VI18YC .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uzN9VI18YC .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uzN9VI18YC .nav-dropdown .link.dropdown-toggle[aria-expanded='true'] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uzN9VI18YC .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-uzN9VI18YC .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uzN9VI18YC .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uzN9VI18YC ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uzN9VI18YC .navbar-buttons {
  text-align: center;
}
.cid-uzN9VI18YC button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-uzN9VI18YC button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #181818;
}
.cid-uzN9VI18YC button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.cid-uzN9VI18YC button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  -webkit-transition: all 0.15s;
  transition: all 0.15s;
}
.cid-uzN9VI18YC button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  -webkit-transition: all 0.15s;
  transition: all 0.15s;
}
.cid-uzN9VI18YC button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.cid-uzN9VI18YC nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.cid-uzN9VI18YC nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  -webkit-transition: all 0.25s;
  transition: all 0.25s;
}
.cid-uzN9VI18YC nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  -webkit-transition: all 0.25s;
  transition: all 0.25s;
}
.cid-uzN9VI18YC nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.cid-uzN9VI18YC .navbar-dropdown {
  padding: 0.5rem 1rem;
  position: fixed;
}
.cid-uzN9VI18YC a.nav-link {
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: center;
  justify-content: center;
}
.cid-uzN9VI18YC .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uzN9VI18YC .icons-menu {
  flex-wrap: wrap;
  display: flex;
  -webkit-box-pack: center;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  text-align: center;
}
.cid-uzN9VI18YC .icons-menu span {
  font-size: 20px;
  color: #ffffff;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uzN9VI18YC .navbar {
    height: 77px;
  }
  .cid-uzN9VI18YC .navbar.opened {
    height: auto;
  }
  .cid-uzN9VI18YC .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uzN9VKLzli {
  padding-top: 9rem;
  padding-bottom: 0rem;
  position: relative;
  overflow: hidden;
  background-color: #f4f2ef;
}
.cid-uzN9VKLzli .border-wrap {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 1000vh;
  height: 1px;
  background-color: #b89c23;
}
.cid-uzN9VKLzli .mbr-fallback-image.disabled {
  display: none;
}
.cid-uzN9VKLzli .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uzN9VKLzli .content-wrap {
  margin: 0;
}
.cid-uzN9VKLzli .content-wrap .card {
  padding: 0;
}
.cid-uzN9VKLzli .image-wrapper {
  height: 100%;
  border-right: 1px solid #b89c23;
}
@media (max-width: 992px) {
  .cid-uzN9VKLzli .image-wrapper {
    border-right: none;
    border-bottom: 1px solid #b89c23;
  }
}
.cid-uzN9VKLzli .image-wrapper img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-uzN9VKLzli .image-wrapper img {
    height: 350px;
    object-fit: cover;
  }
}
.cid-uzN9VKLzli .content-wrapper {
  padding: 40px 72px;
}
@media (max-width: 1640px) {
  .cid-uzN9VKLzli .content-wrapper {
    padding: 40px 24px;
  }
}
@media (max-width: 992px) {
  .cid-uzN9VKLzli .content-wrapper {
    padding: 40px 0;
  }
}
.cid-uzN9VKLzli .content-wrapper .mbr-section-title {
  margin-bottom: 54px;
}
@media (max-width: 992px) {
  .cid-uzN9VKLzli .content-wrapper .mbr-section-title {
    margin-bottom: 40px;
  }
}
.cid-uzN9VKLzli .content-wrapper .form-wrapper .dragArea.row {
  position: relative;
  z-index: 1;
}
.cid-uzN9VKLzli .content-wrapper .form-wrapper .dragArea.row .form-group {
  margin-bottom: 20px !important;
}
.cid-uzN9VKLzli .content-wrapper .form-wrapper .dragArea.row .form-group .form-control-label {
  width: 100%;
  margin-bottom: 8px;
}
.cid-uzN9VKLzli .content-wrapper .form-wrapper .dragArea.row .form-group .form-control {
  position: relative;
  z-index: 1;
  padding: 16px 25px;
  border: 2px solid #fc5000 !important;
  box-shadow: 4px 3px 0 0 #fc5000;
  background-color: transparent;
  line-height: 1 !important;
}
.cid-uzN9VKLzli .content-wrapper .form-wrapper .dragArea.row .form-group .form-control:hover,
.cid-uzN9VKLzli .content-wrapper .form-wrapper .dragArea.row .form-group .form-control:focus {
  border: 2px solid #fc5000 !important;
}
.cid-uzN9VKLzli .content-wrapper .form-wrapper .dragArea.row .form-group .form-control::placeholder {
  color: #fc5000;
  opacity: .6;
}
.cid-uzN9VKLzli .content-wrapper .form-wrapper .dragArea.row .form-group textarea {
  min-height: 100px;
}
.cid-uzN9VKLzli .content-wrapper .form-wrapper .dragArea.row .form-group .form-check {
  padding-left: 2.3em;
  margin-bottom: 16px;
}
.cid-uzN9VKLzli .content-wrapper .form-wrapper .dragArea.row .form-group .form-check .form-check-input {
  background-color: #fc5000;
  border-color: #fc5000;
}
.cid-uzN9VKLzli .content-wrapper .form-wrapper .dragArea.row .mbr-section-btn {
  width: 100%;
}
.cid-uzN9VKLzli .mbr-section-title {
  color: #150764;
}
.cid-uzN9VKLzli label {
  color: #150764;
}
.cid-uzN9VKLzli .mbr-section-title,
.cid-uzN9VKLzli .mbr-section-btn {
  text-align: center;
  color: #000000;
}
.cid-uzN9VKLzli .mbr-text {
  text-align: center;
}
.cid-uB6SbYC0kq {
  padding-top: 75px;
  padding-bottom: 0px;
  background-color: #222222;
}
.cid-uB6SbYC0kq section {
  position: relative;
}
.cid-uB6SbYC0kq h4 {
  margin: 0;
}
.cid-uB6SbYC0kq img {
  height: 100px;
  padding-rigth: 8px;
}
.cid-uB6SbYC0kq a {
  font-weight: 300;
}
.cid-uB6SbYC0kq .img1 {
  color: #fc5000;
}
.cid-uB6SbYC0kq .img2 {
  color: #fc5000;
}
.cid-uB6SbYC0kq .line {
  width: 35px;
  height: 3px;
  display: inline-block;
  background: #fc5000;
  transition: background 0.3s;
  margin-bottom: 2rem;
}
.cid-uB6SbYC0kq .media-wrap {
  display: flex;
  margin-bottom: 1rem;
  align-items: center;
}
@media (max-width: 992px) {
  .cid-uB6SbYC0kq .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-uB6SbYC0kq .item,
.cid-uB6SbYC0kq .link {
  display: flex;
  align-items: center;
  padding-bottom: 0.5rem;
  margin-bottom: 0.6rem;
}
.cid-uB6SbYC0kq .item h4,
.cid-uB6SbYC0kq .link h4 {
  padding-left: 10px;
  margin: 0;
}
.cid-uB6SbYC0kq .link {
  border-bottom: 1px solid #4a535e;
}
@media (max-width: 767px) {
  .cid-uB6SbYC0kq .item {
    justify-content: center;
  }
}
.cid-uB6SbYC0kq .item-title {
  color: #bbbbbb;
  text-align: left;
}
.cid-uB6SbYC0kq .text1 {
  text-align: left;
}
.cid-uB6SbYC0kq .link-title {
  text-align: left;
}
.cid-uzN9VLWNsq {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #222222;
}
.cid-uzN9VLWNsq .mbr-text {
  color: #f6f6ef;
}
.cid-uzS5TkctUF .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-uzS5TkctUF .nav-item:focus,
.cid-uzS5TkctUF .nav-link:focus {
  outline: none;
}
.cid-uzS5TkctUF .navbar-short {
  box-shadow: 0px 0px 10px 0px rgba(150, 150, 150, 0.3);
}
.cid-uzS5TkctUF .dropdown .dropdown-menu .dropdown-item {
  font-weight: 700 !important;
  padding: 0 !important;
  border-bottom: 1px solid lightgray;
  margin: 0.5rem 1rem !important;
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-uzS5TkctUF .dropdown .dropdown-menu .dropdown-item:hover,
.cid-uzS5TkctUF .dropdown .dropdown-menu .dropdown-item:active,
.cid-uzS5TkctUF .dropdown .dropdown-menu .dropdown-item:focus {
  color: #fc5000 !important;
}
.cid-uzS5TkctUF .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uzS5TkctUF .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-uzS5TkctUF .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-uzS5TkctUF .navbar-caption:hover {
  color: inherit !important;
}
.cid-uzS5TkctUF .container {
  max-width: 1380px;
}
.cid-uzS5TkctUF .nav-dropdown .link {
  padding: 0.8rem 0 !important;
  margin: 0rem 1.5rem !important;
}
.cid-uzS5TkctUF .nav-link {
  font-weight: 700 !important;
  border-bottom: 3px solid transparent;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.cid-uzS5TkctUF .nav-link:hover,
.cid-uzS5TkctUF .nav-link:active,
.cid-uzS5TkctUF .nav-link:focus {
  border-bottom: 3px solid #fc5000;
  color: #fc5000 !important;
}
.cid-uzS5TkctUF .navbar {
  min-height: 77px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  background: #ffffff;
}
.cid-uzS5TkctUF .navbar.opened {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  background: #ffffff !important;
}
.cid-uzS5TkctUF .navbar .dropdown-item {
  padding: 0.235rem 1.5rem;
}
.cid-uzS5TkctUF .navbar .navbar-collapse {
  -webkit-box-pack: end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-uzS5TkctUF .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uzS5TkctUF .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uzS5TkctUF .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-uzS5TkctUF .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-uzS5TkctUF .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uzS5TkctUF .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uzS5TkctUF .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle='dropdown-submenu']:after {
  margin-left: 0.25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-uzS5TkctUF .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uzS5TkctUF .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uzS5TkctUF .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uzS5TkctUF .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uzS5TkctUF .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uzS5TkctUF .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-uzS5TkctUF .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uzS5TkctUF .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uzS5TkctUF .navbar .dropdown-menu .dropdown-toggle[data-toggle='dropdown-submenu']:after {
    margin-left: 0.25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-uzS5TkctUF .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-uzS5TkctUF .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uzS5TkctUF .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uzS5TkctUF .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-uzS5TkctUF .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uzS5TkctUF .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uzS5TkctUF .navbar.navbar-short {
  background: #ffffff !important;
  min-height: 60px;
}
.cid-uzS5TkctUF .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-uzS5TkctUF .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-uzS5TkctUF .icons-menu span {
  color: #ed6436 !important;
}
.cid-uzS5TkctUF .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uzS5TkctUF .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  -webkit-transition: none;
  transition: none;
  margin: 0 !important;
}
.cid-uzS5TkctUF .navbar-brand {
  flex-shrink: 0;
  -webkit-box-align: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uzS5TkctUF .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uzS5TkctUF .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uzS5TkctUF .dropdown-item.active,
.cid-uzS5TkctUF .dropdown-item:active {
  background-color: transparent;
}
.cid-uzS5TkctUF .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uzS5TkctUF .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uzS5TkctUF .nav-dropdown .link.dropdown-toggle[aria-expanded='true'] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uzS5TkctUF .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-uzS5TkctUF .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uzS5TkctUF .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uzS5TkctUF ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uzS5TkctUF .navbar-buttons {
  text-align: center;
}
.cid-uzS5TkctUF button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-uzS5TkctUF button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #181818;
}
.cid-uzS5TkctUF button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.cid-uzS5TkctUF button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  -webkit-transition: all 0.15s;
  transition: all 0.15s;
}
.cid-uzS5TkctUF button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  -webkit-transition: all 0.15s;
  transition: all 0.15s;
}
.cid-uzS5TkctUF button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.cid-uzS5TkctUF nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.cid-uzS5TkctUF nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  -webkit-transition: all 0.25s;
  transition: all 0.25s;
}
.cid-uzS5TkctUF nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  -webkit-transition: all 0.25s;
  transition: all 0.25s;
}
.cid-uzS5TkctUF nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.cid-uzS5TkctUF .navbar-dropdown {
  padding: 0.5rem 1rem;
  position: fixed;
}
.cid-uzS5TkctUF a.nav-link {
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: center;
  justify-content: center;
}
.cid-uzS5TkctUF .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uzS5TkctUF .icons-menu {
  flex-wrap: wrap;
  display: flex;
  -webkit-box-pack: center;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  text-align: center;
}
.cid-uzS5TkctUF .icons-menu span {
  font-size: 20px;
  color: #ffffff;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uzS5TkctUF .navbar {
    height: 77px;
  }
  .cid-uzS5TkctUF .navbar.opened {
    height: auto;
  }
  .cid-uzS5TkctUF .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uzS6i4Ktly {
  padding-top: 120px;
  padding-bottom: 120px;
  background-color: #ffffff;
}
.cid-uzS6i4Ktly .mbr-section-subtitle {
  color: #767676;
}
.cid-uB6SelCkiX {
  padding-top: 75px;
  padding-bottom: 0px;
  background-color: #222222;
}
.cid-uB6SelCkiX section {
  position: relative;
}
.cid-uB6SelCkiX h4 {
  margin: 0;
}
.cid-uB6SelCkiX img {
  height: 100px;
  padding-rigth: 8px;
}
.cid-uB6SelCkiX a {
  font-weight: 300;
}
.cid-uB6SelCkiX .img1 {
  color: #fc5000;
}
.cid-uB6SelCkiX .img2 {
  color: #fc5000;
}
.cid-uB6SelCkiX .line {
  width: 35px;
  height: 3px;
  display: inline-block;
  background: #fc5000;
  transition: background 0.3s;
  margin-bottom: 2rem;
}
.cid-uB6SelCkiX .media-wrap {
  display: flex;
  margin-bottom: 1rem;
  align-items: center;
}
@media (max-width: 992px) {
  .cid-uB6SelCkiX .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-uB6SelCkiX .item,
.cid-uB6SelCkiX .link {
  display: flex;
  align-items: center;
  padding-bottom: 0.5rem;
  margin-bottom: 0.6rem;
}
.cid-uB6SelCkiX .item h4,
.cid-uB6SelCkiX .link h4 {
  padding-left: 10px;
  margin: 0;
}
.cid-uB6SelCkiX .link {
  border-bottom: 1px solid #4a535e;
}
@media (max-width: 767px) {
  .cid-uB6SelCkiX .item {
    justify-content: center;
  }
}
.cid-uB6SelCkiX .item-title {
  color: #bbbbbb;
  text-align: left;
}
.cid-uB6SelCkiX .text1 {
  text-align: left;
}
.cid-uB6SelCkiX .link-title {
  text-align: left;
}
.cid-uzS5TlbQct {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #222222;
}
.cid-uzS5TlbQct .mbr-text {
  color: #f6f6ef;
}
