body {
  font-family: Jost;
}
.display-1 {
  font-family: 'Jost', sans-serif;
  font-size: 4.6rem;
  line-height: 1.1;
}
.display-1 > .mbr-iconfont {
  font-size: 5.75rem;
}
.display-2 {
  font-family: 'Jost', sans-serif;
  font-size: 3rem;
  line-height: 1.1;
}
.display-2 > .mbr-iconfont {
  font-size: 3.75rem;
}
.display-4 {
  font-family: 'Jost', sans-serif;
  font-size: 1.1rem;
  line-height: 1.5;
}
.display-4 > .mbr-iconfont {
  font-size: 1.375rem;
}
.display-5 {
  font-family: 'Jost', sans-serif;
  font-size: 1.8rem;
  line-height: 1.5;
}
.display-5 > .mbr-iconfont {
  font-size: 2.25rem;
}
.display-7 {
  font-family: 'Jost', sans-serif;
  font-size: 1.2rem;
  line-height: 1.5;
}
.display-7 > .mbr-iconfont {
  font-size: 1.5rem;
}
/* ---- Fluid typography for mobile devices ---- */
/* 1.4 - font scale ratio ( bootstrap == 1.42857 ) */
/* 100vw - current viewport width */
/* (48 - 20)  48 == 48rem == 768px, 20 == 20rem == 320px(minimal supported viewport) */
/* 0.65 - min scale variable, may vary */
@media (max-width: 992px) {
  .display-1 {
    font-size: 3.68rem;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 3.22rem;
    font-size: calc( 2.26rem + (4.6 - 2.26) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (2.26rem + (4.6 - 2.26) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 2.4rem;
    font-size: calc( 1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.3 * (1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 0.88rem;
    font-size: calc( 1.0350000000000001rem + (1.1 - 1.0350000000000001) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.0350000000000001rem + (1.1 - 1.0350000000000001) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 1.44rem;
    font-size: calc( 1.28rem + (1.8 - 1.28) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.28rem + (1.8 - 1.28) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-7 {
    font-size: 0.96rem;
    font-size: calc( 1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* Buttons */
.btn {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-sm {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-md {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-lg {
  padding: 1rem 2.6rem;
  border-radius: 4px;
}
.bg-primary {
  background-color: #ff9966 !important;
}
.bg-success {
  background-color: #40b0bf !important;
}
.bg-info {
  background-color: #47b5ed !important;
}
.bg-warning {
  background-color: #c5a97c !important;
}
.bg-danger {
  background-color: #ff9966 !important;
}
.btn-primary,
.btn-primary: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-primary:hover,
.btn-primary:focus,
.btn-primary.focus,
.btn-primary.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-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #ff5f0f !important;
  border-color: #ff5f0f !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #ffffff !important;
  border-color: #ffffff !important;
  color: #808080 !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus,
.btn-secondary.active {
  color: #545454 !important;
  background-color: #d4d4d4 !important;
  border-color: #d4d4d4 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #808080 !important;
  background-color: #d4d4d4 !important;
  border-color: #d4d4d4 !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: #c5a97c !important;
  border-color: #c5a97c !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus,
.btn-warning.active {
  color: #ffffff !important;
  background-color: #a28048 !important;
  border-color: #a28048 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #ffffff !important;
  background-color: #a28048 !important;
  border-color: #a28048 !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: transparent;
  color: #ff9966;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #ff5f0f !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #ff9966 !important;
  border-color: #ff9966 !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ffffff;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #d4d4d4 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #808080 !important;
  background-color: #ffffff !important;
  border-color: #ffffff !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #47b5ed;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #148cca !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #47b5ed !important;
  border-color: #47b5ed !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #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: transparent!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: transparent;
  color: #c5a97c;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #a28048 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #ffffff !important;
  background-color: #c5a97c !important;
  border-color: #c5a97c !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  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: transparent!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: transparent;
  color: #232323;
}
.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.focus,
.btn-black-outline.active {
  color: #000000 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-black-outline.disabled,
.btn-black-outline:disabled {
  color: #ffffff !important;
  background-color: #232323 !important;
  border-color: #232323 !important;
}
.btn-white-outline,
.btn-white-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #fafafa;
}
.btn-white-outline:hover,
.btn-white-outline:focus,
.btn-white-outline.focus,
.btn-white-outline.active {
  color: #cfcfcf !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-white-outline.disabled,
.btn-white-outline:disabled {
  color: #7a7a7a !important;
  background-color: #fafafa !important;
  border-color: #fafafa !important;
}
.text-primary {
  color: #ff9966 !important;
}
.text-secondary {
  color: #ffffff !important;
}
.text-success {
  color: #40b0bf !important;
}
.text-info {
  color: #47b5ed !important;
}
.text-warning {
  color: #c5a97c !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: #ff5500 !important;
}
a.text-secondary:hover,
a.text-secondary:focus,
a.text-secondary.active {
  color: #cccccc !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: #987743 !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: #ff9966;
}
.nav-tabs .nav-link:not(.active) {
  color: #232323;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #47b5ed;
}
.alert-warning {
  background-color: #c5a97c;
}
.alert-danger {
  background-color: #ff9966;
}
.mbr-gallery-filter li.active .btn {
  background-color: #ff9966;
  border-color: #ff9966;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
a,
a:hover {
  color: #ff9966;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #ffffff;
}
.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: #ece3d4;
}
.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: 'Jost', sans-serif;
  font-size: 1.1rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control > .mbr-iconfont {
  font-size: 1.375rem;
}
.form-control:hover,
.form-control:focus {
  box-shadow: rgba(0, 0, 0, 0.07) 0px 1px 1px 0px, rgba(0, 0, 0, 0.07) 0px 1px 3px 0px, rgba(0, 0, 0, 0.03) 0px 0px 0px 1px;
  border-color: #ff9966 !important;
}
.form-control:-webkit-input-placeholder {
  font-family: 'Jost', sans-serif;
  font-size: 1.1rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control:-webkit-input-placeholder > .mbr-iconfont {
  font-size: 1.375rem;
}
blockquote {
  border-color: #ff9966;
}
/* Forms */
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #ff9966;
  color: #ffffff;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #ff9966;
}
.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: #ff9966;
  border-bottom-color: #ff9966;
}
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_default,
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_current,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div.xdsoft_current {
  color: #000000 !important;
  background-color: #ff9966 !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: #ffffff !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='%23ff9966' %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-tpRmFVZvjp .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;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-tpRmFVZvjp .nav-item:focus,
.cid-tpRmFVZvjp .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-tpRmFVZvjp .dropdown-item:hover:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    width: 16px;
  }
  .cid-tpRmFVZvjp .nav-item .nav-link {
    position: relative;
  }
  .cid-tpRmFVZvjp .nav-item .nav-link::before {
    position: absolute;
    content: '';
    width: 0;
    height: 3px;
    bottom: -0.5rem;
    left: 50%;
    background: linear-gradient(90deg, #ff9966, #ffffff);
    transition: width 200ms linear, left 200ms linear;
  }
  .cid-tpRmFVZvjp .nav-item.open .nav-link::before {
    bottom: .2rem;
    width: 80% !important;
    left: 10% !important;
  }
  .cid-tpRmFVZvjp .nav-item .nav-link:hover::before {
    width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tpRmFVZvjp .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 2.5385em 0.235em 3.5385em;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-tpRmFVZvjp .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tpRmFVZvjp .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-tpRmFVZvjp .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-tpRmFVZvjp .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;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-tpRmFVZvjp .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tpRmFVZvjp .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tpRmFVZvjp .navbar {
  min-height: 77px;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-direction: column;
  flex-direction: column;
  display: -webkit-flex;
  -webkit-align-items: center;
  background: none;
}
.cid-tpRmFVZvjp .navbar .mbr-overlay {
  z-index: -1;
  transition: all .3s;
  background: #000000;
  background: linear-gradient(#000000, #000000);
  background: none;
}
.cid-tpRmFVZvjp .navbar.opened .mbr-overlay {
  transition: all .3s;
  background: #000000 !important;
  background: linear-gradient(#000000, #000000) !important;
}
.cid-tpRmFVZvjp .navbar .dropdown-item {
  padding: .25rem 1.5rem;
}
.cid-tpRmFVZvjp .navbar .navbar-collapse {
  width: 100%;
  -webkit-flex-basis: auto;
  flex-basis: auto;
  -webkit-justify-content: center;
  justify-content: center;
  z-index: 1;
  padding: .5rem 1rem;
}
@media (max-width: 991px) {
  .cid-tpRmFVZvjp .navbar .navbar-collapse {
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
  }
}
.cid-tpRmFVZvjp .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-tpRmFVZvjp .navbar.collapsed.opened .navbar-collapse {
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-tpRmFVZvjp .navbar.collapsed .navbar-collapse.show,
.cid-tpRmFVZvjp .navbar.collapsed .navbar-collapse.collapsing {
  transition: all .3s linear;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-tpRmFVZvjp .navbar.collapsed .navbar-collapse.show .brand-container,
.cid-tpRmFVZvjp .navbar.collapsed .navbar-collapse.collapsing .brand-container {
  -webkit-order: -1;
  order: -1;
}
.cid-tpRmFVZvjp .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-tpRmFVZvjp .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tpRmFVZvjp .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tpRmFVZvjp .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-tpRmFVZvjp .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tpRmFVZvjp .navbar.collapsed .navbar-buttons {
  margin: 0;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-tpRmFVZvjp .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-tpRmFVZvjp .navbar.collapsed .right-menu,
.cid-tpRmFVZvjp .navbar.collapsed .left-menu {
  -webkit-flex-basis: auto;
  flex-basis: auto;
}
@media (max-width: 991px) {
  .cid-tpRmFVZvjp .navbar .navbar-collapse.show,
  .cid-tpRmFVZvjp .navbar .navbar-collapse.collapsing {
    transition: all .3s linear;
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .cid-tpRmFVZvjp .navbar .navbar-collapse.show .brand-container,
  .cid-tpRmFVZvjp .navbar .navbar-collapse.collapsing .brand-container {
    -webkit-order: -1;
    order: -1;
  }
  .cid-tpRmFVZvjp .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tpRmFVZvjp .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-tpRmFVZvjp .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tpRmFVZvjp .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tpRmFVZvjp .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-tpRmFVZvjp .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-tpRmFVZvjp .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tpRmFVZvjp .navbar .navbar-buttons {
    margin: 0;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .cid-tpRmFVZvjp .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem;
    text-align: center;
  }
  .cid-tpRmFVZvjp .navbar .right-menu,
  .cid-tpRmFVZvjp .navbar .left-menu {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
}
.cid-tpRmFVZvjp .navbar.navbar-short {
  min-height: 60px;
}
.cid-tpRmFVZvjp .navbar.navbar-short .mbr-overlay {
  background: #000000 !important;
  background: linear-gradient(#000000, #000000) !important;
}
.cid-tpRmFVZvjp .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-tpRmFVZvjp .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-tpRmFVZvjp .navbar-brand {
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tpRmFVZvjp .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tpRmFVZvjp .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tpRmFVZvjp .dropdown-item.active,
.cid-tpRmFVZvjp .dropdown-item:active {
  background-color: transparent;
}
.cid-tpRmFVZvjp .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tpRmFVZvjp .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tpRmFVZvjp .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tpRmFVZvjp .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-tpRmFVZvjp .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tpRmFVZvjp .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tpRmFVZvjp ul.navbar-nav {
  display: -webkit-flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
@media (max-width: 991px) {
  .cid-tpRmFVZvjp ul.navbar-nav {
    -webkit-flex-direction: column;
    flex-direction: column;
  }
}
.cid-tpRmFVZvjp .navbar-buttons {
  margin-left: auto;
}
.cid-tpRmFVZvjp button.navbar-toggler {
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  margin: 1rem;
  -webkit-align-self: center;
  align-self: center;
}
.cid-tpRmFVZvjp button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ff9966;
}
.cid-tpRmFVZvjp button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-tpRmFVZvjp button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-tpRmFVZvjp button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-tpRmFVZvjp button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-tpRmFVZvjp nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tpRmFVZvjp nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
  width: 20px;
  right: -2px;
}
.cid-tpRmFVZvjp nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
  width: 20px;
  left: -2px;
}
.cid-tpRmFVZvjp nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tpRmFVZvjp .navbar-dropdown {
  position: fixed;
}
.cid-tpRmFVZvjp a.nav-link {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-tpRmFVZvjp .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-tpRmFVZvjp .right-menu,
.cid-tpRmFVZvjp .left-menu {
  -webkit-flex-basis: 50%;
  flex-basis: 50%;
}
.cid-tpRmFVZvjp .left-menu .navbar-nav {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-tpRmFVZvjp .left-menu .navbar-nav ul {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-tpRmFVZvjp .brand-container {
  padding: 0 2rem;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-tpRmFVZvjp .menu-top {
  text-align: center;
  width: 100%;
  background-color: #fe525b;
  padding: .5rem 0;
}
.cid-tpRmFVZvjp .full-link {
  width: 100%;
  font-size: 0;
  z-index: 2;
}
.cid-tpRmFVZvjp .card-wrapper {
  z-index: 3;
}
.cid-tpRmFVZvjp .popup-btn.card-wrapper {
  z-index: 1 !important;
}
@media (max-width: 991px) {
  .cid-tpRmFVZvjp .navbar-collapse {
    padding-top: 0;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tpRmFVZvjp .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uC9TWsNkYj {
  overflow-x: hidden !important;
}
.cid-uC9TWsNkYj .container-fluid {
  padding: 0 3rem;
}
.cid-uC9TWsNkYj .scroll-wrapper {
  top: 0;
  width: 100%;
  height: 100%;
  background-position: 100% 0;
  background-size: cover;
  position: absolute;
  background-repeat: repeat;
  z-index: 0;
  -webkit-animation-duration: 8s !important;
  animation-duration: 8s;
  background-image: url("../../../assets/images/1-2-1500x1875.jpg");
  -webkit-animation: scroll-wrapper linear infinite;
  -moz-animation: scroll-wrapper linear infinite;
  -o-animation: scroll-wrapper linear infinite;
  animation: scroll-wrapper linear infinite;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
}
.cid-uC9TWsNkYj .scroll-wrapper.second {
  left: calc(100% - 1px);
  background-position: 0 0;
}
.cid-uC9TWsNkYj .mbr-overlay {
  z-index: 1;
}
.cid-uC9TWsNkYj .block-content {
  z-index: 2;
}
@keyframes scroll-wrapper {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}
@-webkit-keyframes scroll-wrapper {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}
@-moz-keyframes scroll-wrapper {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}
@-o-keyframes scroll-wrapper {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}
@media (max-width: 767px) {
  .cid-uC9TWsNkYj .container-fluid {
    padding: 0 1rem;
  }
}
.cid-uC9TWsNkYj .mbr-section-title {
  text-align: center;
  color: #c5a284;
}
.cid-uCvAEee0P6 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uCvAEee0P6 .section-head {
  margin-bottom: 2rem;
}
.cid-uCvAEee0P6 .mbr-section-title {
  text-align: right;
  margin-bottom: 1.5rem;
}
.cid-uCvAEee0P6 .mbr-section-subtitle {
  text-align: right;
}
@media (max-width: 991px) {
  .cid-uCvAEee0P6 .row {
    text-align: center;
  }
}
.cid-uCvAEee0P6 .wave-container {
  position: absolute;
  width: 100%;
  height: 100px;
  left: 0;
  bottom: -1px;
  overflow: hidden;
}
.cid-uCvAEee0P6 .wave-container .wave {
  width: 5500px;
  position: relative;
  left: -3300px;
}
.cid-uCvAEee0P6 .wave-container .wave svg {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-uCvAEee0P6 .wave-container .wave svg path {
  fill: #000000;
}
@keyframes wavy {
  0% {
    opacity: 1;
    transform: translateX(0px) translateY(0px) rotate(0deg) scale(1, 1);
    animation-timing-function: linear;
  }
  100% {
    opacity: 1;
    transform: translateX(3230px) translateY(0px) rotate(0deg) scale(1, 1);
  }
}
.cid-uCvONHGW4C {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
  overflow: hidden;
}
.cid-uCvONHGW4C .mbr-fallback-image.disabled {
  display: none;
}
.cid-uCvONHGW4C .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 768px) {
  .cid-uCvONHGW4C .container {
    padding: 0 16px;
  }
}
.cid-uCvONHGW4C .row {
  justify-content: center;
}
.cid-uCvONHGW4C .content-wrapper {
  position: relative;
}
.cid-uCvONHGW4C .content-wrapper .icon-wrapper {
  margin-bottom: 80px;
}
@media (max-width: 992px) {
  .cid-uCvONHGW4C .content-wrapper .icon-wrapper {
    margin-bottom: 40px;
  }
}
.cid-uCvONHGW4C .content-wrapper .icon-wrapper .mbr-iconfont {
  font-size: 42px;
  color: #ff9966;
  display: inline-flex;
}
.cid-uCvONHGW4C .content-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-uCvONHGW4C .content-wrapper .mbr-text span {
  color: #000000;
}
.cid-uCvONHGW4C .content-wrapper .decor-wrapper {
  position: absolute;
  top: -10%;
  left: -12rem;
  display: inline-flex;
  width: 240px;
  height: 240px;
  border-radius: 100%;
  background-image: linear-gradient(135deg, #ff9966 -10%, transparent 70%);
}
.cid-uCvONHGW4C .mbr-text {
  color: #000000;
}
.cid-uCvONHGW4C .mbr-text,
.cid-uCvONHGW4C .icon-wrapper {
  text-align: center;
  color: #ffffff;
}
.cid-uCvB6HSgfg {
  padding-top: 3rem;
  padding-bottom: 4rem;
  background-color: #000000;
  overflow: hidden;
}
.cid-uCvB6HSgfg .mbr-fallback-image.disabled {
  display: none;
}
.cid-uCvB6HSgfg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-uCvB6HSgfg .container {
    padding: 0 22px;
  }
}
.cid-uCvB6HSgfg .card {
  justify-content: center;
}
.cid-uCvB6HSgfg .content-wrapper {
  padding-right: 32px;
}
@media (max-width: 992px) {
  .cid-uCvB6HSgfg .content-wrapper {
    padding: 0;
    margin-bottom: 40px;
  }
}
.cid-uCvB6HSgfg .content-wrapper .mbr-section-title {
  margin-bottom: 10px;
}
.cid-uCvB6HSgfg .content-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-uCvB6HSgfg .image-wrapper {
  display: flex;
  justify-content: center;
}
.cid-uCvB6HSgfg .image-wrapper img {
  height: 600px;
  width: 600px;
  border-radius: 100% !important;
  object-fit: cover;
  box-shadow: 10px 10px 60px #ff9966;
}
@media (max-width: 1440px) {
  .cid-uCvB6HSgfg .image-wrapper img {
    height: 500px;
    width: 500px;
  }
}
@media (max-width: 1200px) {
  .cid-uCvB6HSgfg .image-wrapper img {
    height: 400px;
    width: 400px;
  }
}
@media (max-width: 992px) {
  .cid-uCvB6HSgfg .image-wrapper img {
    height: 400px;
    width: 400px;
  }
}
@media (max-width: 768px) {
  .cid-uCvB6HSgfg .image-wrapper img {
    height: 260px;
    width: 260px;
  }
}
.cid-uCvB6HSgfg .mbr-section-title {
  color: #ff9966;
  text-align: center;
}
.cid-uCvB6HSgfg .mbr-text {
  color: #ffffff;
  text-align: center;
}
.cid-uBekTpnajo {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-uBekTpnajo .item:focus,
.cid-uBekTpnajo span:focus {
  outline: none;
}
.cid-uBekTpnajo .container-fluid {
  padding-left: 0;
  padding-right: 0;
  overflow: hidden;
}
.cid-uBekTpnajo .item {
  font-family: "Instrument Serif", sans-serif;
  font-style: italic;
  color: #ffffff;
  min-height: 90px;
}
@media (max-width: 768px) {
  .cid-uBekTpnajo .item {
    min-height: 45px;
  }
}
.cid-uC9VETFEzT {
  padding-top: 2rem;
  padding-bottom: 5rem;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  background-color: #ffffff;
}
.cid-uC9VETFEzT .decor-wrap {
  position: absolute;
  pointer-events: none;
  right: 0;
  width: 85%;
  height: 140%;
  border-radius: 100% 0 0 100%;
  background-color: #000000;
}
@media (max-width: 1500px) {
  .cid-uC9VETFEzT .decor-wrap {
    width: 90%;
  }
}
@media (max-width: 992px) {
  .cid-uC9VETFEzT .decor-wrap {
    width: 100%;
    border-radius: 0;
  }
}
.cid-uC9VETFEzT .mbr-fallback-image.disabled {
  display: none;
}
.cid-uC9VETFEzT .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uC9VETFEzT .title-wrapper {
  position: relative;
  z-index: 1;
}
.cid-uC9VETFEzT .title-wrapper .mbr-section-title {
  margin-bottom: 64px;
}
@media (max-width: 992px) {
  .cid-uC9VETFEzT .title-wrapper .mbr-section-title {
    margin-bottom: 46px;
  }
}
.cid-uC9VETFEzT .items-wrapper {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 64px;
}
@media (max-width: 992px) {
  .cid-uC9VETFEzT .items-wrapper {
    display: block;
  }
}
@media (max-width: 992px) {
  .cid-uC9VETFEzT .item {
    margin-bottom: 46px;
  }
}
.cid-uC9VETFEzT .item .item-wrapper .card-box .icon-wrapper {
  margin-bottom: 22px;
}
.cid-uC9VETFEzT .item .item-wrapper .card-box .icon-wrapper .mbr-iconfont {
  display: inline-flex;
  font-size: 64px;
}
.cid-uC9VETFEzT .item .item-wrapper .card-box .item-title {
  margin-bottom: 16px;
}
.cid-uC9VETFEzT .item .item-wrapper .card-box .item-text {
  margin-bottom: 0;
}
.cid-uC9VETFEzT .item .card_1 .card-box .icon-wrapper .mbr-iconfont {
  color: #c5a97c;
}
.cid-uC9VETFEzT .item .card_2 .card-box .icon-wrapper .mbr-iconfont {
  color: #bb6a58;
}
.cid-uC9VETFEzT .item .card_3 .card-box .icon-wrapper .mbr-iconfont {
  color: #ffffff;
}
.cid-uC9VETFEzT .mbr-section-title {
  color: #ffffff;
}
.cid-uC9VETFEzT .item-title {
  color: #212529;
}
.cid-uC9VETFEzT .item-text {
  color: #51565c;
}
.cid-uC9VETFEzT .item-text,
.cid-uC9VETFEzT .icon-wrapper {
  color: #ffffff;
}
.cid-tKq44Oa0mq {
  padding-top: 150px;
  padding-bottom: 75px;
  background-color: #000000;
}
.cid-tKq44Oa0mq h3 {
  line-height: 1;
  letter-spacing: -3px;
  position: relative;
}
.cid-tKq44Oa0mq h3:before {
  position: absolute;
  content: '';
  left: 50%;
  top: -120px;
  bottom: 0;
  width: 1px;
  height: 100px;
  background: currentColor;
}
.cid-tKq44Oa0mq h3:after {
  position: absolute;
  content: '';
  left: 50%;
  bottom: -120px;
  width: 1px;
  height: 100px;
  background: currentColor;
}
.cid-tKq44Oa0mq .mbr-iconfont {
  margin-top: 150px;
  display: block;
  font-size: 3rem;
  color: #000000;
}
.cid-tKq44Oa0mq H3 {
  color: #fafafa;
}
.cid-uCvJxG0uRD {
  padding-top: 90px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uCvJxG0uRD rect {
  width: 85%;
  height: 90%;
}
.cid-uCvJxG0uRD .container-fluid {
  max-width: 1200px;
  padding: 0 1.5rem;
}
.cid-uCvJxG0uRD .mbr-text {
  margin: 0;
}
.cid-uCvJxG0uRD .mbr-iconfont {
  transition: all 0.3s;
  margin-left: 1rem;
}
.cid-uCvJxG0uRD .card-1 {
  margin-right: 2rem;
}
.cid-uCvJxG0uRD .card-3 {
  margin-left: 2rem;
}
.cid-uCvJxG0uRD .mbr-section-btn {
  margin-bottom: 1.6rem;
}
.cid-uCvJxG0uRD .mbr-section-btn .btn-underline {
  display: inline-flex;
  align-items: center;
  margin-top: 1rem;
  font-weight: 700;
}
.cid-uCvJxG0uRD .mbr-section-btn .btn-underline:hover .icon-btn {
  transform: rotateZ(180deg);
}
@media (min-width: 992px) {
  .cid-uCvJxG0uRD .media-container-row {
    margin: 0 2rem;
  }
}
.cid-uCvJxG0uRD .svg-1 {
  position: absolute;
  bottom: 0;
}
.cid-uCvJxG0uRD .svg-1 path,
.cid-uCvJxG0uRD .svg-2 path {
  fill: #ffffff;
}
.cid-uCvJxG0uRD .svg-2 {
  position: absolute;
  top: 0;
}
.cid-uCvJxG0uRD .img-border {
  width: 186px;
  height: 186px;
  border: 2px dashed #808080;
  border-radius: 50%;
  margin-right: auto;
  margin-left: auto;
  position: relative;
}
.cid-uCvJxG0uRD .dinosaur-img {
  position: absolute;
  top: 14px;
  left: 50%;
  transform: translate(-50%);
  width: 120px;
  margin-top: 1rem;
}
.cid-uCvJxG0uRD .circle {
  position: absolute;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 3px solid #ffffff;
  right: 0%;
  top: 0%;
}
.cid-uCvJxG0uRD .circle1 {
  background-color: #ffffff;
}
.cid-uCvJxG0uRD .circle2 {
  background-color: #c5a97c;
}
.cid-uCvJxG0uRD .circle3 {
  background-color: #ff9966;
}
.cid-uCvJxG0uRD .card:hover .circle {
  position: absolute;
  right: 37%;
  top: 38%;
  animation: Orbita 2s linear infinite;
}
@keyframes Orbita {
  from {
    -webkit-transform: rotate(0deg) translateX(93px) rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg) translateX(93px) rotate(-360deg);
  }
}
@media (max-width: 991px) {
  .cid-uCvJxG0uRD {
    padding-top: 60px;
    padding-bottom: 0px;
  }
  .cid-uCvJxG0uRD .card {
    margin-bottom: 1rem;
  }
  .cid-uCvJxG0uRD .media-container-row {
    margin: 0;
  }
  .cid-uCvJxG0uRD .card-1 {
    margin-right: 0;
  }
  .cid-uCvJxG0uRD .card-3 {
    margin-left: 0;
  }
}
@media (max-width: 767px) {
  .cid-uCvJxG0uRD {
    padding-top: 30px;
    padding-bottom: 0px;
  }
  .cid-uCvJxG0uRD .mbr-text {
    padding: 0rem;
  }
}
.cid-uCvJxG0uRD .mbr-fallback-image.disabled {
  display: none;
}
.cid-uCvJxG0uRD .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uCvJxG0uRD .mbr-text,
.cid-uCvJxG0uRD .mbr-section-btn {
  color: #000000;
}
.cid-uCvJxG0uRD .card-title {
  color: #ffffff;
}
.cid-uBer6dsVo6 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-uBer6dsVo6 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uBer6dsVo6 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uBer6dsVo6 .items-wrap {
  justify-content: space-between;
}
@media (max-width: 992px) {
  .cid-uBer6dsVo6 .content-wrapper {
    margin-bottom: 32px;
  }
}
.cid-uBer6dsVo6 .content-wrapper .mbr-section-title {
  margin-bottom: 64px;
}
@media (max-width: 992px) {
  .cid-uBer6dsVo6 .content-wrapper .mbr-section-title {
    margin-bottom: 32px;
  }
}
.cid-uBer6dsVo6 .content-wrapper .mbr-text {
  margin-bottom: 22px;
}
.cid-uBer6dsVo6 .image-wrapper img {
  width: 100%;
  height: 570px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-uBer6dsVo6 .image-wrapper img {
    height: 350px;
  }
}
.cid-uBer6dsVo6 .mbr-section-title {
  color: #ffffff;
}
.cid-uBer6dsVo6 .mbr-text {
  color: #ffffff;
}
.cid-uBer6dsVo6 .mbr-section-title,
.cid-uBer6dsVo6 .mbr-section-btn {
  color: #ff9966;
}
.cid-uC9SAa6ZI8 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-uC9SAa6ZI8 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uC9SAa6ZI8 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-uC9SAa6ZI8 .container {
    padding: 0 22px;
  }
}
.cid-uC9SAa6ZI8 .row {
  justify-content: center;
}
.cid-uC9SAa6ZI8 .content-wrapper .line-wrapper {
  margin-bottom: 80px;
  text-align: center;
}
@media (max-width: 992px) {
  .cid-uC9SAa6ZI8 .content-wrapper .line-wrapper {
    margin-bottom: 40px;
  }
}
.cid-uC9SAa6ZI8 .content-wrapper .line-wrapper .line-wrap {
  display: inline-flex;
  width: 1px;
  height: 60px;
  background-color: #a48759;
}
.cid-uC9SAa6ZI8 .content-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-uC9SAa6ZI8 .content-wrapper .icon-wrapper .mbr-iconfont {
  display: inline-flex;
  width: 40px;
  height: 40px;
  font-size: 30px;
  color: #a48759;
}
.cid-uC9SAa6ZI8 .content-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-uC9SAa6ZI8 .mbr-section-title {
  color: #ffffff;
}
.cid-uC9SAa6ZI8 .mbr-text {
  color: #ffffff;
  text-align: center;
}
.cid-uC9SAa6ZI8 .mbr-section-title,
.cid-uC9SAa6ZI8 .icon-wrapper {
  text-align: center;
  color: #ff9966;
}
.cid-uBerCEj8xg {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-uBerCEj8xg .mbr-fallback-image.disabled {
  display: none;
}
.cid-uBerCEj8xg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uBerCEj8xg .content-wrapper {
  position: relative;
  padding: 46px 24px;
  overflow: hidden;
  border: 1px solid #fafafa;
  background-color: #000000;
}
@media (max-width: 992px) {
  .cid-uBerCEj8xg .content-wrapper {
    padding: 24px 14px 0 14px;
  }
}
.cid-uBerCEj8xg .content-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, #ff9966, #000000 50%);
  opacity: .5;
}
.cid-uBerCEj8xg .content-wrapper .mbr-section-title {
  position: relative;
  z-index: 1;
  margin-bottom: 48px;
}
@media (max-width: 992px) {
  .cid-uBerCEj8xg .content-wrapper .mbr-section-title {
    margin-bottom: 32px;
  }
}
.cid-uBerCEj8xg .content-wrapper .panel-group .card {
  position: relative;
  padding: 24px;
  background-color: transparent;
  border: 1px solid #fafafa;
  margin-bottom: 16px;
}
@media (max-width: 992px) {
  .cid-uBerCEj8xg .content-wrapper .panel-group .card {
    padding: 14px;
  }
}
.cid-uBerCEj8xg .content-wrapper .panel-group .card .card-header {
  background-color: transparent;
  border: none;
  padding: 0;
}
.cid-uBerCEj8xg .content-wrapper .panel-group .card .card-header .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-uBerCEj8xg .content-wrapper .panel-group .card .card-header .panel-title .panel-title-edit {
  margin-bottom: 0;
}
.cid-uBerCEj8xg .content-wrapper .panel-group .card .card-header .panel-title .icon-wrapper {
  width: 50px;
  height: 50px;
  min-width: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: 10px;
  transition: all 0.3s ease-in-out;
  background-color: #ffffff;
  border-radius: 100%;
}
.cid-uBerCEj8xg .content-wrapper .panel-group .card .card-header .panel-title .icon-wrapper .mbr-iconfont {
  transition: all 0.3s ease-in-out;
  font-size: 26px;
  color: #ff9966;
}
.cid-uBerCEj8xg .content-wrapper .panel-group .card .card-header .panel-title:not(.collapsed) .icon-wrapper {
  transform: rotate(-45deg);
}
.cid-uBerCEj8xg .content-wrapper .panel-group .card .panel-collapse .panel-body {
  margin-top: 24px;
}
@media (max-width: 992px) {
  .cid-uBerCEj8xg .content-wrapper .panel-group .card .panel-collapse .panel-body {
    margin-top: 14px;
  }
}
.cid-uBerCEj8xg .content-wrapper .panel-group .card .panel-collapse .panel-body .panel-text {
  display: inline-block;
  width: 80%;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-uBerCEj8xg .content-wrapper .panel-group .card .panel-collapse .panel-body .panel-text {
    width: 100%;
  }
}
.cid-uBerCEj8xg .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-uBerCEj8xg .panel-title-edit {
  color: #ffffff;
}
.cid-uBerCEj8xg .panel-text {
  color: #ffffff;
}
.cid-tpRj14ifPA {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-tpRj14ifPA .card-wrapper {
  display: flex;
  padding: 0 1.5rem;
}
@media (max-width: 1600px) {
  .cid-tpRj14ifPA .card-wrapper {
    padding: 0;
  }
}
.cid-tpRj14ifPA img {
  width: 100%;
}
.cid-tpRj14ifPA .mbr-iconfont {
  font-size: 3rem;
  background: linear-gradient(to left, #ffffff, #ff9966);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.cid-tpRj14ifPA .line {
  width: 55px;
  margin-bottom: 0.5rem;
  height: 5px;
  display: inline-block;
  background: linear-gradient(to left, #ffffff, #ff9966);
}
.cid-tpRj14ifPA .icon-wrapper {
  margin: auto;
  margin-right: 1.5rem;
  display: flex;
  justify-content: center;
  border-radius: 50%;
}
.cid-tpRj14ifPA h4 {
  margin: 0;
}
.cid-tpRj14ifPA .card-text {
  color: #fafafa;
}
.cid-tpRj14ifPA .mbr-text {
  color: #000000;
}
.cid-tpRj14ifPA .card-title {
  color: #ffffff;
}
@media (min-width: 1200px) {
  .cid-tpRj14ifPA .mbr-text {
    max-width: 600px;
  }
}
@media (max-width: 767px) {
  .cid-tpRj14ifPA .card-wrapper {
    flex-direction: column;
    margin: auto;
    text-align: center;
  }
  .cid-tpRj14ifPA .card-wrapper .icon-wrapper {
    margin: 0 auto;
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-tpRj14ifPA .mbr-text {
    padding-bottom: 2rem;
    max-width: 100%;
  }
}
.cid-tpRj14ifPA H3 {
  color: #787324;
}
.cid-tpRj14ifPA .mbr-section-title,
.cid-tpRj14ifPA .title-wrapper {
  color: #ff9966;
}
.cid-tpRj14ifPA .mbr-text,
.cid-tpRj14ifPA .mbr-section-btn {
  color: #ffffff;
}
.cid-uC9SUMONnf {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uC9SUMONnf h1 {
  background-color: transparent;
  overflow: hidden;
  display: inline-block;
  color: transparent;
  line-height: 1;
}
.cid-uC9SUMONnf span {
  background-image: url("../../../assets/images/istockphoto-1298977572-1024x576.jpg");
  background-size: 1920px 600px;
  background-position: center;
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  display: block;
  animation: scroll 14s infinite linear;
  pointer-events: none;
}
@keyframes scroll {
  0% {
    background-position-y: 0px;
  }
  99.999% {
    background-position-y: -600px;
  }
  100% {
    background-position-y: 0px;
  }
}
.cid-uC9SUMONnf .mbr-section-title {
  color: #ff9966;
}
.cid-tKq4ZAUcBT {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-tKq4ZAUcBT h2,
.cid-tKq4ZAUcBT h3,
.cid-tKq4ZAUcBT h4,
.cid-tKq4ZAUcBT h5 {
  margin: 0;
}
.cid-tKq4ZAUcBT .mbr-section-head {
  margin-bottom: 40px;
}
@media (max-width: 680px) {
  .cid-tKq4ZAUcBT .mbr-section-head {
    padding: 0 35px;
  }
}
.cid-tKq4ZAUcBT .mbr-section-title {
  color: #000000;
  text-align: center;
  margin: 0;
}
.cid-tKq4ZAUcBT .mbr-section-subtitle {
  color: #6b6b6b;
  text-align: center;
  margin: 0;
}
.cid-tKq4ZAUcBT .card-container {
  max-width: 100%;
  display: flex;
  flex-wrap: wrap;
}
.cid-tKq4ZAUcBT .card {
  width: 20%;
  padding: 0 15px;
  margin-bottom: 30px;
  transition: all 1s ease-out;
}
.cid-tKq4ZAUcBT .card:nth-child(2n + 1) {
  margin-top: 57px;
}
@media (max-width: 1024px) {
  .cid-tKq4ZAUcBT .card:nth-child(2n + 1) {
    margin-top: 0;
  }
}
@media (max-width: 1024px) {
  .cid-tKq4ZAUcBT .card {
    width: 50%;
  }
}
@media (max-width: 680px) {
  .cid-tKq4ZAUcBT .card {
    width: 100%;
    padding-left: 0;
    padding-right: 0;
  }
}
.cid-tKq4ZAUcBT .image-wrap {
  width: 100%;
  position: relative;
  overflow: hidden;
}
.cid-tKq4ZAUcBT .image-wrap::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: all 1s ease-out;
  --qodef-gradient-color-1: rgba(248, 117, 117, 0.8);
  --qodef-gradient-color-2: rgba(255, 160, 160, 0.44);
  --qodef-gradient-color-3: rgba(254, 216, 255, 0);
  --qodef-gradient-color-4: #b1d2fe;
  --qodef-gradient-color-5: rgba(230, 255, 250, 0);
  --qodef-gradient-color-6: #d8cafe;
  background: radial-gradient(105.68% 45.69% at 92.95% 50%, var(--qodef-gradient-color-1) 0, var(--qodef-gradient-color-2) 53.91%, var(--qodef-gradient-color-3) 100%), radial-gradient(103.18% 103.18% at 90.11% 102.39%, var(--qodef-gradient-color-4) 0, var(--qodef-gradient-color-5) 100%), radial-gradient(90.45% 90.45% at 87.84% 9.55%, var(--qodef-gradient-color-5) 0, rgba(254, 219, 246, 0) 100%), linear-gradient(135.66deg, var(--qodef-gradient-color-6) 14.89%, var(--qodef-gradient-color-6) 74.33%);
  z-index: 1;
  pointer-events: none;
}
.cid-tKq4ZAUcBT .image-wrap img {
  width: 100%;
  height: auto;
  object-fit: cover;
}
.cid-tKq4ZAUcBT .card:hover {
  cursor: pointer;
}
.cid-tKq4ZAUcBT .card:hover .image-wrap::before {
  opacity: 0.7;
}
.cid-tKq4ZAUcBT .mbr-card-title {
  color: #000000;
  margin-top: 13px;
  margin-bottom: 4px;
}
.cid-tKq4ZAUcBT .mbr-card-subtitle {
  color: #6b6b6b;
  margin-top: -5px;
  margin-bottom: 14px;
}
.cid-tKq4ZAUcBT .item-caption {
  padding: 16px 0 8px;
  background: transparent;
}
.cid-uCUovwTx3A {
  padding-top: 5rem;
  padding-bottom: 5rem;
  overflow: hidden;
  position: relative;
  background-color: #000000;
}
.cid-uCUovwTx3A::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -15%;
  width: 32rem;
  height: 100%;
  background-image: linear-gradient(60deg, #ffb18a 0, #ffb18a 100%);
  border-radius: 100%;
  z-index: 1;
  filter: blur(70px);
}
.cid-uCUovwTx3A .mbr-fallback-image.disabled {
  display: none;
}
.cid-uCUovwTx3A .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uCUovwTx3A .container-fluid {
  padding: 0 64px;
}
@media (max-width: 992px) {
  .cid-uCUovwTx3A .container-fluid {
    padding: 0 24px;
  }
}
@media (max-width: 992px) {
  .cid-uCUovwTx3A .container {
    padding: 0 24px;
  }
}
.cid-uCUovwTx3A .row {
  justify-content: center;
}
.cid-uCUovwTx3A .row .card,
.cid-uCUovwTx3A .row .item {
  padding: 0 12px;
}
.cid-uCUovwTx3A .title-wrapper {
  position: relative;
  z-index: 1;
  margin-bottom: 64px;
}
@media (max-width: 992px) {
  .cid-uCUovwTx3A .title-wrapper {
    margin-bottom: 32px;
  }
}
.cid-uCUovwTx3A .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-uCUovwTx3A .item {
  position: relative;
  z-index: 1;
  margin-bottom: 24px;
}
.cid-uCUovwTx3A .item .item-wrapper {
  padding: 32px;
  border-radius: .75rem !important;
  background-color: #000000;
  height: 100%;
}
@media (max-width: 992px) {
  .cid-uCUovwTx3A .item .item-wrapper {
    padding: 24px;
  }
}
.cid-uCUovwTx3A .item .item-wrapper .card-box .card-number {
  margin-bottom: 24px;
  opacity: .4;
}
.cid-uCUovwTx3A .item .item-wrapper .card-box .card-title {
  margin-bottom: 24px;
}
.cid-uCUovwTx3A .item .item-wrapper .card-box .card-text {
  margin-bottom: 0;
  transition: all .3s ease;
  opacity: .7;
}
.cid-uCUovwTx3A .item .item-wrapper .card-box .card-text:hover,
.cid-uCUovwTx3A .item .item-wrapper .card-box .card-text:focus {
  opacity: 1;
}
.cid-uCUovwTx3A .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-uCUovwTx3A .card-title {
  color: #ffffff;
}
.cid-uCUovwTx3A .card-text {
  color: #ffffff;
}
.cid-uBevnxynmr {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #000000;
}
.cid-uBevnxynmr .line {
  width: 55px;
  margin-bottom: 0.5rem;
  height: 5px;
  display: inline-block;
  background: linear-gradient(to left, #ffffff, #ff9966);
}
.cid-uBevnxynmr .btn-col {
  align-items: flex-end;
  justify-content: flex-end;
  display: flex;
}
@media (max-width: 767px) {
  .cid-uBevnxynmr .btn-col {
    justify-content: center;
  }
}
.cid-uBevnxynmr .mbr-text,
.cid-uBevnxynmr .mbr-section-btn {
  color: #ffffff;
}
.cid-uBevnxynmr p {
  margin: 0;
}
.cid-tpRj31tIeQ {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-tpRj31tIeQ .mbr-fallback-image.disabled {
  display: none;
}
.cid-tpRj31tIeQ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tpRj31tIeQ .container {
  width: 100%;
  max-width: 1310px;
}
@media (max-width: 1199px) {
  .cid-tpRj31tIeQ .container {
    max-width: 960px;
  }
}
@media (max-width: 991px) {
  .cid-tpRj31tIeQ .container {
    max-width: 720px;
  }
}
@media (max-width: 767px) {
  .cid-tpRj31tIeQ .container {
    max-width: 540px;
  }
}
@media (max-width: 575px) {
  .cid-tpRj31tIeQ .container {
    max-width: 100%;
  }
  .cid-tpRj31tIeQ .container .row > [class*="col"] {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.cid-tpRj31tIeQ .item-wrap {
  width: 100%;
}
.cid-tpRj31tIeQ .navbar-brand {
  display: flex;
  flex-wrap: wrap;
  word-break: break-word !important;
  word-wrap: break-word !important;
  min-height: 50px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  margin-bottom: 30px;
  padding: 0;
  transition: all 0.4s;
  z-index: 1;
  white-space: normal;
}
.cid-tpRj31tIeQ .navbar-brand .navbar-logo {
  margin-right: 0.5rem;
}
.cid-tpRj31tIeQ .navbar-brand .navbar-logo img {
  width: auto;
}
.cid-tpRj31tIeQ .navbar-brand .navbar-caption {
  line-height: inherit !important;
  word-break: break-word !important;
  word-wrap: break-word !important;
}
.cid-tpRj31tIeQ .navbar-brand .navbar-caption:hover {
  text-decoration-line: none !important;
}
.cid-tpRj31tIeQ .navbar-brand .navbar-logo a {
  outline: none;
  word-break: break-word !important;
  word-wrap: break-word !important;
}
.cid-tpRj31tIeQ .navbar-brand .navbar-logo a:hover {
  text-decoration-line: none !important;
}
.cid-tpRj31tIeQ .copyright {
  color: #C4CFDE;
  padding: 0;
  width: 100%;
}
.cid-tpRmFVZvjp .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;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-tpRmFVZvjp .nav-item:focus,
.cid-tpRmFVZvjp .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-tpRmFVZvjp .dropdown-item:hover:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    width: 16px;
  }
  .cid-tpRmFVZvjp .nav-item .nav-link {
    position: relative;
  }
  .cid-tpRmFVZvjp .nav-item .nav-link::before {
    position: absolute;
    content: '';
    width: 0;
    height: 3px;
    bottom: -0.5rem;
    left: 50%;
    background: linear-gradient(90deg, #ff9966, #ffffff);
    transition: width 200ms linear, left 200ms linear;
  }
  .cid-tpRmFVZvjp .nav-item.open .nav-link::before {
    bottom: .2rem;
    width: 80% !important;
    left: 10% !important;
  }
  .cid-tpRmFVZvjp .nav-item .nav-link:hover::before {
    width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tpRmFVZvjp .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 2.5385em 0.235em 3.5385em;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-tpRmFVZvjp .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tpRmFVZvjp .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-tpRmFVZvjp .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-tpRmFVZvjp .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;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-tpRmFVZvjp .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tpRmFVZvjp .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tpRmFVZvjp .navbar {
  min-height: 77px;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-direction: column;
  flex-direction: column;
  display: -webkit-flex;
  -webkit-align-items: center;
  background: none;
}
.cid-tpRmFVZvjp .navbar .mbr-overlay {
  z-index: -1;
  transition: all .3s;
  background: #000000;
  background: linear-gradient(#000000, #000000);
  background: none;
}
.cid-tpRmFVZvjp .navbar.opened .mbr-overlay {
  transition: all .3s;
  background: #000000 !important;
  background: linear-gradient(#000000, #000000) !important;
}
.cid-tpRmFVZvjp .navbar .dropdown-item {
  padding: .25rem 1.5rem;
}
.cid-tpRmFVZvjp .navbar .navbar-collapse {
  width: 100%;
  -webkit-flex-basis: auto;
  flex-basis: auto;
  -webkit-justify-content: center;
  justify-content: center;
  z-index: 1;
  padding: .5rem 1rem;
}
@media (max-width: 991px) {
  .cid-tpRmFVZvjp .navbar .navbar-collapse {
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
  }
}
.cid-tpRmFVZvjp .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-tpRmFVZvjp .navbar.collapsed.opened .navbar-collapse {
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-tpRmFVZvjp .navbar.collapsed .navbar-collapse.show,
.cid-tpRmFVZvjp .navbar.collapsed .navbar-collapse.collapsing {
  transition: all .3s linear;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-tpRmFVZvjp .navbar.collapsed .navbar-collapse.show .brand-container,
.cid-tpRmFVZvjp .navbar.collapsed .navbar-collapse.collapsing .brand-container {
  -webkit-order: -1;
  order: -1;
}
.cid-tpRmFVZvjp .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-tpRmFVZvjp .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tpRmFVZvjp .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tpRmFVZvjp .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-tpRmFVZvjp .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tpRmFVZvjp .navbar.collapsed .navbar-buttons {
  margin: 0;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-tpRmFVZvjp .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-tpRmFVZvjp .navbar.collapsed .right-menu,
.cid-tpRmFVZvjp .navbar.collapsed .left-menu {
  -webkit-flex-basis: auto;
  flex-basis: auto;
}
@media (max-width: 991px) {
  .cid-tpRmFVZvjp .navbar .navbar-collapse.show,
  .cid-tpRmFVZvjp .navbar .navbar-collapse.collapsing {
    transition: all .3s linear;
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .cid-tpRmFVZvjp .navbar .navbar-collapse.show .brand-container,
  .cid-tpRmFVZvjp .navbar .navbar-collapse.collapsing .brand-container {
    -webkit-order: -1;
    order: -1;
  }
  .cid-tpRmFVZvjp .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tpRmFVZvjp .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-tpRmFVZvjp .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tpRmFVZvjp .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tpRmFVZvjp .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-tpRmFVZvjp .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-tpRmFVZvjp .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tpRmFVZvjp .navbar .navbar-buttons {
    margin: 0;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .cid-tpRmFVZvjp .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem;
    text-align: center;
  }
  .cid-tpRmFVZvjp .navbar .right-menu,
  .cid-tpRmFVZvjp .navbar .left-menu {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
}
.cid-tpRmFVZvjp .navbar.navbar-short {
  min-height: 60px;
}
.cid-tpRmFVZvjp .navbar.navbar-short .mbr-overlay {
  background: #000000 !important;
  background: linear-gradient(#000000, #000000) !important;
}
.cid-tpRmFVZvjp .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-tpRmFVZvjp .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-tpRmFVZvjp .navbar-brand {
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tpRmFVZvjp .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tpRmFVZvjp .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tpRmFVZvjp .dropdown-item.active,
.cid-tpRmFVZvjp .dropdown-item:active {
  background-color: transparent;
}
.cid-tpRmFVZvjp .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tpRmFVZvjp .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tpRmFVZvjp .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tpRmFVZvjp .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-tpRmFVZvjp .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tpRmFVZvjp .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tpRmFVZvjp ul.navbar-nav {
  display: -webkit-flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
@media (max-width: 991px) {
  .cid-tpRmFVZvjp ul.navbar-nav {
    -webkit-flex-direction: column;
    flex-direction: column;
  }
}
.cid-tpRmFVZvjp .navbar-buttons {
  margin-left: auto;
}
.cid-tpRmFVZvjp button.navbar-toggler {
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  margin: 1rem;
  -webkit-align-self: center;
  align-self: center;
}
.cid-tpRmFVZvjp button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ff9966;
}
.cid-tpRmFVZvjp button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-tpRmFVZvjp button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-tpRmFVZvjp button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-tpRmFVZvjp button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-tpRmFVZvjp nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tpRmFVZvjp nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
  width: 20px;
  right: -2px;
}
.cid-tpRmFVZvjp nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
  width: 20px;
  left: -2px;
}
.cid-tpRmFVZvjp nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tpRmFVZvjp .navbar-dropdown {
  position: fixed;
}
.cid-tpRmFVZvjp a.nav-link {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-tpRmFVZvjp .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-tpRmFVZvjp .right-menu,
.cid-tpRmFVZvjp .left-menu {
  -webkit-flex-basis: 50%;
  flex-basis: 50%;
}
.cid-tpRmFVZvjp .left-menu .navbar-nav {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-tpRmFVZvjp .left-menu .navbar-nav ul {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-tpRmFVZvjp .brand-container {
  padding: 0 2rem;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-tpRmFVZvjp .menu-top {
  text-align: center;
  width: 100%;
  background-color: #fe525b;
  padding: .5rem 0;
}
.cid-tpRmFVZvjp .full-link {
  width: 100%;
  font-size: 0;
  z-index: 2;
}
.cid-tpRmFVZvjp .card-wrapper {
  z-index: 3;
}
.cid-tpRmFVZvjp .popup-btn.card-wrapper {
  z-index: 1 !important;
}
@media (max-width: 991px) {
  .cid-tpRmFVZvjp .navbar-collapse {
    padding-top: 0;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tpRmFVZvjp .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tpRrlM1Is5 {
  padding-top: 6rem;
  padding-bottom: 9rem;
  background-image: url("../../../assets/images/mbr-1-1920x1280.jpg");
}
@media (max-width: 991px) {
  .cid-tpRrlM1Is5 .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tpRrlM1Is5 .row {
  flex-direction: row-reverse;
}
.cid-tpRrlM1Is5 img {
  width: 100%;
}
.cid-tpRrlM1Is5 .mbr-description {
  color: #ffffff;
}
.cid-uC9Yj6OlAc {
  padding-top: 1rem;
  padding-bottom: 3rem;
  background-color: #000000;
}
.cid-uC9Yj6OlAc .mbr-section-subtitle {
  margin-bottom: 20px;
  color: #bb6a58;
  text-align: center;
  letter-spacing: 5.4px;
}
.cid-uC9Yj6OlAc .mbr-section-title {
  color: #c5a97c;
  text-align: center;
}
.cid-uC9Y0XapV1 {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #000000;
}
.cid-uC9Y0XapV1 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uC9Y0XapV1 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uC9Y0XapV1 b,
.cid-uC9Y0XapV1 strong {
  font-weight: 900;
}
.cid-uC9Y0XapV1 path {
  stroke: #c5a97c !important;
}
.cid-uC9Y0XapV1 .mbr-text {
  color: #767676;
}
.cid-uC9Y0XapV1 .mbr-section-subtitle {
  color: #767676;
}
.cid-uC9Y0XapV1 .card-box {
  position: relative;
  margin: 3rem 0;
}
.cid-uC9Y0XapV1 .card-box svg {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 0;
}
.cid-uC9Y0XapV1 .card-box h4,
.cid-uC9Y0XapV1 .card-box p,
.cid-uC9Y0XapV1 .card-box span {
  z-index: 1;
  position: relative;
}
.cid-uC9Y0XapV1 .title .num {
  width: 100%;
  display: block;
}
.cid-uC9Y0XapV1 .title .card-title {
  z-index: 1;
}
.cid-uC9Y0XapV1 .num {
  color: #ffffff;
  text-align: center;
}
@media (max-width: 767px) {
  .cid-uC9Y0XapV1 * {
    text-align: center !important;
  }
  .cid-uC9Y0XapV1 .content-column {
    margin-bottom: 2rem;
  }
}
.cid-uC9Y0XapV1 .card-title,
.cid-uC9Y0XapV1 .card-img {
  text-align: center;
  color: #17003b;
}
.cid-uC9Y0XapV1 .card-text {
  text-align: center;
  color: #ffffff;
}
.cid-uC9Y0XapV1 .mbr-section-title,
.cid-uC9Y0XapV1 .card-box {
  text-align: center;
}
.cid-uC9Xo2TnFX {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-uC9Xo2TnFX .row {
  position: relative;
}
.cid-uC9Xo2TnFX .row .blur-circle {
  position: absolute;
  top: 25%;
  left: 34%;
  width: 420px;
  height: 420px;
  border-radius: 100%;
  background-image: linear-gradient(90deg, #ff9966 50%, #c5a97c);
  backdrop-filter: blur(10px);
  filter: blur(64px) blur(64px);
}
@media (max-width: 768px) {
  .cid-uC9Xo2TnFX .row .blur-circle {
    display: none;
  }
}
.cid-uC9Xo2TnFX .mbr-fallback-image.disabled {
  display: none;
}
.cid-uC9Xo2TnFX .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uC9Xo2TnFX .row {
  padding: 0 80px;
}
@media (max-width: 992px) {
  .cid-uC9Xo2TnFX .row {
    padding: 0 35px;
  }
}
@media (max-width: 425px) {
  .cid-uC9Xo2TnFX .row {
    padding: 0 24px;
  }
}
.cid-uC9Xo2TnFX .row {
  justify-content: center;
}
.cid-uC9Xo2TnFX .title-wrapper {
  position: relative;
  z-index: 1;
  margin-bottom: 64px;
}
@media (max-width: 992px) {
  .cid-uC9Xo2TnFX .title-wrapper {
    margin-bottom: 32px;
  }
}
.cid-uC9Xo2TnFX .title-wrapper .mbr-section-title {
  margin-bottom: 10px;
}
.cid-uC9Xo2TnFX .title-wrapper .mbr-section-title span {
  position: relative;
  z-index: 1;
}
.cid-uC9Xo2TnFX .title-wrapper .mbr-section-title span::before {
  content: '';
  position: absolute;
  bottom: 22%;
  left: 0;
  width: 100%;
  height: 18px;
  background-color: #ff9966;
  z-index: -1;
}
.cid-uC9Xo2TnFX .title-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-uC9Xo2TnFX .card {
  position: relative;
  z-index: 1;
  padding: 64px;
  border-radius: 0;
}
.cid-uC9Xo2TnFX .card .mbr-card-title {
  margin-bottom: 30px;
}
.cid-uC9Xo2TnFX .card .mbr-card-text {
  margin-bottom: 10px;
}
@media (max-width: 568px) {
  .cid-uC9Xo2TnFX .card {
    padding: 32px;
  }
}
.cid-uC9Xo2TnFX .card.first {
  border-right: 2px solid #ffffff;
  border-bottom: 2px solid #ffffff;
  border-bottom-right-radius: 16px;
}
.cid-uC9Xo2TnFX .card.last {
  border-left: 2px solid #ffffff;
  border-top: 2px solid #ffffff;
  border-top-left-radius: 16px;
}
.cid-uC9Xo2TnFX .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-uC9Xo2TnFX .mbr-text {
  color: #111111;
  text-align: center;
}
.cid-uC9Xo2TnFX .mbr-card-title {
  color: #111111;
}
.cid-uC9Xo2TnFX .mbr-card-text {
  color: #ffffff;
}
.cid-uC9Xo2TnFX .mbr-card-title,
.cid-uC9Xo2TnFX .mbr-section-btn {
  color: #ffffff;
}
.cid-uCUpAl6Hb9 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  overflow: hidden;
  position: relative;
  background-color: #000000;
}
.cid-uCUpAl6Hb9::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -15%;
  width: 32rem;
  height: 100%;
  background-image: linear-gradient(60deg, #ffb18a 0, #ffb18a 100%);
  border-radius: 100%;
  z-index: 1;
  filter: blur(70px);
}
.cid-uCUpAl6Hb9 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uCUpAl6Hb9 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uCUpAl6Hb9 .container-fluid {
  padding: 0 64px;
}
@media (max-width: 992px) {
  .cid-uCUpAl6Hb9 .container-fluid {
    padding: 0 24px;
  }
}
@media (max-width: 992px) {
  .cid-uCUpAl6Hb9 .container {
    padding: 0 24px;
  }
}
.cid-uCUpAl6Hb9 .row {
  justify-content: center;
}
.cid-uCUpAl6Hb9 .row .card,
.cid-uCUpAl6Hb9 .row .item {
  padding: 0 12px;
}
.cid-uCUpAl6Hb9 .title-wrapper {
  position: relative;
  z-index: 1;
  margin-bottom: 64px;
}
@media (max-width: 992px) {
  .cid-uCUpAl6Hb9 .title-wrapper {
    margin-bottom: 32px;
  }
}
.cid-uCUpAl6Hb9 .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-uCUpAl6Hb9 .item {
  position: relative;
  z-index: 1;
  margin-bottom: 24px;
}
.cid-uCUpAl6Hb9 .item .item-wrapper {
  padding: 32px;
  border-radius: .75rem !important;
  background-color: #000000;
  height: 100%;
}
@media (max-width: 992px) {
  .cid-uCUpAl6Hb9 .item .item-wrapper {
    padding: 24px;
  }
}
.cid-uCUpAl6Hb9 .item .item-wrapper .card-box .card-number {
  margin-bottom: 24px;
  opacity: .4;
}
.cid-uCUpAl6Hb9 .item .item-wrapper .card-box .card-title {
  margin-bottom: 24px;
}
.cid-uCUpAl6Hb9 .item .item-wrapper .card-box .card-text {
  margin-bottom: 0;
  transition: all .3s ease;
  opacity: .7;
}
.cid-uCUpAl6Hb9 .item .item-wrapper .card-box .card-text:hover,
.cid-uCUpAl6Hb9 .item .item-wrapper .card-box .card-text:focus {
  opacity: 1;
}
.cid-uCUpAl6Hb9 .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-uCUpAl6Hb9 .card-title {
  color: #ffffff;
}
.cid-uCUpAl6Hb9 .card-text {
  color: #ffffff;
}
.cid-tpRj31tIeQ {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-tpRj31tIeQ .mbr-fallback-image.disabled {
  display: none;
}
.cid-tpRj31tIeQ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tpRj31tIeQ .container {
  width: 100%;
  max-width: 1310px;
}
@media (max-width: 1199px) {
  .cid-tpRj31tIeQ .container {
    max-width: 960px;
  }
}
@media (max-width: 991px) {
  .cid-tpRj31tIeQ .container {
    max-width: 720px;
  }
}
@media (max-width: 767px) {
  .cid-tpRj31tIeQ .container {
    max-width: 540px;
  }
}
@media (max-width: 575px) {
  .cid-tpRj31tIeQ .container {
    max-width: 100%;
  }
  .cid-tpRj31tIeQ .container .row > [class*="col"] {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.cid-tpRj31tIeQ .item-wrap {
  width: 100%;
}
.cid-tpRj31tIeQ .navbar-brand {
  display: flex;
  flex-wrap: wrap;
  word-break: break-word !important;
  word-wrap: break-word !important;
  min-height: 50px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  margin-bottom: 30px;
  padding: 0;
  transition: all 0.4s;
  z-index: 1;
  white-space: normal;
}
.cid-tpRj31tIeQ .navbar-brand .navbar-logo {
  margin-right: 0.5rem;
}
.cid-tpRj31tIeQ .navbar-brand .navbar-logo img {
  width: auto;
}
.cid-tpRj31tIeQ .navbar-brand .navbar-caption {
  line-height: inherit !important;
  word-break: break-word !important;
  word-wrap: break-word !important;
}
.cid-tpRj31tIeQ .navbar-brand .navbar-caption:hover {
  text-decoration-line: none !important;
}
.cid-tpRj31tIeQ .navbar-brand .navbar-logo a {
  outline: none;
  word-break: break-word !important;
  word-wrap: break-word !important;
}
.cid-tpRj31tIeQ .navbar-brand .navbar-logo a:hover {
  text-decoration-line: none !important;
}
.cid-tpRj31tIeQ .copyright {
  color: #C4CFDE;
  padding: 0;
  width: 100%;
}
.cid-tpRmFVZvjp .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;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-tpRmFVZvjp .nav-item:focus,
.cid-tpRmFVZvjp .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-tpRmFVZvjp .dropdown-item:hover:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    width: 16px;
  }
  .cid-tpRmFVZvjp .nav-item .nav-link {
    position: relative;
  }
  .cid-tpRmFVZvjp .nav-item .nav-link::before {
    position: absolute;
    content: '';
    width: 0;
    height: 3px;
    bottom: -0.5rem;
    left: 50%;
    background: linear-gradient(90deg, #ff9966, #ffffff);
    transition: width 200ms linear, left 200ms linear;
  }
  .cid-tpRmFVZvjp .nav-item.open .nav-link::before {
    bottom: .2rem;
    width: 80% !important;
    left: 10% !important;
  }
  .cid-tpRmFVZvjp .nav-item .nav-link:hover::before {
    width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tpRmFVZvjp .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 2.5385em 0.235em 3.5385em;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-tpRmFVZvjp .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tpRmFVZvjp .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-tpRmFVZvjp .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-tpRmFVZvjp .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;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-tpRmFVZvjp .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tpRmFVZvjp .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tpRmFVZvjp .navbar {
  min-height: 77px;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-direction: column;
  flex-direction: column;
  display: -webkit-flex;
  -webkit-align-items: center;
  background: none;
}
.cid-tpRmFVZvjp .navbar .mbr-overlay {
  z-index: -1;
  transition: all .3s;
  background: #000000;
  background: linear-gradient(#000000, #000000);
  background: none;
}
.cid-tpRmFVZvjp .navbar.opened .mbr-overlay {
  transition: all .3s;
  background: #000000 !important;
  background: linear-gradient(#000000, #000000) !important;
}
.cid-tpRmFVZvjp .navbar .dropdown-item {
  padding: .25rem 1.5rem;
}
.cid-tpRmFVZvjp .navbar .navbar-collapse {
  width: 100%;
  -webkit-flex-basis: auto;
  flex-basis: auto;
  -webkit-justify-content: center;
  justify-content: center;
  z-index: 1;
  padding: .5rem 1rem;
}
@media (max-width: 991px) {
  .cid-tpRmFVZvjp .navbar .navbar-collapse {
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
  }
}
.cid-tpRmFVZvjp .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-tpRmFVZvjp .navbar.collapsed.opened .navbar-collapse {
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-tpRmFVZvjp .navbar.collapsed .navbar-collapse.show,
.cid-tpRmFVZvjp .navbar.collapsed .navbar-collapse.collapsing {
  transition: all .3s linear;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-tpRmFVZvjp .navbar.collapsed .navbar-collapse.show .brand-container,
.cid-tpRmFVZvjp .navbar.collapsed .navbar-collapse.collapsing .brand-container {
  -webkit-order: -1;
  order: -1;
}
.cid-tpRmFVZvjp .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-tpRmFVZvjp .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tpRmFVZvjp .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tpRmFVZvjp .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-tpRmFVZvjp .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tpRmFVZvjp .navbar.collapsed .navbar-buttons {
  margin: 0;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-tpRmFVZvjp .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-tpRmFVZvjp .navbar.collapsed .right-menu,
.cid-tpRmFVZvjp .navbar.collapsed .left-menu {
  -webkit-flex-basis: auto;
  flex-basis: auto;
}
@media (max-width: 991px) {
  .cid-tpRmFVZvjp .navbar .navbar-collapse.show,
  .cid-tpRmFVZvjp .navbar .navbar-collapse.collapsing {
    transition: all .3s linear;
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .cid-tpRmFVZvjp .navbar .navbar-collapse.show .brand-container,
  .cid-tpRmFVZvjp .navbar .navbar-collapse.collapsing .brand-container {
    -webkit-order: -1;
    order: -1;
  }
  .cid-tpRmFVZvjp .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tpRmFVZvjp .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-tpRmFVZvjp .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tpRmFVZvjp .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tpRmFVZvjp .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-tpRmFVZvjp .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-tpRmFVZvjp .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tpRmFVZvjp .navbar .navbar-buttons {
    margin: 0;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .cid-tpRmFVZvjp .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem;
    text-align: center;
  }
  .cid-tpRmFVZvjp .navbar .right-menu,
  .cid-tpRmFVZvjp .navbar .left-menu {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
}
.cid-tpRmFVZvjp .navbar.navbar-short {
  min-height: 60px;
}
.cid-tpRmFVZvjp .navbar.navbar-short .mbr-overlay {
  background: #000000 !important;
  background: linear-gradient(#000000, #000000) !important;
}
.cid-tpRmFVZvjp .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-tpRmFVZvjp .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-tpRmFVZvjp .navbar-brand {
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tpRmFVZvjp .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tpRmFVZvjp .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tpRmFVZvjp .dropdown-item.active,
.cid-tpRmFVZvjp .dropdown-item:active {
  background-color: transparent;
}
.cid-tpRmFVZvjp .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tpRmFVZvjp .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tpRmFVZvjp .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tpRmFVZvjp .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-tpRmFVZvjp .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tpRmFVZvjp .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tpRmFVZvjp ul.navbar-nav {
  display: -webkit-flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
@media (max-width: 991px) {
  .cid-tpRmFVZvjp ul.navbar-nav {
    -webkit-flex-direction: column;
    flex-direction: column;
  }
}
.cid-tpRmFVZvjp .navbar-buttons {
  margin-left: auto;
}
.cid-tpRmFVZvjp button.navbar-toggler {
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  margin: 1rem;
  -webkit-align-self: center;
  align-self: center;
}
.cid-tpRmFVZvjp button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ff9966;
}
.cid-tpRmFVZvjp button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-tpRmFVZvjp button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-tpRmFVZvjp button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-tpRmFVZvjp button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-tpRmFVZvjp nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tpRmFVZvjp nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
  width: 20px;
  right: -2px;
}
.cid-tpRmFVZvjp nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
  width: 20px;
  left: -2px;
}
.cid-tpRmFVZvjp nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tpRmFVZvjp .navbar-dropdown {
  position: fixed;
}
.cid-tpRmFVZvjp a.nav-link {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-tpRmFVZvjp .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-tpRmFVZvjp .right-menu,
.cid-tpRmFVZvjp .left-menu {
  -webkit-flex-basis: 50%;
  flex-basis: 50%;
}
.cid-tpRmFVZvjp .left-menu .navbar-nav {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-tpRmFVZvjp .left-menu .navbar-nav ul {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-tpRmFVZvjp .brand-container {
  padding: 0 2rem;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-tpRmFVZvjp .menu-top {
  text-align: center;
  width: 100%;
  background-color: #fe525b;
  padding: .5rem 0;
}
.cid-tpRmFVZvjp .full-link {
  width: 100%;
  font-size: 0;
  z-index: 2;
}
.cid-tpRmFVZvjp .card-wrapper {
  z-index: 3;
}
.cid-tpRmFVZvjp .popup-btn.card-wrapper {
  z-index: 1 !important;
}
@media (max-width: 991px) {
  .cid-tpRmFVZvjp .navbar-collapse {
    padding-top: 0;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tpRmFVZvjp .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uC9YO2rBqx {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/68676-626x418.jpg");
}
.cid-uC9YO2rBqx .mbr-fallback-image.disabled {
  display: none;
}
.cid-uC9YO2rBqx .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uC9YO2rBqx .container-fluid {
  padding: 0;
}
@media (max-width: 992px) {
  .cid-uC9YO2rBqx .container-fluid {
    padding: 0;
  }
}
@media (max-width: 992px) {
  .cid-uC9YO2rBqx .container {
    padding: 0;
  }
}
.cid-uC9YO2rBqx .row {
  justify-content: center;
}
.cid-uC9YO2rBqx .title-wrapper {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uC9YO2rBqx .title-wrapper {
    padding: 0 16px;
  }
}
.cid-uC9YO2rBqx .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-uC9YO2rBqx form {
    padding: 0 16px;
  }
}
.cid-uC9YO2rBqx .dragArea.row .form-group {
  margin-bottom: 25px !important;
}
.cid-uC9YO2rBqx .dragArea.row .form-group .form-control {
  padding: 10px;
  border: 1px solid #263652 !important;
  background-color: #ffffff;
  border-radius: 0;
  box-shadow: none;
}
.cid-uC9YO2rBqx .dragArea.row .form-group .form-control::placeholder {
  color: #263652;
}
.cid-uC9YO2rBqx .dragArea.row .form-group .form-check {
  padding-left: 2.3rem;
}
.cid-uC9YO2rBqx .dragArea.row .form-group .form-check .form-check-input {
  background-color: #263652;
  border-color: #263652;
}
.cid-uC9YO2rBqx .dragArea.row .form-group textarea {
  padding: 20px 10px;
  min-height: 150px;
}
.cid-uC9YO2rBqx .dragArea.row .mbr-section-btn {
  margin-top: 30px;
}
.cid-uC9YO2rBqx .mbr-section-title {
  color: #c5a97c;
}
.cid-uC9YO2rBqx label {
  color: #263652;
}
.cid-uC9Yym0JwR {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background: #000000;
}
.cid-uC9Yym0JwR .mbr-fallback-image.disabled {
  display: none;
}
.cid-uC9Yym0JwR .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uC9Yym0JwR .map-wrapper {
  height: 100%;
}
.cid-uC9Yym0JwR .card-wrapper {
  border: 1px solid #ff9966;
  padding: 3rem 2.25rem;
  background: #000000;
}
@media (min-width: 992px) and (max-width: 1200px) {
  .cid-uC9Yym0JwR .card-wrapper {
    padding: 1.5rem;
  }
}
@media (max-width: 767px) {
  .cid-uC9Yym0JwR .card-wrapper {
    padding: 2rem 1.5rem;
  }
}
@media (max-width: 992px) {
  .cid-uC9Yym0JwR .row .map-wrapper {
    margin-top: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uC9Yym0JwR .row .map-wrapper {
    margin-top: 1rem;
  }
}
.cid-uC9Yym0JwR .google-map {
  height: 100%;
  position: relative;
}
.cid-uC9Yym0JwR .google-map iframe {
  height: 100%;
  width: 100%;
}
@media (max-width: 992px) {
  .cid-uC9Yym0JwR .google-map iframe {
    min-height: 350px;
  }
}
.cid-uC9Yym0JwR .google-map [data-state-details] {
  color: #6b6763;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-uC9Yym0JwR .google-map[data-state] {
  background: #e9e5dc;
}
.cid-uC9Yym0JwR .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-uC9Yym0JwR ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.cid-uC9Yym0JwR .content-head {
  max-width: 800px;
}
.cid-uC9Yym0JwR .mbr-section-title {
  color: #221b35;
}
.cid-uC9Yym0JwR .cardTitle {
  color: #c5a97c;
}
.cid-uC9Yym0JwR .list,
.cid-uC9Yym0JwR .item-wrap {
  color: #ffffff;
}
.cid-tqGgYDjZxy {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #000000;
}
.cid-tqGgYDjZxy .line {
  width: 55px;
  margin-bottom: 0.5rem;
  height: 5px;
  display: inline-block;
  background: linear-gradient(to left, #ffffff, #ff9966);
}
.cid-tqGgYDjZxy .btn-col {
  align-items: flex-end;
  justify-content: flex-end;
  display: flex;
}
@media (max-width: 767px) {
  .cid-tqGgYDjZxy .btn-col {
    justify-content: center;
  }
}
.cid-tqGgYDjZxy .mbr-text,
.cid-tqGgYDjZxy .mbr-section-btn {
  color: #999999;
}
.cid-tqGgYDjZxy p {
  margin: 0;
}
.cid-tpRj31tIeQ {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-tpRj31tIeQ .mbr-fallback-image.disabled {
  display: none;
}
.cid-tpRj31tIeQ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tpRj31tIeQ .container {
  width: 100%;
  max-width: 1310px;
}
@media (max-width: 1199px) {
  .cid-tpRj31tIeQ .container {
    max-width: 960px;
  }
}
@media (max-width: 991px) {
  .cid-tpRj31tIeQ .container {
    max-width: 720px;
  }
}
@media (max-width: 767px) {
  .cid-tpRj31tIeQ .container {
    max-width: 540px;
  }
}
@media (max-width: 575px) {
  .cid-tpRj31tIeQ .container {
    max-width: 100%;
  }
  .cid-tpRj31tIeQ .container .row > [class*="col"] {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.cid-tpRj31tIeQ .item-wrap {
  width: 100%;
}
.cid-tpRj31tIeQ .navbar-brand {
  display: flex;
  flex-wrap: wrap;
  word-break: break-word !important;
  word-wrap: break-word !important;
  min-height: 50px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  margin-bottom: 30px;
  padding: 0;
  transition: all 0.4s;
  z-index: 1;
  white-space: normal;
}
.cid-tpRj31tIeQ .navbar-brand .navbar-logo {
  margin-right: 0.5rem;
}
.cid-tpRj31tIeQ .navbar-brand .navbar-logo img {
  width: auto;
}
.cid-tpRj31tIeQ .navbar-brand .navbar-caption {
  line-height: inherit !important;
  word-break: break-word !important;
  word-wrap: break-word !important;
}
.cid-tpRj31tIeQ .navbar-brand .navbar-caption:hover {
  text-decoration-line: none !important;
}
.cid-tpRj31tIeQ .navbar-brand .navbar-logo a {
  outline: none;
  word-break: break-word !important;
  word-wrap: break-word !important;
}
.cid-tpRj31tIeQ .navbar-brand .navbar-logo a:hover {
  text-decoration-line: none !important;
}
.cid-tpRj31tIeQ .copyright {
  color: #C4CFDE;
  padding: 0;
  width: 100%;
}
