body {
  font-family: Poppins;
}
.display-1 {
  font-family: 'Poppins', sans-serif;
  font-size: 3rem;
  line-height: 1.5;
}
.display-1 > .mbr-iconfont {
  font-size: 4.8rem;
}
.display-2 {
  font-family: 'Poppins', sans-serif;
  font-size: 2.5rem;
  line-height: 1.3;
}
.display-2 > .mbr-iconfont {
  font-size: 4rem;
}
.display-4 {
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  line-height: 1.8;
}
.display-4 > .mbr-iconfont {
  font-size: 1.6rem;
}
.display-5 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.875rem;
  line-height: 1.3;
}
.display-5 > .mbr-iconfont {
  font-size: 3rem;
}
.display-7 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.25rem;
  line-height: 2;
}
.display-7 > .mbr-iconfont {
  font-size: 2rem;
}
/* ---- 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: 768px) {
  .display-1 {
    font-size: 2.1rem;
    font-size: calc( 1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 2rem;
    font-size: calc( 1.525rem + (2.5 - 1.525) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.3 * (1.525rem + (2.5 - 1.525) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 0.9rem !important;
    font-size: calc( 1rem + (1 - 1) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1rem + (1 - 1) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 1.5rem;
    font-size: calc( 1.30625rem + (1.875 - 1.30625) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.30625rem + (1.875 - 1.30625) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-7 {
    font-size: 1rem;
    font-size: calc( 1.0875rem + (1.25 - 1.0875) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.0875rem + (1.25 - 1.0875) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* Buttons */
