.btn {
  border-width: 2px;
}
body {
  font-family: DM Sans;
}
.display-1 {
  font-family: 'Tapestry', cursive;
  font-size: 7.5rem;
  line-height: 1;
}
.display-1 > .mbr-iconfont {
  font-size: 9.375rem;
}
.display-2 {
  font-family: 'Tapestry', cursive;
  font-size: 5rem;
  line-height: 1;
}
.display-2 > .mbr-iconfont {
  font-size: 6.25rem;
}
.display-4 {
  font-family: 'DM Sans', sans-serif;
  font-size: 1.375rem;
  line-height: 1.5;
}
.display-4 > .mbr-iconfont {
  font-size: 1.71875rem;
}
.display-5 {
  font-family: 'Tapestry', cursive;
  font-size: 3.5rem;
  line-height: 1.05;
}
.display-5 > .mbr-iconfont {
  font-size: 4.375rem;
}
.display-7 {
  font-family: 'DM Sans', sans-serif;
  font-size: 1.125rem;
  line-height: 1.5;
}
.display-7 > .mbr-iconfont {
  font-size: 1.40625rem;
}
/* ---- 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: 6rem;
  }
  .display-2 {
    font-size: 4rem;
  }
  .display-5 {
    font-size: 2.8rem;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 5.25rem;
    font-size: calc( 1.9100000000000001rem + (7.5 - 1.9100000000000001) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1 * (1.9100000000000001rem + (7.5 - 1.9100000000000001) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 3.5rem;
    font-size: calc( 1.56rem + (5 - 1.56) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1 * (1.56rem + (5 - 1.56) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 1.1rem;
    font-size: calc( 1.09375rem + (1.375 - 1.09375) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.09375rem + (1.375 - 1.09375) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 2.45rem;
    font-size: calc( 1.375rem + (3.5 - 1.375) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.05 * (1.375rem + (3.5 - 1.375) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-7 {
    font-size: 0.9rem;
    font-size: calc( 1.03125rem + (1.125 - 1.03125) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.03125rem + (1.125 - 1.03125) * ((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: #b84358 !important;
}
.bg-success {
  background-color: #7f9c26 !important;
}
.bg-info {
  background-color: #bf9341 !important;
}
.bg-warning {
  background-color: #0f2051 !important;
}
.bg-danger {
  background-color: #73091c !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #b84358 !important;
  border-color: #b84358 !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: #782c3a !important;
  border-color: #782c3a !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #782c3a !important;
  border-color: #782c3a !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #3c4e84 !important;
  border-color: #3c4e84 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus,
.btn-secondary.active {
  color: #ffffff !important;
  background-color: #212b48 !important;
  border-color: #212b48 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #212b48 !important;
  border-color: #212b48 !important;
}
.btn-info,
.btn-info:active {
  background-color: #bf9341 !important;
  border-color: #bf9341 !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: #7f612b !important;
  border-color: #7f612b !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #7f612b !important;
  border-color: #7f612b !important;
}
.btn-success,
.btn-success:active {
  background-color: #7f9c26 !important;
  border-color: #7f9c26 !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: #465615 !important;
  border-color: #465615 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #465615 !important;
  border-color: #465615 !important;
}
.btn-warning,
.btn-warning:active {
  background-color: #0f2051 !important;
  border-color: #0f2051 !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: #010308 !important;
  border-color: #010308 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #ffffff !important;
  background-color: #010308 !important;
  border-color: #010308 !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #73091c !important;
  border-color: #73091c !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: #230308 !important;
  border-color: #230308 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #230308 !important;
  border-color: #230308 !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;
  color: #b84358;
  border-color: #b84358;
  color: #ffffff;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  box-shadow: none!important;
  border-color: #782c3a !important;
  background-color: #782c3a !important;
  color: #ffffff !important;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #b84358 !important;
  border-color: #b84358 !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background-color: transparent !important;
  color: #3c4e84;
  border-color: #3c4e84;
  color: #ffffff;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  box-shadow: none!important;
  border-color: #212b48 !important;
  background-color: #212b48 !important;
  color: #ffffff !important;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #3c4e84 !important;
  border-color: #3c4e84 !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background-color: transparent !important;
  color: #bf9341;
  border-color: #bf9341;
  color: #ffffff;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  box-shadow: none!important;
  border-color: #7f612b !important;
  background-color: #7f612b !important;
  color: #ffffff !important;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #bf9341 !important;
  border-color: #bf9341 !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background-color: transparent !important;
  color: #7f9c26;
  border-color: #7f9c26;
  color: #ffffff;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  box-shadow: none!important;
  border-color: #465615 !important;
  background-color: #465615 !important;
  color: #ffffff !important;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #ffffff !important;
  background-color: #7f9c26 !important;
  border-color: #7f9c26 !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background-color: transparent !important;
  color: #0f2051;
  border-color: #0f2051;
  color: #ffffff;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  box-shadow: none!important;
  border-color: #010308 !important;
  background-color: #010308 !important;
  color: #ffffff !important;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #ffffff !important;
  background-color: #0f2051 !important;
  border-color: #0f2051 !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background-color: transparent !important;
  color: #73091c;
  border-color: #73091c;
  color: #ffffff;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  box-shadow: none!important;
  border-color: #230308 !important;
  background-color: #230308 !important;
  color: #ffffff !important;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #73091c !important;
  border-color: #73091c !important;
}
.btn-black-outline,
.btn-black-outline:active {
  background-color: transparent !important;
  color: #232323;
  border-color: #232323;
  color: #ffffff;
}
.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.focus,
.btn-black-outline.active {
  box-shadow: none!important;
  border-color: #000000 !important;
  background-color: #000000 !important;
  color: #ffffff !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;
  color: #fafafa;
  border-color: #fafafa;
  color: #7a7a7a;
}
.btn-white-outline:hover,
.btn-white-outline:focus,
.btn-white-outline.focus,
.btn-white-outline.active {
  box-shadow: none!important;
  border-color: #cfcfcf !important;
  background-color: #cfcfcf !important;
  color: #4f4f4f !important;
}
.btn-white-outline.disabled,
.btn-white-outline:disabled {
  color: #7a7a7a !important;
  background-color: #fafafa !important;
  border-color: #fafafa !important;
}
.text-primary {
  color: #b84358 !important;
}
.text-secondary {
  color: #3c4e84 !important;
}
.text-success {
  color: #7f9c26 !important;
}
.text-info {
  color: #bf9341 !important;
}
.text-warning {
  color: #0f2051 !important;
}
.text-danger {
  color: #73091c !important;
}
.text-white {
  color: #fafafa !important;
}
.text-black {
  color: #232323 !important;
}
a.text-primary:hover,
a.text-primary:focus,
a.text-primary.active {
  color: #6d2834 !important;
}
a.text-secondary:hover,
a.text-secondary:focus,
a.text-secondary.active {
  color: #1c253e !important;
}
a.text-success:hover,
a.text-success:focus,
a.text-success.active {
  color: #3c4a12 !important;
}
a.text-info:hover,
a.text-info:focus,
a.text-info.active {
  color: #735927 !important;
}
a.text-warning:hover,
a.text-warning:focus,
a.text-warning.active {
  color: #000000 !important;
}
a.text-danger:hover,
a.text-danger:focus,
a.text-danger.active {
  color: #140205 !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: #b84358;
}
.nav-tabs .nav-link:not(.active) {
  color: #232323;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #bf9341;
}
.alert-warning {
  background-color: #0f2051;
}
.alert-danger {
  background-color: #73091c;
}
.mbr-section-btn a.btn:not(.btn-form) {
  border-radius: 100px;
}
.mbr-gallery-filter li a {
  border-radius: 100px !important;
}
.mbr-gallery-filter li.active .btn {
  background-color: #b84358;
  border-color: #b84358;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
.nav-tabs .nav-link {
  border-radius: 100px !important;
}
a,
a:hover {
  color: #b84358;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #dc9faa;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #beda67;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #dfc9a0;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #6384e2;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #e91239;
}
/* Scroll to top button*/
#scrollToTop a {
  border-radius: 100px;
}
.form-control {
  font-family: 'DM Sans', sans-serif;
  font-size: 1.375rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control > .mbr-iconfont {
  font-size: 1.71875rem;
}
.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: #b84358 !important;
}
.form-control:-webkit-input-placeholder {
  font-family: 'DM Sans', sans-serif;
  font-size: 1.375rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control:-webkit-input-placeholder > .mbr-iconfont {
  font-size: 1.71875rem;
}
blockquote {
  border-color: #b84358;
}
/* Forms */
.mbr-form .input-group-btn a.btn {
  border-radius: 100px !important;
}
.mbr-form .input-group-btn a.btn:hover {
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.mbr-form .input-group-btn button[type="submit"] {
  border-radius: 100px !important;
  padding: 1rem 3rem;
}
.mbr-form .input-group-btn button[type="submit"]:hover {
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #b84358;
  color: #ffffff;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #b84358;
}
.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: #b84358;
  border-bottom-color: #b84358;
}
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_default,
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_current,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div.xdsoft_current {
  color: #ffffff !important;
  background-color: #b84358 !important;
  box-shadow: none !important;
}
.xdsoft_datetimepicker .xdsoft_calendar td:hover,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div:hover {
  color: #ffffff !important;
  background: #3c4e84 !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='%23b84358' %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-duration: .2s;
}
a:hover {
  background-image: none !important;
}
.container,
.container-fluid {
  padding-left: 50px;
  padding-right: 50px;
}
@media (max-width: 1399px) {
  .container,
  .container-fluid {
    padding-left: 45px;
    padding-right: 45px;
  }
}
@media (max-width: 1199px) {
  .container,
  .container-fluid {
    padding-left: 36px;
    padding-right: 36px;
  }
}
@media (max-width: 1199px) {
  .container,
  .container-fluid {
    padding-left: 36px;
    padding-right: 36px;
  }
}
@media (max-width: 991px) {
  .container,
  .container-fluid {
    padding-left: 40px;
    padding-right: 40px;
  }
}
@media (max-width: 767px) {
  .container,
  .container-fluid {
    padding-left: 30px;
    padding-right: 30px;
  }
}
@media (max-width: 575px) {
  .container,
  .container-fluid {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.container {
  max-width: 1400px;
  margin: 0 auto;
}
.row {
  margin-left: -50px;
  margin-right: -50px;
  justify-content: center;
}
.row > [class*="col"] {
  padding-left: 50px;
  padding-right: 50px;
}
@media (max-width: 1399px) {
  .row {
    margin-left: -45px;
    margin-right: -45px;
    justify-content: center;
  }
  .row > [class*="col"] {
    padding-left: 45px;
    padding-right: 45px;
  }
}
@media (max-width: 1199px) {
  .row {
    margin-left: -36px;
    margin-right: -36px;
    justify-content: center;
  }
  .row > [class*="col"] {
    padding-left: 36px;
    padding-right: 36px;
  }
}
@media (max-width: 991px) {
  .row {
    margin-left: -40px;
    margin-right: -40px;
    justify-content: center;
  }
  .row > [class*="col"] {
    padding-left: 40px;
    padding-right: 40px;
  }
}
@media (max-width: 767px) {
  .row {
    margin-left: -30px;
    margin-right: -30px;
    justify-content: center;
  }
  .row > [class*="col"] {
    padding-left: 30px;
    padding-right: 30px;
  }
}
@media (max-width: 575px) {
  .row {
    margin-left: -20px;
    margin-right: -20px;
    justify-content: center;
  }
  .row > [class*="col"] {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.row {
  justify-content: center;
}
.mbr-section-btn .btn {
  min-width: 100px;
  min-height: 50px;
  padding: 15px 33px;
  font-weight: 500;
  line-height: 1 !important;
  transition-duration: .2s;
  box-shadow: none !important;
  border-radius: 25px !important;
  overflow: hidden !important;
}
.mbr-section-btn .btn .mbr-iconfont {
  transition: .5s all;
}
.mbr-section-btn .btn:hover .mbr-iconfont {
  transform: translateX(4px);
}
@media (max-width: 575px) {
  .mbr-section-btn {
    width: 100%;
  }
  .mbr-section-btn .btn {
    width: 100%;
    padding: 12px 24px;
    min-width: auto !important;
  }
}
.cid-uR2dCfTuxW {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uR2dCfTuxW nav.navbar {
  position: fixed;
}
.cid-uR2dCfTuxW .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uR2dCfTuxW .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uR2dCfTuxW .dropdown-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: .4s all !important;
}
.cid-uR2dCfTuxW .dropdown-item:hover,
.cid-uR2dCfTuxW .dropdown-item:focus {
  background: rgba(191, 147, 65, 0.5) !important;
  color: white !important;
}
.cid-uR2dCfTuxW .dropdown-item:hover span {
  color: white;
}
.cid-uR2dCfTuxW .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uR2dCfTuxW .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uR2dCfTuxW .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
  text-align: center;
}
.cid-uR2dCfTuxW .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uR2dCfTuxW .nav-link {
  position: relative;
}
.cid-uR2dCfTuxW .container {
  display: flex;
  margin: auto;
  max-width: 1600px;
}
.cid-uR2dCfTuxW .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0 !important;
}
.cid-uR2dCfTuxW .iconfont-wrapper .mbr-iconfont {
  transition: .4s all;
}
.cid-uR2dCfTuxW .iconfont-wrapper:hover .mbr-iconfont {
  color: #b84358;
}
.cid-uR2dCfTuxW .dropdown-menu,
.cid-uR2dCfTuxW .navbar.opened {
  background: #1a2229 !important;
}
.cid-uR2dCfTuxW .nav-item:focus,
.cid-uR2dCfTuxW .nav-link:focus {
  outline: none;
}
.cid-uR2dCfTuxW .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uR2dCfTuxW .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uR2dCfTuxW .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uR2dCfTuxW .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uR2dCfTuxW .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uR2dCfTuxW .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uR2dCfTuxW .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #1a2229;
  padding: 0 !important;
}
.cid-uR2dCfTuxW .navbar.opened {
  transition: all 0.3s;
}
.cid-uR2dCfTuxW .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uR2dCfTuxW .navbar .navbar-logo img {
  width: auto;
}
.cid-uR2dCfTuxW .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uR2dCfTuxW .navbar.collapsed {
  justify-content: center;
}
.cid-uR2dCfTuxW .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uR2dCfTuxW .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-uR2dCfTuxW .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uR2dCfTuxW .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uR2dCfTuxW .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-uR2dCfTuxW .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uR2dCfTuxW .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uR2dCfTuxW .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uR2dCfTuxW .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uR2dCfTuxW .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uR2dCfTuxW .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uR2dCfTuxW .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uR2dCfTuxW .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-uR2dCfTuxW .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uR2dCfTuxW .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uR2dCfTuxW .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-uR2dCfTuxW .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uR2dCfTuxW .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uR2dCfTuxW .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: flex-start;
  margin-right: 0;
  padding: 0 !important;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
  display: flex;
  justify-content: center;
}
.cid-uR2dCfTuxW .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uR2dCfTuxW .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uR2dCfTuxW .dropdown-item.active,
.cid-uR2dCfTuxW .dropdown-item:active {
  background-color: transparent;
}
.cid-uR2dCfTuxW .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uR2dCfTuxW .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uR2dCfTuxW .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uR2dCfTuxW .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #1a2229;
}
.cid-uR2dCfTuxW .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uR2dCfTuxW .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uR2dCfTuxW ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uR2dCfTuxW .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uR2dCfTuxW button.navbar-toggler {
  outline: none;
  width: 26px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uR2dCfTuxW button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 25px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-uR2dCfTuxW button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uR2dCfTuxW button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uR2dCfTuxW button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uR2dCfTuxW button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uR2dCfTuxW nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uR2dCfTuxW nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uR2dCfTuxW nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uR2dCfTuxW nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uR2dCfTuxW .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uR2dCfTuxW a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uR2dCfTuxW .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uR2dCfTuxW .navbar {
    height: 70px;
  }
  .cid-uR2dCfTuxW .navbar.opened {
    height: auto;
  }
  .cid-uR2dCfTuxW .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uR2dCfTuxW .header-item {
  width: 33.33333333%;
  padding: 10px 0;
}
.cid-uR2dCfTuxW .navbar-toggler {
  margin-left: 10px;
}
.cid-uR2dCfTuxW .hamburger-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  width: calc(100% + 20px);
  aspect-ratio: 1;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background-color: #bf9341;
}
.cid-uR2dCfTuxW .navbar-logo {
  margin-right: 0 !important;
}
.cid-uR2dCfTuxW .mbr-text {
  width: 100%;
  color: #BF9341;
}
@media (max-width: 575px) {
  .cid-uR2dCfTuxW .mbr-text {
    display: none;
  }
}
.cid-uR2dCfTuxW .navbar-collapse {
  padding-top: 40px !important;
}
.cid-uR2dCfTuxW .mbr-section-btn {
  margin-top: 10px;
}
@media (max-width: 575px) {
  .cid-uR2dCfTuxW .mbr-section-btn {
    display: flex;
    flex-wrap: wrap;
  }
}
.cid-uR2dCB8J8M {
  background-color: #1a2229;
}
.cid-uR2dCB8J8M .mbr-fallback-image.disabled {
  display: none;
}
.cid-uR2dCB8J8M .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uR2dCB8J8M .row {
  justify-content: left;
}
.cid-uR2dCB8J8M .main-col {
  display: flex;
}
.cid-uR2dCB8J8M .content-container {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  width: 100%;
  max-width: 900px;
}
.cid-uR2dCB8J8M .item-container {
  width: 100%;
  display: flex;
  align-items: flex-start;
}
@media (max-width: 991px) {
  .cid-uR2dCB8J8M .item-container {
    flex-wrap: wrap;
  }
}
.cid-uR2dCB8J8M .item-img {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 40px;
  width: 120px;
}
@media (max-width: 767px) {
  .cid-uR2dCB8J8M .item-img {
    display: none;
  }
}
.cid-uR2dCB8J8M .item-img img {
  width: 100%;
  height: auto;
  object-fit: cover;
}
.cid-uR2dCB8J8M .mbr-section-title {
  color: #BF9341;
  flex-grow: 1;
}
@media (max-width: 991px) {
  .cid-uR2dCB8J8M .mbr-section-title {
    text-align: center !important;
  }
}
@media (min-width: 1199px) {
  .cid-uR2dCB8J8M .mbr-section-title.display-1 {
    font-size: 133px;
  }
}
.cid-uR2dCB8J8M .mbr-text {
  color: #BF9341;
}
@media (max-width: 991px) {
  .cid-uR2dCB8J8M .mbr-text {
    width: 100%;
    text-align: center !important;
  }
}
.cid-uR2dCB8J8M .mbr-text-1 {
  margin-right: 40px;
}
@media (max-width: 991px) {
  .cid-uR2dCB8J8M .mbr-text-1 {
    margin: 0;
  }
}
.cid-uR2dCB8J8M .mbr-text-2 {
  margin-left: 40px;
}
@media (max-width: 991px) {
  .cid-uR2dCB8J8M .mbr-text-2 {
    margin: 0;
  }
}
.cid-uR2dCB8J8M .item-container-2 {
  align-items: center;
  padding-left: 26px;
}
.cid-uR2dCB8J8M .item-container-2 .mbr-section-title {
  flex-grow: 0;
}
@media (max-width: 991px) {
  .cid-uR2dCB8J8M .item-container-2 {
    justify-content: center !important;
    padding-left: 0;
    flex-wrap: nowrap;
  }
}
.cid-uR2dCB8J8M .item-container-4 {
  justify-content: space-between !important;
}
@media (max-width: 991px) {
  .cid-uR2dCB8J8M .item-container-4 {
    justify-content: center !important;
  }
}
.cid-uR2dDPeZsN {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-uR2dDPeZsN .mbr-fallback-image.disabled {
  display: none;
}
.cid-uR2dDPeZsN .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uR2dDPeZsN .content-container {
  display: flex;
  justify-content: left;
  width: 100%;
}
.cid-uR2dDPeZsN .content-wrap {
  width: 50%;
  background-color: #1a2229;
  padding: 32px;
}
@media (max-width: 991px) {
  .cid-uR2dDPeZsN .content-wrap {
    width: 75%;
    padding: 24px;
  }
}
@media (max-width: 767px) {
  .cid-uR2dDPeZsN .content-wrap {
    width: 100%;
  }
}
.cid-uR2dDPeZsN .img-container {
  width: 100%;
}
.cid-uR2dDPeZsN .image-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}
.cid-uR2dDPeZsN .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-uR2dDPeZsN .text-container {
  display: flex;
  align-items: stretch;
  width: 100%;
  padding-top: 44px;
}
@media (max-width: 767px) {
  .cid-uR2dDPeZsN .text-container {
    padding-top: 32px;
    flex-wrap: wrap;
  }
}
.cid-uR2dDPeZsN .text-content {
  width: 60%;
  flex-grow: 1;
  padding-right: 12px;
}
@media (max-width: 991px) {
  .cid-uR2dDPeZsN .text-content {
    padding-right: 10px;
  }
}
@media (max-width: 767px) {
  .cid-uR2dDPeZsN .text-content {
    width: 100%;
    padding-right: 0;
  }
}
.cid-uR2dDPeZsN .mbr-section-title {
  width: 100%;
  color: #BF9341;
}
.cid-uR2dDPeZsN .mbr-text {
  width: 50%;
  color: #BF9341;
  margin-top: 56px;
  margin-right: auto;
}
@media (max-width: 767px) {
  .cid-uR2dDPeZsN .mbr-text {
    width: 100%;
    margin-top: 32px;
  }
}
.cid-uR2dDPeZsN .btn-content {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: stretch;
  width: 40%;
  flex-grow: 1;
  padding-left: 12px;
}
@media (max-width: 991px) {
  .cid-uR2dDPeZsN .btn-content {
    padding-left: 10px;
  }
}
@media (max-width: 767px) {
  .cid-uR2dDPeZsN .btn-content {
    width: 100%;
    padding-left: 0;
    margin-top: 32px;
  }
}
@media (max-width: 767px) {
  .cid-uR2dDPeZsN .mbr-section-btn {
    text-align: center !important;
  }
}
.cid-uR2dKfLQPK {
  padding-top: 3rem;
  padding-bottom: 5rem;
  overflow: hidden;
  background-color: #c49e4b;
}
.cid-uR2dKfLQPK .container {
  max-width: 1600px;
}
.cid-uR2dKfLQPK .border-container {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 20px 10%;
  border: 1px solid #192732;
}
@media (max-width: 1199px) {
  .cid-uR2dKfLQPK .border-container {
    padding: 20px 8%;
  }
}
@media (max-width: 991px) {
  .cid-uR2dKfLQPK .border-container {
    padding: 0;
    border: none !important;
  }
}
.cid-uR2dKfLQPK .frame-top-left {
  top: -1px;
  left: -1px;
  border-bottom: 1px solid;
  border-right: 1px solid;
  border-bottom-right-radius: 100%;
}
.cid-uR2dKfLQPK .frame-top-right {
  top: -1px;
  right: -1px;
  border-bottom: 1px solid;
  border-left: 1px solid;
  border-bottom-left-radius: 100%;
}
.cid-uR2dKfLQPK .frame-bottom-left {
  bottom: -1px;
  left: -1px;
  border-top: 1px solid;
  border-right: 1px solid;
  border-top-right-radius: 100%;
}
.cid-uR2dKfLQPK .frame-bottom-right {
  bottom: -1px;
  right: -1px;
  border-top: 1px solid;
  border-left: 1px solid;
  border-top-left-radius: 100%;
}
.cid-uR2dKfLQPK .border-frame {
  position: absolute;
  z-index: 3;
  width: 60px;
  aspect-ratio: 1;
  background-color: #c49e4b;
  border-color: #192732;
}
@media (max-width: 991px) {
  .cid-uR2dKfLQPK .border-frame {
    display: none;
  }
}
.cid-uR2dKfLQPK .content-container {
  display: flex;
  flex-wrap: wrap;
}
.cid-uR2dKfLQPK .card {
  display: flex;
  width: 50%;
  overflow: hidden;
  padding: 20px 6%;
  opacity: 0.25;
  transition: .6s all;
}
@media (max-width: 991px) {
  .cid-uR2dKfLQPK .card {
    padding: 20px 3%;
  }
}
@media (max-width: 767px) {
  .cid-uR2dKfLQPK .card {
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
    opacity: 1;
  }
}
@media (max-width: 575px) {
  .cid-uR2dKfLQPK .card {
    padding: 20px 0;
  }
}
.cid-uR2dKfLQPK .card:hover {
  opacity: 1;
}
.cid-uR2dKfLQPK .card:hover img {
  transform: translateY(0);
}
.cid-uR2dKfLQPK .card-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  height: 100%;
  position: relative;
}
.cid-uR2dKfLQPK .card-img {
  width: 100%;
  height: 404px;
  border-bottom: 2px dashed;
  overflow: hidden;
  border-color: rgba(25, 39, 50, 0.2);
}
@media (max-width: 767px) {
  .cid-uR2dKfLQPK .card-img {
    height: auto;
  }
}
.cid-uR2dKfLQPK .card-img img {
  object-fit: contain;
  width: 100%;
  height: 100%;
  max-width: 100%;
  transition: .6s all;
  transform: translateY(20%);
}
@media (max-width: 767px) {
  .cid-uR2dKfLQPK .card-img img {
    transform: translateY(0);
  }
}
.cid-uR2dKfLQPK .card-box {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  overflow: hidden;
  width: 100%;
  margin-top: 1rem;
}
.cid-uR2dKfLQPK .card-title {
  width: 100%;
  margin-bottom: 0;
  color: #192732;
}
.cid-uR2dKfLQPK .card-subtitle {
  width: 100%;
  margin-bottom: 0;
  color: #192732;
  margin-top: 0.5rem;
}
.cid-uR2dKfLQPK .card-text {
  width: 100%;
  color: #192732;
  margin-top: 12px;
  padding-left: 50px;
  padding-right: 50px;
  margin-bottom: 0;
}
@media (max-width: 767px) {
  .cid-uR2dKfLQPK .card-text {
    padding-left: 0;
    padding-right: 0;
  }
}
.cid-uR2dKfLQPK .mbr-section-btn {
  margin-top: 1rem;
}
.cid-uR2dKfLQPK .btn-primary-outline {
  color: #192732;
}
.cid-uR2Gd71grM {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #1a2229;
}
.cid-uR2Gd71grM .mbr-fallback-image.disabled {
  display: none;
}
.cid-uR2Gd71grM .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uR2Gd71grM .content-container {
  display: flex;
  align-items: stretch;
  padding-top: 22px;
  position: relative;
}
@media (max-width: 575px) {
  .cid-uR2Gd71grM .content-container {
    flex-wrap: wrap;
  }
}
.cid-uR2Gd71grM .content-container:after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, 0);
  width: 3px;
  height: 3px;
  background-color: rgba(255, 255, 255, 0.1);
}
.cid-uR2Gd71grM .content-container:before {
  content: "";
  display: block;
  position: absolute;
  top: 11px;
  left: 50%;
  transform: translate(-50%, 0);
  height: calc(100% - 11px);
  width: 1px;
  background-color: rgba(255, 255, 255, 0.1);
}
.cid-uR2Gd71grM .text-container {
  position: relative;
  z-index: 5;
  width: 50%;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
@media (max-width: 575px) {
  .cid-uR2Gd71grM .text-container {
    width: 100%;
    padding-bottom: 1rem;
  }
}
.cid-uR2Gd71grM .card-wrapper {
  display: flex;
  align-items: center;
  width: 100%;
  min-height: 400px;
  padding: 18% 30%;
}
@media (max-width: 991px) {
  .cid-uR2Gd71grM .card-wrapper {
    padding: 26% 15%;
  }
}
@media (max-width: 767px) {
  .cid-uR2Gd71grM .card-wrapper {
    min-height: auto;
    padding: 34% 2% 34% 20%;
  }
}
@media (max-width: 575px) {
  .cid-uR2Gd71grM .card-wrapper {
    padding: 25% 0 0;
  }
}
@media (max-width: 575px) {
  .cid-uR2Gd71grM .card-box {
    width: 70%;
  }
}
.cid-uR2Gd71grM .img-container {
  width: 50%;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
@media (max-width: 991px) {
  .cid-uR2Gd71grM .img-container {
    justify-content: center;
  }
}
@media (max-width: 575px) {
  .cid-uR2Gd71grM .img-container {
    width: 100%;
    justify-content: flex-end;
    border-top: none;
  }
}
.cid-uR2Gd71grM .image-wrapper {
  display: flex;
  justify-content: flex-end;
  padding: 17%;
  width: 82%;
}
@media (max-width: 991px) {
  .cid-uR2Gd71grM .image-wrapper {
    padding: 0;
    width: 65%;
  }
}
@media (max-width: 767px) {
  .cid-uR2Gd71grM .image-wrapper {
    padding: 0;
    width: 85%;
  }
}
@media (max-width: 575px) {
  .cid-uR2Gd71grM .image-wrapper {
    width: 37%;
  }
}
.cid-uR2Gd71grM .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-uR2Gd71grM .card-title {
  color: #BF9341;
}
.cid-uR2Gd71grM .mbr-text {
  color: #BF9341;
}
.cid-uR2dEAf8qL {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #bf9341;
}
.cid-uR2dEAf8qL .mbr-fallback-image.disabled {
  display: none;
}
.cid-uR2dEAf8qL .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uR2dEAf8qL .row {
  justify-content: left;
}
.cid-uR2dEAf8qL .main-col {
  display: flex;
}
.cid-uR2dEAf8qL .content-container {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  width: 100%;
  max-width: 900px;
}
.cid-uR2dEAf8qL .item-container {
  width: 100%;
  display: flex;
  align-items: flex-start;
}
@media (max-width: 991px) {
  .cid-uR2dEAf8qL .item-container {
    flex-wrap: wrap;
  }
}
.cid-uR2dEAf8qL .item-img {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 40px;
  width: 120px;
}
@media (max-width: 767px) {
  .cid-uR2dEAf8qL .item-img {
    display: none;
  }
}
.cid-uR2dEAf8qL .item-img img {
  width: 100%;
  height: auto;
  object-fit: cover;
}
.cid-uR2dEAf8qL .mbr-section-title {
  color: #1a2229;
  flex-grow: 1;
}
@media (max-width: 991px) {
  .cid-uR2dEAf8qL .mbr-section-title {
    text-align: center !important;
  }
}
@media (min-width: 1199px) {
  .cid-uR2dEAf8qL .mbr-section-title.display-1 {
    font-size: 133px;
  }
}
.cid-uR2dEAf8qL .mbr-text {
  color: #1a2229;
}
@media (max-width: 991px) {
  .cid-uR2dEAf8qL .mbr-text {
    width: 100%;
    text-align: center !important;
  }
}
.cid-uR2dEAf8qL .mbr-text-2 {
  margin-left: 40px;
}
@media (max-width: 991px) {
  .cid-uR2dEAf8qL .mbr-text-2 {
    margin: 0;
  }
}
.cid-uR2dEAf8qL .item-container-2 {
  align-items: center;
}
.cid-uR2dEAf8qL .item-container-2 .mbr-section-title {
  flex-grow: 0;
}
@media (max-width: 991px) {
  .cid-uR2dEAf8qL .item-container-2 {
    justify-content: center !important;
    padding-left: 0;
    flex-wrap: nowrap;
  }
}
.cid-uR2dEAf8qL .item-container-3 {
  justify-content: center;
}
.cid-uR2dEAf8qL .item-container-3 .mbr-section-title {
  flex-grow: 0;
}
.cid-uR2dGCdiQn {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ded7cd;
}
.cid-uR2dGCdiQn .mbr-fallback-image.disabled {
  display: none;
}
.cid-uR2dGCdiQn .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uR2dGCdiQn .container {
  max-width: 1600px;
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-uR2dGCdiQn .container {
    max-width: 80%;
  }
}
.cid-uR2dGCdiQn .content-container {
  display: flex;
  align-items: stretch;
}
@media (max-width: 991px) {
  .cid-uR2dGCdiQn .content-container {
    flex-wrap: wrap;
  }
}
.cid-uR2dGCdiQn .text-container {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  width: 30%;
}
@media (max-width: 991px) {
  .cid-uR2dGCdiQn .text-container {
    width: 100%;
  }
}
.cid-uR2dGCdiQn .card-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
}
@media (max-width: 991px) {
  .cid-uR2dGCdiQn .card-box {
    margin-bottom: 70px;
  }
}
@media (max-width: 575px) {
  .cid-uR2dGCdiQn .card-box {
    margin-bottom: 40px;
  }
}
.cid-uR2dGCdiQn .card-title {
  width: 100%;
  color: #192732;
}
.cid-uR2dGCdiQn .mbr-text {
  color: #192732;
  padding: 60px 0 0 23%;
}
@media (max-width: 991px) {
  .cid-uR2dGCdiQn .mbr-text {
    padding: 44px 0 0 13%;
    max-width: 56%;
  }
}
@media (max-width: 575px) {
  .cid-uR2dGCdiQn .mbr-text {
    max-width: 100%;
    padding-left: 0;
  }
}
.cid-uR2dGCdiQn .mbr-section-btn {
  margin-top: 30px;
}
@media (max-width: 575px) {
  .cid-uR2dGCdiQn .mbr-section-btn {
    margin-top: 20px;
  }
}
.cid-uR2dGCdiQn .btn-primary-outline {
  color: #192732;
}
.cid-uR2dGCdiQn .img-container {
  width: 70%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
}
@media (max-width: 991px) {
  .cid-uR2dGCdiQn .img-container {
    width: 100%;
  }
}
.cid-uR2dGCdiQn .image-wrapper {
  display: flex;
  justify-content: center;
  width: 100%;
}
.cid-uR2dGCdiQn .image-wrapper img {
  object-fit: cover;
}
.cid-uR2dGCdiQn .image-wrapper-1 {
  margin-bottom: 32px;
}
.cid-uR2dGCdiQn .image-wrapper-1 img {
  width: 32%;
  margin-left: auto;
}
@media (max-width: 991px) {
  .cid-uR2dGCdiQn .image-wrapper-1 img {
    width: 41%;
  }
}
@media (max-width: 991px) {
  .cid-uR2dGCdiQn .image-wrapper-1 {
    margin-bottom: 80px;
  }
}
@media (max-width: 767px) {
  .cid-uR2dGCdiQn .image-wrapper-1 {
    margin-bottom: 60px;
  }
}
@media (max-width: 575px) {
  .cid-uR2dGCdiQn .image-wrapper-1 {
    margin-bottom: 40px;
  }
}
.cid-uR2dGCdiQn .image-wrapper-2 img {
  width: 83%;
  padding-left: 23.5%;
}
@media (max-width: 991px) {
  .cid-uR2dGCdiQn .image-wrapper-2 img {
    width: 80%;
    padding-left: 0;
    margin-right: auto;
  }
}
.cid-uR2dN0QtqF {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #1a2229;
}
.cid-uR2dN0QtqF .mbr-overlay {
  background-color: #1a2229;
  opacity: 0.4;
}
.cid-uR2dN0QtqF .container {
  max-width: 1600px;
}
.cid-uR2dN0QtqF .border-container {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 100px 10%;
  min-height: 720px;
  border: 1px solid rgba(255, 255, 255, 0.7);
}
.cid-uR2dN0QtqF .frame-top-left {
  top: -1px;
  left: -1px;
  border-bottom: 1px solid;
  border-right: 1px solid;
  border-bottom-right-radius: 100%;
}
.cid-uR2dN0QtqF .frame-top-right {
  top: -1px;
  right: -1px;
  border-bottom: 1px solid;
  border-left: 1px solid;
  border-bottom-left-radius: 100%;
}
.cid-uR2dN0QtqF .frame-bottom-left {
  bottom: -1px;
  left: -1px;
  border-top: 1px solid;
  border-right: 1px solid;
  border-top-right-radius: 100%;
}
.cid-uR2dN0QtqF .frame-bottom-right {
  bottom: -1px;
  right: -1px;
  border-top: 1px solid;
  border-left: 1px solid;
  border-top-left-radius: 100%;
}
.cid-uR2dN0QtqF .border-frame {
  position: absolute;
  z-index: 3;
  width: 60px;
  aspect-ratio: 1;
  background-color: #1a2229;
  border-color: rgba(255, 255, 255, 0.7);
}
@media (max-width: 991px) {
  .cid-uR2dN0QtqF .border-frame {
    width: 5%;
  }
}
@media (max-width: 767px) {
  .cid-uR2dN0QtqF .border-frame {
    width: 6%;
  }
}
@media (max-width: 575px) {
  .cid-uR2dN0QtqF .border-frame {
    width: 7%;
  }
}
.cid-uR2dN0QtqF .content-container {
  display: flex;
  align-items: stretch;
  justify-content: center;
  width: 100%;
}
@media (max-width: 991px) {
  .cid-uR2dN0QtqF .content-container {
    flex-wrap: wrap;
  }
}
.cid-uR2dN0QtqF .mbr-section-head {
  width: 33.33333333%;
  padding: 0 6.5%;
  border-right: 1px dashed rgba(255, 255, 255, 0.7);
}
@media (max-width: 991px) {
  .cid-uR2dN0QtqF .mbr-section-head {
    width: 100%;
    border-right: none;
  }
}
@media (max-width: 575px) {
  .cid-uR2dN0QtqF .mbr-section-head {
    padding: 0;
  }
}
.cid-uR2dN0QtqF .mbr-section-title {
  color: #BF9341;
}
@media (max-width: 575px) {
  .cid-uR2dN0QtqF .mbr-section-title {
    text-align: center !important;
  }
}
.cid-uR2dN0QtqF .mbr-section-subtitle {
  color: #BF9341;
  margin-top: 40px;
}
@media (max-width: 767px) {
  .cid-uR2dN0QtqF .mbr-section-subtitle {
    margin-top: 24px;
  }
}
@media (max-width: 575px) {
  .cid-uR2dN0QtqF .mbr-section-subtitle {
    text-align: center !important;
  }
}
.cid-uR2dN0QtqF .mbr-section-btn {
  margin-top: 40px;
}
@media (max-width: 767px) {
  .cid-uR2dN0QtqF .mbr-section-btn {
    margin-top: 24px;
  }
}
.cid-uR2dN0QtqF .form-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 66.66666667%;
  padding: 0 6.5%;
  flex-grow: 1;
}
@media (max-width: 991px) {
  .cid-uR2dN0QtqF .form-container {
    width: 100%;
  }
}
@media (max-width: 575px) {
  .cid-uR2dN0QtqF .form-container {
    padding: 0;
  }
}
.cid-uR2dN0QtqF .form-wrap {
  width: 100%;
  padding: 40px 0 !important;
}
.cid-uR2dN0QtqF .form-text {
  color: #BF9341;
}
.cid-uR2dN0QtqF .form-title {
  color: #BF9341;
  margin-bottom: 4px !important;
}
@media (max-width: 575px) {
  .cid-uR2dN0QtqF .form-title {
    text-align: center !important;
  }
}
.cid-uR2dN0QtqF form {
  width: 100%;
}
.cid-uR2dN0QtqF form .dragArea.row {
  justify-content: flex-end;
  width: auto !important;
}
.cid-uR2dN0QtqF form p {
  color: #BF9341;
}
.cid-uR2dN0QtqF form .mbr-section-btn {
  margin-top: 0;
  text-align: center !important;
  justify-content: center;
}
.cid-uR2dN0QtqF form .mbr-section-btn .mbr-iconfont {
  margin: 0 !important;
}
.cid-uR2dN0QtqF form .mbr-section-btn .btn {
  padding: 10px 10px;
  min-height: 50px;
  min-width: 50px;
  border: none !important;
}
.cid-uR2dN0QtqF form .form-group {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}
.cid-uR2dN0QtqF form .row {
  margin-left: -6px !important;
  margin-right: -6px !important;
}
.cid-uR2dN0QtqF form .row > [class*="col"] {
  margin-top: 20px !important;
}
.cid-uR2dN0QtqF form .form-control {
  height: 50px;
  border: 1px solid #b84358 !important;
  background: transparent !important;
  box-shadow: none !important;
  border-radius: 50px !important;
  margin-bottom: 0;
  padding: 10px 20px;
  font-size: 18px;
  line-height: 24px;
  color: #FFFFFF;
  font-weight: 400;
}
.cid-uR2dN0QtqF form .form-control::-webkit-input-placeholder {
  color: #b84358;
}
.cid-uR2dN0QtqF form .form-control::-moz-placeholder {
  color: #b84358;
}
.cid-uR2dN0QtqF form .form-control:-moz-placeholder {
  color: #b84358;
}
.cid-uR2dN0QtqF form .form-control:-ms-input-placeholder {
  color: #b84358;
}
.cid-uR2dN0QtqF form select {
  color: #FFFFFF !important;
}
.cid-uR2dN0QtqF form textarea {
  height: 100px !important;
}
.cid-uR2dN0QtqF form input:active,
.cid-uR2dN0QtqF form textarea:active,
.cid-uR2dN0QtqF form input:focus,
.cid-uR2dN0QtqF form textarea:focus {
  background-color: transparent !important;
  border-color: #b84358 !important;
  outline: none !important;
  outline-offset: 0 !important;
}
.cid-uR2dN0QtqF form input:active::-webkit-input-placeholder,
.cid-uR2dN0QtqF form textarea:active::-webkit-input-placeholder,
.cid-uR2dN0QtqF form input:focus::-webkit-input-placeholder,
.cid-uR2dN0QtqF form textarea:focus::-webkit-input-placeholder {
  color: #b84358;
}
.cid-uR2dN0QtqF form input:active::-moz-placeholder,
.cid-uR2dN0QtqF form textarea:active::-moz-placeholder,
.cid-uR2dN0QtqF form input:focus::-moz-placeholder,
.cid-uR2dN0QtqF form textarea:focus::-moz-placeholder {
  color: #b84358;
}
.cid-uR2dN0QtqF form input:active:-moz-placeholder,
.cid-uR2dN0QtqF form textarea:active:-moz-placeholder,
.cid-uR2dN0QtqF form input:focus:-moz-placeholder,
.cid-uR2dN0QtqF form textarea:focus:-moz-placeholder {
  color: #b84358;
}
.cid-uR2dN0QtqF form input:active:-ms-input-placeholder,
.cid-uR2dN0QtqF form textarea:active:-ms-input-placeholder,
.cid-uR2dN0QtqF form input:focus:-ms-input-placeholder,
.cid-uR2dN0QtqF form textarea:focus:-ms-input-placeholder {
  color: #b84358;
}
.cid-uR2dN0QtqF form .row [class*=col] {
  padding-left: 6px !important;
  padding-right: 6px !important;
}
.cid-uR2dN0QtqF form label {
  width: 100%;
  color: #BF9341;
  font-weight: 600 !important;
  margin-bottom: 0.5rem;
}
.cid-uR2dN0QtqF form .form-check-input {
  border-color: #b84358 !important;
  outline: none !important;
  box-shadow: none !important;
  background-color: transparent !important;
}
.cid-uR2dN0QtqF form .form-check-input:focus,
.cid-uR2dN0QtqF form .form-check-input:hover {
  background-color: #b84358 !important;
  border-color: #b84358 !important;
}
.cid-uR2dN0QtqF form .form-check-input:checked {
  border-color: #b84358 !important;
  background-color: #b84358 !important;
}
.cid-uR2dM7rdTF {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #1a2229;
}
.cid-uR2dM7rdTF .mbr-fallback-image.disabled {
  display: none;
}
.cid-uR2dM7rdTF .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uR2dM7rdTF .container {
  max-width: 1600px;
}
.cid-uR2dM7rdTF .border-container {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.6);
}
@media (max-width: 991px) {
  .cid-uR2dM7rdTF .border-container {
    padding: 48px 0;
  }
}
@media (max-width: 575px) {
  .cid-uR2dM7rdTF .border-container {
    padding: 30px 0;
  }
}
.cid-uR2dM7rdTF .frame-top-left {
  top: -1px;
  left: -1px;
  border-bottom: 1px solid;
  border-right: 1px solid;
  border-bottom-right-radius: 100%;
}
.cid-uR2dM7rdTF .frame-top-right {
  top: -1px;
  right: -1px;
  border-bottom: 1px solid;
  border-left: 1px solid;
  border-bottom-left-radius: 100%;
}
.cid-uR2dM7rdTF .frame-bottom-left {
  bottom: -1px;
  left: -1px;
  border-top: 1px solid;
  border-right: 1px solid;
  border-top-right-radius: 100%;
}
.cid-uR2dM7rdTF .frame-bottom-right {
  bottom: -1px;
  right: -1px;
  border-top: 1px solid;
  border-left: 1px solid;
  border-top-left-radius: 100%;
}
.cid-uR2dM7rdTF .border-frame {
  position: absolute;
  z-index: 3;
  width: 60px;
  aspect-ratio: 1;
  background-color: #1a2229;
  border-color: rgba(255, 255, 255, 0.6);
}
@media (max-width: 991px) {
  .cid-uR2dM7rdTF .border-frame {
    width: 5%;
  }
}
@media (max-width: 767px) {
  .cid-uR2dM7rdTF .border-frame {
    width: 6%;
  }
}
@media (max-width: 575px) {
  .cid-uR2dM7rdTF .border-frame {
    width: 7%;
  }
}
.cid-uR2dM7rdTF .footer-main-container {
  display: flex;
  align-items: stretch;
  flex-wrap: wrap;
  width: 100%;
}
.cid-uR2dM7rdTF .footer-item-container {
  width: 33.33333333%;
  flex-grow: 1;
  padding: 80px;
}
.cid-uR2dM7rdTF .footer-item-container:not(:first-child) {
  border-left: 1px solid rgba(255, 255, 255, 0.6);
}
@media (max-width: 991px) {
  .cid-uR2dM7rdTF .footer-item-container {
    width: 100%;
    padding: 40px 40px 40px 120px;
  }
  .cid-uR2dM7rdTF .footer-item-container:not(:first-child) {
    border-left: none;
    border-top: 1px solid rgba(255, 255, 255, 0.6);
  }
}
@media (max-width: 575px) {
  .cid-uR2dM7rdTF .footer-item-container {
    padding: 26px 26px 26px 76px;
  }
}
.cid-uR2dM7rdTF .footer-item {
  height: 100%;
}
.cid-uR2dM7rdTF .mbr-section-subtitle {
  color: #BF9341;
  width: 100%;
  margin-bottom: 64px;
}
@media (max-width: 991px) {
  .cid-uR2dM7rdTF .mbr-section-subtitle {
    margin-bottom: 56px;
  }
}
@media (max-width: 575px) {
  .cid-uR2dM7rdTF .mbr-section-subtitle {
    margin-bottom: 40px;
  }
}
.cid-uR2dM7rdTF .mbr-text {
  color: #BF9341;
  width: 100%;
}
.cid-uR2dM7rdTF .mbr-section-btn {
  margin-top: 20px;
}
.cid-uR2dM7rdTF .list {
  width: 100%;
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
  color: #BF9341;
}
.cid-uR2dM7rdTF .list li {
  position: relative;
  width: 100%;
  color: inherit !important;
  padding: 0 0 0 30px;
  margin: 10px 0;
  transition: .3s all;
}
.cid-uR2dM7rdTF .list li:after {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  display: block;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background-color: currentColor;
}
.cid-uR2dM7rdTF .list li:hover {
  color: #b84358 !important;
}
.cid-uR2dM7rdTF .list a {
  color: inherit !important;
  line-height: inherit !important;
}
.cid-uR2dM7rdTF .list a p {
  color: inherit !important;
  line-height: inherit !important;
}
.cid-uR2dM7rdTF .list a:hover {
  color: inherit !important;
  line-height: inherit !important;
}
.cid-uR2dM7rdTF .list a:hover p {
  color: inherit !important;
  line-height: inherit !important;
}
.cid-uR2dM7rdTF .social-row {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  max-width: 100%;
  width: 100%;
}
.cid-uR2dM7rdTF .social-row .mbr-iconfont {
  font-size: 18px;
  color: #b84358;
  margin-right: 20px;
}
.cid-uR2dM7rdTF .social-text {
  color: #BF9341;
  transition: .4s all;
  margin-bottom: 0 !important;
}
.cid-uR2dM7rdTF .soc-item {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin: 10px 0;
  transition: .4s all;
}
.cid-uR2dM7rdTF .soc-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  transition: .4s all;
}
.cid-uR2dM7rdTF .soc-item:hover .mbr-iconfont {
  color: #b84358 !important;
}
.cid-uR2dM7rdTF .soc-item:hover .social-text {
  color: #b84358 !important;
}
.cid-uR2dM7rdTF .copyright-container {
  width: 100%;
  padding: 0;
  margin-top: 56px;
}
@media (max-width: 991px) {
  .cid-uR2dM7rdTF .copyright-container {
    margin-top: 48px;
  }
}
@media (max-width: 575px) {
  .cid-uR2dM7rdTF .copyright-container {
    margin-top: 30px;
  }
}
.cid-uR2dM7rdTF .copyright-text {
  color: #BF9341;
  width: 100%;
}
@media (max-width: 767px) {
  .cid-uR2dM7rdTF .copyright-text {
    text-align: center !important;
  }
}