.btn {
  padding: 1rem 3rem;
  border-radius: 4px;
}
.btn-sm {
  padding: 0.4rem 1rem;
  border-radius: 4px;
}
.btn-md {
  padding: 1rem 2.6rem;
  border-radius: 8px;
}
.btn-lg {
  padding: 1.2rem 3.2rem;
  border-radius: 8px;
}
.bg-primary {
  background-color: #c9892f !important;
}
.bg-success {
  background-color: #fff000 !important;
}
.bg-info {
  background-color: #61728a !important;
}
.bg-warning {
  background-color: #d52b27 !important;
}
.bg-danger {
  background-color: #1352ff !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #c9892f !important;
  border-color: #c9892f !important;
  color: #ffffff !important;
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus,
.btn-primary.active {
  color: #ffffff !important;
  background-color: #8b5f21 !important;
  border-color: #8b5f21 !important;
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #8b5f21 !important;
  border-color: #8b5f21 !important;
}
.btn-primary:hover {
  background-color: #c9892f !important;
  border-color: #c9892f !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #282f39 !important;
  border-color: #282f39 !important;
  color: #ffffff !important;
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus,
.btn-secondary.active {
  color: #ffffff !important;
  background-color: #080a0c !important;
  border-color: #080a0c !important;
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #080a0c !important;
  border-color: #080a0c !important;
}
.btn-secondary:hover {
  background-color: #c9892f !important;
  border-color: #c9892f !important;
}
.btn-info,
.btn-info:active {
  background-color: #61728a !important;
  border-color: #61728a !important;
  color: #ffffff !important;
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus,
.btn-info.active {
  color: #ffffff !important;
  background-color: #414d5d !important;
  border-color: #414d5d !important;
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #414d5d !important;
  border-color: #414d5d !important;
}
.btn-info:hover {
  background-color: #c9892f !important;
  border-color: #c9892f !important;
}
.btn-success,
.btn-success:active {
  background-color: #fff000 !important;
  border-color: #fff000 !important;
  color: #000000 !important;
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus,
.btn-success.active {
  color: #000000 !important;
  background-color: #b3a800 !important;
  border-color: #b3a800 !important;
}
.btn-success.disabled,
.btn-success:disabled {
  color: #000000 !important;
  background-color: #b3a800 !important;
  border-color: #b3a800 !important;
}
.btn-success:hover {
  background-color: #c9892f !important;
  border-color: #c9892f !important;
}
.btn-warning,
.btn-warning:active {
  background-color: #d52b27 !important;
  border-color: #d52b27 !important;
  color: #ffffff !important;
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus,
.btn-warning.active {
  color: #ffffff !important;
  background-color: #941e1b !important;
  border-color: #941e1b !important;
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #ffffff !important;
  background-color: #941e1b !important;
  border-color: #941e1b !important;
}
.btn-warning:hover {
  background-color: #c9892f !important;
  border-color: #c9892f !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #1352ff !important;
  border-color: #1352ff !important;
  color: #ffffff !important;
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus,
.btn-danger.active {
  color: #ffffff !important;
  background-color: #0035c5 !important;
  border-color: #0035c5 !important;
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #0035c5 !important;
  border-color: #0035c5 !important;
}
.btn-danger:hover {
  background-color: #c9892f !important;
  border-color: #c9892f !important;
}
.btn-white,
.btn-white:active {
  background-color: #f3f3f3 !important;
  border-color: #f3f3f3 !important;
  color: #737373 !important;
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus,
.btn-white.active {
  color: #737373 !important;
  background-color: #cdcdcd !important;
  border-color: #cdcdcd !important;
}
.btn-white.disabled,
.btn-white:disabled {
  color: #737373 !important;
  background-color: #cdcdcd !important;
  border-color: #cdcdcd !important;
}
.btn-white:hover {
  background-color: #c9892f !important;
  border-color: #c9892f !important;
}
.btn-white:hover {
  color: white!important;
}
.btn-black,
.btn-black:active {
  background-color: #000000 !important;
  border-color: #000000 !important;
  color: #ffffff !important;
}
.btn-black:hover,
.btn-black:focus,
.btn-black.focus,
.btn-black.active {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-black.disabled,
.btn-black:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-black:hover {
  background-color: #c9892f !important;
  border-color: #c9892f !important;
}
.btn-primary-outline,
.btn-primary-outline:active {
  background: none;
  border-color: #c9892f;
  color: #c9892f;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #ffffff;
  background-color: #c9892f;
  border-color: #c9892f;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #c9892f !important;
  border-color: #c9892f !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background: none;
  border-color: #282f39;
  color: #282f39;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #ffffff;
  background-color: #282f39;
  border-color: #282f39;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #282f39 !important;
  border-color: #282f39 !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background: none;
  border-color: #61728a;
  color: #61728a;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #ffffff;
  background-color: #61728a;
  border-color: #61728a;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #61728a !important;
  border-color: #61728a !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background: none;
  border-color: #fff000;
  color: #fff000;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #000000;
  background-color: #fff000;
  border-color: #fff000;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #000000 !important;
  background-color: #fff000 !important;
  border-color: #fff000 !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background: none;
  border-color: #d52b27;
  color: #d52b27;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #ffffff;
  background-color: #d52b27;
  border-color: #d52b27;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #ffffff !important;
  background-color: #d52b27 !important;
  border-color: #d52b27 !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background: none;
  border-color: #1352ff;
  color: #1352ff;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #ffffff;
  background-color: #1352ff;
  border-color: #1352ff;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #1352ff !important;
  border-color: #1352ff !important;
}
.btn-black-outline,
.btn-black-outline:active {
  background: none;
  border-color: #333333;
  color: #333333;
}
.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.focus,
.btn-black-outline.active {
  color: #ffffff;
  background-color: #333333;
  border-color: #333333;
}
.btn-black-outline.disabled,
.btn-black-outline:disabled {
  color: #ffffff !important;
  background-color: #333333 !important;
  border-color: #333333 !important;
}
.btn-white-outline,
.btn-white-outline:active {
  background: none;
  border-color: #f3f3f3;
  color: #f3f3f3;
}
.btn-white-outline:hover,
.btn-white-outline:focus,
.btn-white-outline.focus,
.btn-white-outline.active {
  color: #737373;
  background-color: #f3f3f3;
  border-color: #f3f3f3;
}
.btn-white-outline.disabled,
.btn-white-outline:disabled {
  color: #737373 !important;
  background-color: #f3f3f3 !important;
  border-color: #f3f3f3 !important;
}
.text-primary {
  color: #c9892f !important;
}
.text-secondary {
  color: #282f39 !important;
}
.text-success {
  color: #fff000 !important;
}
.text-info {
  color: #61728a !important;
}
.text-warning {
  color: #d52b27 !important;
}
.text-danger {
  color: #1352ff !important;
}
.text-white {
  color: #ffffff !important;
}
.text-black {
  color: #000000 !important;
}
a.text-primary:hover,
a.text-primary:focus {
  color: #e1b77d !important;
}
a.text-secondary:hover,
a.text-secondary:focus {
  color: #526075 !important;
}
a.text-success:hover,
a.text-success:focus {
  color: #fff666 !important;
}
a.text-info:hover,
a.text-info:focus {
  color: #99a6b8 !important;
}
a.text-warning:hover,
a.text-warning:focus {
  color: #e77e7b !important;
}
a.text-danger:hover,
a.text-danger:focus {
  color: #799dff !important;
}
a.text-white:hover,
a.text-white:focus {
  color: #ffffff !important;
}
a.text-black:hover,
a.text-black:focus {
  color: #4d4d4d !important;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #61728a;
}
.alert-warning {
  background-color: #d52b27;
}
.alert-danger {
  background-color: #1352ff;
}
.mbr-section-btn a.btn:not(.btn-form) {
  border-radius: 100px;
}
.mbr-section-btn a.btn:not(.btn-form):hover,
.mbr-section-btn a.btn:not(.btn-form):focus {
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2) !important;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2) !important;
}
.mbr-gallery-filter li a {
  border-radius: 100px !important;
}
.mbr-gallery-filter li.active .btn {
  background-color: #c9892f;
  border-color: #c9892f;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
.nav-tabs .nav-link {
  border-radius: 100px !important;
}
a,
a:hover {
  color: #c9892f;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #f4e5d0;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #fffccc;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #a8b3c2;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #f7d2d1;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #dfe8ff;
}
/* Scroll to top button*/
.scrollToTop_wraper {
  display: none;
}
blockquote {
  border-color: #c9892f;
}
/* Forms */
.mbr-form .btn {
  margin: .4rem 0;
}
.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: #c9892f;
  color: #ffffff;
}
.jq-selectbox .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:after,
.jq-number__spin.plus:after {
  transition: 0.4s;
  border-top-color: gray !important;
  border-bottom-color: gray !important;
}
.jq-selectbox:hover .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:hover:after,
.jq-number__spin.plus:hover:after {
  border-top-color: #c9892f;
  border-bottom-color: #c9892f;
}
.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: #c9892f !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: #282f39 !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='%23c9892f' %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-rZq2OOWt7M .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 16px;
  position: absolute;
  right: 1rem;
  top: 30%;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-rZq2OOWt7M .nav-item,
.cid-rZq2OOWt7M .nav-link,
.cid-rZq2OOWt7M .navbar-caption {
  font-weight: normal;
}
.cid-rZq2OOWt7M .nav-item:focus,
.cid-rZq2OOWt7M .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-rZq2OOWt7M .dropdown-item:hover:before {
    transform: scale(1, 1);
  }
}
.cid-rZq2OOWt7M .dropdown .dropdown-menu .dropdown-item {
  display: flex;
  align-items: center;
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-rZq2OOWt7M .dropdown .dropdown-menu .dropdown-item::after {
  right: 1rem;
}
.cid-rZq2OOWt7M .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  transform: scale(0, 1);
}
.cid-rZq2OOWt7M .dropdown .dropdown-menu .dropdown-item.dropdown-toggle:before {
  display: none;
}
.cid-rZq2OOWt7M .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-rZq2OOWt7M .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-rZq2OOWt7M .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-rZq2OOWt7M .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-rZq2OOWt7M .collapsed .icons-menu {
  padding-left: 16px;
}
.cid-rZq2OOWt7M .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #c9892f;
}
.cid-rZq2OOWt7M .navbar.opened {
  transition: all .3s;
  background: #c9892f !important;
}
.cid-rZq2OOWt7M .navbar .dropdown-item {
  padding: .235rem 2.5rem .235rem 1.5rem;
}
.cid-rZq2OOWt7M .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-rZq2OOWt7M .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-rZq2OOWt7M .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-rZq2OOWt7M .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-rZq2OOWt7M .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-rZq2OOWt7M .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-rZq2OOWt7M .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-rZq2OOWt7M .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
  justify-content: center;
}
.cid-rZq2OOWt7M .navbar.collapsed .icons-menu {
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-rZq2OOWt7M .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-rZq2OOWt7M .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-rZq2OOWt7M .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-rZq2OOWt7M .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-rZq2OOWt7M .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-rZq2OOWt7M .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-rZq2OOWt7M .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-rZq2OOWt7M .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
    justify-content: center;
  }
  .cid-rZq2OOWt7M .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-rZq2OOWt7M .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-rZq2OOWt7M .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-rZq2OOWt7M .navbar.navbar-short {
  background: #c9892f !important;
  min-height: 60px;
}
.cid-rZq2OOWt7M .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-rZq2OOWt7M .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-rZq2OOWt7M .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-rZq2OOWt7M .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-rZq2OOWt7M .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-rZq2OOWt7M .dropdown-item.active,
.cid-rZq2OOWt7M .dropdown-item:active {
  background-color: transparent;
}
.cid-rZq2OOWt7M .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-rZq2OOWt7M .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-rZq2OOWt7M .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #c9892f;
}
.cid-rZq2OOWt7M .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-rZq2OOWt7M .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-rZq2OOWt7M ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-rZq2OOWt7M .navbar-buttons {
  text-align: center;
}
.cid-rZq2OOWt7M .navbar-buttons .btn.btn-sm {
  padding: 6px 24px !important;
  min-width: 140px;
  line-height: 1.5;
}
.cid-rZq2OOWt7M button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-rZq2OOWt7M button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-rZq2OOWt7M button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-rZq2OOWt7M button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-rZq2OOWt7M button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-rZq2OOWt7M button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-rZq2OOWt7M nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-rZq2OOWt7M nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-rZq2OOWt7M nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-rZq2OOWt7M nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-rZq2OOWt7M .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-rZq2OOWt7M a.nav-link {
  justify-content: center;
  display: flex;
  align-items: center;
}
.cid-rZq2OOWt7M .mbr-iconfont {
  font-size: 1rem;
  color: #ffffff;
  display: inline-flex;
}
.cid-rZq2OOWt7M .soc-item {
  margin: .5rem .3rem;
}
.cid-rZq2OOWt7M .icons-menu {
  flex-wrap: wrap;
  display: flex;
  justify-content: center;
  padding-right: 1rem;
  text-align: center;
  align-items: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-rZq2OOWt7M .navbar {
    height: 77px;
  }
  .cid-rZq2OOWt7M .navbar.opened {
    height: auto;
  }
  .cid-rZq2OOWt7M .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-rZq2TG8XAQ {
  padding-top: 120px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-rZq2TG8XAQ img {
  width: 100%;
  border-radius: 50px;
  margin-bottom: 20px;
  max-height: ;
}
.cid-rZq2TG8XAQ .card {
  margin-bottom: 130px !important;
}
.cid-rZq2TG8XAQ .card .img-wrapper {
  overflow: hidden;
}
.cid-rZq2TG8XAQ .card:hover {
  cursor: pointer;
}
.cid-rZq2TG8XAQ .card:hover img {
  transform: scale(1.05);
}
.cid-rZq2TG8XAQ .card:hover .img-wrapper {
  box-shadow: 0 30px 30px -20px rgba(50, 50, 50, 0.3);
}
@media (max-width: 1200px) {
  .cid-rZq2TG8XAQ .card {
    margin-bottom: 50px !important;
  }
}
.cid-rZq2TG8XAQ .card .card-wrapper {
  text-align: left;
}
.cid-rZq2TG8XAQ .card .card-wrapper .mbr-iconfont {
  font-size: 41px;
  color: #c9892f;
  display: block;
  justify-content: center;
  align-items: center;
  transition: all 0.3s ease-in-out;
  padding-bottom: 14px;
  margin-right: 14px;
}
.cid-rZq2TG8XAQ .card .card-wrapper .card-box .card-title {
  cursor: pointer;
  color: #06182d;
}
.cid-rZq2TG8XAQ .card .card-wrapper .card-box .card-title.display-7 {
  line-height: 1.2;
}
.cid-rZq2TG8XAQ .card .card-wrapper .card-box .card-text {
  color: #61728a;
}
.cid-rZq2TG8XAQ .mbr-section-title {
  color: #06182d;
}
.cid-rZq2TG8XAQ .mbr-section-title span {
  line-height: 1;
  color: #ffffff;
  padding: 0 6px 1px 5px;
  transform: skew(-14deg);
  background: #c9892f;
  background: linear-gradient(#c9892f 0%, #c9892f 69%, #c9892f 100%);
  display: inline-block;
  font-weight: 500;
  letter-spacing: 0;
  position: relative;
}
.cid-rZq2TG8XAQ .mbr-section-subtitle {
  color: #06182d;
}
.cid-rZq2TG8XAQ .mbr-section-subtitle.display-7 {
  letter-spacing: 0;
}
.cid-rZq2TG8XAQ .mbr-section-text {
  color: #999999;
}
.cid-rZq2TG8XAQ .card .card-wrapper .card-box .card-title,
.cid-rZq2TG8XAQ .card-wrapper {
  color: #c9892f;
}
.cid-rZq2XSdQ54 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #c9892f;
}
.cid-rZq2XSdQ54 .copyright {
  display: flex;
}
@media (max-width: 992px) {
  .cid-rZq2XSdQ54 .copyright {
    margin-bottom: 1rem;
  }
}
.cid-rZq2XSdQ54 .text-wrap {
  transition: all 0.3s;
  padding: 23px;
  bottom: 0;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: flex-end;
  width: 100%;
  overflow: hidden;
  position: relative;
}
.cid-rZq2XSdQ54 .text-wrap .icons-wrap .icon-wrapper {
  background: #06182d;
  display: flex;
  width: 31px;
  height: 31px;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  border: 2px solid #384657;
  transition: all 0.3s;
  z-index: 4;
  cursor: pointer;
  margin: 0 0.2rem;
}
.cid-rZq2XSdQ54 .text-wrap .icons-wrap .icon-wrapper:hover {
  background: #ff4e3c;
  border-color: #ff4e3c;
}
.cid-rZq2XSdQ54 .text-wrap .icons-wrap .icon-wrapper:hover .link-icon {
  color: #ffffde;
}
.cid-rZq2XSdQ54 .text-wrap .icons-wrap .icon-wrapper .link-icon {
  display: inline-block;
  color: #ffffde;
  transition: all 0.3s;
  font-size: 14px;
  justify-content: center;
}
.cid-rZq2XSdQ54 .text-wrap .icons-wrap::before {
  height: 2px;
  width: 100%;
  top: 50%;
  right: 58%;
  position: absolute;
  display: inline-block;
  content: "";
  background-color: #384657;
}
@media (max-width: 992px) {
  .cid-rZq2XSdQ54 .text-wrap .icons-wrap::before {
    display: none;
  }
}
.cid-rZq2XSdQ54 .text-wrap .icons-wrap::after {
  height: 2px;
  width: 100%;
  top: 50%;
  left: 58%;
  position: absolute;
  display: inline-block;
  content: "";
  background-color: #384657;
}
@media (max-width: 992px) {
  .cid-rZq2XSdQ54 .text-wrap .icons-wrap::after {
    display: none;
  }
}
.cid-s14msdsK5u .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 16px;
  position: absolute;
  right: 1rem;
  top: 30%;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-s14msdsK5u .nav-item,
.cid-s14msdsK5u .nav-link,
.cid-s14msdsK5u .navbar-caption {
  font-weight: normal;
}
.cid-s14msdsK5u .nav-item:focus,
.cid-s14msdsK5u .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-s14msdsK5u .dropdown-item:hover:before {
    transform: scale(1, 1);
  }
}
.cid-s14msdsK5u .dropdown .dropdown-menu .dropdown-item {
  display: flex;
  align-items: center;
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-s14msdsK5u .dropdown .dropdown-menu .dropdown-item::after {
  right: 1rem;
}
.cid-s14msdsK5u .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  transform: scale(0, 1);
}
.cid-s14msdsK5u .dropdown .dropdown-menu .dropdown-item.dropdown-toggle:before {
  display: none;
}
.cid-s14msdsK5u .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-s14msdsK5u .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-s14msdsK5u .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-s14msdsK5u .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-s14msdsK5u .collapsed .icons-menu {
  padding-left: 16px;
}
.cid-s14msdsK5u .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #c9892f;
}
.cid-s14msdsK5u .navbar.opened {
  transition: all .3s;
  background: #c9892f !important;
}
.cid-s14msdsK5u .navbar .dropdown-item {
  padding: .235rem 2.5rem .235rem 1.5rem;
}
.cid-s14msdsK5u .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-s14msdsK5u .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-s14msdsK5u .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-s14msdsK5u .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-s14msdsK5u .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-s14msdsK5u .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-s14msdsK5u .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-s14msdsK5u .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
  justify-content: center;
}
.cid-s14msdsK5u .navbar.collapsed .icons-menu {
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-s14msdsK5u .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-s14msdsK5u .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-s14msdsK5u .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-s14msdsK5u .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-s14msdsK5u .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-s14msdsK5u .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-s14msdsK5u .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-s14msdsK5u .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
    justify-content: center;
  }
  .cid-s14msdsK5u .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-s14msdsK5u .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-s14msdsK5u .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-s14msdsK5u .navbar.navbar-short {
  background: #c9892f !important;
  min-height: 60px;
}
.cid-s14msdsK5u .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-s14msdsK5u .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-s14msdsK5u .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-s14msdsK5u .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-s14msdsK5u .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-s14msdsK5u .dropdown-item.active,
.cid-s14msdsK5u .dropdown-item:active {
  background-color: transparent;
}
.cid-s14msdsK5u .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-s14msdsK5u .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-s14msdsK5u .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #c9892f;
}
.cid-s14msdsK5u .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-s14msdsK5u .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-s14msdsK5u ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-s14msdsK5u .navbar-buttons {
  text-align: center;
}
.cid-s14msdsK5u .navbar-buttons .btn.btn-sm {
  padding: 6px 24px !important;
  min-width: 140px;
  line-height: 1.5;
}
.cid-s14msdsK5u button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-s14msdsK5u button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-s14msdsK5u button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-s14msdsK5u button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-s14msdsK5u button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-s14msdsK5u button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-s14msdsK5u nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-s14msdsK5u nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-s14msdsK5u nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-s14msdsK5u nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-s14msdsK5u .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-s14msdsK5u a.nav-link {
  justify-content: center;
  display: flex;
  align-items: center;
}
.cid-s14msdsK5u .mbr-iconfont {
  font-size: 1rem;
  color: #ffffff;
  display: inline-flex;
}
.cid-s14msdsK5u .soc-item {
  margin: .5rem .3rem;
}
.cid-s14msdsK5u .icons-menu {
  flex-wrap: wrap;
  display: flex;
  justify-content: center;
  padding-right: 1rem;
  text-align: center;
  align-items: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-s14msdsK5u .navbar {
    height: 77px;
  }
  .cid-s14msdsK5u .navbar.opened {
    height: auto;
  }
  .cid-s14msdsK5u .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-s14msfqzD2 {
  padding-top: 120px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-s14msfqzD2 .card {
  border-radius: 0;
  margin: auto 0;
}
.cid-s14msfqzD2 .card .wrapper .mbr-section-title {
  color: #ffffff;
  font-weight: 700;
}
.cid-s14msfqzD2 .card .wrapper .mbr-section-title span:first-child {
  color: #000000;
}
.cid-s14msfqzD2 .card .wrapper .mbr-section-title span:nth-child(2) {
  line-height: 1;
  color: #ffffff;
  padding: 0 6px 1px 5px;
  transform: skew(-14deg);
  background: #c9892f;
  background: linear-gradient(#c9892f 0%, #c9892f 69%, #c9892f 100%);
  display: inline-block;
  font-weight: 500;
  letter-spacing: 0;
  position: relative;
}
.cid-s14msfqzD2 .card .wrapper .mbr-section-subtitle {
  color: #ffffff;
}
.cid-s14msfqzD2 .card .wrapper .mbr-section-subtitle.display-7 {
  letter-spacing: 0;
}
.cid-s14msfqzD2 .card .wrapper .mbr-text {
  color: #ffffff;
  font-weight: 300;
}
.cid-s14msfqzD2 .card .wrapper .mbr-list {
  margin-top: 20px;
  color: #ffffff;
}
.cid-s14msfqzD2 .card .wrapper .mbr-list .list {
  list-style-type: none;
  padding-left: 0;
}
.cid-s14msfqzD2 .card .wrapper .mbr-list .list li {
  line-height: 1.75;
  padding-top: 5px;
  padding-bottom: 5px;
}
.cid-s14msfqzD2 .card .wrapper .buttons-wrap .mbr-section-btn .btn.display-4 {
  padding: 12px 35px;
  line-height: 1.0625;
}
.cid-s14msfqzD2 .card .wrapper .mbr-section-title,
.cid-s14msfqzD2 .mbr-section-btn,
.cid-s14msfqzD2 .mbr-list .list {
  text-align: center;
  color: #000000;
}
.cid-s1h35V6Tjn {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-s1h35V6Tjn .mbr-section-title {
  color: #06182d;
}
.cid-s1h35V6Tjn .mbr-section-title span {
  line-height: 1;
  color: #ffffff;
  padding: 0 6px 1px 5px;
  transform: skew(-14deg);
  background: #c9892f;
  background: linear-gradient(#c9892f 0%, #c9892f 69%, #c9892f 100%);
  display: inline-block;
  font-weight: 500;
  letter-spacing: 0;
  position: relative;
}
.cid-s1h35V6Tjn .mbr-section-subtitle {
  color: #06182d;
  text-align: right;
}
.cid-s1h35V6Tjn .mbr-section-subtitle.display-7 {
  letter-spacing: 0;
}
.cid-s1h35V6Tjn .mbr-section-text {
  color: #999999;
}
.cid-s1h35V6Tjn .nav-tabs .nav-item.open .nav-link:focus,
.cid-s1h35V6Tjn .nav-tabs .nav-link.active:focus {
  outline: none;
}
.cid-s1h35V6Tjn .nav-tabs {
  flex-wrap: wrap;
  flex-direction: column;
  border-bottom: 1px solid #f4f6f9;
}
.cid-s1h35V6Tjn .nav-tabs .nav-item {
  margin-right: 4px;
}
.cid-s1h35V6Tjn .nav-tabs .nav-link {
  color: #06182d;
  font-style: normal;
  font-weight: 300;
  transition: all .5s;
  border: none;
  border-radius: 0 !important;
  background-color: #f4f6f9;
  padding: 1rem 2.2rem;
}
.cid-s1h35V6Tjn .nav-tabs .nav-link:hover {
  cursor: pointer;
  color: #c9892f;
}
.cid-s1h35V6Tjn .nav-tabs .nav-link.active {
  font-weight: 500;
  color: #ffffff;
  font-style: normal;
  background-color: #c9892f;
}
.cid-s1h35V6Tjn P {
  color: #879a9f;
  text-align: right;
}
@media (max-width: 576px) {
  .cid-s1h35V6Tjn .nav-tabs {
    flex-direction: column;
    justify-content: center;
  }
  .cid-s1h35V6Tjn .mbr-text,
  .cid-s1h35V6Tjn .nav-link {
    text-align: center;
  }
}
.cid-s1h35V6Tjn .img-wrap img {
  width: 100%;
}
.cid-s1h35V6Tjn .mbr-section-title,
.cid-s1h35V6Tjn .col {
  text-align: right;
  color: #c9892f;
}
.cid-s1h35V6Tjn .mbr-text,
.cid-s1h35V6Tjn .col {
  color: #666666;
}
.cid-s14pxEViVA {
  padding-top: 45px;
  padding-bottom: 75px;
  background-color: #ffffff;
}
.cid-s14pxEViVA .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
.cid-s14pxEViVA .form-control,
.cid-s14pxEViVA .field-input {
  padding: 0.5rem;
  background-color: #ffffff;
  border-color: #cccccc;
  color: #000000;
  transition: 0.4s;
  box-shadow: none;
  outline: none;
}
.cid-s14pxEViVA .form-control::-webkit-input-placeholder,
.cid-s14pxEViVA .field-input::-webkit-input-placeholder,
.cid-s14pxEViVA .form-control::-webkit-input-placeholder,
.cid-s14pxEViVA .field-input::-webkit-input-placeholder {
  color: #c1c1c1;
}
.cid-s14pxEViVA .form-control:-moz-placeholder,
.cid-s14pxEViVA .field-input:-moz-placeholder,
.cid-s14pxEViVA .form-control:-moz-placeholder,
.cid-s14pxEViVA .field-input:-moz-placeholder {
  color: #c1c1c1;
}
.cid-s14pxEViVA .form-control:hover,
.cid-s14pxEViVA .field-input:hover,
.cid-s14pxEViVA .form-control:focus,
.cid-s14pxEViVA .field-input:focus {
  background-color: #efefef;
  border-color: #cccccc;
  color: #232323;
  box-shadow: none;
  outline: none;
}
.cid-s14pxEViVA .form-control:hover::-webkit-input-placeholder,
.cid-s14pxEViVA .field-input:hover::-webkit-input-placeholder,
.cid-s14pxEViVA .form-control:focus::-webkit-input-placeholder,
.cid-s14pxEViVA .field-input:focus::-webkit-input-placeholder,
.cid-s14pxEViVA .form-control:hover::-webkit-input-placeholder,
.cid-s14pxEViVA .field-input:hover::-webkit-input-placeholder,
.cid-s14pxEViVA .form-control:focus::-webkit-input-placeholder,
.cid-s14pxEViVA .field-input:focus::-webkit-input-placeholder {
  color: #c1c1c1;
}
.cid-s14pxEViVA .form-control:hover:-moz-placeholder,
.cid-s14pxEViVA .field-input:hover:-moz-placeholder,
.cid-s14pxEViVA .form-control:focus:-moz-placeholder,
.cid-s14pxEViVA .field-input:focus:-moz-placeholder,
.cid-s14pxEViVA .form-control:hover:-moz-placeholder,
.cid-s14pxEViVA .field-input:hover:-moz-placeholder,
.cid-s14pxEViVA .form-control:focus:-moz-placeholder,
.cid-s14pxEViVA .field-input:focus:-moz-placeholder {
  color: #c1c1c1;
}
.cid-s14pxEViVA .jq-number__spin:hover,
.cid-s14pxEViVA .jq-number__spin:focus {
  background-color: #efefef;
  border-color: #cccccc;
  color: #ffffff;
  box-shadow: none;
  outline: none;
}
.cid-s14pxEViVA .jq-number__spin {
  background-color: #ffffff;
  border-color: #cccccc;
  color: #000000;
  transition: 0.4s;
  box-shadow: none;
  outline: none;
}
.cid-s14pxEViVA .jq-selectbox li,
.cid-s14pxEViVA .jq-selectbox li {
  background-color: #ffffff;
  color: #000000;
}
.cid-s14pxEViVA .jq-selectbox li:hover,
.cid-s14pxEViVA .jq-selectbox li.selected {
  background-color: #efefef;
  color: #000000;
}
.cid-s14pxEViVA .jq-selectbox:hover .jq-selectbox__trigger-arrow,
.cid-s14pxEViVA .jq-number__spin.minus:hover:after,
.cid-s14pxEViVA .jq-number__spin.plus:hover:after {
  border-top-color: #ffffff;
  border-bottom-color: #ffffff;
}
.cid-s14pxEViVA .jq-selectbox .jq-selectbox__trigger-arrow,
.cid-s14pxEViVA .jq-number__spin.minus:after,
.cid-s14pxEViVA .jq-number__spin.plus:after {
  border-top-color: #efefef;
  border-bottom-color: #efefef;
}
.cid-s14pxEViVA input::-webkit-clear-button {
  display: none;
}
.cid-s14pxEViVA input::-webkit-inner-spin-button {
  display: none;
}
.cid-s14pxEViVA input::-webkit-outer-spin-button {
  display: none;
}
.cid-s14pxEViVA input::-webkit-calendar-picker-indicator {
  display: none;
}
.cid-s14pxEViVA H4 {
  text-align: center;
  color: #c9892f;
}
.cid-s14pxEViVA P {
  text-align: center;
}
.cid-s14pxEViVA LABEL {
  color: #c9892f;
}
.cid-s14msTbqXJ {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #c9892f;
}
.cid-s14msTbqXJ .copyright {
  display: flex;
}
@media (max-width: 992px) {
  .cid-s14msTbqXJ .copyright {
    margin-bottom: 1rem;
  }
}
.cid-s14msTbqXJ .text-wrap {
  transition: all 0.3s;
  padding: 23px;
  bottom: 0;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: flex-end;
  width: 100%;
  overflow: hidden;
  position: relative;
}
.cid-s14msTbqXJ .text-wrap .icons-wrap .icon-wrapper {
  background: #06182d;
  display: flex;
  width: 31px;
  height: 31px;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  border: 2px solid #384657;
  transition: all 0.3s;
  z-index: 4;
  cursor: pointer;
  margin: 0 0.2rem;
}
.cid-s14msTbqXJ .text-wrap .icons-wrap .icon-wrapper:hover {
  background: #ff4e3c;
  border-color: #ff4e3c;
}
.cid-s14msTbqXJ .text-wrap .icons-wrap .icon-wrapper:hover .link-icon {
  color: #ffffde;
}
.cid-s14msTbqXJ .text-wrap .icons-wrap .icon-wrapper .link-icon {
  display: inline-block;
  color: #ffffde;
  transition: all 0.3s;
  font-size: 14px;
  justify-content: center;
}
.cid-s14msTbqXJ .text-wrap .icons-wrap::before {
  height: 2px;
  width: 100%;
  top: 50%;
  right: 58%;
  position: absolute;
  display: inline-block;
  content: "";
  background-color: #384657;
}
@media (max-width: 992px) {
  .cid-s14msTbqXJ .text-wrap .icons-wrap::before {
    display: none;
  }
}
.cid-s14msTbqXJ .text-wrap .icons-wrap::after {
  height: 2px;
  width: 100%;
  top: 50%;
  left: 58%;
  position: absolute;
  display: inline-block;
  content: "";
  background-color: #384657;
}
@media (max-width: 992px) {
  .cid-s14msTbqXJ .text-wrap .icons-wrap::after {
    display: none;
  }
}
.cid-s14mMkSZup .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 16px;
  position: absolute;
  right: 1rem;
  top: 30%;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-s14mMkSZup .nav-item,
.cid-s14mMkSZup .nav-link,
.cid-s14mMkSZup .navbar-caption {
  font-weight: normal;
}
.cid-s14mMkSZup .nav-item:focus,
.cid-s14mMkSZup .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-s14mMkSZup .dropdown-item:hover:before {
    transform: scale(1, 1);
  }
}
.cid-s14mMkSZup .dropdown .dropdown-menu .dropdown-item {
  display: flex;
  align-items: center;
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-s14mMkSZup .dropdown .dropdown-menu .dropdown-item::after {
  right: 1rem;
}
.cid-s14mMkSZup .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  transform: scale(0, 1);
}
.cid-s14mMkSZup .dropdown .dropdown-menu .dropdown-item.dropdown-toggle:before {
  display: none;
}
.cid-s14mMkSZup .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-s14mMkSZup .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-s14mMkSZup .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-s14mMkSZup .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-s14mMkSZup .collapsed .icons-menu {
  padding-left: 16px;
}
.cid-s14mMkSZup .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #c9892f;
}
.cid-s14mMkSZup .navbar.opened {
  transition: all .3s;
  background: #c9892f !important;
}
.cid-s14mMkSZup .navbar .dropdown-item {
  padding: .235rem 2.5rem .235rem 1.5rem;
}
.cid-s14mMkSZup .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-s14mMkSZup .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-s14mMkSZup .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-s14mMkSZup .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-s14mMkSZup .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-s14mMkSZup .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-s14mMkSZup .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-s14mMkSZup .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
  justify-content: center;
}
.cid-s14mMkSZup .navbar.collapsed .icons-menu {
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-s14mMkSZup .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-s14mMkSZup .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-s14mMkSZup .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-s14mMkSZup .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-s14mMkSZup .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-s14mMkSZup .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-s14mMkSZup .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-s14mMkSZup .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
    justify-content: center;
  }
  .cid-s14mMkSZup .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-s14mMkSZup .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-s14mMkSZup .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-s14mMkSZup .navbar.navbar-short {
  background: #c9892f !important;
  min-height: 60px;
}
.cid-s14mMkSZup .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-s14mMkSZup .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-s14mMkSZup .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-s14mMkSZup .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-s14mMkSZup .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-s14mMkSZup .dropdown-item.active,
.cid-s14mMkSZup .dropdown-item:active {
  background-color: transparent;
}
.cid-s14mMkSZup .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-s14mMkSZup .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-s14mMkSZup .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #c9892f;
}
.cid-s14mMkSZup .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-s14mMkSZup .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-s14mMkSZup ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-s14mMkSZup .navbar-buttons {
  text-align: center;
}
.cid-s14mMkSZup .navbar-buttons .btn.btn-sm {
  padding: 6px 24px !important;
  min-width: 140px;
  line-height: 1.5;
}
.cid-s14mMkSZup button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-s14mMkSZup button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-s14mMkSZup button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-s14mMkSZup button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-s14mMkSZup button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-s14mMkSZup button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-s14mMkSZup nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-s14mMkSZup nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-s14mMkSZup nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-s14mMkSZup nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-s14mMkSZup .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-s14mMkSZup a.nav-link {
  justify-content: center;
  display: flex;
  align-items: center;
}
.cid-s14mMkSZup .mbr-iconfont {
  font-size: 1rem;
  color: #ffffff;
  display: inline-flex;
}
.cid-s14mMkSZup .soc-item {
  margin: .5rem .3rem;
}
.cid-s14mMkSZup .icons-menu {
  flex-wrap: wrap;
  display: flex;
  justify-content: center;
  padding-right: 1rem;
  text-align: center;
  align-items: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-s14mMkSZup .navbar {
    height: 77px;
  }
  .cid-s14mMkSZup .navbar.opened {
    height: auto;
  }
  .cid-s14mMkSZup .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-s14mMmytb8 {
  padding-top: 120px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-s14mMmytb8 .card {
  border-radius: 0;
  margin: auto 0;
}
.cid-s14mMmytb8 .card .wrapper .mbr-section-title {
  color: #ffffff;
  font-weight: 700;
}
.cid-s14mMmytb8 .card .wrapper .mbr-section-title span:first-child {
  color: #ff4e3c;
}
.cid-s14mMmytb8 .card .wrapper .mbr-section-title span:nth-child(2) {
  line-height: 1;
  color: #ffffff;
  padding: 0 6px 1px 5px;
  transform: skew(-14deg);
  background: #c9892f;
  background: linear-gradient(#c9892f 0%, #c9892f 69%, #c9892f 100%);
  display: inline-block;
  font-weight: 500;
  letter-spacing: 0;
  position: relative;
}
.cid-s14mMmytb8 .card .wrapper .mbr-section-subtitle {
  color: #ffffff;
}
.cid-s14mMmytb8 .card .wrapper .mbr-section-subtitle.display-7 {
  letter-spacing: 0;
}
.cid-s14mMmytb8 .card .wrapper .mbr-text {
  color: #ffffff;
  font-weight: 300;
}
.cid-s14mMmytb8 .card .wrapper .mbr-list {
  margin-top: 20px;
  color: #ffffff;
}
.cid-s14mMmytb8 .card .wrapper .mbr-list .list {
  list-style-type: none;
  padding-left: 0;
}
.cid-s14mMmytb8 .card .wrapper .mbr-list .list li {
  line-height: 1.75;
  padding-top: 5px;
  padding-bottom: 5px;
}
.cid-s14mMmytb8 .card .wrapper .buttons-wrap .mbr-section-btn .btn.display-4 {
  padding: 12px 35px;
  line-height: 1.0625;
}
.cid-s14mMmytb8 .card .wrapper .mbr-section-title,
.cid-s14mMmytb8 .mbr-section-btn,
.cid-s14mMmytb8 .mbr-list .list {
  text-align: center;
  color: #000000;
}
.cid-s14mMsXii6 {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-s14mMsXii6 .mbr-section-title {
  color: #06182d;
}
.cid-s14mMsXii6 .mbr-section-title span {
  line-height: 1;
  color: #ffffff;
  padding: 0 6px 1px 5px;
  transform: skew(-14deg);
  background: #c9892f;
  background: linear-gradient(#c9892f 0%, #c9892f 69%, #c9892f 100%);
  display: inline-block;
  font-weight: 500;
  letter-spacing: 0;
  position: relative;
}
.cid-s14mMsXii6 .mbr-section-subtitle {
  color: #06182d;
}
.cid-s14mMsXii6 .mbr-section-subtitle.display-7 {
  letter-spacing: 0;
}
.cid-s14mMsXii6 .card:nth-child(even) {
  margin-top: 70px;
}
.cid-s14mMsXii6 .card .card-wrapper {
  height: 100%;
}
.cid-s14mMsXii6 .card .card-wrapper .card-img {
  position: relative;
}
.cid-s14mMsXii6 .card .card-wrapper .card-img:hover img {
  transform: rotateY(180deg);
}
.cid-s14mMsXii6 .card .card-wrapper .card-img img {
  border-radius: 100%;
  height: 200px;
  width: 200px;
  -o-object-fit: cover;
  object-fit: cover;
  transition: 0.3s all ease-in-out;
}
.cid-s14mMsXii6 .card .card-wrapper .card-box {
  padding-top: 1rem;
}
.cid-s14mMsXii6 .card .card-wrapper .card-box .card-title {
  margin-bottom: 0;
  color: #06182d;
  text-align: center;
  font-weight: 700;
}
.cid-s14mMsXii6 .card .card-wrapper .card-box .mbr-text {
  text-align: center;
  color: #030f1c;
}
.cid-s14mMQdCdn {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #c9892f;
}
.cid-s14mMQdCdn .copyright {
  display: flex;
}
@media (max-width: 992px) {
  .cid-s14mMQdCdn .copyright {
    margin-bottom: 1rem;
  }
}
.cid-s14mMQdCdn .text-wrap {
  transition: all 0.3s;
  padding: 23px;
  bottom: 0;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: flex-end;
  width: 100%;
  overflow: hidden;
  position: relative;
}
.cid-s14mMQdCdn .text-wrap .icons-wrap .icon-wrapper {
  background: #06182d;
  display: flex;
  width: 31px;
  height: 31px;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  border: 2px solid #384657;
  transition: all 0.3s;
  z-index: 4;
  cursor: pointer;
  margin: 0 0.2rem;
}
.cid-s14mMQdCdn .text-wrap .icons-wrap .icon-wrapper:hover {
  background: #ff4e3c;
  border-color: #ff4e3c;
}
.cid-s14mMQdCdn .text-wrap .icons-wrap .icon-wrapper:hover .link-icon {
  color: #ffffde;
}
.cid-s14mMQdCdn .text-wrap .icons-wrap .icon-wrapper .link-icon {
  display: inline-block;
  color: #ffffde;
  transition: all 0.3s;
  font-size: 14px;
  justify-content: center;
}
.cid-s14mMQdCdn .text-wrap .icons-wrap::before {
  height: 2px;
  width: 100%;
  top: 50%;
  right: 58%;
  position: absolute;
  display: inline-block;
  content: "";
  background-color: #384657;
}
@media (max-width: 992px) {
  .cid-s14mMQdCdn .text-wrap .icons-wrap::before {
    display: none;
  }
}
.cid-s14mMQdCdn .text-wrap .icons-wrap::after {
  height: 2px;
  width: 100%;
  top: 50%;
  left: 58%;
  position: absolute;
  display: inline-block;
  content: "";
  background-color: #384657;
}
@media (max-width: 992px) {
  .cid-s14mMQdCdn .text-wrap .icons-wrap::after {
    display: none;
  }
}
.cid-s14nizXZpH .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 16px;
  position: absolute;
  right: 1rem;
  top: 30%;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-s14nizXZpH .nav-item,
.cid-s14nizXZpH .nav-link,
.cid-s14nizXZpH .navbar-caption {
  font-weight: normal;
}
.cid-s14nizXZpH .nav-item:focus,
.cid-s14nizXZpH .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-s14nizXZpH .dropdown-item:hover:before {
    transform: scale(1, 1);
  }
}
.cid-s14nizXZpH .dropdown .dropdown-menu .dropdown-item {
  display: flex;
  align-items: center;
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-s14nizXZpH .dropdown .dropdown-menu .dropdown-item::after {
  right: 1rem;
}
.cid-s14nizXZpH .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  transform: scale(0, 1);
}
.cid-s14nizXZpH .dropdown .dropdown-menu .dropdown-item.dropdown-toggle:before {
  display: none;
}
.cid-s14nizXZpH .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-s14nizXZpH .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-s14nizXZpH .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-s14nizXZpH .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-s14nizXZpH .collapsed .icons-menu {
  padding-left: 16px;
}
.cid-s14nizXZpH .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #c9892f;
}
.cid-s14nizXZpH .navbar.opened {
  transition: all .3s;
  background: #c9892f !important;
}
.cid-s14nizXZpH .navbar .dropdown-item {
  padding: .235rem 2.5rem .235rem 1.5rem;
}
.cid-s14nizXZpH .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-s14nizXZpH .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-s14nizXZpH .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-s14nizXZpH .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-s14nizXZpH .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-s14nizXZpH .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-s14nizXZpH .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-s14nizXZpH .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
  justify-content: center;
}
.cid-s14nizXZpH .navbar.collapsed .icons-menu {
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-s14nizXZpH .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-s14nizXZpH .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-s14nizXZpH .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-s14nizXZpH .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-s14nizXZpH .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-s14nizXZpH .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-s14nizXZpH .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-s14nizXZpH .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
    justify-content: center;
  }
  .cid-s14nizXZpH .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-s14nizXZpH .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-s14nizXZpH .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-s14nizXZpH .navbar.navbar-short {
  background: #c9892f !important;
  min-height: 60px;
}
.cid-s14nizXZpH .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-s14nizXZpH .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-s14nizXZpH .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-s14nizXZpH .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-s14nizXZpH .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-s14nizXZpH .dropdown-item.active,
.cid-s14nizXZpH .dropdown-item:active {
  background-color: transparent;
}
.cid-s14nizXZpH .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-s14nizXZpH .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-s14nizXZpH .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #c9892f;
}
.cid-s14nizXZpH .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-s14nizXZpH .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-s14nizXZpH ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-s14nizXZpH .navbar-buttons {
  text-align: center;
}
.cid-s14nizXZpH .navbar-buttons .btn.btn-sm {
  padding: 6px 24px !important;
  min-width: 140px;
  line-height: 1.5;
}
.cid-s14nizXZpH button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-s14nizXZpH button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-s14nizXZpH button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-s14nizXZpH button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-s14nizXZpH button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-s14nizXZpH button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-s14nizXZpH nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-s14nizXZpH nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-s14nizXZpH nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-s14nizXZpH nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-s14nizXZpH .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-s14nizXZpH a.nav-link {
  justify-content: center;
  display: flex;
  align-items: center;
}
.cid-s14nizXZpH .mbr-iconfont {
  font-size: 1rem;
  color: #ffffff;
  display: inline-flex;
}
.cid-s14nizXZpH .soc-item {
  margin: .5rem .3rem;
}
.cid-s14nizXZpH .icons-menu {
  flex-wrap: wrap;
  display: flex;
  justify-content: center;
  padding-right: 1rem;
  text-align: center;
  align-items: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-s14nizXZpH .navbar {
    height: 77px;
  }
  .cid-s14nizXZpH .navbar.opened {
    height: auto;
  }
  .cid-s14nizXZpH .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-s1gpnDzROL {
  padding-top: 120px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-s1gpnDzROL .card {
  border-radius: 0;
  margin: auto 0;
}
.cid-s1gpnDzROL .card .wrapper .mbr-section-title {
  color: #ffffff;
  font-weight: 700;
}
.cid-s1gpnDzROL .card .wrapper .mbr-section-title span:first-child {
  color: #ff4e3c;
}
.cid-s1gpnDzROL .card .wrapper .mbr-section-title span:nth-child(2) {
  line-height: 1;
  color: #ffffff;
  padding: 0 6px 1px 5px;
  transform: skew(-14deg);
  background: #c9892f;
  background: linear-gradient(#c9892f 0%, #c9892f 69%, #c9892f 100%);
  display: inline-block;
  font-weight: 500;
  letter-spacing: 0;
  position: relative;
}
.cid-s1gpnDzROL .card .wrapper .mbr-section-subtitle {
  color: #ffffff;
}
.cid-s1gpnDzROL .card .wrapper .mbr-section-subtitle.display-7 {
  letter-spacing: 0;
}
.cid-s1gpnDzROL .card .wrapper .mbr-text {
  color: #ffffff;
  font-weight: 300;
}
.cid-s1gpnDzROL .card .wrapper .mbr-list {
  margin-top: 20px;
  color: #ffffff;
}
.cid-s1gpnDzROL .card .wrapper .mbr-list .list {
  list-style-type: none;
  padding-left: 0;
}
.cid-s1gpnDzROL .card .wrapper .mbr-list .list li {
  line-height: 1.75;
  padding-top: 5px;
  padding-bottom: 5px;
}
.cid-s1gpnDzROL .card .wrapper .buttons-wrap .mbr-section-btn .btn.display-4 {
  padding: 12px 35px;
  line-height: 1.0625;
}
.cid-s1gpnDzROL .card .wrapper .mbr-section-title,
.cid-s1gpnDzROL .mbr-section-btn,
.cid-s1gpnDzROL .mbr-list .list {
  text-align: center;
  color: #000000;
}
.cid-s14niXOwSL {
  padding-top: 30px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-s14niXOwSL .google-map {
  height: 100%;
  min-height: 25rem;
  position: relative;
  width: 100%;
}
.cid-s14niXOwSL .google-map iframe {
  min-height: 100%;
  width: 100%;
}
.cid-s14niXOwSL .google-map [data-state-details] {
  color: #6b6763;
  font-family: Montserrat;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-s14niXOwSL .google-map[data-state] {
  background: #e9e5dc;
}
.cid-s14niXOwSL .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-s14niXOwSL .map-placeholder {
  display: none;
}
.cid-s14niXOwSL .group-title {
  text-align: left;
  color: #000000;
  padding-bottom: 0.2rem;
}
.cid-s14niXOwSL .card {
  padding: 3rem 8rem;
}
.cid-s14niXOwSL .card .mbr-section-title span {
  line-height: 1;
  color: #ffffff;
  padding: 0 6px 1px 5px;
  transform: skew(-14deg);
  background: #c9892f;
  background: linear-gradient(#c9892f 0%, #c9892f 69%, #c9892f 100%);
  display: inline-block;
  font-weight: 500;
  letter-spacing: 0;
  position: relative;
}
.cid-s14niXOwSL .card .mbr-text {
  color: #06182d;
}
.cid-s14niXOwSL .card .mbr-text.display-7 {
  letter-spacing: 0;
}
.cid-s14niXOwSL .card .items .list-item {
  vertical-align: middle;
  padding-top: 5px;
  padding-bottom: 5px;
  align-items: center;
  -webkit-align-items: center;
}
.cid-s14niXOwSL .card .items .list-item .listico {
  display: inline-block;
  padding-right: 1rem;
  font-size: 2rem;
}
.cid-s14niXOwSL .card .items .list-item .text2 {
  display: inline-block;
  color: #000000;
  text-align: left;
}
.cid-s14niXOwSL .card .mbr-section-btn .btn {
  margin: 0 !important;
  padding: 7px 39px;
}
.cid-s14niXOwSL .card .mbr-section-btn .btn.display-4 {
  letter-spacing: 0;
}
.cid-s14niXOwSL .card .mbr-section-btn .btn-success {
  color: #030f1c;
}
.cid-s14niXOwSL .card .social-list {
  display: flex;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  flex-wrap: wrap;
  justify-content: flex-start;
}
.cid-s14niXOwSL .card .social-list .soc-item {
  margin: 0 0.3rem;
}
.cid-s14niXOwSL .card .social-list .soc-item a {
  margin: 0;
  transition: 0.2s linear;
}
.cid-s14niXOwSL .card .social-list .soc-item a .socicon {
  font-size: 1.3rem;
  background: #e9e9e9;
  border-radius: 100%;
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-s14niXOwSL .card .social-list .soc-item a:hover {
  opacity: 0.4;
}
.cid-s14niXOwSL .card .form-group {
  padding-right: 0;
}
.cid-s14niXOwSL .card .form-group .form-control {
  background: transparent;
  padding: 0.5rem 1rem;
  min-height: 55px;
  border-radius: 0px;
}
.cid-s14niXOwSL .card .btn-primary {
  border: 1px solid #c9892f !important;
}
.cid-s14niXOwSL .card .btn-primary:hover {
  border: 1px solid #c9892f !important;
}
@media (max-width: 1200px) {
  .cid-s14niXOwSL .card {
    padding: 3rem;
  }
}
@media (max-width: 991px) {
  .cid-s14niXOwSL .col-sm-12 {
    margin-bottom: 2rem;
  }
  .cid-s14niXOwSL h3 {
    margin-bottom: 10px;
  }
}
@media (max-width: 768px) {
  .cid-s14niXOwSL * {
    text-align: center !important;
  }
  .cid-s14niXOwSL .card .social-list {
    justify-content: center;
  }
}
@media (max-width: 576px) {
  .cid-s14niXOwSL .form-group {
    max-width: 180px;
  }
  .cid-s14niXOwSL .card {
    padding: 2rem 1rem;
  }
}
.cid-s14niXOwSL .card .items .list-item .text2 {
  text-align: left;
}
.cid-s14niXOwSL .card .mbr-section-subtitle {
  text-align: left;
}
.cid-s14nj4hJsl {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #c9892f;
}
.cid-s14nj4hJsl .copyright {
  display: flex;
}
@media (max-width: 992px) {
  .cid-s14nj4hJsl .copyright {
    margin-bottom: 1rem;
  }
}
.cid-s14nj4hJsl .text-wrap {
  transition: all 0.3s;
  padding: 23px;
  bottom: 0;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: flex-end;
  width: 100%;
  overflow: hidden;
  position: relative;
}
.cid-s14nj4hJsl .text-wrap .icons-wrap .icon-wrapper {
  background: #06182d;
  display: flex;
  width: 31px;
  height: 31px;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  border: 2px solid #384657;
  transition: all 0.3s;
  z-index: 4;
  cursor: pointer;
  margin: 0 0.2rem;
}
.cid-s14nj4hJsl .text-wrap .icons-wrap .icon-wrapper:hover {
  background: #ff4e3c;
  border-color: #ff4e3c;
}
.cid-s14nj4hJsl .text-wrap .icons-wrap .icon-wrapper:hover .link-icon {
  color: #ffffde;
}
.cid-s14nj4hJsl .text-wrap .icons-wrap .icon-wrapper .link-icon {
  display: inline-block;
  color: #ffffde;
  transition: all 0.3s;
  font-size: 14px;
  justify-content: center;
}
.cid-s14nj4hJsl .text-wrap .icons-wrap::before {
  height: 2px;
  width: 100%;
  top: 50%;
  right: 58%;
  position: absolute;
  display: inline-block;
  content: "";
  background-color: #384657;
}
@media (max-width: 992px) {
  .cid-s14nj4hJsl .text-wrap .icons-wrap::before {
    display: none;
  }
}
.cid-s14nj4hJsl .text-wrap .icons-wrap::after {
  height: 2px;
  width: 100%;
  top: 50%;
  left: 58%;
  position: absolute;
  display: inline-block;
  content: "";
  background-color: #384657;
}
@media (max-width: 992px) {
  .cid-s14nj4hJsl .text-wrap .icons-wrap::after {
    display: none;
  }
}
.cid-s14nbRM2Kc .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 16px;
  position: absolute;
  right: 1rem;
  top: 30%;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-s14nbRM2Kc .nav-item,
.cid-s14nbRM2Kc .nav-link,
.cid-s14nbRM2Kc .navbar-caption {
  font-weight: normal;
}
.cid-s14nbRM2Kc .nav-item:focus,
.cid-s14nbRM2Kc .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-s14nbRM2Kc .dropdown-item:hover:before {
    transform: scale(1, 1);
  }
}
.cid-s14nbRM2Kc .dropdown .dropdown-menu .dropdown-item {
  display: flex;
  align-items: center;
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-s14nbRM2Kc .dropdown .dropdown-menu .dropdown-item::after {
  right: 1rem;
}
.cid-s14nbRM2Kc .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  transform: scale(0, 1);
}
.cid-s14nbRM2Kc .dropdown .dropdown-menu .dropdown-item.dropdown-toggle:before {
  display: none;
}
.cid-s14nbRM2Kc .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-s14nbRM2Kc .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-s14nbRM2Kc .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-s14nbRM2Kc .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-s14nbRM2Kc .collapsed .icons-menu {
  padding-left: 16px;
}
.cid-s14nbRM2Kc .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #c9892f;
}
.cid-s14nbRM2Kc .navbar.opened {
  transition: all .3s;
  background: #c9892f !important;
}
.cid-s14nbRM2Kc .navbar .dropdown-item {
  padding: .235rem 2.5rem .235rem 1.5rem;
}
.cid-s14nbRM2Kc .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-s14nbRM2Kc .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-s14nbRM2Kc .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-s14nbRM2Kc .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-s14nbRM2Kc .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-s14nbRM2Kc .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-s14nbRM2Kc .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-s14nbRM2Kc .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
  justify-content: center;
}
.cid-s14nbRM2Kc .navbar.collapsed .icons-menu {
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-s14nbRM2Kc .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-s14nbRM2Kc .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-s14nbRM2Kc .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-s14nbRM2Kc .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-s14nbRM2Kc .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-s14nbRM2Kc .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-s14nbRM2Kc .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-s14nbRM2Kc .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
    justify-content: center;
  }
  .cid-s14nbRM2Kc .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-s14nbRM2Kc .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-s14nbRM2Kc .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-s14nbRM2Kc .navbar.navbar-short {
  background: #c9892f !important;
  min-height: 60px;
}
.cid-s14nbRM2Kc .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-s14nbRM2Kc .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-s14nbRM2Kc .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-s14nbRM2Kc .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-s14nbRM2Kc .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-s14nbRM2Kc .dropdown-item.active,
.cid-s14nbRM2Kc .dropdown-item:active {
  background-color: transparent;
}
.cid-s14nbRM2Kc .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-s14nbRM2Kc .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-s14nbRM2Kc .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #c9892f;
}
.cid-s14nbRM2Kc .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-s14nbRM2Kc .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-s14nbRM2Kc ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-s14nbRM2Kc .navbar-buttons {
  text-align: center;
}
.cid-s14nbRM2Kc .navbar-buttons .btn.btn-sm {
  padding: 6px 24px !important;
  min-width: 140px;
  line-height: 1.5;
}
.cid-s14nbRM2Kc button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-s14nbRM2Kc button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-s14nbRM2Kc button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-s14nbRM2Kc button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-s14nbRM2Kc button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-s14nbRM2Kc button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-s14nbRM2Kc nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-s14nbRM2Kc nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-s14nbRM2Kc nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-s14nbRM2Kc nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-s14nbRM2Kc .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-s14nbRM2Kc a.nav-link {
  justify-content: center;
  display: flex;
  align-items: center;
}
.cid-s14nbRM2Kc .mbr-iconfont {
  font-size: 1rem;
  color: #ffffff;
  display: inline-flex;
}
.cid-s14nbRM2Kc .soc-item {
  margin: .5rem .3rem;
}
.cid-s14nbRM2Kc .icons-menu {
  flex-wrap: wrap;
  display: flex;
  justify-content: center;
  padding-right: 1rem;
  text-align: center;
  align-items: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-s14nbRM2Kc .navbar {
    height: 77px;
  }
  .cid-s14nbRM2Kc .navbar.opened {
    height: auto;
  }
  .cid-s14nbRM2Kc .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-s14nbU2vck {
  padding-top: 120px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-s14nbU2vck .card {
  border-radius: 0;
  margin: auto 0;
}
.cid-s14nbU2vck .card .wrapper .mbr-section-title {
  color: #ffffff;
  font-weight: 700;
}
.cid-s14nbU2vck .card .wrapper .mbr-section-title span:first-child {
  color: #ff4e3c;
}
.cid-s14nbU2vck .card .wrapper .mbr-section-title span:nth-child(2) {
  line-height: 1;
  color: #ffffff;
  padding: 0 6px 1px 5px;
  transform: skew(-14deg);
  background: #c9892f;
  background: linear-gradient(#c9892f 0%, #c9892f 69%, #c9892f 100%);
  display: inline-block;
  font-weight: 500;
  letter-spacing: 0;
  position: relative;
}
.cid-s14nbU2vck .card .wrapper .mbr-section-subtitle {
  color: #ffffff;
}
.cid-s14nbU2vck .card .wrapper .mbr-section-subtitle.display-7 {
  letter-spacing: 0;
}
.cid-s14nbU2vck .card .wrapper .mbr-text {
  color: #ffffff;
  font-weight: 300;
}
.cid-s14nbU2vck .card .wrapper .mbr-list {
  margin-top: 20px;
  color: #ffffff;
}
.cid-s14nbU2vck .card .wrapper .mbr-list .list {
  list-style-type: none;
  padding-left: 0;
}
.cid-s14nbU2vck .card .wrapper .mbr-list .list li {
  line-height: 1.75;
  padding-top: 5px;
  padding-bottom: 5px;
}
.cid-s14nbU2vck .card .wrapper .buttons-wrap .mbr-section-btn .btn.display-4 {
  padding: 12px 35px;
  line-height: 1.0625;
}
.cid-s14nbU2vck .card .wrapper .mbr-section-title,
.cid-s14nbU2vck .mbr-section-btn,
.cid-s14nbU2vck .mbr-list .list {
  text-align: center;
  color: #000000;
}
.cid-s1EFHsEHdM {
  padding-top: 15px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-s1EFHsEHdM .img-wrap img {
  width: 100%;
}
.cid-s1EFHsEHdM .mbr-section-title {
  color: #06182d;
  margin-bottom: 1rem;
  transition: all 0.15s linear 0s;
  text-align: center;
}
.cid-s1EFHsEHdM .mbr-section-title.display-5 {
  letter-spacing: 1px;
}
.cid-s1EFHsEHdM .mbr-section-title:hover {
  opacity: 0.8;
}
.cid-s1EFHsEHdM .mbr-section-subtitle {
  color: #61728a;
  margin-bottom: 1rem;
  letter-spacing: 0.03em;
}
.cid-s1EFHsEHdM .mbr-section-subtitle.mbr-light {
  font-weight: 300;
}
.cid-s1EFHsEHdM .btn {
  margin: 0px !important;
}
.cid-s1EFHsEHdM .btn.btn-success-outline {
  color: #000000;
}
.cid-s1EFHsEHdM .btn.btn-sm {
  padding: 7px 39px;
}
.cid-s1EFHsEHdM .share_buttons .icon-wrapper {
  background: #ffffff;
  display: flex;
  width: 31px;
  height: 31px;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  border: 2px solid #c3cad2;
  transition: all 0.3s;
  z-index: 4;
  cursor: pointer;
  margin: 10px 0 10px auto;
}
.cid-s1EFHsEHdM .share_buttons .icon-wrapper:hover .link-icon {
  color: #007bff;
}
.cid-s1EFHsEHdM .share_buttons .icon-wrapper .link-icon {
  display: inline-block;
  color: #61728a;
  transition: all 0.3s;
  font-size: 14px;
  justify-content: center;
}
@media (max-width: 768px) {
  .cid-s1EFHsEHdM .share_buttons {
    display: flex;
    flex-direction: row;
    justify-content: center;
  }
  .cid-s1EFHsEHdM .share_buttons .icon-wrapper {
    margin: 10px !important;
  }
}
.cid-s1EFHsEHdM .sticky-tag {
  position: absolute;
  top: 0;
  left: 4px;
  z-index: 10;
  display: block;
}
.cid-s1EFHsEHdM .sticky-tag .mbr-text {
  padding: 5px 6px;
  margin: 0 3px 9px;
  text-align: center;
  display: inline-block;
  line-height: 1;
  transform: skew(-22deg);
  background: #c9892f;
  font-weight: 400;
  border-image-slice: 1;
  color: #ffffff;
}
.cid-s1EFHsEHdM .sticky-tag .mbr-text::before {
  content: '';
  position: absolute;
  bottom: -12px;
  left: 1.5px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 15px 12px 0;
  border-color: transparent #c9892f transparent transparent;
  transform: skew(22deg) !important;
}
.cid-s15wbDNhBp {
  padding-top: 15px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-s15wbDNhBp .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
.cid-s15wbDNhBp H4 {
  text-align: center;
  color: #c9892f;
}
.cid-s15wbDNhBp P {
  text-align: center;
}
.cid-s15wbDNhBp LABEL {
  color: #c9892f;
}
.cid-s14ncmjKFe {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #c9892f;
}
.cid-s14ncmjKFe .copyright {
  display: flex;
}
@media (max-width: 992px) {
  .cid-s14ncmjKFe .copyright {
    margin-bottom: 1rem;
  }
}
.cid-s14ncmjKFe .text-wrap {
  transition: all 0.3s;
  padding: 23px;
  bottom: 0;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: flex-end;
  width: 100%;
  overflow: hidden;
  position: relative;
}
.cid-s14ncmjKFe .text-wrap .icons-wrap .icon-wrapper {
  background: #06182d;
  display: flex;
  width: 31px;
  height: 31px;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  border: 2px solid #384657;
  transition: all 0.3s;
  z-index: 4;
  cursor: pointer;
  margin: 0 0.2rem;
}
.cid-s14ncmjKFe .text-wrap .icons-wrap .icon-wrapper:hover {
  background: #ff4e3c;
  border-color: #ff4e3c;
}
.cid-s14ncmjKFe .text-wrap .icons-wrap .icon-wrapper:hover .link-icon {
  color: #ffffde;
}
.cid-s14ncmjKFe .text-wrap .icons-wrap .icon-wrapper .link-icon {
  display: inline-block;
  color: #ffffde;
  transition: all 0.3s;
  font-size: 14px;
  justify-content: center;
}
.cid-s14ncmjKFe .text-wrap .icons-wrap::before {
  height: 2px;
  width: 100%;
  top: 50%;
  right: 58%;
  position: absolute;
  display: inline-block;
  content: "";
  background-color: #384657;
}
@media (max-width: 992px) {
  .cid-s14ncmjKFe .text-wrap .icons-wrap::before {
    display: none;
  }
}
.cid-s14ncmjKFe .text-wrap .icons-wrap::after {
  height: 2px;
  width: 100%;
  top: 50%;
  left: 58%;
  position: absolute;
  display: inline-block;
  content: "";
  background-color: #384657;
}
@media (max-width: 992px) {
  .cid-s14ncmjKFe .text-wrap .icons-wrap::after {
    display: none;
  }
}
