.video-wrapper {
  overflow: hidden;
}
body {
  font-family: Manrope;
}
.display-1 {
  font-family: 'Afacad', sans-serif;
  font-size: 4.8rem;
  line-height: 1.1;
}
.display-1 > .mbr-iconfont {
  font-size: 6rem;
}
.display-2 {
  font-family: 'Afacad', sans-serif;
  font-size: 3.6rem;
  line-height: 1.15;
}
.display-2 > .mbr-iconfont {
  font-size: 4.5rem;
}
.display-4 {
  font-family: 'Lexend', sans-serif;
  font-size: 1.2rem;
  line-height: 1.4;
}
.display-4 > .mbr-iconfont {
  font-size: 1.5rem;
}
.display-5 {
  font-family: 'Afacad', sans-serif;
  font-size: 2.2rem;
  line-height: 1.3;
}
.display-5 > .mbr-iconfont {
  font-size: 2.75rem;
}
.display-7 {
  font-family: 'Lexend', sans-serif;
  font-size: 1.6rem;
  line-height: 1.4;
}
.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: 992px) {
  .display-1 {
    font-size: 3.84rem;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 3.36rem;
    font-size: calc( 2.33rem + (4.8 - 2.33) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (2.33rem + (4.8 - 2.33) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 2.88rem;
    font-size: calc( 1.91rem + (3.6 - 1.91) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.15 * (1.91rem + (3.6 - 1.91) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 0.96rem;
    font-size: calc( 1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 1.76rem;
    font-size: calc( 1.42rem + (2.2 - 1.42) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.3 * (1.42rem + (2.2 - 1.42) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-7 {
    font-size: 1.28rem;
    font-size: calc( 1.21rem + (1.6 - 1.21) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.21rem + (1.6 - 1.21) * ((100vw - 20rem) / (48 - 20))));
  }
}
@media (min-width: 992px) and (max-width: 1400px) {
  .display-1 {
    font-size: 3.36rem;
    font-size: calc( 2.33rem + (4.8 - 2.33) * ((100vw - 62rem) / (87 - 62)));
    line-height: calc( 1.1 * (2.33rem + (4.8 - 2.33) * ((100vw - 62rem) / (87 - 62))));
  }
  .display-2 {
    font-size: 2.88rem;
    font-size: calc( 1.91rem + (3.6 - 1.91) * ((100vw - 62rem) / (87 - 62)));
    line-height: calc( 1.15 * (1.91rem + (3.6 - 1.91) * ((100vw - 62rem) / (87 - 62))));
  }
  .display-4 {
    font-size: 0.96rem;
    font-size: calc( 1.07rem + (1.2 - 1.07) * ((100vw - 62rem) / (87 - 62)));
    line-height: calc( 1.4 * (1.07rem + (1.2 - 1.07) * ((100vw - 62rem) / (87 - 62))));
  }
  .display-5 {
    font-size: 1.76rem;
    font-size: calc( 1.42rem + (2.2 - 1.42) * ((100vw - 62rem) / (87 - 62)));
    line-height: calc( 1.3 * (1.42rem + (2.2 - 1.42) * ((100vw - 62rem) / (87 - 62))));
  }
  .display-7 {
    font-size: 1.28rem;
    font-size: calc( 1.21rem + (1.6 - 1.21) * ((100vw - 62rem) / (87 - 62)));
    line-height: calc( 1.4 * (1.21rem + (1.6 - 1.21) * ((100vw - 62rem) / (87 - 62))));
  }
}
/* Buttons */
.btn {
  padding: 1.25rem 2rem;
  border-radius: 4px;
}
@media (max-width: 767px) {
  .btn {
    padding: 0.75rem 1.5rem;
  }
}
.btn-sm {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-md {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-lg {
  padding: 1.25rem 2rem;
  border-radius: 4px;
}
.bg-primary {
  background-color: #ff6900 !important;
}
.bg-success {
  background-color: #51d829 !important;
}
.bg-info {
  background-color: #e1e7ed !important;
}
.bg-warning {
  background-color: #583502 !important;
}
.bg-danger {
  background-color: #f60018 !important;
}
.btn-primary {
  box-shadow: inset 0 10px 8px 0 #ffb480, inset 0 -2px 10px 0 #ffb480, 0 1px 2px 0 #e65e00, 0 10px 15px -5px #ff6900;
}
.btn-primary,
.btn-primary:active {
  background-color: #ff6900 !important;
  border-color: #ff6900 !important;
  color: #ffffff !important;
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus,
.btn-primary.active {
  color: inherit;
  background-color: #ff8733 !important;
  border-color: #ff8733 !important;
  box-shadow: inset 0 10px 8px 0 #ffd2b3, inset 0 -2px 10px 0 #ffd2b3, 0 1px 2px 0 #ff7819, 0 20px 40px -10px #ff8733;
  transform: translateY(-2px);
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #ff8733 !important;
  border-color: #ff8733 !important;
}
.btn-secondary {
  box-shadow: inset 0 10px 8px 0 #8494ac, inset 0 -2px 10px 0 #8494ac, 0 1px 2px 0 #3d495a, 0 10px 15px -5px #475569;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #475569 !important;
  border-color: #475569 !important;
  color: #ffffff !important;
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus,
.btn-secondary.active {
  color: inherit;
  background-color: #5c6e87 !important;
  border-color: #5c6e87 !important;
  box-shadow: inset 0 10px 8px 0 #a2afc0, inset 0 -2px 10px 0 #a2afc0, 0 1px 2px 0 #516178, 0 20px 40px -10px #5c6e87;
  transform: translateY(-2px);
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #5c6e87 !important;
  border-color: #5c6e87 !important;
}
.btn-info {
  box-shadow: inset 0 10px 8px 0 #ffffff, inset 0 -2px 10px 0 #ffffff, 0 1px 2px 0 #d1dae3, 0 10px 15px -5px #e1e7ed;
}
.btn-info,
.btn-info:active {
  background-color: #e1e7ed !important;
  border-color: #e1e7ed !important;
  color: #3a4e62 !important;
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus,
.btn-info.active {
  color: inherit;
  background-color: #ffffff !important;
  border-color: #ffffff !important;
  box-shadow: inset 0 10px 8px 0 #ffffff, inset 0 -2px 10px 0 #ffffff, 0 1px 2px 0 #f2f2f2, 0 20px 40px -10px #ffffff;
  transform: translateY(-2px);
}
.btn-info.disabled,
.btn-info:disabled {
  color: #3a4e62 !important;
  background-color: #ffffff !important;
  border-color: #ffffff !important;
}
.btn-success {
  box-shadow: inset 0 10px 8px 0 #a9ec95, inset 0 -2px 10px 0 #a9ec95, 0 1px 2px 0 #48c424, 0 10px 15px -5px #51d829;
}
.btn-success,
.btn-success:active {
  background-color: #51d829 !important;
  border-color: #51d829 !important;
  color: #000000 !important;
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus,
.btn-success.active {
  color: inherit;
  background-color: #74e054 !important;
  border-color: #74e054 !important;
  box-shadow: inset 0 10px 8px 0 #ccf4c0, inset 0 -2px 10px 0 #ccf4c0, 0 1px 2px 0 #63dc3f, 0 20px 40px -10px #74e054;
  transform: translateY(-2px);
}
.btn-success.disabled,
.btn-success:disabled {
  color: #000000 !important;
  background-color: #74e054 !important;
  border-color: #74e054 !important;
}
.btn-warning {
  box-shadow: inset 0 10px 8px 0 #d58005, inset 0 -2px 10px 0 #d58005, 0 1px 2px 0 #3f2601, 0 10px 15px -5px #583502;
}
.btn-warning,
.btn-warning:active {
  background-color: #583502 !important;
  border-color: #583502 !important;
  color: #ffffff !important;
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus,
.btn-warning.active {
  color: inherit;
  background-color: #8a5303 !important;
  border-color: #8a5303 !important;
  box-shadow: inset 0 10px 8px 0 #fa9c13, inset 0 -2px 10px 0 #fa9c13, 0 1px 2px 0 #714403, 0 20px 40px -10px #8a5303;
  transform: translateY(-2px);
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #ffffff !important;
  background-color: #8a5303 !important;
  border-color: #8a5303 !important;
}
.btn-danger {
  box-shadow: inset 0 10px 8px 0 #ff7784, inset 0 -2px 10px 0 #ff7784, 0 1px 2px 0 #dd0016, 0 10px 15px -5px #f60018;
}
.btn-danger,
.btn-danger:active {
  background-color: #f60018 !important;
  border-color: #f60018 !important;
  color: #ffffff !important;
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus,
.btn-danger.active {
  color: inherit;
  background-color: #ff2a3f !important;
  border-color: #ff2a3f !important;
  box-shadow: inset 0 10px 8px 0 #ffaab2, inset 0 -2px 10px 0 #ffaab2, 0 1px 2px 0 #ff1128, 0 20px 40px -10px #ff2a3f;
  transform: translateY(-2px);
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #ff2a3f !important;
  border-color: #ff2a3f !important;
}
.btn-white {
  box-shadow: inset 0 10px 8px 0 #ffffff, inset 0 -2px 10px 0 #ffffff, 0 1px 2px 0 #ededed, 0 10px 15px -5px #fafafa;
}
.btn-white,
.btn-white:active {
  background-color: #fafafa !important;
  border-color: #fafafa !important;
  color: #616161 !important;
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus,
.btn-white.active {
  color: inherit;
  background-color: #ffffff !important;
  border-color: #ffffff !important;
  box-shadow: inset 0 10px 8px 0 #ffffff, inset 0 -2px 10px 0 #ffffff, 0 1px 2px 0 #f2f2f2, 0 20px 40px -10px #ffffff;
  transform: translateY(-2px);
}
.btn-white.disabled,
.btn-white:disabled {
  color: #616161 !important;
  background-color: #ffffff !important;
  border-color: #ffffff !important;
}
.btn-black {
  box-shadow: inset 0 10px 8px 0 #314a88, inset 0 -2px 10px 0 #314a88, 0 1px 2px 0 #080d17, 0 10px 15px -5px #0f172a;
}
.btn-black,
.btn-black:active {
  background-color: #0f172a !important;
  border-color: #0f172a !important;
  color: #ffffff !important;
}
.btn-black:hover,
.btn-black:focus,
.btn-black.focus,
.btn-black.active {
  color: inherit;
  background-color: #1c2c50 !important;
  border-color: #1c2c50 !important;
  box-shadow: inset 0 10px 8px 0 #3e5fae, inset 0 -2px 10px 0 #3e5fae, 0 1px 2px 0 #16213d, 0 20px 40px -10px #1c2c50;
  transform: translateY(-2px);
}
.btn-black.disabled,
.btn-black:disabled {
  color: #ffffff !important;
  background-color: #1c2c50 !important;
  border-color: #1c2c50 !important;
}
.btn-primary-outline,
.btn-primary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ff6900;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #a84500 !important;
  background-color: transparent !important;
  border-color: transparent !important;
  box-shadow: none !important;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #ff6900 !important;
  border-color: #ff6900 !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #475569;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #242b35 !important;
  background-color: transparent !important;
  border-color: transparent !important;
  box-shadow: none !important;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #475569 !important;
  border-color: #475569 !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #e1e7ed;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #abbccc !important;
  background-color: transparent !important;
  border-color: transparent !important;
  box-shadow: none !important;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #4e6781 !important;
  background-color: #e1e7ed !important;
  border-color: #e1e7ed !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #51d829;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #35901a !important;
  background-color: transparent !important;
  border-color: transparent !important;
  box-shadow: none !important;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #ffffff !important;
  background-color: #51d829 !important;
  border-color: #51d829 !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #583502;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #030200 !important;
  background-color: transparent !important;
  border-color: transparent !important;
  box-shadow: none !important;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #ffffff !important;
  background-color: #583502 !important;
  border-color: #583502 !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #f60018;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #9f0010 !important;
  background-color: transparent !important;
  border-color: transparent !important;
  box-shadow: none !important;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #f60018 !important;
  border-color: #f60018 !important;
}
.btn-black-outline,
.btn-black-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #0f172a;
}
.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.focus,
.btn-black-outline.active {
  color: #000000 !important;
  background-color: transparent !important;
  border-color: transparent !important;
  box-shadow: none !important;
}
.btn-black-outline.disabled,
.btn-black-outline:disabled {
  color: #ffffff !important;
  background-color: #0f172a !important;
  border-color: #0f172a !important;
}
.btn-white-outline,
.btn-white-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #fafafa;
}
.btn-white-outline:hover,
.btn-white-outline:focus,
.btn-white-outline.focus,
.btn-white-outline.active {
  color: #cfcfcf !important;
  background-color: transparent !important;
  border-color: transparent !important;
  box-shadow: none !important;
}
.btn-white-outline.disabled,
.btn-white-outline:disabled {
  color: #7a7a7a !important;
  background-color: #fafafa !important;
  border-color: #fafafa !important;
}
.text-primary {
  color: #ff6900 !important;
}
.text-secondary {
  color: #475569 !important;
}
.text-success {
  color: #51d829 !important;
}
.text-info {
  color: #e1e7ed !important;
}
.text-warning {
  color: #583502 !important;
}
.text-danger {
  color: #f60018 !important;
}
.text-white {
  color: #fafafa !important;
}
.text-black {
  color: #0f172a !important;
}
a.text-primary:hover,
a.text-primary:focus,
a.text-primary.active {
  color: #993f00 !important;
}
a.text-secondary:hover,
a.text-secondary:focus,
a.text-secondary.active {
  color: #1e242c !important;
}
a.text-success:hover,
a.text-success:focus,
a.text-success.active {
  color: #308318 !important;
}
a.text-info:hover,
a.text-info:focus,
a.text-info.active {
  color: #a1b4c7 !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: #90000e !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: #ff6900;
}
.nav-tabs .nav-link:not(.active) {
  color: #232323;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #e1e7ed;
}
.alert-warning {
  background-color: #583502;
}
.alert-danger {
  background-color: #f60018;
}
.mbr-section-btn .btn:not(.btn-form) {
  border-radius: 100px;
}
.mbr-gallery-filter li a {
  border-radius: 100px !important;
}
.mbr-gallery-filter li.active .btn {
  background-color: #ff6900;
  border-color: #ff6900;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
.nav-tabs .nav-link {
  border-radius: 1rem !important;
}
a,
a:hover {
  color: #ff6900;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #ffe1cc;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #ddf7d6;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #d58005;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #ffc3c9;
}
/* Scroll to top button*/
.scrollToTop_wraper {
  display: none;
}
.form-control {
  font-family: 'Lexend', sans-serif;
  font-size: 1.2rem;
  line-height: 1.4;
  font-weight: 400;
  border-radius: 8px !important;
}
.form-control > .mbr-iconfont {
  font-size: 1.5rem;
}
.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: #ff6900 !important;
}
.form-control:-webkit-input-placeholder {
  font-family: 'Lexend', sans-serif;
  font-size: 1.6rem;
  line-height: 1.4;
  font-weight: 400;
}
.form-control:-webkit-input-placeholder > .mbr-iconfont {
  font-size: 2rem;
}
blockquote {
  border-color: #ff6900;
}
/* Forms */
.mbr-form .input-group-btn .btn {
  border-radius: 100px !important;
}
.mbr-form .input-group-btn .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: #ff6900;
  color: #ffffff;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #ff6900;
}
.jq-selectbox .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:after,
.jq-number__spin.plus:after {
  transition: 0.4s;
  border-top-color: #232323;
  border-bottom-color: #232323;
}
.jq-selectbox:hover .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:hover:after,
.jq-number__spin.plus:hover:after {
  border-top-color: #ff6900;
  border-bottom-color: #ff6900;
}
.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: #ff6900 !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: #475569 !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='%23ff6900' %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;
}
.mbr-section-btn .btn {
  font-weight: 500;
  padding: 9px 16px;
  border-radius: 12px !important;
  padding: 18px 26px;
  border: none !important;
}
.mbr-section-btn .btn-black {
  box-shadow: inset 0 10px 8px 0 #484848, 0 10px 15px -5px #949494;
  background-color: #0f172a !important;
}
.mbr-section-btn .btn-black:hover,
.mbr-section-btn .btn-black:focus,
.mbr-section-btn .btn-black.focus,
.mbr-section-btn .btn-black.active {
  color: #ffffff !important;
  background-color: #ff6900 !important;
  border-color: #ff6900 !important;
  box-shadow: inset 0 10px 8px 0 #ffb480, inset 0 -2px 10px 0 #ffb480, 0 1px 2px 0 #ff6900, 0 20px 40px -10px #ff6900;
}
.mbr-section-btn .btn-white {
  box-shadow: inset 0 10px 8px 0 #ffffff, inset 0 -2px 10px 0 #c7c7c7, 0 1px 2px 0 #c7c7c7, 0 10px 15px -5px #c7c7c7;
  background-color: #fafafa !important;
}
.mbr-section-btn .btn-white:hover,
.mbr-section-btn .btn-white:focus,
.mbr-section-btn .btn-white.focus,
.mbr-section-btn .btn-white.active {
  color: #ffffff !important;
  background-color: #ff6900 !important;
  border-color: #ff6900 !important;
  box-shadow: inset 0 10px 8px 0 #ffb480, inset 0 -2px 10px 0 #ffb480, 0 1px 2px 0 #ff6900, 0 20px 40px -10px #ff6900;
}
img,
.card-wrap,
.card-wrapper,
.video-wrapper,
.mbr-figure iframe,
.google-map iframe,
.slide-content,
.plan,
.card,
.item-wrapper {
  border-radius: 1rem !important;
}
.large-radius {
  border-radius: 32px !important;
}
.little-radius,
.item-img::before,
.item-img::after,
.dropdown-item {
  border-radius: 8px !important;
}
*:focus-visible {
  outline: red solid 2px !important;
  outline-offset: 2px !important;
  transition: outline 0.2s ease-in-out;
}
.cid-v4MhGcwGXA {
  z-index: 1000;
  width: 100%;
  position: relative;
}
.cid-v4MhGcwGXA .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;
}
@media (max-width: 767px) {
  .cid-v4MhGcwGXA .navbar-toggler {
    transform: scale(0.8);
  }
}
.cid-v4MhGcwGXA .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-v4MhGcwGXA .navbar-brand img {
  max-width: 100%;
  max-height: 100%;
  object-fit: cover;
}
.cid-v4MhGcwGXA .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-v4MhGcwGXA .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-v4MhGcwGXA .navbar-nav {
  margin: auto;
  margin-left: 0;
  margin-left: auto;
}
.cid-v4MhGcwGXA .navbar-nav .nav-item {
  padding: 0 !important;
  transition: .3s all !important;
}
@media (max-width: 992px) {
  .cid-v4MhGcwGXA .navbar-nav .nav-item {
    padding-left: 0 !important;
  }
}
.cid-v4MhGcwGXA .navbar-nav .nav-item .nav-link {
  position: relative;
  padding: 0 !important;
  margin: 4px 10px !important;
  transition: .3s all !important;
  font-weight: 400;
}
@media (max-width: 992px) {
  .cid-v4MhGcwGXA .navbar-nav .nav-item .nav-link {
    padding: 10px 0 !important;
    margin-left: 0 !important;
  }
}
.cid-v4MhGcwGXA .navbar-nav .nav-item .nav-link::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px !important;
  background-color: #ff6900;
  transform: translateY(-2px);
  opacity: 0;
  transition: all 0.3s ease;
}
.cid-v4MhGcwGXA .navbar-nav .nav-item .nav-link:hover {
  color: #ff6900 !important;
}
@media (max-width: 992px) {
  .cid-v4MhGcwGXA .navbar-nav .nav-item .nav-link:hover {
    background-color: transparent;
  }
}
.cid-v4MhGcwGXA .navbar-nav .nav-item .nav-link:hover::before {
  transform: translateY(0);
  opacity: 1;
}
.cid-v4MhGcwGXA .navbar-nav .open .nav-link::after {
  transform: rotate(180deg);
}
@media (min-width: 992px) {
  .cid-v4MhGcwGXA .navbar-nav .open .nav-link::before {
    content: "";
    width: 100%;
    height: 20px;
    top: 100%;
    background: transparent;
    position: absolute;
  }
}
.cid-v4MhGcwGXA .navbar-nav .dropdown-item {
  padding: 12px !important;
  margin: 0 8px !important;
  transition: .3s all !important;
  background: #fafafa;
  font-weight: 400;
}
@media (max-width: 992px) {
  .cid-v4MhGcwGXA .navbar-nav .dropdown-item {
    margin: 0 8px 0 0 !important;
  }
}
.cid-v4MhGcwGXA .navbar-nav .dropdown-item:hover {
  color: #ff6900;
}
.cid-v4MhGcwGXA .nav-link {
  width: fit-content;
  position: relative;
}
.cid-v4MhGcwGXA .navbar-logo {
  padding-left: 0;
  margin: 0 !important;
  border-radius: 5px !important;
}
@media (max-width: 767px) {
  .cid-v4MhGcwGXA .navbar-logo {
    padding-left: 0;
  }
}
.cid-v4MhGcwGXA .navbar-caption {
  padding-left: 0;
  padding-right: 20px;
  font-weight: 700;
}
@media (max-width: 992px) {
  .cid-v4MhGcwGXA .navbar-caption {
    border-right: none;
  }
}
.cid-v4MhGcwGXA .navbar-caption:hover {
  color: #ff6900 !important;
}
@media (max-width: 767px) {
  .cid-v4MhGcwGXA .nav-dropdown {
    padding-bottom: 0.5rem;
  }
}
.cid-v4MhGcwGXA .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0rem;
  transition: .3s all;
}
.cid-v4MhGcwGXA .container,
.cid-v4MhGcwGXA .container-fluid {
  display: flex;
  min-height: 75px;
  padding: 0 32px;
  flex-wrap: nowrap;
  left: 0;
  right: 0;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: flex-end;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  margin-top: .5rem;
  background-color: #fafafa;
  backdrop-filter: blur(8px);
  box-shadow: inset 0 10px 8px 0 #ffffff, inset 0 -5px 10px -4px #cccccc, 0 10px 10px -5px #cccccc;
}
@media (max-width: 992px) {
  .cid-v4MhGcwGXA .container,
  .cid-v4MhGcwGXA .container-fluid {
    padding-right: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-v4MhGcwGXA .container,
  .cid-v4MhGcwGXA .container-fluid {
    width: 90%;
    height: 56px !important;
    padding-right: 1rem;
    padding-left: 1rem;
    margin-top: 0rem;
  }
}
.cid-v4MhGcwGXA .container-fluid {
  margin-left: 40px;
  margin-right: 40px;
}
@media (max-width: 992px) {
  .cid-v4MhGcwGXA .container-fluid {
    margin-left: 20px;
    margin-right: 20px;
  }
}
.cid-v4MhGcwGXA .iconfont-wrapper {
  color: #0f172a !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
  transition: all 0.3s ease-in-out;
}
.cid-v4MhGcwGXA .iconfont-wrapper:hover {
  opacity: .6;
}
.cid-v4MhGcwGXA .dropdown-menu {
  flex-wrap: wrap;
  flex-direction: column;
  max-width: 100%;
  padding: 0 !important;
  border-radius: 1rem;
  transition: .3s all !important;
  min-width: auto;
}
.cid-v4MhGcwGXA .nav-item:focus,
.cid-v4MhGcwGXA .nav-link:focus {
  outline: none;
}
.cid-v4MhGcwGXA .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-v4MhGcwGXA .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v4MhGcwGXA .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-v4MhGcwGXA .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-v4MhGcwGXA .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-v4MhGcwGXA .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-v4MhGcwGXA .navbar {
  min-height: 75px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: transparent !important;
  padding: 0 !important;
  border: none !important;
  box-shadow: none !important;
  border-radius: 0 !important;
}
.cid-v4MhGcwGXA .navbar.opened {
  transition: all 0.3s;
}
.cid-v4MhGcwGXA .navbar.opened .container {
  backdrop-filter: none;
}
.cid-v4MhGcwGXA .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-v4MhGcwGXA .navbar .navbar-logo img {
  width: auto;
  margin-right: 8px;
}
.cid-v4MhGcwGXA .navbar .navbar-collapse {
  z-index: 1;
  justify-content: flex-end;
}
.cid-v4MhGcwGXA .navbar.collapsed {
  justify-content: center;
}
.cid-v4MhGcwGXA .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-v4MhGcwGXA .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-v4MhGcwGXA .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-v4MhGcwGXA .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-v4MhGcwGXA .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-v4MhGcwGXA .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-v4MhGcwGXA .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-v4MhGcwGXA .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-v4MhGcwGXA .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 767px) {
  .cid-v4MhGcwGXA .navbar {
    min-height: 72px;
  }
  .cid-v4MhGcwGXA .navbar .navbar-logo img {
    height: 2rem !important;
  }
}
@media (max-width: 991px) {
  .cid-v4MhGcwGXA .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-v4MhGcwGXA .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-v4MhGcwGXA .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-v4MhGcwGXA .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-v4MhGcwGXA .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-v4MhGcwGXA .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-v4MhGcwGXA .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 10px;
  }
  .cid-v4MhGcwGXA .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-v4MhGcwGXA .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-v4MhGcwGXA .navbar.navbar-short .navbar-logo img {
  height: 2rem;
}
.cid-v4MhGcwGXA .dropdown-item.active,
.cid-v4MhGcwGXA .dropdown-item:active {
  background-color: transparent;
}
.cid-v4MhGcwGXA .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-v4MhGcwGXA .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-v4MhGcwGXA .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-v4MhGcwGXA .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: transparent;
  top: 2rem;
}
@media (max-width: 992px) {
  .cid-v4MhGcwGXA .navbar.navbar-expand-lg .dropdown .dropdown-menu {
    top: 0;
  }
}
.cid-v4MhGcwGXA .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 95%;
  transform: none;
  top: 0;
}
.cid-v4MhGcwGXA .navbar .dropdown.open > .dropdown-menu {
  display: flex;
}
.cid-v4MhGcwGXA ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-v4MhGcwGXA .navbar-buttons {
  text-align: center;
  min-width: 140px;
}
@media (max-width: 992px) {
  .cid-v4MhGcwGXA .navbar-buttons {
    text-align: left;
  }
}
.cid-v4MhGcwGXA button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-v4MhGcwGXA button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #0f172a;
}
.cid-v4MhGcwGXA button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-v4MhGcwGXA button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v4MhGcwGXA button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v4MhGcwGXA button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-v4MhGcwGXA nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v4MhGcwGXA nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-v4MhGcwGXA nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-v4MhGcwGXA nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v4MhGcwGXA .navbar-dropdown {
  padding: 0 1rem;
}
.cid-v4MhGcwGXA a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-v4MhGcwGXA .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media (max-width: 992px) {
  .cid-v4MhGcwGXA .icons-menu {
    justify-content: flex-start;
    margin-bottom: .5rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-v4MhGcwGXA .navbar {
    height: 75px;
  }
  .cid-v4MhGcwGXA .navbar.opened {
    height: auto;
  }
  .cid-v4MhGcwGXA .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-v4MhGcwGXA .navbar .dropdown > .dropdown-menu {
  display: none;
  width: max-content;
  max-width: 500px !important;
  transform: translateX(-50%);
  top: calc(100% + 20px);
  left: 50%;
}
.cid-v4MhGcwGXA .navbar .dropdown > .dropdown-menu .dropdown-item {
  line-height: 1 !important;
  margin-bottom: 9px !important;
}
@media (max-width: 992px) {
  .cid-v4MhGcwGXA .navbar .dropdown > .dropdown-menu .dropdown-item {
    margin-bottom: 0;
  }
}
.cid-v4MhGcwGXA .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item {
  align-items: center;
  display: flex;
  height: max-content !important;
  min-height: max-content !important;
}
.cid-v4MhGcwGXA .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item::after {
  display: inline-block;
  position: static;
  margin-left: 0.6rem;
  margin-top: 0;
  margin-right: 0;
  margin-bottom: 0;
  transition: .3s all;
  transform: rotate(-90deg);
}
.cid-v4MhGcwGXA .navbar .dropdown > .dropdown-menu .dropdown.open .dropdown-item::after {
  transform: rotate(0deg);
}
.cid-v4MhGcwGXA .mbr-section-btn {
  margin: -0.6rem -0.6rem;
}
@media (max-width: 992px) {
  .cid-v4MhGcwGXA .mbr-section-btn {
    margin-top: 12px;
  }
}
.cid-v4MhGcwGXA .mbr-section-btn .btn {
  white-space: nowrap;
  width: auto;
  padding: 14px 18px;
}
.cid-v4MhGcwGXA .mbr-section-btn .btn:hover,
.cid-v4MhGcwGXA .mbr-section-btn .btn:focus {
  transform: none !important;
}
@media (max-width: 575px) {
  .cid-v4MhGcwGXA .mbr-section-btn .btn {
    width: auto !important;
  }
}
.cid-v4MhGcwGXA .navbar-toggler {
  margin-left: 12px;
  margin-right: 8px;
  order: 1000;
}
@media (max-width: 991px) {
  .cid-v4MhGcwGXA .navbar-brand {
    margin-right: auto;
  }
  .cid-v4MhGcwGXA .navbar-collapse {
    z-index: -1 !important;
    position: absolute;
    top: 110%;
    left: 0;
    width: 100%;
    padding: 1rem;
    border-radius: 1.5rem;
    background: #fafafa;
    backdrop-filter: blur(8px);
  }
  .cid-v4MhGcwGXA .navbar-nav .nav-item .nav-link::after {
    margin-left: 10px;
  }
  .cid-v4MhGcwGXA .navbar-nav .dropdown-item:hover {
    color: #ff6900;
  }
  .cid-v4MhGcwGXA .navbar .dropdown > .dropdown-menu {
    max-width: 100% !important;
    transform: translateX(0);
    top: 10px;
    left: 0;
    padding: 0 !important;
    border-radius: 1rem;
    background-color: transparent !important;
  }
  .cid-v4MhGcwGXA .navbar .dropdown > .dropdown-menu .dropdown-item {
    padding: 10px 10px 10px 10px !important;
    line-height: 1 !important;
    margin-bottom: 4px !important;
  }
  .cid-v4MhGcwGXA .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item {
    align-items: center;
    display: flex;
    height: max-content !important;
    min-height: max-content !important;
  }
  .cid-v4MhGcwGXA .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item::after {
    display: inline-block;
    position: static;
    margin-left: 0.5rem;
    margin-top: 0;
    margin-right: 0;
    margin-bottom: 0;
    transition: .3s all;
    transform: rotate(0deg);
  }
  .cid-v4MhGcwGXA .navbar .dropdown > .dropdown-menu .dropdown.open .dropdown-item::after {
    transform: rotate(180deg);
  }
  .cid-v4MhGcwGXA .navbar .dropdown > .dropdown-menu .dropdown-submenu {
    position: static;
    width: 100%;
    max-width: 100% !important;
    transform: translateX(0) !important;
    top: 0;
    left: 0;
    padding: 8px !important;
    padding-left: 0 !important;
    margin-left: 0;
    border-radius: 1rem;
    background-color: transparent;
  }
  .cid-v4MhGcwGXA .navbar .dropdown.open > .dropdown-menu {
    display: flex !important;
    flex-direction: column;
    align-items: flex-start;
  }
}
@media (max-width: 575px) {
  .cid-v4MhGcwGXA .navbar-collapse {
    padding: 1rem;
  }
}
.cid-v4MhGlfO3q {
  padding-top: 10rem;
  background-color: #f5f5f5;
  overflow: hidden;
}
.cid-v4MhGlfO3q .mbr-fallback-image.disabled {
  display: none;
}
.cid-v4MhGlfO3q .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v4MhGlfO3q .content-wrapper {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-bottom: 5rem;
  padding-left: 20px;
  padding-right: 20px;
  border-bottom: 1px solid #e1e7ed;
}
@media (max-width: 425px) {
  .cid-v4MhGlfO3q .content-wrapper {
    padding-left: 0;
    padding-right: 0;
  }
}
.cid-v4MhGlfO3q .content-wrapper .border-wrap {
  position: absolute;
  height: 1000%;
  width: 1px;
  border-left: 1px solid #e1e7ed;
  pointer-events: none;
}
@media (max-width: 425px) {
  .cid-v4MhGlfO3q .content-wrapper .border-wrap {
    display: none;
  }
}
.cid-v4MhGlfO3q .content-wrapper .border_1 {
  left: 0;
}
.cid-v4MhGlfO3q .content-wrapper .border_2 {
  right: 0;
}
.cid-v4MhGlfO3q .content-wrapper .label-wrapper {
  margin-bottom: 20px;
}
.cid-v4MhGlfO3q .content-wrapper .label-wrapper .label-wrap {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  background-image: linear-gradient(135deg, #cccccc 38%, #ff6900 75%);
  box-shadow: 0 10px 10px -5px #cccccc;
  padding: 0 1px 1px 0;
}
.cid-v4MhGlfO3q .content-wrapper .label-wrapper .label-wrap::before {
  content: '';
  position: absolute;
  right: -30px;
  bottom: -17px;
  width: 164px;
  height: 50px;
  pointer-events: none;
  filter: blur(10px);
  background-image: radial-gradient(50% 50%, #ff6900 0%, transparent 100%);
  z-index: -1;
}
.cid-v4MhGlfO3q .content-wrapper .label-wrapper .label-wrap .label-box {
  position: relative;
  z-index: 1;
  padding: 7px 18px;
  display: inline-flex;
  align-items: center;
  background-color: #fafafa;
  box-shadow: inset 0 10px 8px 0 #ffffff;
}
.cid-v4MhGlfO3q .content-wrapper .label-wrapper .label-wrap .label-box .iconfont-wrapper {
  display: inline-flex;
}
.cid-v4MhGlfO3q .content-wrapper .label-wrapper .label-wrap .label-box .iconfont-wrapper .mbr-iconfont {
  font-size: 18px;
  display: inline-flex;
  margin-right: 8px;
}
.cid-v4MhGlfO3q .content-wrapper .label-wrapper .label-wrap .label-box .mbr-label {
  margin-bottom: 0;
}
.cid-v4MhGlfO3q .content-wrapper .title-wrapper .mbr-section-title {
  display: inline-block;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-image: linear-gradient(120deg, #0f172a 40%, #ff6900 90%);
  margin-bottom: 20px;
}
.cid-v4MhGlfO3q .content-wrapper .text-wrapper .mbr-text {
  display: inline-block;
  width: 50%;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-v4MhGlfO3q .content-wrapper .text-wrapper .mbr-text {
    width: 100%;
  }
}
.cid-v4MhGlfO3q .content-wrapper .mbr-section-btn {
  margin-top: 40px;
}
@media (max-width: 992px) {
  .cid-v4MhGlfO3q .content-wrapper .mbr-section-btn {
    margin-top: 20px;
  }
}
.cid-v4MhGlfO3q .content-wrapper .image-wrapper {
  margin-top: 70px;
  -webkit-mask-image: linear-gradient(#000000 80%, transparent 95%);
  mask-image: linear-gradient(#000000 80%, transparent 95%);
}
@media (max-width: 992px) {
  .cid-v4MhGlfO3q .content-wrapper .image-wrapper {
    margin-top: 40px;
  }
}
.cid-v4MhGlfO3q .content-wrapper .image-wrapper img {
  height: 690px;
  width: 100%;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-v4MhGlfO3q .content-wrapper .image-wrapper img {
    height: 320px;
  }
}
.cid-v4MhGlfO3q .mbr-label,
.cid-v4MhGlfO3q .label-wrapper {
  color: #334155;
  text-align: center;
}
.cid-v4MhGlfO3q .mbr-section-title {
  color: #0f172a;
}
.cid-v4MhGlfO3q .mbr-text,
.cid-v4MhGlfO3q .text-wrapper {
  color: #ff6900;
  text-align: center;
}
.cid-v4MhGlfO3q .mbr-section-title,
.cid-v4MhGlfO3q .mbr-section-btn,
.cid-v4MhGlfO3q .title-wrapper {
  text-align: center;
}
.cid-vicHo2BQ7C {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #f5f5f5;
}
.cid-vicHo2BQ7C .mbr-fallback-image.disabled {
  display: none;
}
.cid-vicHo2BQ7C .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vicHo2BQ7C .row {
  justify-content: center;
}
.cid-vicHo2BQ7C .text-wrapper .mbr-text {
  display: inline-block;
  width: 60%;
  margin-bottom: 30px;
}
@media (max-width: 1440px) {
  .cid-vicHo2BQ7C .text-wrapper .mbr-text {
    width: 80%;
  }
}
@media (max-width: 992px) {
  .cid-vicHo2BQ7C .text-wrapper .mbr-text {
    width: 100%;
  }
}
.cid-vicHo2BQ7C .mbr-text {
  color: #fff7ee;
}
.cid-vicHo2BQ7C #divfoto {
  margin-left: auto !important;
  margin-right: auto !important;
  text-align: center !important;
  padding: 1.5rem;
}
.cid-vicHo2BQ7C img {
  margin-left: auto !important;
  margin-right: auto !important;
  text-align: center !important;
  width: 100px;
  height: auto;
  border-radius: 0px !important;
}
.cid-v4MhZjtWQk {
  padding-top: 2rem;
  background-color: #f5f5f5;
  overflow: hidden;
}
.cid-v4MhZjtWQk .mbr-fallback-image.disabled {
  display: none;
}
.cid-v4MhZjtWQk .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v4MhZjtWQk .content-wrapper {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-bottom: 2rem;
  padding-left: 20px;
  padding-right: 20px;
  border-bottom: 1px solid #e1e7ed;
}
@media (max-width: 425px) {
  .cid-v4MhZjtWQk .content-wrapper {
    padding-left: 0;
    padding-right: 0;
  }
}
.cid-v4MhZjtWQk .content-wrapper .border-wrap {
  position: absolute;
  height: 1000%;
  width: 1px;
  border-left: 1px solid #e1e7ed;
  pointer-events: none;
}
@media (max-width: 425px) {
  .cid-v4MhZjtWQk .content-wrapper .border-wrap {
    display: none;
  }
}
.cid-v4MhZjtWQk .content-wrapper .border_1 {
  left: 0;
}
.cid-v4MhZjtWQk .content-wrapper .border_2 {
  right: 0;
}
.cid-v4MhZjtWQk .content-wrapper .card-wrapper {
  padding: 32px;
  background-color: #fafafa;
  box-shadow: inset 0 10px 8px 0 #ffffff, inset 0 -5px 10px -4px #cccccc, 0 10px 10px -5px #cccccc;
  overflow: hidden;
}
@media (max-width: 992px) {
  .cid-v4MhZjtWQk .content-wrapper .card-wrapper {
    padding: 24px;
  }
}
.cid-v4MhZjtWQk .content-wrapper .card-wrapper .title-wrapper .label-wrapper {
  margin-bottom: 16px;
}
.cid-v4MhZjtWQk .content-wrapper .card-wrapper .title-wrapper .label-wrapper .label-wrap {
  display: inline-flex;
  align-items: center;
  padding: 7px 18px;
  box-shadow: inset 0 10px 8px 0 #ffffff, inset 0 -5px 10px -8px #cccccc, 0 10px 10px -8px #cccccc;
  background-color: #fafafa;
}
.cid-v4MhZjtWQk .content-wrapper .card-wrapper .title-wrapper .label-wrapper .label-wrap .iconfont-wrapper {
  display: inline-flex;
}
.cid-v4MhZjtWQk .content-wrapper .card-wrapper .title-wrapper .label-wrapper .label-wrap .iconfont-wrapper .mbr-iconfont {
  font-size: 18px;
  display: inline-flex;
  margin-right: 8px;
}
.cid-v4MhZjtWQk .content-wrapper .card-wrapper .title-wrapper .label-wrapper .label-wrap .mbr-label {
  margin-bottom: 0;
}
.cid-v4MhZjtWQk .content-wrapper .card-wrapper .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-v4MhZjtWQk .content-wrapper .card-wrapper .title-wrapper .mbr-section-title {
    margin-bottom: 16px;
  }
}
.cid-v4MhZjtWQk .content-wrapper .card-wrapper .text-wrapper .mbr-text {
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-v4MhZjtWQk .content-wrapper .card-wrapper .text-wrapper .mbr-text {
    width: 100%;
  }
}
.cid-v4MhZjtWQk .content-wrapper .card-wrapper .text-wrapper .mbr-section-btn {
  margin-top: 10px;
}
.cid-v4MhZjtWQk .content-wrapper .card-wrapper .image-wrapper {
  margin-top: 20px;
}
.cid-v4MhZjtWQk .content-wrapper .card-wrapper .image-wrapper img {
  height: 400px;
  width: 100%;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-v4MhZjtWQk .content-wrapper .card-wrapper .image-wrapper img {
    height: 450px;
  }
}
.cid-v4MhZjtWQk .items-wrapper {
  margin: 0 -20px;
}
.cid-v4MhZjtWQk .items-wrapper .card {
  padding: 0 20px;
}
.cid-v4MhZjtWQk .mbr-label,
.cid-v4MhZjtWQk .label-wrapper {
  color: #6d6150;
}
.cid-v4MhZjtWQk .mbr-section-title {
  color: #583502;
}
.cid-v4MhZjtWQk .mbr-text,
.cid-v4MhZjtWQk .text-wrapper {
  color: #475569;
}
.cid-v4MhZjtWQk .mbr-text,
.cid-v4MhZjtWQk .mbr-section-btn {
  color: #6d6150;
}
.cid-vicGZQbloG {
  padding-top: 1rem;
  padding-bottom: 5rem;
  background-color: #f5f5f5;
}
.cid-vicGZQbloG .mbr-fallback-image.disabled {
  display: none;
}
.cid-vicGZQbloG .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vicGZQbloG .content-wrapper {
  margin-bottom: 44px;
}
@media (max-width: 992px) {
  .cid-vicGZQbloG .content-wrapper {
    margin-bottom: 32px;
  }
}
.cid-vicGZQbloG .content-wrapper .label-wrapper {
  margin-bottom: 32px;
}
.cid-vicGZQbloG .content-wrapper .label-wrapper .label-wrap {
  display: inline-flex;
  align-items: center;
  padding: 4px 12px;
  background-color: #f5f5f5;
  border-top: 2px solid #ffffff;
  box-shadow: 0 8px 20px -8px #9c9c9c;
}
.cid-vicGZQbloG .content-wrapper .label-wrapper .label-wrap .iconfont-wrapper .mbr-iconfont {
  font-size: 16px;
  display: inline-block;
  margin-right: 8px;
}
.cid-vicGZQbloG .content-wrapper .label-wrapper .label-wrap .mbr-label {
  margin-bottom: 0;
}
.cid-vicGZQbloG .content-wrapper .title-wrapper .mbr-section-title {
  display: inline-block;
  width: 60%;
  margin-bottom: 16px;
  position: relative;
  background-image: linear-gradient(-180deg, #f5f5f5, #ff6900 40%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media (max-width: 992px) {
  .cid-vicGZQbloG .content-wrapper .title-wrapper .mbr-section-title {
    width: 100%;
  }
}
.cid-vicGZQbloG .content-wrapper .text-wrapper .mbr-text {
  display: inline-block;
  width: 50%;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-vicGZQbloG .content-wrapper .text-wrapper .mbr-text {
    width: 100%;
  }
}
.cid-vicGZQbloG .items-wrapper {
  margin: 0 -12px;
  justify-content: center;
}
.cid-vicGZQbloG .items-wrapper .item {
  padding: 0 12px;
  margin-bottom: 24px;
}
@media (max-width: 992px) {
  .cid-vicGZQbloG .items-wrapper .item {
    margin-bottom: 18px;
  }
}
.cid-vicGZQbloG .items-wrapper .item .item-wrapper {
  height: 100%;
  background-color: #f5f5f5;
  border-top: 3px solid #ffffff;
  box-shadow: 0 8px 15px -8px #9c9c9c;
  padding: 30px;
  overflow: hidden;
}
@media (max-width: 992px) {
  .cid-vicGZQbloG .items-wrapper .item .item-wrapper {
    padding: 24px;
  }
}
.cid-vicGZQbloG .items-wrapper .item .item-wrapper .item-img {
  display: flex;
  justify-content: center;
  margin-bottom: 44px;
}
@media (max-width: 992px) {
  .cid-vicGZQbloG .items-wrapper .item .item-wrapper .item-img {
    margin-bottom: 24px;
  }
}
.cid-vicGZQbloG .items-wrapper .item .item-wrapper .item-img img {
  display: inline-block;
  width: 180px;
  height: 180px;
  object-fit: cover;
  border-radius: 100% !important;
  border-top: 3px solid #ffffff;
  box-shadow: 0 8px 20px -8px #515151;
}
.cid-vicGZQbloG .items-wrapper .item .item-wrapper .item-content .item-title {
  margin-bottom: 10px;
}
.cid-vicGZQbloG .items-wrapper .item .item-wrapper .item-content .item-text {
  margin-bottom: 0;
}
.cid-vicGZQbloG .items-wrapper .item .item-wrapper .item-content .mbr-section-btn {
  margin-top: 10px;
}
.cid-vicGZQbloG .items-wrapper .item .item-wrapper .item-content .mbr-section-btn .btn {
  margin-bottom: 0;
}
.cid-vicGZQbloG .mbr-label,
.cid-vicGZQbloG .label-wrapper {
  color: #000000;
  text-align: center;
}
.cid-vicGZQbloG .mbr-section-title,
.cid-vicGZQbloG .title-wrapper {
  color: #000000;
  text-align: center;
}
.cid-vicGZQbloG .mbr-text,
.cid-vicGZQbloG .text-wrapper {
  color: #515151;
  text-align: center;
}
.cid-vicGZQbloG .item-title {
  color: #000000;
}
.cid-vicGZQbloG .item-text {
  color: #515151;
}
.cid-vgdN25GCyQ {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #f5f5f5;
}
.cid-vgdN25GCyQ .mbr-fallback-image.disabled {
  display: none;
}
.cid-vgdN25GCyQ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vgdN25GCyQ .row {
  justify-content: center;
}
.cid-vgdN25GCyQ .text-wrapper .mbr-text {
  display: inline-block;
  width: 60%;
  margin-bottom: 30px;
}
@media (max-width: 1440px) {
  .cid-vgdN25GCyQ .text-wrapper .mbr-text {
    width: 80%;
  }
}
@media (max-width: 992px) {
  .cid-vgdN25GCyQ .text-wrapper .mbr-text {
    width: 100%;
  }
}
.cid-vgdN25GCyQ .mbr-text {
  color: #fff7ee;
}
.cid-vgdN25GCyQ #divfoto {
  margin-left: auto !important;
  margin-right: auto !important;
  text-align: center !important;
  padding: 1.5rem;
}
.cid-vgdN25GCyQ img {
  margin-left: auto !important;
  margin-right: auto !important;
  text-align: center !important;
  width: 100px;
  height: auto;
  border-radius: 0px !important;
}
.cid-v4MhMA5dnj {
  padding-top: 1rem;
  background-color: #f5f5f5;
  overflow: hidden;
}
.cid-v4MhMA5dnj .mbr-fallback-image.disabled {
  display: none;
}
.cid-v4MhMA5dnj .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v4MhMA5dnj .content-wrapper {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-bottom: 5rem;
  padding-left: 20px;
  padding-right: 20px;
  border-bottom: 1px solid #e1e7ed;
}
@media (max-width: 425px) {
  .cid-v4MhMA5dnj .content-wrapper {
    padding-left: 0;
    padding-right: 0;
  }
}
.cid-v4MhMA5dnj .content-wrapper .border-wrap {
  position: absolute;
  height: 1000%;
  width: 1px;
  border-left: 1px solid #e1e7ed;
  pointer-events: none;
}
@media (max-width: 425px) {
  .cid-v4MhMA5dnj .content-wrapper .border-wrap {
    display: none;
  }
}
.cid-v4MhMA5dnj .content-wrapper .border_1 {
  left: 0;
}
.cid-v4MhMA5dnj .content-wrapper .border_2 {
  right: 0;
}
.cid-v4MhMA5dnj .content-wrapper .title-wrapper {
  margin-bottom: 40px;
}
.cid-v4MhMA5dnj .content-wrapper .title-wrapper .label-wrapper {
  margin-bottom: 16px;
}
.cid-v4MhMA5dnj .content-wrapper .title-wrapper .label-wrapper .label-wrap {
  display: inline-flex;
  align-items: center;
  padding: 7px 18px;
  box-shadow: inset 0 10px 8px 0 #ffffff, inset 0 -5px 10px -8px #cccccc, 0 10px 10px -8px #cccccc;
  background-color: #fafafa;
}
.cid-v4MhMA5dnj .content-wrapper .title-wrapper .label-wrapper .label-wrap .iconfont-wrapper {
  display: inline-flex;
}
.cid-v4MhMA5dnj .content-wrapper .title-wrapper .label-wrapper .label-wrap .iconfont-wrapper .mbr-iconfont {
  font-size: 18px;
  display: inline-flex;
  margin-right: 8px;
}
.cid-v4MhMA5dnj .content-wrapper .title-wrapper .label-wrapper .label-wrap .mbr-label {
  margin-bottom: 0;
}
.cid-v4MhMA5dnj .content-wrapper .title-wrapper .mbr-section-title {
  margin-bottom: 16px;
}
.cid-v4MhMA5dnj .content-wrapper .title-wrapper .text-wrapper .mbr-text {
  display: inline-block;
  width: 50%;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-v4MhMA5dnj .content-wrapper .title-wrapper .text-wrapper .mbr-text {
    width: 100%;
  }
}
.cid-v4MhMA5dnj .items-wrapper {
  margin: 0 -10px;
}
.cid-v4MhMA5dnj .items-wrapper .item {
  padding: 0 10px;
  margin-bottom: 40px;
}
.cid-v4MhMA5dnj .items-wrapper .item:last-child {
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-v4MhMA5dnj .items-wrapper .item {
    margin-bottom: 20px;
  }
  .cid-v4MhMA5dnj .items-wrapper .item:last-child {
    margin-bottom: 0;
  }
}
.cid-v4MhMA5dnj .items-wrapper .item .item-wrapper {
  display: flex;
  justify-content: space-between;
  height: 100%;
  padding: 32px;
  background-color: #fafafa;
  box-shadow: inset 0 10px 8px 0 #ffffff, inset 0 -5px 10px -4px #cccccc, 0 10px 10px -5px #cccccc;
  overflow: hidden;
}
@media (max-width: 992px) {
  .cid-v4MhMA5dnj .items-wrapper .item .item-wrapper {
    padding: 20px;
    display: block;
  }
}
.cid-v4MhMA5dnj .items-wrapper .item .item-wrapper .icon-wrapper {
  width: 52px;
  min-width: 52px;
  margin-right: 16px;
}
@media (max-width: 992px) {
  .cid-v4MhMA5dnj .items-wrapper .item .item-wrapper .icon-wrapper {
    margin-right: 0;
    margin-bottom: 16px;
  }
}
.cid-v4MhMA5dnj .items-wrapper .item .item-wrapper .icon-wrapper .mbr-iconfont {
  width: 52px;
  height: 52px;
  min-width: 52px;
  font-size: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #f5f5f5;
  box-shadow: inset 0 2px 10px -2px #cccccc, 0 10px 10px -2px #cccccc;
}
.cid-v4MhMA5dnj .items-wrapper .item .item-wrapper .item-content {
  width: 100%;
}
.cid-v4MhMA5dnj .items-wrapper .item .item-wrapper .item-content .card-box .item-label {
  margin-bottom: 8px;
}
.cid-v4MhMA5dnj .items-wrapper .item .item-wrapper .item-content .card-box .item-title {
  margin-bottom: 20px;
}
.cid-v4MhMA5dnj .items-wrapper .item .item-wrapper .item-content .card-box .text-wrap .item-text {
  display: inline-block;
  width: 90%;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-v4MhMA5dnj .items-wrapper .item .item-wrapper .item-content .card-box .text-wrap .item-text {
    width: 100%;
  }
}
.cid-v4MhMA5dnj .items-wrapper .item .item-wrapper .item-content .card-box .list {
  padding: 0;
  margin: 20px 0 0 0;
  list-style-position: inside;
}
.cid-v4MhMA5dnj .items-wrapper .item .item-wrapper .item-content .card-box .list .item-wrap {
  position: relative;
  margin-bottom: 10px;
}
.cid-v4MhMA5dnj .items-wrapper .item .item-wrapper .item-content .card-box .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-v4MhMA5dnj .items-wrapper .item .item-wrapper .item-content .card-box .list .item-wrap::marker {
  color: #ff6900;
}
.cid-v4MhMA5dnj .items-wrapper .item .item-wrapper .item-content .card-box .mbr-section-btn {
  margin-top: 10px;
}
.cid-v4MhMA5dnj .items-wrapper .item .item-wrapper .item-content .card-box .mbr-section-btn .btn {
  margin-bottom: 0;
}
.cid-v4MhMA5dnj .mbr-label,
.cid-v4MhMA5dnj .label-wrapper {
  color: #334155;
  text-align: center;
}
.cid-v4MhMA5dnj .mbr-section-title {
  color: #0f172a;
  text-align: center;
}
.cid-v4MhMA5dnj .mbr-text,
.cid-v4MhMA5dnj .text-wrapper {
  color: #475569;
  text-align: right;
}
.cid-v4MhMA5dnj .item-label {
  color: #ff6900;
}
.cid-v4MhMA5dnj .item-title {
  color: #0f172a;
}
.cid-v4MhMA5dnj .item-text {
  color: #475569;
}
.cid-v4MhMA5dnj .list {
  color: #475569;
}
.cid-v4MhMA5dnj .mbr-section-title,
.cid-v4MhMA5dnj .mbr-section-btn {
  text-align: left;
  color: #583502;
}
.cid-v4MhMA5dnj .item-title,
.cid-v4MhMA5dnj .mbr-section-btn {
  color: #583502;
}
.cid-v4MhMA5dnj .list,
.cid-v4MhMA5dnj .item-wrap {
  color: #6d6150;
}
.cid-vgdQ0F0eXB {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/leas-munoz-meco-servicio-a-domicilio-de-lena-28-1500x1000.jpg");
}
.cid-vgdQ0F0eXB .mbr-fallback-image.disabled {
  display: none;
}
.cid-vgdQ0F0eXB .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vgdQ0F0eXB .image-wrapper {
  height: 400px;
}
@media (max-width: 992px) {
  .cid-vgdQ0F0eXB .image-wrapper {
    height: 320px;
  }
}
.cid-vgdQzfrUTJ {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #f5f5f5;
}
.cid-vgdQzfrUTJ .mbr-fallback-image.disabled {
  display: none;
}
.cid-vgdQzfrUTJ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vgdQzfrUTJ .content-wrap {
  margin: 0 -50px;
}
.cid-vgdQzfrUTJ .content-wrap .card {
  padding: 0 50px;
}
.cid-vgdQzfrUTJ .content-wrap .label-wrapper {
  margin-bottom: 20px;
}
.cid-vgdQzfrUTJ .content-wrap .label-wrapper .label-wrap {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}
.cid-vgdQzfrUTJ .content-wrap .label-wrapper .label-wrap .iconfont-wrapper {
  display: flex;
}
.cid-vgdQzfrUTJ .content-wrap .label-wrapper .label-wrap .iconfont-wrapper .mbr-iconfont {
  display: inline-flex;
  font-size: 20px;
}
.cid-vgdQzfrUTJ .content-wrap .label-wrapper .label-wrap .mbr-label {
  margin-bottom: 0;
}
.cid-vgdQzfrUTJ .content-wrap .title-wrapper {
  padding-bottom: 50px;
  border-bottom: 1px solid #c6c6c6;
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .cid-vgdQzfrUTJ .content-wrap .title-wrapper {
    padding-bottom: 30px;
    margin-bottom: 30px;
  }
}
.cid-vgdQzfrUTJ .content-wrap .title-wrapper .mbr-section-title {
  display: inline-block;
  width: 70%;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-vgdQzfrUTJ .content-wrap .title-wrapper .mbr-section-title {
    width: 100%;
  }
}
.cid-vgdQzfrUTJ .content-wrap .text-wrapper {
  display: grid;
  grid-template-columns: .8fr 1fr;
  gap: 100px;
}
@media (max-width: 1440px) {
  .cid-vgdQzfrUTJ .content-wrap .text-wrapper {
    gap: 50px;
  }
}
@media (max-width: 1200px) {
  .cid-vgdQzfrUTJ .content-wrap .text-wrapper {
    gap: 30px;
  }
}
@media (max-width: 992px) {
  .cid-vgdQzfrUTJ .content-wrap .text-wrapper {
    display: block;
  }
}
@media (max-width: 992px) {
  .cid-vgdQzfrUTJ .content-wrap .text-wrapper .list-wrapper {
    margin-bottom: 30px;
  }
}
.cid-vgdQzfrUTJ .content-wrap .text-wrapper .list-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-vgdQzfrUTJ .content-wrap .text-wrapper .list-wrapper .list .item-wrap {
  position: relative;
  padding-left: 30px;
  margin-bottom: 10px;
}
.cid-vgdQzfrUTJ .content-wrap .text-wrapper .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-vgdQzfrUTJ .content-wrap .text-wrapper .list-wrapper .list .item-wrap::before {
  content: '✓';
  position: absolute;
  top: 0;
  left: 0;
  width: 22px;
  height: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
  font-size: 14px;
  background-color: #ff6900;
  color: #f1f1f1;
}
.cid-vgdQzfrUTJ .content-wrap .text-wrapper .text-wrap .mbr-text {
  margin-bottom: 0;
}
.cid-vgdQzfrUTJ .content-wrap .text-wrapper .text-wrap .mbr-section-btn {
  margin-top: 20px;
}
.cid-vgdQzfrUTJ .mbr-label {
  color: #1f1f1f;
}
.cid-vgdQzfrUTJ .mbr-section-title {
  color: #1f1f1f;
}
.cid-vgdQzfrUTJ .mbr-text {
  color: #5a5a5a;
}
.cid-vgdQzfrUTJ .list {
  color: #5a5a5a;
}
.cid-vgdQzfrUTJ .mbr-section-title,
.cid-vgdQzfrUTJ .title-wrapper {
  color: #583502;
}
.cid-vgdQzfrUTJ .mbr-label,
.cid-vgdQzfrUTJ .label-wrapper {
  color: #6d6150;
}
.cid-vgdQzfrUTJ .mbr-text,
.cid-vgdQzfrUTJ .mbr-section-btn {
  color: #583502;
  text-align: left;
}
.cid-vgdQzfrUTJ .list,
.cid-vgdQzfrUTJ .item-wrap {
  color: #6d6150;
  text-align: justify;
}
.cid-vgdS3npQUe {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #f5f5f5;
}
.cid-vgdS3npQUe .mbr-fallback-image.disabled {
  display: none;
}
.cid-vgdS3npQUe .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vgdS3npQUe .row {
  justify-content: center;
}
.cid-vgdS3npQUe .text-wrapper .mbr-text {
  display: inline-block;
  width: 60%;
  margin-bottom: 30px;
}
@media (max-width: 1440px) {
  .cid-vgdS3npQUe .text-wrapper .mbr-text {
    width: 80%;
  }
}
@media (max-width: 992px) {
  .cid-vgdS3npQUe .text-wrapper .mbr-text {
    width: 100%;
  }
}
.cid-vgdS3npQUe .mbr-text {
  color: #fff7ee;
}
.cid-vgdS3npQUe #divfoto {
  margin-left: auto !important;
  margin-right: auto !important;
  text-align: center !important;
  padding: 1.5rem;
}
.cid-vgdS3npQUe img {
  margin-left: auto !important;
  margin-right: auto !important;
  text-align: center !important;
  width: 100px;
  height: auto;
  border-radius: 0px !important;
}
.cid-v4Mj9hTQuH {
  padding-top: 1rem;
  background-color: #f5f5f5;
  overflow: hidden;
}
.cid-v4Mj9hTQuH .mbr-fallback-image.disabled {
  display: none;
}
.cid-v4Mj9hTQuH .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v4Mj9hTQuH .content-wrapper {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-bottom: 5rem;
  padding-left: 20px;
  padding-right: 20px;
  border-bottom: 1px solid #e1e7ed;
}
@media (max-width: 425px) {
  .cid-v4Mj9hTQuH .content-wrapper {
    padding-left: 0;
    padding-right: 0;
  }
}
.cid-v4Mj9hTQuH .content-wrapper .border-wrap {
  position: absolute;
  height: 1000%;
  width: 1px;
  border-left: 1px solid #e1e7ed;
  pointer-events: none;
}
@media (max-width: 425px) {
  .cid-v4Mj9hTQuH .content-wrapper .border-wrap {
    display: none;
  }
}
.cid-v4Mj9hTQuH .content-wrapper .border_1 {
  left: 0;
}
.cid-v4Mj9hTQuH .content-wrapper .border_2 {
  right: 0;
}
.cid-v4Mj9hTQuH .card-wrapper {
  padding: 32px;
  background-color: #fafafa;
  box-shadow: inset 0 10px 8px 0 #ffffff, inset 0 -5px 10px -4px #cccccc, 0 10px 10px -5px #cccccc;
  overflow: hidden;
}
@media (max-width: 992px) {
  .cid-v4Mj9hTQuH .card-wrapper {
    padding: 24px;
  }
}
.cid-v4Mj9hTQuH .items-wrapper {
  margin: 0 -20px;
}
.cid-v4Mj9hTQuH .items-wrapper .card {
  padding: 0 20px;
}
@media (max-width: 992px) {
  .cid-v4Mj9hTQuH .tabs-wrapper {
    margin-bottom: 20px;
  }
}
.cid-v4Mj9hTQuH .tabs-wrapper .nav.nav-tabs {
  border: none;
  padding: 0;
  border-radius: 0 !important;
  background-color: transparent;
  display: block;
}
.cid-v4Mj9hTQuH .tabs-wrapper .nav.nav-tabs .nav-item {
  padding: 0;
  border: none;
  display: block;
  transition: all .3s ease;
  width: 100%;
  margin: 20px 0 0 0;
}
.cid-v4Mj9hTQuH .tabs-wrapper .nav.nav-tabs .nav-item:first-child {
  margin-top: 0;
}
.cid-v4Mj9hTQuH .tabs-wrapper .nav.nav-tabs .nav-item:hover {
  transform: translateY(-2px);
}
.cid-v4Mj9hTQuH .tabs-wrapper .nav.nav-tabs .nav-item .nav-link {
  display: block;
  color: #0f172a;
  padding: 18px 20px;
  background-color: #fafafa;
  border: none;
  transition: all .3s ease;
  z-index: 1;
  overflow: hidden;
  box-shadow: inset 0 10px 8px 0 #ffffff, inset 0 -5px 10px -4px #cccccc, 0 10px 10px -5px #cccccc;
}
.cid-v4Mj9hTQuH .tabs-wrapper .nav.nav-tabs .nav-item .nav-link.active {
  color: #ff6900;
  box-shadow: inset 0 10px 8px 0 #ffffff, inset 0 -5px 10px -4px #cccccc, 1px 10px 20px -10px #ff6900;
}
.cid-v4Mj9hTQuH .tab-content .tab-pane .content-wrap .image-wrap {
  margin-bottom: 20px;
}
.cid-v4Mj9hTQuH .tab-content .tab-pane .content-wrap .image-wrap img {
  height: 320px;
  width: 100%;
  object-fit: cover;
}
.cid-v4Mj9hTQuH .tab-content .tab-pane .content-wrap .item-title {
  margin-bottom: 12px;
}
.cid-v4Mj9hTQuH .tab-content .tab-pane .content-wrap .item-text {
  margin-bottom: 0;
}
.cid-v4Mj9hTQuH .tab-content .tab-pane .content-wrap .mbr-section-btn {
  margin-top: 10px;
}
.cid-v4Mj9hTQuH .tab-content .tab-pane .content-wrap .mbr-section-btn .btn {
  margin-bottom: 0;
}
.cid-v4Mj9hTQuH .item-title {
  color: #0f172a;
}
.cid-v4Mj9hTQuH .item-text {
  color: #475569;
}
.cid-viaNyR0vI0 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-viaNyR0vI0 .mbr-fallback-image.disabled {
  display: none;
}
.cid-viaNyR0vI0 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-viaNyR0vI0 .row {
  justify-content: center;
}
.cid-viaNyR0vI0 .text-wrapper .mbr-text {
  display: inline-block;
  width: 60%;
  margin-bottom: 30px;
}
@media (max-width: 1440px) {
  .cid-viaNyR0vI0 .text-wrapper .mbr-text {
    width: 80%;
  }
}
@media (max-width: 992px) {
  .cid-viaNyR0vI0 .text-wrapper .mbr-text {
    width: 100%;
  }
}
.cid-viaNyR0vI0 .mbr-text {
  color: #fff7ee;
}
.cid-viaNyR0vI0 #divfoto {
  margin-left: auto !important;
  margin-right: auto !important;
  text-align: center !important;
  padding: 1.5rem;
}
.cid-viaNyR0vI0 img {
  margin-left: auto !important;
  margin-right: auto !important;
  text-align: center !important;
  width: 100px;
  height: auto;
  border-radius: 0px !important;
}
.cid-v4MidjwEhz {
  padding-top: 5rem;
  background-color: #f5f5f5;
  overflow: hidden;
}
.cid-v4MidjwEhz .mbr-fallback-image.disabled {
  display: none;
}
.cid-v4MidjwEhz .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v4MidjwEhz .content-wrapper {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-bottom: 5rem;
  padding-left: 20px;
  padding-right: 20px;
  border-bottom: 1px solid #e1e7ed;
}
@media (max-width: 425px) {
  .cid-v4MidjwEhz .content-wrapper {
    padding-left: 0;
    padding-right: 0;
  }
}
.cid-v4MidjwEhz .content-wrapper .border-wrap {
  position: absolute;
  height: 1000%;
  width: 1px;
  border-left: 1px solid #e1e7ed;
  pointer-events: none;
}
@media (max-width: 425px) {
  .cid-v4MidjwEhz .content-wrapper .border-wrap {
    display: none;
  }
}
.cid-v4MidjwEhz .content-wrapper .border_1 {
  left: 0;
}
.cid-v4MidjwEhz .content-wrapper .border_2 {
  right: 0;
}
.cid-v4MidjwEhz .content-wrapper .title-wrapper {
  margin-bottom: 40px;
}
.cid-v4MidjwEhz .content-wrapper .title-wrapper .label-wrapper {
  margin-bottom: 16px;
}
.cid-v4MidjwEhz .content-wrapper .title-wrapper .label-wrapper .label-wrap {
  display: inline-flex;
  align-items: center;
  padding: 7px 18px;
  box-shadow: inset 0 10px 8px 0 #ffffff, inset 0 -5px 10px -8px #cccccc, 0 10px 10px -8px #cccccc;
  background-color: #fafafa;
}
.cid-v4MidjwEhz .content-wrapper .title-wrapper .label-wrapper .label-wrap .iconfont-wrapper {
  display: inline-flex;
}
.cid-v4MidjwEhz .content-wrapper .title-wrapper .label-wrapper .label-wrap .iconfont-wrapper .mbr-iconfont {
  font-size: 18px;
  display: inline-flex;
  margin-right: 8px;
}
.cid-v4MidjwEhz .content-wrapper .title-wrapper .label-wrapper .label-wrap .mbr-label {
  margin-bottom: 0;
}
.cid-v4MidjwEhz .content-wrapper .title-wrapper .mbr-section-title {
  margin-bottom: 16px;
}
.cid-v4MidjwEhz .content-wrapper .title-wrapper .text-wrapper .mbr-text {
  display: inline-block;
  width: 50%;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-v4MidjwEhz .content-wrapper .title-wrapper .text-wrapper .mbr-text {
    width: 100%;
  }
}
.cid-v4MidjwEhz .items-wrapper {
  margin: 0 -10px;
}
.cid-v4MidjwEhz .items-wrapper .card {
  padding: 0 10px;
}
.cid-v4MidjwEhz .image-wrapper {
  position: relative;
  height: 100%;
  width: 100%;
  min-height: 335px;
}
@media (max-width: 992px) {
  .cid-v4MidjwEhz .image-wrapper {
    min-height: auto;
    height: 320px;
  }
}
.cid-v4MidjwEhz .image-wrapper img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-v4MidjwEhz .items-wrap {
    margin-bottom: 20px;
  }
}
.cid-v4MidjwEhz .items-wrap .item {
  margin-bottom: 20px;
}
.cid-v4MidjwEhz .items-wrap .item:last-child {
  margin-bottom: 0;
}
.cid-v4MidjwEhz .items-wrap .item:hover .item-wrapper .card-box .text-wrap .item-text,
.cid-v4MidjwEhz .items-wrap .item:focus .item-wrapper .card-box .text-wrap .item-text {
  color: #484848;
}
.cid-v4MidjwEhz .items-wrap .item:hover .item-wrapper .card-box .text-wrap .item-text::before,
.cid-v4MidjwEhz .items-wrap .item:focus .item-wrapper .card-box .text-wrap .item-text::before {
  opacity: 1;
  transform: translateY(0);
}
.cid-v4MidjwEhz .items-wrap .item .item-wrapper {
  display: flex;
  align-items: center;
  padding: 24px;
  background-color: #fafafa;
  box-shadow: inset 0 10px 8px 0 #ffffff, inset 0 -5px 10px -4px #cccccc, 0 10px 10px -5px #cccccc;
}
@media (max-width: 992px) {
  .cid-v4MidjwEhz .items-wrap .item .item-wrapper {
    padding: 20px;
    display: block;
  }
}
.cid-v4MidjwEhz .items-wrap .item .item-wrapper .icon-wrapper {
  width: 52px;
  min-width: 52px;
  margin-right: 16px;
}
@media (max-width: 992px) {
  .cid-v4MidjwEhz .items-wrap .item .item-wrapper .icon-wrapper {
    margin-right: 0;
    margin-bottom: 16px;
  }
}
.cid-v4MidjwEhz .items-wrap .item .item-wrapper .icon-wrapper .mbr-iconfont {
  width: 52px;
  height: 52px;
  min-width: 52px;
  font-size: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #f5f5f5;
  box-shadow: inset 0 2px 10px -2px #cccccc, 0 10px 10px -2px #cccccc;
}
.cid-v4MidjwEhz .items-wrap .item .item-wrapper .card-box {
  width: 100%;
}
.cid-v4MidjwEhz .items-wrap .item .item-wrapper .card-box .item-title {
  margin-bottom: 4px;
}
.cid-v4MidjwEhz .items-wrap .item .item-wrapper .card-box .text-wrap .item-text {
  position: relative;
  display: inline-block;
  width: fit-content;
  margin-bottom: 0;
  transition: all .3s ease;
}
.cid-v4MidjwEhz .items-wrap .item .item-wrapper .card-box .text-wrap .item-text::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #484848;
  opacity: 0;
  transition: all 0.3s ease-in-out;
  transform: translateY(-2px);
}
.cid-v4MidjwEhz .btn-wrapper {
  margin-top: 0;
  margin-right: 0;
}
.cid-v4MidjwEhz .mbr-label,
.cid-v4MidjwEhz .label-wrapper {
  color: #334155;
  text-align: center;
}
.cid-v4MidjwEhz .mbr-section-title {
  color: #0f172a;
  text-align: center;
}
.cid-v4MidjwEhz .mbr-text,
.cid-v4MidjwEhz .text-wrapper {
  color: #475569;
  text-align: center;
}
.cid-v4MidjwEhz .item-title {
  color: #0f172a;
}
.cid-v4MidjwEhz .item-text {
  color: #475569;
}
.cid-v4MidjwEhz .item-title,
.cid-v4MidjwEhz .mbr-section-btn {
  color: #475569;
}
.cid-vgdMSTxJYf {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-vgdMSTxJYf .mbr-fallback-image.disabled {
  display: none;
}
.cid-vgdMSTxJYf .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-vgdMSTxJYf .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-vgdMSTxJYf .row {
  flex-direction: row-reverse;
}
.cid-vgdMSTxJYf img {
  width: 100%;
}
.cid-viaVB4tUkG {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #fafafa;
}
.cid-viaVB4tUkG .mbr-fallback-image.disabled {
  display: none;
}
.cid-viaVB4tUkG .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-viaVB4tUkG .container {
    padding: 0 30px;
  }
}
.cid-viaVB4tUkG .row {
  padding-bottom: 100px;
}
@media (max-width: 992px) {
  .cid-viaVB4tUkG .row {
    padding-bottom: 50px;
  }
}
.cid-viaVB4tUkG .row .border-wrap {
  background-color: #ff6900;
  height: 2px;
  margin-bottom: 100px;
}
@media (max-width: 992px) {
  .cid-viaVB4tUkG .row .border-wrap {
    margin-bottom: 50px;
  }
}
.cid-viaVB4tUkG .card {
  justify-content: center;
}
.cid-viaVB4tUkG .title-wrapper {
  margin-bottom: 20px;
}
.cid-viaVB4tUkG .title-wrapper .title-wrap {
  display: inline-flex;
}
.cid-viaVB4tUkG .title-wrapper .title-wrap img {
  object-fit: cover;
  width: 45px;
  height: 45px;
  margin-right: 10px;
}
.cid-viaVB4tUkG .title-wrapper .title-wrap .mbr-section-title {
  margin-bottom: 0;
}
.cid-viaVB4tUkG .nav-wrapper {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}
.cid-viaVB4tUkG .nav-wrapper .list {
  display: inline-flex;
  flex-wrap: wrap;
  margin: 0;
  padding: 0;
  list-style-type: none;
}
.cid-viaVB4tUkG .nav-wrapper .list .item-wrap {
  position: relative;
  margin: 0 50px 10px 0;
  cursor: pointer;
}
.cid-viaVB4tUkG .nav-wrapper .list .item-wrap:hover::before,
.cid-viaVB4tUkG .nav-wrapper .list .item-wrap:focus::before {
  width: 100%;
}
.cid-viaVB4tUkG .nav-wrapper .list .item-wrap::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  width: 0;
  background-color: #144031;
  transition: all .3s ease;
}
.cid-viaVB4tUkG .mbr-copy {
  margin-bottom: 0;
  color: #144031;
}
.cid-viaVB4tUkG .mbr-section-title {
  color: #144031;
}
.cid-viaVB4tUkG .list {
  color: #144031;
}
.cid-vib0vdEIRU {
  z-index: 1000;
  width: 100%;
  position: relative;
}
.cid-vib0vdEIRU .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;
}
@media (max-width: 767px) {
  .cid-vib0vdEIRU .navbar-toggler {
    transform: scale(0.8);
  }
}
.cid-vib0vdEIRU .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-vib0vdEIRU .navbar-brand img {
  max-width: 100%;
  max-height: 100%;
  object-fit: cover;
}
.cid-vib0vdEIRU .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-vib0vdEIRU .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-vib0vdEIRU .navbar-nav {
  margin: auto;
  margin-left: 0;
  margin-left: auto;
}
.cid-vib0vdEIRU .navbar-nav .nav-item {
  padding: 0 !important;
  transition: .3s all !important;
}
@media (max-width: 992px) {
  .cid-vib0vdEIRU .navbar-nav .nav-item {
    padding-left: 0 !important;
  }
}
.cid-vib0vdEIRU .navbar-nav .nav-item .nav-link {
  position: relative;
  padding: 0 !important;
  margin: 4px 10px !important;
  transition: .3s all !important;
  font-weight: 400;
}
@media (max-width: 992px) {
  .cid-vib0vdEIRU .navbar-nav .nav-item .nav-link {
    padding: 10px 0 !important;
    margin-left: 0 !important;
  }
}
.cid-vib0vdEIRU .navbar-nav .nav-item .nav-link::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px !important;
  background-color: #ff6900;
  transform: translateY(-2px);
  opacity: 0;
  transition: all 0.3s ease;
}
.cid-vib0vdEIRU .navbar-nav .nav-item .nav-link:hover {
  color: #ff6900 !important;
}
@media (max-width: 992px) {
  .cid-vib0vdEIRU .navbar-nav .nav-item .nav-link:hover {
    background-color: transparent;
  }
}
.cid-vib0vdEIRU .navbar-nav .nav-item .nav-link:hover::before {
  transform: translateY(0);
  opacity: 1;
}
.cid-vib0vdEIRU .navbar-nav .open .nav-link::after {
  transform: rotate(180deg);
}
@media (min-width: 992px) {
  .cid-vib0vdEIRU .navbar-nav .open .nav-link::before {
    content: "";
    width: 100%;
    height: 20px;
    top: 100%;
    background: transparent;
    position: absolute;
  }
}
.cid-vib0vdEIRU .navbar-nav .dropdown-item {
  padding: 12px !important;
  margin: 0 8px !important;
  transition: .3s all !important;
  background: #fafafa;
  font-weight: 400;
}
@media (max-width: 992px) {
  .cid-vib0vdEIRU .navbar-nav .dropdown-item {
    margin: 0 8px 0 0 !important;
  }
}
.cid-vib0vdEIRU .navbar-nav .dropdown-item:hover {
  color: #ff6900;
}
.cid-vib0vdEIRU .nav-link {
  width: fit-content;
  position: relative;
}
.cid-vib0vdEIRU .navbar-logo {
  padding-left: 0;
  margin: 0 !important;
  border-radius: 5px !important;
}
@media (max-width: 767px) {
  .cid-vib0vdEIRU .navbar-logo {
    padding-left: 0;
  }
}
.cid-vib0vdEIRU .navbar-caption {
  padding-left: 0;
  padding-right: 20px;
  font-weight: 700;
}
@media (max-width: 992px) {
  .cid-vib0vdEIRU .navbar-caption {
    border-right: none;
  }
}
.cid-vib0vdEIRU .navbar-caption:hover {
  color: #ff6900 !important;
}
@media (max-width: 767px) {
  .cid-vib0vdEIRU .nav-dropdown {
    padding-bottom: 0.5rem;
  }
}
.cid-vib0vdEIRU .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0rem;
  transition: .3s all;
}
.cid-vib0vdEIRU .container,
.cid-vib0vdEIRU .container-fluid {
  display: flex;
  min-height: 75px;
  padding: 0 32px;
  flex-wrap: nowrap;
  left: 0;
  right: 0;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: flex-end;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  margin-top: .5rem;
  background-color: #fafafa;
  backdrop-filter: blur(8px);
  box-shadow: inset 0 10px 8px 0 #ffffff, inset 0 -5px 10px -4px #cccccc, 0 10px 10px -5px #cccccc;
}
@media (max-width: 992px) {
  .cid-vib0vdEIRU .container,
  .cid-vib0vdEIRU .container-fluid {
    padding-right: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-vib0vdEIRU .container,
  .cid-vib0vdEIRU .container-fluid {
    width: 90%;
    height: 56px !important;
    padding-right: 1rem;
    padding-left: 1rem;
    margin-top: 0rem;
  }
}
.cid-vib0vdEIRU .container-fluid {
  margin-left: 40px;
  margin-right: 40px;
}
@media (max-width: 992px) {
  .cid-vib0vdEIRU .container-fluid {
    margin-left: 20px;
    margin-right: 20px;
  }
}
.cid-vib0vdEIRU .iconfont-wrapper {
  color: #0f172a !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
  transition: all 0.3s ease-in-out;
}
.cid-vib0vdEIRU .iconfont-wrapper:hover {
  opacity: .6;
}
.cid-vib0vdEIRU .dropdown-menu {
  flex-wrap: wrap;
  flex-direction: column;
  max-width: 100%;
  padding: 0 !important;
  border-radius: 1rem;
  transition: .3s all !important;
  min-width: auto;
}
.cid-vib0vdEIRU .nav-item:focus,
.cid-vib0vdEIRU .nav-link:focus {
  outline: none;
}
.cid-vib0vdEIRU .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-vib0vdEIRU .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-vib0vdEIRU .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-vib0vdEIRU .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-vib0vdEIRU .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-vib0vdEIRU .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-vib0vdEIRU .navbar {
  min-height: 75px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: transparent !important;
  padding: 0 !important;
  border: none !important;
  box-shadow: none !important;
  border-radius: 0 !important;
}
.cid-vib0vdEIRU .navbar.opened {
  transition: all 0.3s;
}
.cid-vib0vdEIRU .navbar.opened .container {
  backdrop-filter: none;
}
.cid-vib0vdEIRU .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-vib0vdEIRU .navbar .navbar-logo img {
  width: auto;
  margin-right: 8px;
}
.cid-vib0vdEIRU .navbar .navbar-collapse {
  z-index: 1;
  justify-content: flex-end;
}
.cid-vib0vdEIRU .navbar.collapsed {
  justify-content: center;
}
.cid-vib0vdEIRU .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-vib0vdEIRU .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-vib0vdEIRU .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-vib0vdEIRU .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-vib0vdEIRU .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-vib0vdEIRU .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-vib0vdEIRU .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-vib0vdEIRU .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-vib0vdEIRU .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 767px) {
  .cid-vib0vdEIRU .navbar {
    min-height: 72px;
  }
  .cid-vib0vdEIRU .navbar .navbar-logo img {
    height: 2rem !important;
  }
}
@media (max-width: 991px) {
  .cid-vib0vdEIRU .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-vib0vdEIRU .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-vib0vdEIRU .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-vib0vdEIRU .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-vib0vdEIRU .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-vib0vdEIRU .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-vib0vdEIRU .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 10px;
  }
  .cid-vib0vdEIRU .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-vib0vdEIRU .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-vib0vdEIRU .navbar.navbar-short .navbar-logo img {
  height: 2rem;
}
.cid-vib0vdEIRU .dropdown-item.active,
.cid-vib0vdEIRU .dropdown-item:active {
  background-color: transparent;
}
.cid-vib0vdEIRU .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-vib0vdEIRU .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-vib0vdEIRU .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-vib0vdEIRU .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: transparent;
  top: 2rem;
}
@media (max-width: 992px) {
  .cid-vib0vdEIRU .navbar.navbar-expand-lg .dropdown .dropdown-menu {
    top: 0;
  }
}
.cid-vib0vdEIRU .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 95%;
  transform: none;
  top: 0;
}
.cid-vib0vdEIRU .navbar .dropdown.open > .dropdown-menu {
  display: flex;
}
.cid-vib0vdEIRU ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-vib0vdEIRU .navbar-buttons {
  text-align: center;
  min-width: 140px;
}
@media (max-width: 992px) {
  .cid-vib0vdEIRU .navbar-buttons {
    text-align: left;
  }
}
.cid-vib0vdEIRU button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-vib0vdEIRU button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #0f172a;
}
.cid-vib0vdEIRU button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-vib0vdEIRU button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-vib0vdEIRU button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-vib0vdEIRU button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-vib0vdEIRU nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-vib0vdEIRU nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-vib0vdEIRU nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-vib0vdEIRU nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-vib0vdEIRU .navbar-dropdown {
  padding: 0 1rem;
}
.cid-vib0vdEIRU a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-vib0vdEIRU .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media (max-width: 992px) {
  .cid-vib0vdEIRU .icons-menu {
    justify-content: flex-start;
    margin-bottom: .5rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-vib0vdEIRU .navbar {
    height: 75px;
  }
  .cid-vib0vdEIRU .navbar.opened {
    height: auto;
  }
  .cid-vib0vdEIRU .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-vib0vdEIRU .navbar .dropdown > .dropdown-menu {
  display: none;
  width: max-content;
  max-width: 500px !important;
  transform: translateX(-50%);
  top: calc(100% + 20px);
  left: 50%;
}
.cid-vib0vdEIRU .navbar .dropdown > .dropdown-menu .dropdown-item {
  line-height: 1 !important;
  margin-bottom: 9px !important;
}
@media (max-width: 992px) {
  .cid-vib0vdEIRU .navbar .dropdown > .dropdown-menu .dropdown-item {
    margin-bottom: 0;
  }
}
.cid-vib0vdEIRU .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item {
  align-items: center;
  display: flex;
  height: max-content !important;
  min-height: max-content !important;
}
.cid-vib0vdEIRU .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item::after {
  display: inline-block;
  position: static;
  margin-left: 0.6rem;
  margin-top: 0;
  margin-right: 0;
  margin-bottom: 0;
  transition: .3s all;
  transform: rotate(-90deg);
}
.cid-vib0vdEIRU .navbar .dropdown > .dropdown-menu .dropdown.open .dropdown-item::after {
  transform: rotate(0deg);
}
.cid-vib0vdEIRU .mbr-section-btn {
  margin: -0.6rem -0.6rem;
}
@media (max-width: 992px) {
  .cid-vib0vdEIRU .mbr-section-btn {
    margin-top: 12px;
  }
}
.cid-vib0vdEIRU .mbr-section-btn .btn {
  white-space: nowrap;
  width: auto;
  padding: 14px 18px;
}
.cid-vib0vdEIRU .mbr-section-btn .btn:hover,
.cid-vib0vdEIRU .mbr-section-btn .btn:focus {
  transform: none !important;
}
@media (max-width: 575px) {
  .cid-vib0vdEIRU .mbr-section-btn .btn {
    width: auto !important;
  }
}
.cid-vib0vdEIRU .navbar-toggler {
  margin-left: 12px;
  margin-right: 8px;
  order: 1000;
}
@media (max-width: 991px) {
  .cid-vib0vdEIRU .navbar-brand {
    margin-right: auto;
  }
  .cid-vib0vdEIRU .navbar-collapse {
    z-index: -1 !important;
    position: absolute;
    top: 110%;
    left: 0;
    width: 100%;
    padding: 1rem;
    border-radius: 1.5rem;
    background: #fafafa;
    backdrop-filter: blur(8px);
  }
  .cid-vib0vdEIRU .navbar-nav .nav-item .nav-link::after {
    margin-left: 10px;
  }
  .cid-vib0vdEIRU .navbar-nav .dropdown-item:hover {
    color: #ff6900;
  }
  .cid-vib0vdEIRU .navbar .dropdown > .dropdown-menu {
    max-width: 100% !important;
    transform: translateX(0);
    top: 10px;
    left: 0;
    padding: 0 !important;
    border-radius: 1rem;
    background-color: transparent !important;
  }
  .cid-vib0vdEIRU .navbar .dropdown > .dropdown-menu .dropdown-item {
    padding: 10px 10px 10px 10px !important;
    line-height: 1 !important;
    margin-bottom: 4px !important;
  }
  .cid-vib0vdEIRU .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item {
    align-items: center;
    display: flex;
    height: max-content !important;
    min-height: max-content !important;
  }
  .cid-vib0vdEIRU .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item::after {
    display: inline-block;
    position: static;
    margin-left: 0.5rem;
    margin-top: 0;
    margin-right: 0;
    margin-bottom: 0;
    transition: .3s all;
    transform: rotate(0deg);
  }
  .cid-vib0vdEIRU .navbar .dropdown > .dropdown-menu .dropdown.open .dropdown-item::after {
    transform: rotate(180deg);
  }
  .cid-vib0vdEIRU .navbar .dropdown > .dropdown-menu .dropdown-submenu {
    position: static;
    width: 100%;
    max-width: 100% !important;
    transform: translateX(0) !important;
    top: 0;
    left: 0;
    padding: 8px !important;
    padding-left: 0 !important;
    margin-left: 0;
    border-radius: 1rem;
    background-color: transparent;
  }
  .cid-vib0vdEIRU .navbar .dropdown.open > .dropdown-menu {
    display: flex !important;
    flex-direction: column;
    align-items: flex-start;
  }
}
@media (max-width: 575px) {
  .cid-vib0vdEIRU .navbar-collapse {
    padding: 1rem;
  }
}
.cid-vibeSnZtXm {
  padding-top: 11rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-vibeSnZtXm .mbr-fallback-image.disabled {
  display: none;
}
.cid-vibeSnZtXm .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vibeSnZtXm .content-wrapper {
  margin-bottom: 20px;
}
.cid-vibeSnZtXm .content-wrapper .mbr-section-title {
  margin-bottom: 15px;
}
.cid-vibeSnZtXm .content-wrapper .text-wrapper .mbr-text {
  display: inline-block;
  width: 40%;
  margin: 20px 0;
}
@media (max-width: 992px) {
  .cid-vibeSnZtXm .content-wrapper .text-wrapper .mbr-text {
    width: 100%;
  }
}
.cid-vibeSnZtXm .content-wrapper .mbr-section-btn .btn {
  box-shadow: 0.2rem 0.2rem 1rem #e5e3ff !important;
}
.cid-vibeSnZtXm .content-wrapper .mbr-section-btn .btn .mbr-iconfont {
  padding: 11px;
  display: inline-flex;
  align-content: center;
  justify-content: center;
  margin-left: -10px;
  background-color: #fe7324;
  color: #000000;
}
.cid-vibeSnZtXm .content-wrapper .mbr-section-btn .btn:nth-child(2n) .mbr-iconfont {
  background-color: #89cdf3;
  color: #000000;
}
.cid-vibeSnZtXm .content-wrapper .mbr-section-btn .btn:nth-child(3n) .mbr-iconfont {
  background-color: #d2e534;
  color: #000000;
}
.cid-vibeSnZtXm .image-wrapper img {
  height: 1000px;
  width: 100%;
  object-fit: cover;
}
@media (max-width: 1440px) {
  .cid-vibeSnZtXm .image-wrapper img {
    height: 800px;
  }
}
@media (max-width: 992px) {
  .cid-vibeSnZtXm .image-wrapper img {
    height: 350px;
  }
}
.cid-vibeSnZtXm .mbr-section-title {
  color: #000000;
}
.cid-vibeSnZtXm .mbr-text,
.cid-vibeSnZtXm .text-wrapper {
  color: #c55200;
  text-align: center;
}
.cid-vibeSnZtXm .mbr-section-title,
.cid-vibeSnZtXm .mbr-section-btn {
  text-align: center;
  color: #ff6900;
}
.cid-vib0vg5H9v {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #f5f5f5;
}
.cid-vib0vg5H9v .mbr-fallback-image.disabled {
  display: none;
}
.cid-vib0vg5H9v .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vib0vg5H9v .row {
  justify-content: center;
}
.cid-vib0vg5H9v .text-wrapper .mbr-text {
  display: inline-block;
  width: 60%;
  margin-bottom: 30px;
}
@media (max-width: 1440px) {
  .cid-vib0vg5H9v .text-wrapper .mbr-text {
    width: 80%;
  }
}
@media (max-width: 992px) {
  .cid-vib0vg5H9v .text-wrapper .mbr-text {
    width: 100%;
  }
}
.cid-vib0vg5H9v .mbr-text {
  color: #fff7ee;
}
.cid-vib0vg5H9v #divfoto {
  margin-left: auto !important;
  margin-right: auto !important;
  text-align: center !important;
  padding: 1.5rem;
}
.cid-vib0vg5H9v img {
  margin-left: auto !important;
  margin-right: auto !important;
  text-align: center !important;
  width: 100px;
  height: auto;
  border-radius: 0px !important;
}
.cid-vicplBlVHK {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f5f5f5;
}
.cid-vicplBlVHK .mbr-fallback-image.disabled {
  display: none;
}
.cid-vicplBlVHK .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vicplBlVHK .content-wrapper {
  margin-bottom: 44px;
}
@media (max-width: 992px) {
  .cid-vicplBlVHK .content-wrapper {
    margin-bottom: 32px;
  }
}
.cid-vicplBlVHK .content-wrapper .label-wrapper {
  margin-bottom: 32px;
}
.cid-vicplBlVHK .content-wrapper .label-wrapper .label-wrap {
  display: inline-flex;
  align-items: center;
  padding: 4px 12px;
  background-color: #f5f5f5;
  border-top: 2px solid #ffffff;
  box-shadow: 0 8px 20px -8px #9c9c9c;
}
.cid-vicplBlVHK .content-wrapper .label-wrapper .label-wrap .iconfont-wrapper .mbr-iconfont {
  font-size: 16px;
  display: inline-block;
  margin-right: 8px;
}
.cid-vicplBlVHK .content-wrapper .label-wrapper .label-wrap .mbr-label {
  margin-bottom: 0;
}
.cid-vicplBlVHK .content-wrapper .title-wrapper .mbr-section-title {
  display: inline-block;
  width: 60%;
  margin-bottom: 16px;
  position: relative;
  background-image: linear-gradient(-180deg, #f5f5f5, #ff6900 40%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media (max-width: 992px) {
  .cid-vicplBlVHK .content-wrapper .title-wrapper .mbr-section-title {
    width: 100%;
  }
}
.cid-vicplBlVHK .content-wrapper .text-wrapper .mbr-text {
  display: inline-block;
  width: 50%;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-vicplBlVHK .content-wrapper .text-wrapper .mbr-text {
    width: 100%;
  }
}
.cid-vicplBlVHK .items-wrapper {
  margin: 0 -12px;
  justify-content: center;
}
.cid-vicplBlVHK .items-wrapper .item {
  padding: 0 12px;
  margin-bottom: 24px;
}
@media (max-width: 992px) {
  .cid-vicplBlVHK .items-wrapper .item {
    margin-bottom: 18px;
  }
}
.cid-vicplBlVHK .items-wrapper .item .item-wrapper {
  height: 100%;
  background-color: #f5f5f5;
  border-top: 3px solid #ffffff;
  box-shadow: 0 8px 15px -8px #9c9c9c;
  padding: 30px;
}
@media (max-width: 992px) {
  .cid-vicplBlVHK .items-wrapper .item .item-wrapper {
    padding: 24px;
  }
}
.cid-vicplBlVHK .items-wrapper .item .item-wrapper .item-content .icon-wrapper {
  margin-bottom: 24px;
}
.cid-vicplBlVHK .items-wrapper .item .item-wrapper .item-content .icon-wrapper .mbr-iconfont {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 64px;
  font-size: 34px;
  background-image: linear-gradient(#000000 30%, #f5f5f5 130%);
  box-shadow: 0 8px 24px -5px #515151;
}
.cid-vicplBlVHK .items-wrapper .item .item-wrapper .item-content .item-title {
  margin-bottom: 10px;
}
.cid-vicplBlVHK .items-wrapper .item .item-wrapper .item-content .item-text {
  margin-bottom: 0;
}
.cid-vicplBlVHK .items-wrapper .item .item-wrapper .item-content .mbr-section-btn {
  margin-top: 10px;
}
.cid-vicplBlVHK .items-wrapper .item .item-wrapper .item-content .mbr-section-btn .btn {
  margin-bottom: 0;
}
.cid-vicplBlVHK .items-wrapper .item .item-wrapper .item-content .middle-border {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 2px;
  background-color: #e8e8e8;
  margin-top: 24px;
}
.cid-vicplBlVHK .items-wrapper .item .item-wrapper .item-content .item-number {
  margin-top: 24px;
  margin-bottom: 0;
}
.cid-vicplBlVHK .items-wrapper .item .item-wrapper .item-img {
  margin-top: 24px;
}
.cid-vicplBlVHK .items-wrapper .item .item-wrapper .item-img img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  box-shadow: 0 8px 20px -8px #515151;
}
@media (max-width: 992px) {
  .cid-vicplBlVHK .items-wrapper .item .item-wrapper .item-img img {
    height: 300px;
  }
}
.cid-vicplBlVHK .mbr-label,
.cid-vicplBlVHK .label-wrapper {
  color: #000000;
  text-align: center;
}
.cid-vicplBlVHK .mbr-section-title,
.cid-vicplBlVHK .title-wrapper {
  color: #ff6900;
  text-align: center;
}
.cid-vicplBlVHK .mbr-text,
.cid-vicplBlVHK .text-wrapper {
  color: #515151;
  text-align: center;
}
.cid-vicplBlVHK .item-title {
  color: #000000;
}
.cid-vicplBlVHK .item-text {
  color: #475569;
}
.cid-vicplBlVHK .item-number {
  color: #6d6150;
}
.cid-vicplBlVHK .item-title,
.cid-vicplBlVHK .mbr-section-btn,
.cid-vicplBlVHK .icon-wrapper {
  color: #ff6900;
}
.cid-vib0vhm2Vr {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #f5f5f5;
}
.cid-vib0vhm2Vr .mbr-fallback-image.disabled {
  display: none;
}
.cid-vib0vhm2Vr .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vib0vhm2Vr .content-wrap {
  margin: 0 -50px;
}
.cid-vib0vhm2Vr .content-wrap .card {
  padding: 0 50px;
}
.cid-vib0vhm2Vr .content-wrap .label-wrapper {
  margin-bottom: 20px;
}
.cid-vib0vhm2Vr .content-wrap .label-wrapper .label-wrap {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}
.cid-vib0vhm2Vr .content-wrap .label-wrapper .label-wrap .iconfont-wrapper {
  display: flex;
}
.cid-vib0vhm2Vr .content-wrap .label-wrapper .label-wrap .iconfont-wrapper .mbr-iconfont {
  display: inline-flex;
  font-size: 20px;
}
.cid-vib0vhm2Vr .content-wrap .label-wrapper .label-wrap .mbr-label {
  margin-bottom: 0;
}
.cid-vib0vhm2Vr .content-wrap .title-wrapper {
  padding-bottom: 50px;
  border-bottom: 1px solid #c6c6c6;
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .cid-vib0vhm2Vr .content-wrap .title-wrapper {
    padding-bottom: 30px;
    margin-bottom: 30px;
  }
}
.cid-vib0vhm2Vr .content-wrap .title-wrapper .mbr-section-title {
  display: inline-block;
  width: 70%;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-vib0vhm2Vr .content-wrap .title-wrapper .mbr-section-title {
    width: 100%;
  }
}
.cid-vib0vhm2Vr .content-wrap .text-wrapper {
  display: grid;
  grid-template-columns: .8fr 1fr;
  gap: 100px;
}
@media (max-width: 1440px) {
  .cid-vib0vhm2Vr .content-wrap .text-wrapper {
    gap: 50px;
  }
}
@media (max-width: 1200px) {
  .cid-vib0vhm2Vr .content-wrap .text-wrapper {
    gap: 30px;
  }
}
@media (max-width: 992px) {
  .cid-vib0vhm2Vr .content-wrap .text-wrapper {
    display: block;
  }
}
@media (max-width: 992px) {
  .cid-vib0vhm2Vr .content-wrap .text-wrapper .list-wrapper {
    margin-bottom: 30px;
  }
}
.cid-vib0vhm2Vr .content-wrap .text-wrapper .list-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-vib0vhm2Vr .content-wrap .text-wrapper .list-wrapper .list .item-wrap {
  position: relative;
  padding-left: 30px;
  margin-bottom: 10px;
}
.cid-vib0vhm2Vr .content-wrap .text-wrapper .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-vib0vhm2Vr .content-wrap .text-wrapper .list-wrapper .list .item-wrap::before {
  content: '✓';
  position: absolute;
  top: 0;
  left: 0;
  width: 22px;
  height: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
  font-size: 14px;
  background-color: #ff6900;
  color: #f1f1f1;
}
.cid-vib0vhm2Vr .content-wrap .text-wrapper .text-wrap .mbr-text {
  margin-bottom: 0;
}
.cid-vib0vhm2Vr .content-wrap .text-wrapper .text-wrap .mbr-section-btn {
  margin-top: 20px;
}
.cid-vib0vhm2Vr .mbr-label {
  color: #1f1f1f;
}
.cid-vib0vhm2Vr .mbr-section-title {
  color: #1f1f1f;
}
.cid-vib0vhm2Vr .mbr-text {
  color: #5a5a5a;
}
.cid-vib0vhm2Vr .list {
  color: #5a5a5a;
}
.cid-vib0vhm2Vr .mbr-section-title,
.cid-vib0vhm2Vr .title-wrapper {
  color: #583502;
  text-align: right;
}
.cid-vib0vhm2Vr .mbr-label,
.cid-vib0vhm2Vr .label-wrapper {
  color: #6d6150;
}
.cid-vib0vhm2Vr .mbr-text,
.cid-vib0vhm2Vr .mbr-section-btn {
  color: #583502;
  text-align: right;
}
.cid-vib0vhm2Vr .list,
.cid-vib0vhm2Vr .item-wrap {
  color: #6d6150;
  text-align: justify;
}
.cid-vibgIvWpjU {
  padding-top: 10rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/venta-de-lena-de-encina-en-madrid-y-guadalajara-para-particular-y-hosteleria-3.jpeg-2000x757.jpg");
}
.cid-vibgIvWpjU .mbr-fallback-image.disabled {
  display: none;
}
.cid-vibgIvWpjU .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vibgIvWpjU .image-wrapper {
  height: 400px;
}
@media (max-width: 992px) {
  .cid-vibgIvWpjU .image-wrapper {
    height: 350px;
  }
}
.cid-vib0vhPYXI {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #f5f5f5;
}
.cid-vib0vhPYXI .mbr-fallback-image.disabled {
  display: none;
}
.cid-vib0vhPYXI .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vib0vhPYXI .row {
  justify-content: center;
}
.cid-vib0vhPYXI .text-wrapper .mbr-text {
  display: inline-block;
  width: 60%;
  margin-bottom: 30px;
}
@media (max-width: 1440px) {
  .cid-vib0vhPYXI .text-wrapper .mbr-text {
    width: 80%;
  }
}
@media (max-width: 992px) {
  .cid-vib0vhPYXI .text-wrapper .mbr-text {
    width: 100%;
  }
}
.cid-vib0vhPYXI .mbr-text {
  color: #fff7ee;
}
.cid-vib0vhPYXI #divfoto {
  margin-left: auto !important;
  margin-right: auto !important;
  text-align: center !important;
  padding: 1.5rem;
}
.cid-vib0vhPYXI img {
  margin-left: auto !important;
  margin-right: auto !important;
  text-align: center !important;
  width: 100px;
  height: auto;
  border-radius: 0px !important;
}
.cid-vib0vjeDNU {
  padding-top: 5rem;
  background-color: #f5f5f5;
  overflow: hidden;
}
.cid-vib0vjeDNU .mbr-fallback-image.disabled {
  display: none;
}
.cid-vib0vjeDNU .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vib0vjeDNU .content-wrapper {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-bottom: 5rem;
  padding-left: 20px;
  padding-right: 20px;
  border-bottom: 1px solid #e1e7ed;
}
@media (max-width: 425px) {
  .cid-vib0vjeDNU .content-wrapper {
    padding-left: 0;
    padding-right: 0;
  }
}
.cid-vib0vjeDNU .content-wrapper .border-wrap {
  position: absolute;
  height: 1000%;
  width: 1px;
  border-left: 1px solid #e1e7ed;
  pointer-events: none;
}
@media (max-width: 425px) {
  .cid-vib0vjeDNU .content-wrapper .border-wrap {
    display: none;
  }
}
.cid-vib0vjeDNU .content-wrapper .border_1 {
  left: 0;
}
.cid-vib0vjeDNU .content-wrapper .border_2 {
  right: 0;
}
.cid-vib0vjeDNU .content-wrapper .title-wrapper {
  margin-bottom: 40px;
}
.cid-vib0vjeDNU .content-wrapper .title-wrapper .label-wrapper {
  margin-bottom: 16px;
}
.cid-vib0vjeDNU .content-wrapper .title-wrapper .label-wrapper .label-wrap {
  display: inline-flex;
  align-items: center;
  padding: 7px 18px;
  box-shadow: inset 0 10px 8px 0 #ffffff, inset 0 -5px 10px -8px #cccccc, 0 10px 10px -8px #cccccc;
  background-color: #fafafa;
}
.cid-vib0vjeDNU .content-wrapper .title-wrapper .label-wrapper .label-wrap .iconfont-wrapper {
  display: inline-flex;
}
.cid-vib0vjeDNU .content-wrapper .title-wrapper .label-wrapper .label-wrap .iconfont-wrapper .mbr-iconfont {
  font-size: 18px;
  display: inline-flex;
  margin-right: 8px;
}
.cid-vib0vjeDNU .content-wrapper .title-wrapper .label-wrapper .label-wrap .mbr-label {
  margin-bottom: 0;
}
.cid-vib0vjeDNU .content-wrapper .title-wrapper .mbr-section-title {
  margin-bottom: 16px;
}
.cid-vib0vjeDNU .content-wrapper .title-wrapper .text-wrapper .mbr-text {
  display: inline-block;
  width: 50%;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-vib0vjeDNU .content-wrapper .title-wrapper .text-wrapper .mbr-text {
    width: 100%;
  }
}
.cid-vib0vjeDNU .items-wrapper {
  margin: 0 -10px;
}
.cid-vib0vjeDNU .items-wrapper .card {
  padding: 0 10px;
}
.cid-vib0vjeDNU .image-wrapper {
  position: relative;
  height: 100%;
  width: 100%;
  min-height: 335px;
}
@media (max-width: 992px) {
  .cid-vib0vjeDNU .image-wrapper {
    min-height: auto;
    height: 320px;
  }
}
.cid-vib0vjeDNU .image-wrapper img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-vib0vjeDNU .items-wrap {
    margin-bottom: 20px;
  }
}
.cid-vib0vjeDNU .items-wrap .item {
  margin-bottom: 20px;
}
.cid-vib0vjeDNU .items-wrap .item:last-child {
  margin-bottom: 0;
}
.cid-vib0vjeDNU .items-wrap .item:hover .item-wrapper .card-box .text-wrap .item-text,
.cid-vib0vjeDNU .items-wrap .item:focus .item-wrapper .card-box .text-wrap .item-text {
  color: #484848;
}
.cid-vib0vjeDNU .items-wrap .item:hover .item-wrapper .card-box .text-wrap .item-text::before,
.cid-vib0vjeDNU .items-wrap .item:focus .item-wrapper .card-box .text-wrap .item-text::before {
  opacity: 1;
  transform: translateY(0);
}
.cid-vib0vjeDNU .items-wrap .item .item-wrapper {
  display: flex;
  align-items: center;
  padding: 24px;
  background-color: #fafafa;
  box-shadow: inset 0 10px 8px 0 #ffffff, inset 0 -5px 10px -4px #cccccc, 0 10px 10px -5px #cccccc;
}
@media (max-width: 992px) {
  .cid-vib0vjeDNU .items-wrap .item .item-wrapper {
    padding: 20px;
    display: block;
  }
}
.cid-vib0vjeDNU .items-wrap .item .item-wrapper .icon-wrapper {
  width: 52px;
  min-width: 52px;
  margin-right: 16px;
}
@media (max-width: 992px) {
  .cid-vib0vjeDNU .items-wrap .item .item-wrapper .icon-wrapper {
    margin-right: 0;
    margin-bottom: 16px;
  }
}
.cid-vib0vjeDNU .items-wrap .item .item-wrapper .icon-wrapper .mbr-iconfont {
  width: 52px;
  height: 52px;
  min-width: 52px;
  font-size: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #f5f5f5;
  box-shadow: inset 0 2px 10px -2px #cccccc, 0 10px 10px -2px #cccccc;
}
.cid-vib0vjeDNU .items-wrap .item .item-wrapper .card-box {
  width: 100%;
}
.cid-vib0vjeDNU .items-wrap .item .item-wrapper .card-box .item-title {
  margin-bottom: 4px;
}
.cid-vib0vjeDNU .items-wrap .item .item-wrapper .card-box .text-wrap .item-text {
  position: relative;
  display: inline-block;
  width: fit-content;
  margin-bottom: 0;
  transition: all .3s ease;
}
.cid-vib0vjeDNU .items-wrap .item .item-wrapper .card-box .text-wrap .item-text::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #484848;
  opacity: 0;
  transition: all 0.3s ease-in-out;
  transform: translateY(-2px);
}
.cid-vib0vjeDNU .btn-wrapper {
  margin-top: 0;
  margin-right: 0;
}
.cid-vib0vjeDNU .mbr-label,
.cid-vib0vjeDNU .label-wrapper {
  color: #334155;
  text-align: center;
}
.cid-vib0vjeDNU .mbr-section-title {
  color: #0f172a;
  text-align: center;
}
.cid-vib0vjeDNU .mbr-text,
.cid-vib0vjeDNU .text-wrapper {
  color: #475569;
  text-align: center;
}
.cid-vib0vjeDNU .item-title {
  color: #0f172a;
}
.cid-vib0vjeDNU .item-text {
  color: #475569;
}
.cid-vib0vjeDNU .item-title,
.cid-vib0vjeDNU .mbr-section-btn {
  color: #475569;
}
.cid-vib0vjOeZz {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-vib0vjOeZz .mbr-fallback-image.disabled {
  display: none;
}
.cid-vib0vjOeZz .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-vib0vjOeZz .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-vib0vjOeZz .row {
  flex-direction: row-reverse;
}
.cid-vib0vjOeZz img {
  width: 100%;
}
.cid-vib0vkhdge {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #fafafa;
}
.cid-vib0vkhdge .mbr-fallback-image.disabled {
  display: none;
}
.cid-vib0vkhdge .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-vib0vkhdge .container {
    padding: 0 30px;
  }
}
.cid-vib0vkhdge .row {
  padding-bottom: 100px;
}
@media (max-width: 992px) {
  .cid-vib0vkhdge .row {
    padding-bottom: 50px;
  }
}
.cid-vib0vkhdge .row .border-wrap {
  background-color: #ff6900;
  height: 2px;
  margin-bottom: 100px;
}
@media (max-width: 992px) {
  .cid-vib0vkhdge .row .border-wrap {
    margin-bottom: 50px;
  }
}
.cid-vib0vkhdge .card {
  justify-content: center;
}
.cid-vib0vkhdge .title-wrapper {
  margin-bottom: 20px;
}
.cid-vib0vkhdge .title-wrapper .title-wrap {
  display: inline-flex;
}
.cid-vib0vkhdge .title-wrapper .title-wrap img {
  object-fit: cover;
  width: 45px;
  height: 45px;
  margin-right: 10px;
}
.cid-vib0vkhdge .title-wrapper .title-wrap .mbr-section-title {
  margin-bottom: 0;
}
.cid-vib0vkhdge .nav-wrapper {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}
.cid-vib0vkhdge .nav-wrapper .list {
  display: inline-flex;
  flex-wrap: wrap;
  margin: 0;
  padding: 0;
  list-style-type: none;
}
.cid-vib0vkhdge .nav-wrapper .list .item-wrap {
  position: relative;
  margin: 0 50px 10px 0;
  cursor: pointer;
}
.cid-vib0vkhdge .nav-wrapper .list .item-wrap:hover::before,
.cid-vib0vkhdge .nav-wrapper .list .item-wrap:focus::before {
  width: 100%;
}
.cid-vib0vkhdge .nav-wrapper .list .item-wrap::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  width: 0;
  background-color: #144031;
  transition: all .3s ease;
}
.cid-vib0vkhdge .mbr-copy {
  margin-bottom: 0;
  color: #144031;
}
.cid-vib0vkhdge .mbr-section-title {
  color: #144031;
}
.cid-vib0vkhdge .list {
  color: #144031;
}
.cid-vicwSGQSv9 {
  z-index: 1000;
  width: 100%;
  position: relative;
}
.cid-vicwSGQSv9 .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;
}
@media (max-width: 767px) {
  .cid-vicwSGQSv9 .navbar-toggler {
    transform: scale(0.8);
  }
}
.cid-vicwSGQSv9 .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-vicwSGQSv9 .navbar-brand img {
  max-width: 100%;
  max-height: 100%;
  object-fit: cover;
}
.cid-vicwSGQSv9 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-vicwSGQSv9 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-vicwSGQSv9 .navbar-nav {
  margin: auto;
  margin-left: 0;
  margin-left: auto;
}
.cid-vicwSGQSv9 .navbar-nav .nav-item {
  padding: 0 !important;
  transition: .3s all !important;
}
@media (max-width: 992px) {
  .cid-vicwSGQSv9 .navbar-nav .nav-item {
    padding-left: 0 !important;
  }
}
.cid-vicwSGQSv9 .navbar-nav .nav-item .nav-link {
  position: relative;
  padding: 0 !important;
  margin: 4px 10px !important;
  transition: .3s all !important;
  font-weight: 400;
}
@media (max-width: 992px) {
  .cid-vicwSGQSv9 .navbar-nav .nav-item .nav-link {
    padding: 10px 0 !important;
    margin-left: 0 !important;
  }
}
.cid-vicwSGQSv9 .navbar-nav .nav-item .nav-link::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px !important;
  background-color: #ff6900;
  transform: translateY(-2px);
  opacity: 0;
  transition: all 0.3s ease;
}
.cid-vicwSGQSv9 .navbar-nav .nav-item .nav-link:hover {
  color: #ff6900 !important;
}
@media (max-width: 992px) {
  .cid-vicwSGQSv9 .navbar-nav .nav-item .nav-link:hover {
    background-color: transparent;
  }
}
.cid-vicwSGQSv9 .navbar-nav .nav-item .nav-link:hover::before {
  transform: translateY(0);
  opacity: 1;
}
.cid-vicwSGQSv9 .navbar-nav .open .nav-link::after {
  transform: rotate(180deg);
}
@media (min-width: 992px) {
  .cid-vicwSGQSv9 .navbar-nav .open .nav-link::before {
    content: "";
    width: 100%;
    height: 20px;
    top: 100%;
    background: transparent;
    position: absolute;
  }
}
.cid-vicwSGQSv9 .navbar-nav .dropdown-item {
  padding: 12px !important;
  margin: 0 8px !important;
  transition: .3s all !important;
  background: #fafafa;
  font-weight: 400;
}
@media (max-width: 992px) {
  .cid-vicwSGQSv9 .navbar-nav .dropdown-item {
    margin: 0 8px 0 0 !important;
  }
}
.cid-vicwSGQSv9 .navbar-nav .dropdown-item:hover {
  color: #ff6900;
}
.cid-vicwSGQSv9 .nav-link {
  width: fit-content;
  position: relative;
}
.cid-vicwSGQSv9 .navbar-logo {
  padding-left: 0;
  margin: 0 !important;
  border-radius: 5px !important;
}
@media (max-width: 767px) {
  .cid-vicwSGQSv9 .navbar-logo {
    padding-left: 0;
  }
}
.cid-vicwSGQSv9 .navbar-caption {
  padding-left: 0;
  padding-right: 20px;
  font-weight: 700;
}
@media (max-width: 992px) {
  .cid-vicwSGQSv9 .navbar-caption {
    border-right: none;
  }
}
.cid-vicwSGQSv9 .navbar-caption:hover {
  color: #ff6900 !important;
}
@media (max-width: 767px) {
  .cid-vicwSGQSv9 .nav-dropdown {
    padding-bottom: 0.5rem;
  }
}
.cid-vicwSGQSv9 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0rem;
  transition: .3s all;
}
.cid-vicwSGQSv9 .container,
.cid-vicwSGQSv9 .container-fluid {
  display: flex;
  min-height: 75px;
  padding: 0 32px;
  flex-wrap: nowrap;
  left: 0;
  right: 0;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: flex-end;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  margin-top: .5rem;
  background-color: #fafafa;
  backdrop-filter: blur(8px);
  box-shadow: inset 0 10px 8px 0 #ffffff, inset 0 -5px 10px -4px #cccccc, 0 10px 10px -5px #cccccc;
}
@media (max-width: 992px) {
  .cid-vicwSGQSv9 .container,
  .cid-vicwSGQSv9 .container-fluid {
    padding-right: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-vicwSGQSv9 .container,
  .cid-vicwSGQSv9 .container-fluid {
    width: 90%;
    height: 56px !important;
    padding-right: 1rem;
    padding-left: 1rem;
    margin-top: 0rem;
  }
}
.cid-vicwSGQSv9 .container-fluid {
  margin-left: 40px;
  margin-right: 40px;
}
@media (max-width: 992px) {
  .cid-vicwSGQSv9 .container-fluid {
    margin-left: 20px;
    margin-right: 20px;
  }
}
.cid-vicwSGQSv9 .iconfont-wrapper {
  color: #0f172a !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
  transition: all 0.3s ease-in-out;
}
.cid-vicwSGQSv9 .iconfont-wrapper:hover {
  opacity: .6;
}
.cid-vicwSGQSv9 .dropdown-menu {
  flex-wrap: wrap;
  flex-direction: column;
  max-width: 100%;
  padding: 0 !important;
  border-radius: 1rem;
  transition: .3s all !important;
  min-width: auto;
}
.cid-vicwSGQSv9 .nav-item:focus,
.cid-vicwSGQSv9 .nav-link:focus {
  outline: none;
}
.cid-vicwSGQSv9 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-vicwSGQSv9 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-vicwSGQSv9 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-vicwSGQSv9 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-vicwSGQSv9 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-vicwSGQSv9 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-vicwSGQSv9 .navbar {
  min-height: 75px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: transparent !important;
  padding: 0 !important;
  border: none !important;
  box-shadow: none !important;
  border-radius: 0 !important;
}
.cid-vicwSGQSv9 .navbar.opened {
  transition: all 0.3s;
}
.cid-vicwSGQSv9 .navbar.opened .container {
  backdrop-filter: none;
}
.cid-vicwSGQSv9 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-vicwSGQSv9 .navbar .navbar-logo img {
  width: auto;
  margin-right: 8px;
}
.cid-vicwSGQSv9 .navbar .navbar-collapse {
  z-index: 1;
  justify-content: flex-end;
}
.cid-vicwSGQSv9 .navbar.collapsed {
  justify-content: center;
}
.cid-vicwSGQSv9 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-vicwSGQSv9 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-vicwSGQSv9 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-vicwSGQSv9 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-vicwSGQSv9 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-vicwSGQSv9 .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-vicwSGQSv9 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-vicwSGQSv9 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-vicwSGQSv9 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 767px) {
  .cid-vicwSGQSv9 .navbar {
    min-height: 72px;
  }
  .cid-vicwSGQSv9 .navbar .navbar-logo img {
    height: 2rem !important;
  }
}
@media (max-width: 991px) {
  .cid-vicwSGQSv9 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-vicwSGQSv9 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-vicwSGQSv9 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-vicwSGQSv9 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-vicwSGQSv9 .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-vicwSGQSv9 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-vicwSGQSv9 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 10px;
  }
  .cid-vicwSGQSv9 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-vicwSGQSv9 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-vicwSGQSv9 .navbar.navbar-short .navbar-logo img {
  height: 2rem;
}
.cid-vicwSGQSv9 .dropdown-item.active,
.cid-vicwSGQSv9 .dropdown-item:active {
  background-color: transparent;
}
.cid-vicwSGQSv9 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-vicwSGQSv9 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-vicwSGQSv9 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-vicwSGQSv9 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: transparent;
  top: 2rem;
}
@media (max-width: 992px) {
  .cid-vicwSGQSv9 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
    top: 0;
  }
}
.cid-vicwSGQSv9 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 95%;
  transform: none;
  top: 0;
}
.cid-vicwSGQSv9 .navbar .dropdown.open > .dropdown-menu {
  display: flex;
}
.cid-vicwSGQSv9 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-vicwSGQSv9 .navbar-buttons {
  text-align: center;
  min-width: 140px;
}
@media (max-width: 992px) {
  .cid-vicwSGQSv9 .navbar-buttons {
    text-align: left;
  }
}
.cid-vicwSGQSv9 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-vicwSGQSv9 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #0f172a;
}
.cid-vicwSGQSv9 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-vicwSGQSv9 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-vicwSGQSv9 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-vicwSGQSv9 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-vicwSGQSv9 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-vicwSGQSv9 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-vicwSGQSv9 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-vicwSGQSv9 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-vicwSGQSv9 .navbar-dropdown {
  padding: 0 1rem;
}
.cid-vicwSGQSv9 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-vicwSGQSv9 .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media (max-width: 992px) {
  .cid-vicwSGQSv9 .icons-menu {
    justify-content: flex-start;
    margin-bottom: .5rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-vicwSGQSv9 .navbar {
    height: 75px;
  }
  .cid-vicwSGQSv9 .navbar.opened {
    height: auto;
  }
  .cid-vicwSGQSv9 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-vicwSGQSv9 .navbar .dropdown > .dropdown-menu {
  display: none;
  width: max-content;
  max-width: 500px !important;
  transform: translateX(-50%);
  top: calc(100% + 20px);
  left: 50%;
}
.cid-vicwSGQSv9 .navbar .dropdown > .dropdown-menu .dropdown-item {
  line-height: 1 !important;
  margin-bottom: 9px !important;
}
@media (max-width: 992px) {
  .cid-vicwSGQSv9 .navbar .dropdown > .dropdown-menu .dropdown-item {
    margin-bottom: 0;
  }
}
.cid-vicwSGQSv9 .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item {
  align-items: center;
  display: flex;
  height: max-content !important;
  min-height: max-content !important;
}
.cid-vicwSGQSv9 .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item::after {
  display: inline-block;
  position: static;
  margin-left: 0.6rem;
  margin-top: 0;
  margin-right: 0;
  margin-bottom: 0;
  transition: .3s all;
  transform: rotate(-90deg);
}
.cid-vicwSGQSv9 .navbar .dropdown > .dropdown-menu .dropdown.open .dropdown-item::after {
  transform: rotate(0deg);
}
.cid-vicwSGQSv9 .mbr-section-btn {
  margin: -0.6rem -0.6rem;
}
@media (max-width: 992px) {
  .cid-vicwSGQSv9 .mbr-section-btn {
    margin-top: 12px;
  }
}
.cid-vicwSGQSv9 .mbr-section-btn .btn {
  white-space: nowrap;
  width: auto;
  padding: 14px 18px;
}
.cid-vicwSGQSv9 .mbr-section-btn .btn:hover,
.cid-vicwSGQSv9 .mbr-section-btn .btn:focus {
  transform: none !important;
}
@media (max-width: 575px) {
  .cid-vicwSGQSv9 .mbr-section-btn .btn {
    width: auto !important;
  }
}
.cid-vicwSGQSv9 .navbar-toggler {
  margin-left: 12px;
  margin-right: 8px;
  order: 1000;
}
@media (max-width: 991px) {
  .cid-vicwSGQSv9 .navbar-brand {
    margin-right: auto;
  }
  .cid-vicwSGQSv9 .navbar-collapse {
    z-index: -1 !important;
    position: absolute;
    top: 110%;
    left: 0;
    width: 100%;
    padding: 1rem;
    border-radius: 1.5rem;
    background: #fafafa;
    backdrop-filter: blur(8px);
  }
  .cid-vicwSGQSv9 .navbar-nav .nav-item .nav-link::after {
    margin-left: 10px;
  }
  .cid-vicwSGQSv9 .navbar-nav .dropdown-item:hover {
    color: #ff6900;
  }
  .cid-vicwSGQSv9 .navbar .dropdown > .dropdown-menu {
    max-width: 100% !important;
    transform: translateX(0);
    top: 10px;
    left: 0;
    padding: 0 !important;
    border-radius: 1rem;
    background-color: transparent !important;
  }
  .cid-vicwSGQSv9 .navbar .dropdown > .dropdown-menu .dropdown-item {
    padding: 10px 10px 10px 10px !important;
    line-height: 1 !important;
    margin-bottom: 4px !important;
  }
  .cid-vicwSGQSv9 .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item {
    align-items: center;
    display: flex;
    height: max-content !important;
    min-height: max-content !important;
  }
  .cid-vicwSGQSv9 .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item::after {
    display: inline-block;
    position: static;
    margin-left: 0.5rem;
    margin-top: 0;
    margin-right: 0;
    margin-bottom: 0;
    transition: .3s all;
    transform: rotate(0deg);
  }
  .cid-vicwSGQSv9 .navbar .dropdown > .dropdown-menu .dropdown.open .dropdown-item::after {
    transform: rotate(180deg);
  }
  .cid-vicwSGQSv9 .navbar .dropdown > .dropdown-menu .dropdown-submenu {
    position: static;
    width: 100%;
    max-width: 100% !important;
    transform: translateX(0) !important;
    top: 0;
    left: 0;
    padding: 8px !important;
    padding-left: 0 !important;
    margin-left: 0;
    border-radius: 1rem;
    background-color: transparent;
  }
  .cid-vicwSGQSv9 .navbar .dropdown.open > .dropdown-menu {
    display: flex !important;
    flex-direction: column;
    align-items: flex-start;
  }
}
@media (max-width: 575px) {
  .cid-vicwSGQSv9 .navbar-collapse {
    padding: 1rem;
  }
}
.cid-vicy2lMyRy {
  padding-top: 10rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-vicy2lMyRy .container-fluid {
  padding: 0;
}
@media (max-width: 992px) {
  .cid-vicy2lMyRy .container-fluid {
    padding: 0;
  }
}
@media (max-width: 992px) {
  .cid-vicy2lMyRy .container {
    padding: 0 25px;
  }
}
.cid-vicy2lMyRy .title-wrapper {
  padding: 0 45px;
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .cid-vicy2lMyRy .title-wrapper {
    padding: 0 25px;
  }
}
.cid-vicy2lMyRy .title-wrapper .mbr-section-title {
  margin-bottom: 25px;
}
.cid-vicy2lMyRy .title-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-vicy2lMyRy .title-wrapper .mbr-section-btn {
  margin-top: 35px;
}
.cid-vicy2lMyRy .item:focus,
.cid-vicy2lMyRy span:focus {
  outline: none;
}
.cid-vicy2lMyRy .item-wrapper {
  position: relative;
}
.cid-vicy2lMyRy .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 460px;
  max-width: 460px;
}
@media (max-width: 767px) {
  .cid-vicy2lMyRy .embla__slide {
    min-width: 100%;
    max-width: 100%;
  }
}
.cid-vicy2lMyRy .embla__slide .slide-content {
  width: 100%;
  border-radius: 0 !important;
}
.cid-vicy2lMyRy .embla__slide .slide-content .item-wrapper .item-img img {
  height: 250px;
  object-fit: cover;
}
.cid-vicy2lMyRy .embla__button--next,
.cid-vicy2lMyRy .embla__button--prev {
  display: flex;
}
.cid-vicy2lMyRy .embla__button {
  bottom: 0;
  width: 40px;
  height: 40px;
  margin-top: -1.5rem;
  font-size: 20px;
  background-color: #f0f0f0 !important;
  color: #000000 !important;
  border: none;
  border-radius: 50%;
  transition: all 0.3s;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-vicy2lMyRy .embla__button:disabled {
  cursor: default;
  display: none;
}
.cid-vicy2lMyRy .embla__button.embla__button--prev {
  left: 45%;
}
@media (max-width: 768px) {
  .cid-vicy2lMyRy .embla__button.embla__button--prev {
    left: 25px;
  }
}
.cid-vicy2lMyRy .embla__button.embla__button--prev:hover {
  box-shadow: inset -40px 0 0 0 #000000 !important;
  color: #f0f0f0 !important;
}
.cid-vicy2lMyRy .embla__button.embla__button--next {
  right: 45%;
}
@media (max-width: 768px) {
  .cid-vicy2lMyRy .embla__button.embla__button--next {
    right: 25px;
  }
}
.cid-vicy2lMyRy .embla__button.embla__button--next:hover {
  box-shadow: inset 40px 0 0 0 #000000 !important;
  color: #f0f0f0 !important;
}
.cid-vicy2lMyRy .embla {
  position: relative;
  width: 100%;
  padding-bottom: 6rem;
}
.cid-vicy2lMyRy .embla__viewport {
  overflow: hidden;
  width: 100%;
  margin-right: 1rem;
}
.cid-vicy2lMyRy .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-vicy2lMyRy .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-vicy2lMyRy .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-vicy2lMyRy .mbr-section-title {
  color: #000000;
}
.cid-vicy2lMyRy .mbr-text {
  color: #000000;
}
.cid-vicy2lMyRy .mbr-section-title,
.cid-vicy2lMyRy .mbr-section-btn {
  color: #ff6900;
}
.cid-vicwSIWQDU {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-vicwSIWQDU .mbr-fallback-image.disabled {
  display: none;
}
.cid-vicwSIWQDU .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vicwSIWQDU .row {
  justify-content: center;
}
.cid-vicwSIWQDU .text-wrapper .mbr-text {
  display: inline-block;
  width: 60%;
  margin-bottom: 30px;
}
@media (max-width: 1440px) {
  .cid-vicwSIWQDU .text-wrapper .mbr-text {
    width: 80%;
  }
}
@media (max-width: 992px) {
  .cid-vicwSIWQDU .text-wrapper .mbr-text {
    width: 100%;
  }
}
.cid-vicwSIWQDU .mbr-text {
  color: #fff7ee;
}
.cid-vicwSIWQDU #divfoto {
  margin-left: auto !important;
  margin-right: auto !important;
  text-align: center !important;
  padding: 1.5rem;
}
.cid-vicwSIWQDU img {
  margin-left: auto !important;
  margin-right: auto !important;
  text-align: center !important;
  width: 100px;
  height: auto;
  border-radius: 0px !important;
}
.cid-vicwSKBDGd {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #f5f5f5;
}
.cid-vicwSKBDGd .mbr-fallback-image.disabled {
  display: none;
}
.cid-vicwSKBDGd .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vicwSKBDGd .content-wrap {
  margin: 0 -50px;
}
.cid-vicwSKBDGd .content-wrap .card {
  padding: 0 50px;
}
.cid-vicwSKBDGd .content-wrap .label-wrapper {
  margin-bottom: 20px;
}
.cid-vicwSKBDGd .content-wrap .label-wrapper .label-wrap {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}
.cid-vicwSKBDGd .content-wrap .label-wrapper .label-wrap .iconfont-wrapper {
  display: flex;
}
.cid-vicwSKBDGd .content-wrap .label-wrapper .label-wrap .iconfont-wrapper .mbr-iconfont {
  display: inline-flex;
  font-size: 20px;
}
.cid-vicwSKBDGd .content-wrap .label-wrapper .label-wrap .mbr-label {
  margin-bottom: 0;
}
.cid-vicwSKBDGd .content-wrap .title-wrapper {
  padding-bottom: 50px;
  border-bottom: 1px solid #c6c6c6;
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .cid-vicwSKBDGd .content-wrap .title-wrapper {
    padding-bottom: 30px;
    margin-bottom: 30px;
  }
}
.cid-vicwSKBDGd .content-wrap .title-wrapper .mbr-section-title {
  display: inline-block;
  width: 70%;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-vicwSKBDGd .content-wrap .title-wrapper .mbr-section-title {
    width: 100%;
  }
}
.cid-vicwSKBDGd .content-wrap .text-wrapper {
  display: grid;
  grid-template-columns: .8fr 1fr;
  gap: 100px;
}
@media (max-width: 1440px) {
  .cid-vicwSKBDGd .content-wrap .text-wrapper {
    gap: 50px;
  }
}
@media (max-width: 1200px) {
  .cid-vicwSKBDGd .content-wrap .text-wrapper {
    gap: 30px;
  }
}
@media (max-width: 992px) {
  .cid-vicwSKBDGd .content-wrap .text-wrapper {
    display: block;
  }
}
@media (max-width: 992px) {
  .cid-vicwSKBDGd .content-wrap .text-wrapper .list-wrapper {
    margin-bottom: 30px;
  }
}
.cid-vicwSKBDGd .content-wrap .text-wrapper .list-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-vicwSKBDGd .content-wrap .text-wrapper .list-wrapper .list .item-wrap {
  position: relative;
  padding-left: 30px;
  margin-bottom: 10px;
}
.cid-vicwSKBDGd .content-wrap .text-wrapper .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-vicwSKBDGd .content-wrap .text-wrapper .list-wrapper .list .item-wrap::before {
  content: '✓';
  position: absolute;
  top: 0;
  left: 0;
  width: 22px;
  height: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
  font-size: 14px;
  background-color: #ff6900;
  color: #f1f1f1;
}
.cid-vicwSKBDGd .content-wrap .text-wrapper .text-wrap .mbr-text {
  margin-bottom: 0;
}
.cid-vicwSKBDGd .content-wrap .text-wrapper .text-wrap .mbr-section-btn {
  margin-top: 20px;
}
.cid-vicwSKBDGd .mbr-label {
  color: #1f1f1f;
}
.cid-vicwSKBDGd .mbr-section-title {
  color: #1f1f1f;
}
.cid-vicwSKBDGd .mbr-text {
  color: #5a5a5a;
}
.cid-vicwSKBDGd .list {
  color: #5a5a5a;
}
.cid-vicwSKBDGd .mbr-section-title,
.cid-vicwSKBDGd .title-wrapper {
  color: #583502;
  text-align: left;
}
.cid-vicwSKBDGd .mbr-label,
.cid-vicwSKBDGd .label-wrapper {
  color: #6d6150;
}
.cid-vicwSKBDGd .mbr-text,
.cid-vicwSKBDGd .mbr-section-btn {
  color: #583502;
  text-align: left;
}
.cid-vicwSKBDGd .list,
.cid-vicwSKBDGd .item-wrap {
  color: #6d6150;
  text-align: justify;
}
.cid-viczRNPDIy {
  padding-top: 5rem;
  padding-bottom: 5rem;
  overflow: hidden;
  background-color: #ffffff;
}
.cid-viczRNPDIy .mbr-fallback-image.disabled {
  display: none;
}
.cid-viczRNPDIy .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-viczRNPDIy .container-fluid {
  padding: 0 32px;
}
@media (max-width: 992px) {
  .cid-viczRNPDIy .container-fluid {
    padding: 0 24px;
  }
}
@media (max-width: 992px) and (max-width: 992px) {
  .cid-viczRNPDIy .container {
    padding: 0 24px;
  }
}
.cid-viczRNPDIy .title-wrapper .mbr-section-title {
  margin-bottom: 32px;
}
@media (max-width: 992px) {
  .cid-viczRNPDIy .title-wrapper .mbr-section-title {
    margin-bottom: 24px;
  }
}
.cid-viczRNPDIy .mbr-section-title {
  color: #F9F6E0;
}
.cid-vicBWjJOIg {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #f5f5f5;
}
.cid-vicBWjJOIg .mbr-text {
  font-style: italic;
  color: #C0BCB7;
}
.cid-vicBWjJOIg img,
.cid-vicBWjJOIg .item-img {
  transition: transform 1.5s;
}
.cid-vicBWjJOIg .item-img {
  height: 350px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
}
@media (max-width: 991px) {
  .cid-vicBWjJOIg .item-img {
    height: 217px;
  }
}
@media (max-width: 768px) {
  .cid-vicBWjJOIg .item-img {
    height: 140px;
  }
}
.cid-vicBWjJOIg .item-img img {
  object-fit: cover;
  height: 100%;
}
.cid-vicBWjJOIg .item-img .icon-wrapper {
  position: absolute;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: #000000;
  font-size: 22px;
  right: 10%;
  top: 22%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateX(-50%) translateY(-50%);
  transition: all 0.3s;
}
.cid-vicBWjJOIg .item-img .icon-wrapper a {
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-vicBWjJOIg .item-img .icon-wrapper {
    right: 2%;
  }
}
@media (max-width: 768px) {
  .cid-vicBWjJOIg .item-img .icon-wrapper {
    right: -2%;
    width: 45px;
    height: 45px;
  }
}
.cid-vicBWjJOIg .item-img:hover .icon-wrapper {
  opacity: 1;
  top: 20%;
}
.cid-vicBWjJOIg .item-img:hover img {
  -webkit-transform: scale3d(1.1, 1.1, 1.1);
  transform: scale3d(1.1, 1.1, 1.1);
}
.cid-vicBWjJOIg .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-vicBWjJOIg .soc-item {
  position: relative;
  display: flex;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
  -webkit-box-shadow: preserve-3d;
  -moz-box-shadow: preserve-3d;
  transform-style: preserve-3d;
}
.cid-vicBWjJOIg .soc-item span {
  color: #ffffff;
  z-index: 99999;
}
.cid-vicBWjJOIg .soc-item::before,
.cid-vicBWjJOIg .soc-item::after {
  content: '';
  width: 101%;
  height: 102%;
  position: absolute;
  border-radius: 50%;
  top: -1px;
  left: 0;
  -webkit-box-shadow: translateZ(-1px);
  -moz-box-shadow: translateZ(-1px);
  transform: translateZ(-1px);
}
.cid-vicBWjJOIg .soc-item::before {
  border: 1px solid transparent;
  transition: border-top-color 0.1s linear, border-right-color 0.1s linear 0.1s, border-bottom-color 0.1s linear 0.2s;
}
.cid-vicBWjJOIg .soc-item:hover::before {
  border-top-color: #4c4c4c;
  border-right-color: #4c4c4c;
  border-bottom-color: #4c4c4c;
}
.cid-vicBWjJOIg .soc-item::after {
  border: 0 solid transparent;
  transition: transform 0.2s linear 0s, border-left-width 0s linear 0.3s;
}
.cid-vicBWjJOIg .soc-item:hover::after {
  border-top: 1px solid #4c4c4c;
  border-left-color: #4c4c4c;
  border-left-width: 1px;
  bordersborder-right-width: 1px;
  borderstransform: rotate(270deg);
}
.cid-vicBWjJOIg .mbr-section-title {
  color: #ff6900;
}
.cid-vicwSM7Xst {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #f5f5f5;
}
.cid-vicwSM7Xst .mbr-fallback-image.disabled {
  display: none;
}
.cid-vicwSM7Xst .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vicwSM7Xst .row {
  justify-content: center;
}
.cid-vicwSM7Xst .text-wrapper .mbr-text {
  display: inline-block;
  width: 60%;
  margin-bottom: 30px;
}
@media (max-width: 1440px) {
  .cid-vicwSM7Xst .text-wrapper .mbr-text {
    width: 80%;
  }
}
@media (max-width: 992px) {
  .cid-vicwSM7Xst .text-wrapper .mbr-text {
    width: 100%;
  }
}
.cid-vicwSM7Xst .mbr-text {
  color: #fff7ee;
}
.cid-vicwSM7Xst #divfoto {
  margin-left: auto !important;
  margin-right: auto !important;
  text-align: center !important;
  padding: 1.5rem;
}
.cid-vicwSM7Xst img {
  margin-left: auto !important;
  margin-right: auto !important;
  text-align: center !important;
  width: 100px;
  height: auto;
  border-radius: 0px !important;
}
.cid-vicwSMQKXA {
  padding-top: 5rem;
  background-color: #f5f5f5;
  overflow: hidden;
}
.cid-vicwSMQKXA .mbr-fallback-image.disabled {
  display: none;
}
.cid-vicwSMQKXA .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vicwSMQKXA .content-wrapper {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-bottom: 5rem;
  padding-left: 20px;
  padding-right: 20px;
  border-bottom: 1px solid #e1e7ed;
}
@media (max-width: 425px) {
  .cid-vicwSMQKXA .content-wrapper {
    padding-left: 0;
    padding-right: 0;
  }
}
.cid-vicwSMQKXA .content-wrapper .border-wrap {
  position: absolute;
  height: 1000%;
  width: 1px;
  border-left: 1px solid #e1e7ed;
  pointer-events: none;
}
@media (max-width: 425px) {
  .cid-vicwSMQKXA .content-wrapper .border-wrap {
    display: none;
  }
}
.cid-vicwSMQKXA .content-wrapper .border_1 {
  left: 0;
}
.cid-vicwSMQKXA .content-wrapper .border_2 {
  right: 0;
}
.cid-vicwSMQKXA .content-wrapper .title-wrapper {
  margin-bottom: 40px;
}
.cid-vicwSMQKXA .content-wrapper .title-wrapper .label-wrapper {
  margin-bottom: 16px;
}
.cid-vicwSMQKXA .content-wrapper .title-wrapper .label-wrapper .label-wrap {
  display: inline-flex;
  align-items: center;
  padding: 7px 18px;
  box-shadow: inset 0 10px 8px 0 #ffffff, inset 0 -5px 10px -8px #cccccc, 0 10px 10px -8px #cccccc;
  background-color: #fafafa;
}
.cid-vicwSMQKXA .content-wrapper .title-wrapper .label-wrapper .label-wrap .iconfont-wrapper {
  display: inline-flex;
}
.cid-vicwSMQKXA .content-wrapper .title-wrapper .label-wrapper .label-wrap .iconfont-wrapper .mbr-iconfont {
  font-size: 18px;
  display: inline-flex;
  margin-right: 8px;
}
.cid-vicwSMQKXA .content-wrapper .title-wrapper .label-wrapper .label-wrap .mbr-label {
  margin-bottom: 0;
}
.cid-vicwSMQKXA .content-wrapper .title-wrapper .mbr-section-title {
  margin-bottom: 16px;
}
.cid-vicwSMQKXA .content-wrapper .title-wrapper .text-wrapper .mbr-text {
  display: inline-block;
  width: 50%;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-vicwSMQKXA .content-wrapper .title-wrapper .text-wrapper .mbr-text {
    width: 100%;
  }
}
.cid-vicwSMQKXA .items-wrapper {
  margin: 0 -10px;
}
.cid-vicwSMQKXA .items-wrapper .card {
  padding: 0 10px;
}
.cid-vicwSMQKXA .image-wrapper {
  position: relative;
  height: 100%;
  width: 100%;
  min-height: 335px;
}
@media (max-width: 992px) {
  .cid-vicwSMQKXA .image-wrapper {
    min-height: auto;
    height: 320px;
  }
}
.cid-vicwSMQKXA .image-wrapper img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-vicwSMQKXA .items-wrap {
    margin-bottom: 20px;
  }
}
.cid-vicwSMQKXA .items-wrap .item {
  margin-bottom: 20px;
}
.cid-vicwSMQKXA .items-wrap .item:last-child {
  margin-bottom: 0;
}
.cid-vicwSMQKXA .items-wrap .item:hover .item-wrapper .card-box .text-wrap .item-text,
.cid-vicwSMQKXA .items-wrap .item:focus .item-wrapper .card-box .text-wrap .item-text {
  color: #484848;
}
.cid-vicwSMQKXA .items-wrap .item:hover .item-wrapper .card-box .text-wrap .item-text::before,
.cid-vicwSMQKXA .items-wrap .item:focus .item-wrapper .card-box .text-wrap .item-text::before {
  opacity: 1;
  transform: translateY(0);
}
.cid-vicwSMQKXA .items-wrap .item .item-wrapper {
  display: flex;
  align-items: center;
  padding: 24px;
  background-color: #fafafa;
  box-shadow: inset 0 10px 8px 0 #ffffff, inset 0 -5px 10px -4px #cccccc, 0 10px 10px -5px #cccccc;
}
@media (max-width: 992px) {
  .cid-vicwSMQKXA .items-wrap .item .item-wrapper {
    padding: 20px;
    display: block;
  }
}
.cid-vicwSMQKXA .items-wrap .item .item-wrapper .icon-wrapper {
  width: 52px;
  min-width: 52px;
  margin-right: 16px;
}
@media (max-width: 992px) {
  .cid-vicwSMQKXA .items-wrap .item .item-wrapper .icon-wrapper {
    margin-right: 0;
    margin-bottom: 16px;
  }
}
.cid-vicwSMQKXA .items-wrap .item .item-wrapper .icon-wrapper .mbr-iconfont {
  width: 52px;
  height: 52px;
  min-width: 52px;
  font-size: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #f5f5f5;
  box-shadow: inset 0 2px 10px -2px #cccccc, 0 10px 10px -2px #cccccc;
}
.cid-vicwSMQKXA .items-wrap .item .item-wrapper .card-box {
  width: 100%;
}
.cid-vicwSMQKXA .items-wrap .item .item-wrapper .card-box .item-title {
  margin-bottom: 4px;
}
.cid-vicwSMQKXA .items-wrap .item .item-wrapper .card-box .text-wrap .item-text {
  position: relative;
  display: inline-block;
  width: fit-content;
  margin-bottom: 0;
  transition: all .3s ease;
}
.cid-vicwSMQKXA .items-wrap .item .item-wrapper .card-box .text-wrap .item-text::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #484848;
  opacity: 0;
  transition: all 0.3s ease-in-out;
  transform: translateY(-2px);
}
.cid-vicwSMQKXA .btn-wrapper {
  margin-top: 0;
  margin-right: 0;
}
.cid-vicwSMQKXA .mbr-label,
.cid-vicwSMQKXA .label-wrapper {
  color: #334155;
  text-align: center;
}
.cid-vicwSMQKXA .mbr-section-title {
  color: #0f172a;
  text-align: center;
}
.cid-vicwSMQKXA .mbr-text,
.cid-vicwSMQKXA .text-wrapper {
  color: #475569;
  text-align: center;
}
.cid-vicwSMQKXA .item-title {
  color: #0f172a;
}
.cid-vicwSMQKXA .item-text {
  color: #475569;
}
.cid-vicwSMQKXA .item-title,
.cid-vicwSMQKXA .mbr-section-btn {
  color: #475569;
}
.cid-vicwSNKz0M {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-vicwSNKz0M .mbr-fallback-image.disabled {
  display: none;
}
.cid-vicwSNKz0M .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-vicwSNKz0M .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-vicwSNKz0M .row {
  flex-direction: row-reverse;
}
.cid-vicwSNKz0M img {
  width: 100%;
}
.cid-vicwSOwc6A {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #fafafa;
}
.cid-vicwSOwc6A .mbr-fallback-image.disabled {
  display: none;
}
.cid-vicwSOwc6A .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-vicwSOwc6A .container {
    padding: 0 30px;
  }
}
.cid-vicwSOwc6A .row {
  padding-bottom: 100px;
}
@media (max-width: 992px) {
  .cid-vicwSOwc6A .row {
    padding-bottom: 50px;
  }
}
.cid-vicwSOwc6A .row .border-wrap {
  background-color: #ff6900;
  height: 2px;
  margin-bottom: 100px;
}
@media (max-width: 992px) {
  .cid-vicwSOwc6A .row .border-wrap {
    margin-bottom: 50px;
  }
}
.cid-vicwSOwc6A .card {
  justify-content: center;
}
.cid-vicwSOwc6A .title-wrapper {
  margin-bottom: 20px;
}
.cid-vicwSOwc6A .title-wrapper .title-wrap {
  display: inline-flex;
}
.cid-vicwSOwc6A .title-wrapper .title-wrap img {
  object-fit: cover;
  width: 45px;
  height: 45px;
  margin-right: 10px;
}
.cid-vicwSOwc6A .title-wrapper .title-wrap .mbr-section-title {
  margin-bottom: 0;
}
.cid-vicwSOwc6A .nav-wrapper {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}
.cid-vicwSOwc6A .nav-wrapper .list {
  display: inline-flex;
  flex-wrap: wrap;
  margin: 0;
  padding: 0;
  list-style-type: none;
}
.cid-vicwSOwc6A .nav-wrapper .list .item-wrap {
  position: relative;
  margin: 0 50px 10px 0;
  cursor: pointer;
}
.cid-vicwSOwc6A .nav-wrapper .list .item-wrap:hover::before,
.cid-vicwSOwc6A .nav-wrapper .list .item-wrap:focus::before {
  width: 100%;
}
.cid-vicwSOwc6A .nav-wrapper .list .item-wrap::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  width: 0;
  background-color: #144031;
  transition: all .3s ease;
}
.cid-vicwSOwc6A .mbr-copy {
  margin-bottom: 0;
  color: #144031;
}
.cid-vicwSOwc6A .mbr-section-title {
  color: #144031;
}
.cid-vicwSOwc6A .list {
  color: #144031;
}
.cid-vicLFFDr5Q {
  z-index: 1000;
  width: 100%;
  position: relative;
}
.cid-vicLFFDr5Q .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;
}
@media (max-width: 767px) {
  .cid-vicLFFDr5Q .navbar-toggler {
    transform: scale(0.8);
  }
}
.cid-vicLFFDr5Q .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-vicLFFDr5Q .navbar-brand img {
  max-width: 100%;
  max-height: 100%;
  object-fit: cover;
}
.cid-vicLFFDr5Q .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-vicLFFDr5Q .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-vicLFFDr5Q .navbar-nav {
  margin: auto;
  margin-left: 0;
  margin-left: auto;
}
.cid-vicLFFDr5Q .navbar-nav .nav-item {
  padding: 0 !important;
  transition: .3s all !important;
}
@media (max-width: 992px) {
  .cid-vicLFFDr5Q .navbar-nav .nav-item {
    padding-left: 0 !important;
  }
}
.cid-vicLFFDr5Q .navbar-nav .nav-item .nav-link {
  position: relative;
  padding: 0 !important;
  margin: 4px 10px !important;
  transition: .3s all !important;
  font-weight: 400;
}
@media (max-width: 992px) {
  .cid-vicLFFDr5Q .navbar-nav .nav-item .nav-link {
    padding: 10px 0 !important;
    margin-left: 0 !important;
  }
}
.cid-vicLFFDr5Q .navbar-nav .nav-item .nav-link::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px !important;
  background-color: #ff6900;
  transform: translateY(-2px);
  opacity: 0;
  transition: all 0.3s ease;
}
.cid-vicLFFDr5Q .navbar-nav .nav-item .nav-link:hover {
  color: #ff6900 !important;
}
@media (max-width: 992px) {
  .cid-vicLFFDr5Q .navbar-nav .nav-item .nav-link:hover {
    background-color: transparent;
  }
}
.cid-vicLFFDr5Q .navbar-nav .nav-item .nav-link:hover::before {
  transform: translateY(0);
  opacity: 1;
}
.cid-vicLFFDr5Q .navbar-nav .open .nav-link::after {
  transform: rotate(180deg);
}
@media (min-width: 992px) {
  .cid-vicLFFDr5Q .navbar-nav .open .nav-link::before {
    content: "";
    width: 100%;
    height: 20px;
    top: 100%;
    background: transparent;
    position: absolute;
  }
}
.cid-vicLFFDr5Q .navbar-nav .dropdown-item {
  padding: 12px !important;
  margin: 0 8px !important;
  transition: .3s all !important;
  background: #fafafa;
  font-weight: 400;
}
@media (max-width: 992px) {
  .cid-vicLFFDr5Q .navbar-nav .dropdown-item {
    margin: 0 8px 0 0 !important;
  }
}
.cid-vicLFFDr5Q .navbar-nav .dropdown-item:hover {
  color: #ff6900;
}
.cid-vicLFFDr5Q .nav-link {
  width: fit-content;
  position: relative;
}
.cid-vicLFFDr5Q .navbar-logo {
  padding-left: 0;
  margin: 0 !important;
  border-radius: 5px !important;
}
@media (max-width: 767px) {
  .cid-vicLFFDr5Q .navbar-logo {
    padding-left: 0;
  }
}
.cid-vicLFFDr5Q .navbar-caption {
  padding-left: 0;
  padding-right: 20px;
  font-weight: 700;
}
@media (max-width: 992px) {
  .cid-vicLFFDr5Q .navbar-caption {
    border-right: none;
  }
}
.cid-vicLFFDr5Q .navbar-caption:hover {
  color: #ff6900 !important;
}
@media (max-width: 767px) {
  .cid-vicLFFDr5Q .nav-dropdown {
    padding-bottom: 0.5rem;
  }
}
.cid-vicLFFDr5Q .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0rem;
  transition: .3s all;
}
.cid-vicLFFDr5Q .container,
.cid-vicLFFDr5Q .container-fluid {
  display: flex;
  min-height: 75px;
  padding: 0 32px;
  flex-wrap: nowrap;
  left: 0;
  right: 0;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: flex-end;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  margin-top: .5rem;
  background-color: #fafafa;
  backdrop-filter: blur(8px);
  box-shadow: inset 0 10px 8px 0 #ffffff, inset 0 -5px 10px -4px #cccccc, 0 10px 10px -5px #cccccc;
}
@media (max-width: 992px) {
  .cid-vicLFFDr5Q .container,
  .cid-vicLFFDr5Q .container-fluid {
    padding-right: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-vicLFFDr5Q .container,
  .cid-vicLFFDr5Q .container-fluid {
    width: 90%;
    height: 56px !important;
    padding-right: 1rem;
    padding-left: 1rem;
    margin-top: 0rem;
  }
}
.cid-vicLFFDr5Q .container-fluid {
  margin-left: 40px;
  margin-right: 40px;
}
@media (max-width: 992px) {
  .cid-vicLFFDr5Q .container-fluid {
    margin-left: 20px;
    margin-right: 20px;
  }
}
.cid-vicLFFDr5Q .iconfont-wrapper {
  color: #0f172a !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
  transition: all 0.3s ease-in-out;
}
.cid-vicLFFDr5Q .iconfont-wrapper:hover {
  opacity: .6;
}
.cid-vicLFFDr5Q .dropdown-menu {
  flex-wrap: wrap;
  flex-direction: column;
  max-width: 100%;
  padding: 0 !important;
  border-radius: 1rem;
  transition: .3s all !important;
  min-width: auto;
}
.cid-vicLFFDr5Q .nav-item:focus,
.cid-vicLFFDr5Q .nav-link:focus {
  outline: none;
}
.cid-vicLFFDr5Q .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-vicLFFDr5Q .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-vicLFFDr5Q .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-vicLFFDr5Q .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-vicLFFDr5Q .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-vicLFFDr5Q .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-vicLFFDr5Q .navbar {
  min-height: 75px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: transparent !important;
  padding: 0 !important;
  border: none !important;
  box-shadow: none !important;
  border-radius: 0 !important;
}
.cid-vicLFFDr5Q .navbar.opened {
  transition: all 0.3s;
}
.cid-vicLFFDr5Q .navbar.opened .container {
  backdrop-filter: none;
}
.cid-vicLFFDr5Q .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-vicLFFDr5Q .navbar .navbar-logo img {
  width: auto;
  margin-right: 8px;
}
.cid-vicLFFDr5Q .navbar .navbar-collapse {
  z-index: 1;
  justify-content: flex-end;
}
.cid-vicLFFDr5Q .navbar.collapsed {
  justify-content: center;
}
.cid-vicLFFDr5Q .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-vicLFFDr5Q .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-vicLFFDr5Q .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-vicLFFDr5Q .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-vicLFFDr5Q .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-vicLFFDr5Q .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-vicLFFDr5Q .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-vicLFFDr5Q .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-vicLFFDr5Q .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 767px) {
  .cid-vicLFFDr5Q .navbar {
    min-height: 72px;
  }
  .cid-vicLFFDr5Q .navbar .navbar-logo img {
    height: 2rem !important;
  }
}
@media (max-width: 991px) {
  .cid-vicLFFDr5Q .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-vicLFFDr5Q .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-vicLFFDr5Q .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-vicLFFDr5Q .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-vicLFFDr5Q .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-vicLFFDr5Q .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-vicLFFDr5Q .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 10px;
  }
  .cid-vicLFFDr5Q .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-vicLFFDr5Q .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-vicLFFDr5Q .navbar.navbar-short .navbar-logo img {
  height: 2rem;
}
.cid-vicLFFDr5Q .dropdown-item.active,
.cid-vicLFFDr5Q .dropdown-item:active {
  background-color: transparent;
}
.cid-vicLFFDr5Q .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-vicLFFDr5Q .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-vicLFFDr5Q .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-vicLFFDr5Q .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: transparent;
  top: 2rem;
}
@media (max-width: 992px) {
  .cid-vicLFFDr5Q .navbar.navbar-expand-lg .dropdown .dropdown-menu {
    top: 0;
  }
}
.cid-vicLFFDr5Q .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 95%;
  transform: none;
  top: 0;
}
.cid-vicLFFDr5Q .navbar .dropdown.open > .dropdown-menu {
  display: flex;
}
.cid-vicLFFDr5Q ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-vicLFFDr5Q .navbar-buttons {
  text-align: center;
  min-width: 140px;
}
@media (max-width: 992px) {
  .cid-vicLFFDr5Q .navbar-buttons {
    text-align: left;
  }
}
.cid-vicLFFDr5Q button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-vicLFFDr5Q button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #0f172a;
}
.cid-vicLFFDr5Q button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-vicLFFDr5Q button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-vicLFFDr5Q button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-vicLFFDr5Q button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-vicLFFDr5Q nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-vicLFFDr5Q nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-vicLFFDr5Q nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-vicLFFDr5Q nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-vicLFFDr5Q .navbar-dropdown {
  padding: 0 1rem;
}
.cid-vicLFFDr5Q a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-vicLFFDr5Q .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media (max-width: 992px) {
  .cid-vicLFFDr5Q .icons-menu {
    justify-content: flex-start;
    margin-bottom: .5rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-vicLFFDr5Q .navbar {
    height: 75px;
  }
  .cid-vicLFFDr5Q .navbar.opened {
    height: auto;
  }
  .cid-vicLFFDr5Q .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-vicLFFDr5Q .navbar .dropdown > .dropdown-menu {
  display: none;
  width: max-content;
  max-width: 500px !important;
  transform: translateX(-50%);
  top: calc(100% + 20px);
  left: 50%;
}
.cid-vicLFFDr5Q .navbar .dropdown > .dropdown-menu .dropdown-item {
  line-height: 1 !important;
  margin-bottom: 9px !important;
}
@media (max-width: 992px) {
  .cid-vicLFFDr5Q .navbar .dropdown > .dropdown-menu .dropdown-item {
    margin-bottom: 0;
  }
}
.cid-vicLFFDr5Q .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item {
  align-items: center;
  display: flex;
  height: max-content !important;
  min-height: max-content !important;
}
.cid-vicLFFDr5Q .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item::after {
  display: inline-block;
  position: static;
  margin-left: 0.6rem;
  margin-top: 0;
  margin-right: 0;
  margin-bottom: 0;
  transition: .3s all;
  transform: rotate(-90deg);
}
.cid-vicLFFDr5Q .navbar .dropdown > .dropdown-menu .dropdown.open .dropdown-item::after {
  transform: rotate(0deg);
}
.cid-vicLFFDr5Q .mbr-section-btn {
  margin: -0.6rem -0.6rem;
}
@media (max-width: 992px) {
  .cid-vicLFFDr5Q .mbr-section-btn {
    margin-top: 12px;
  }
}
.cid-vicLFFDr5Q .mbr-section-btn .btn {
  white-space: nowrap;
  width: auto;
  padding: 14px 18px;
}
.cid-vicLFFDr5Q .mbr-section-btn .btn:hover,
.cid-vicLFFDr5Q .mbr-section-btn .btn:focus {
  transform: none !important;
}
@media (max-width: 575px) {
  .cid-vicLFFDr5Q .mbr-section-btn .btn {
    width: auto !important;
  }
}
.cid-vicLFFDr5Q .navbar-toggler {
  margin-left: 12px;
  margin-right: 8px;
  order: 1000;
}
@media (max-width: 991px) {
  .cid-vicLFFDr5Q .navbar-brand {
    margin-right: auto;
  }
  .cid-vicLFFDr5Q .navbar-collapse {
    z-index: -1 !important;
    position: absolute;
    top: 110%;
    left: 0;
    width: 100%;
    padding: 1rem;
    border-radius: 1.5rem;
    background: #fafafa;
    backdrop-filter: blur(8px);
  }
  .cid-vicLFFDr5Q .navbar-nav .nav-item .nav-link::after {
    margin-left: 10px;
  }
  .cid-vicLFFDr5Q .navbar-nav .dropdown-item:hover {
    color: #ff6900;
  }
  .cid-vicLFFDr5Q .navbar .dropdown > .dropdown-menu {
    max-width: 100% !important;
    transform: translateX(0);
    top: 10px;
    left: 0;
    padding: 0 !important;
    border-radius: 1rem;
    background-color: transparent !important;
  }
  .cid-vicLFFDr5Q .navbar .dropdown > .dropdown-menu .dropdown-item {
    padding: 10px 10px 10px 10px !important;
    line-height: 1 !important;
    margin-bottom: 4px !important;
  }
  .cid-vicLFFDr5Q .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item {
    align-items: center;
    display: flex;
    height: max-content !important;
    min-height: max-content !important;
  }
  .cid-vicLFFDr5Q .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item::after {
    display: inline-block;
    position: static;
    margin-left: 0.5rem;
    margin-top: 0;
    margin-right: 0;
    margin-bottom: 0;
    transition: .3s all;
    transform: rotate(0deg);
  }
  .cid-vicLFFDr5Q .navbar .dropdown > .dropdown-menu .dropdown.open .dropdown-item::after {
    transform: rotate(180deg);
  }
  .cid-vicLFFDr5Q .navbar .dropdown > .dropdown-menu .dropdown-submenu {
    position: static;
    width: 100%;
    max-width: 100% !important;
    transform: translateX(0) !important;
    top: 0;
    left: 0;
    padding: 8px !important;
    padding-left: 0 !important;
    margin-left: 0;
    border-radius: 1rem;
    background-color: transparent;
  }
  .cid-vicLFFDr5Q .navbar .dropdown.open > .dropdown-menu {
    display: flex !important;
    flex-direction: column;
    align-items: flex-start;
  }
}
@media (max-width: 575px) {
  .cid-vicLFFDr5Q .navbar-collapse {
    padding: 1rem;
  }
}
.cid-vicLXJrbHs {
  padding-top: 135px;
  padding-bottom: 135px;
  background-image: url("../../../assets/images/mbr-1920x1280.jpg");
}
.cid-vicLXJrbHs .underline .line {
  width: 2rem;
  height: 1px;
  background: #958e95;
  display: inline-block;
}
.cid-vicLXJrbHs .card {
  border-radius: 0px;
  margin-bottom: -1px;
}
.cid-vicLXJrbHs .card .card-header {
  background: #ffffff;
  border-radius: 0px;
  border: 0px;
  padding: 0;
}
.cid-vicLXJrbHs .card .card-header a.panel-title {
  margin-bottom: 0;
  font-style: normal;
  font-weight: 500;
  display: block;
  text-decoration: none !important;
  margin-top: -1px;
  line-height: normal;
}
.cid-vicLXJrbHs .card .card-header a.panel-title:focus {
  text-decoration: none !important;
}
.cid-vicLXJrbHs .card .card-header a.panel-title h4 {
  padding: 1.3rem 2rem;
  border: 1px solid #dfdfdf;
  margin-bottom: 0;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-vicLXJrbHs .card .card-header a.panel-title h4 .sign {
  padding-right: 1rem;
  font-size: 20px;
}
.cid-vicLXJrbHs .card .panel-body {
  background: #ffffff;
}
.cid-vicLXJrbHs .card .panel-body .mbr-text {
  margin: 0;
}
@media (max-width: 767px) {
  .cid-vicLXJrbHs .card-header h4,
  .cid-vicLXJrbHs .panel-body {
    padding: 1rem !important;
  }
}
.cid-vicLXJrbHs .mbr-fallback-image.disabled {
  display: none;
}
.cid-vicLXJrbHs .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vicLXJrbHs H2 {
  color: #c55200;
}
.cid-vicLXJrbHs .mbr-section-subtitle,
.cid-vicLXJrbHs .underline {
  color: #712e88;
}
.cid-vicLXJrbHs .panel-text {
  color: #475569;
}
.cid-vicLXJrbHs H1 {
  color: #334155;
}
.cid-vicLFH3GTj {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-vicLFH3GTj .mbr-fallback-image.disabled {
  display: none;
}
.cid-vicLFH3GTj .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vicLFH3GTj .row {
  justify-content: center;
}
.cid-vicLFH3GTj .text-wrapper .mbr-text {
  display: inline-block;
  width: 60%;
  margin-bottom: 30px;
}
@media (max-width: 1440px) {
  .cid-vicLFH3GTj .text-wrapper .mbr-text {
    width: 80%;
  }
}
@media (max-width: 992px) {
  .cid-vicLFH3GTj .text-wrapper .mbr-text {
    width: 100%;
  }
}
.cid-vicLFH3GTj .mbr-text {
  color: #fff7ee;
}
.cid-vicLFH3GTj #divfoto {
  margin-left: auto !important;
  margin-right: auto !important;
  text-align: center !important;
  padding: 1.5rem;
}
.cid-vicLFH3GTj img {
  margin-left: auto !important;
  margin-right: auto !important;
  text-align: center !important;
  width: 100px;
  height: auto;
  border-radius: 0px !important;
}
.cid-vicLFKKiua {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-vicLFKKiua .mbr-fallback-image.disabled {
  display: none;
}
.cid-vicLFKKiua .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-vicLFKKiua .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-vicLFKKiua .row {
  flex-direction: row-reverse;
}
.cid-vicLFKKiua img {
  width: 100%;
}
.cid-vicLFLjrJt {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #fafafa;
}
.cid-vicLFLjrJt .mbr-fallback-image.disabled {
  display: none;
}
.cid-vicLFLjrJt .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-vicLFLjrJt .container {
    padding: 0 30px;
  }
}
.cid-vicLFLjrJt .row {
  padding-bottom: 100px;
}
@media (max-width: 992px) {
  .cid-vicLFLjrJt .row {
    padding-bottom: 50px;
  }
}
.cid-vicLFLjrJt .row .border-wrap {
  background-color: #ff6900;
  height: 2px;
  margin-bottom: 100px;
}
@media (max-width: 992px) {
  .cid-vicLFLjrJt .row .border-wrap {
    margin-bottom: 50px;
  }
}
.cid-vicLFLjrJt .card {
  justify-content: center;
}
.cid-vicLFLjrJt .title-wrapper {
  margin-bottom: 20px;
}
.cid-vicLFLjrJt .title-wrapper .title-wrap {
  display: inline-flex;
}
.cid-vicLFLjrJt .title-wrapper .title-wrap img {
  object-fit: cover;
  width: 45px;
  height: 45px;
  margin-right: 10px;
}
.cid-vicLFLjrJt .title-wrapper .title-wrap .mbr-section-title {
  margin-bottom: 0;
}
.cid-vicLFLjrJt .nav-wrapper {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}
.cid-vicLFLjrJt .nav-wrapper .list {
  display: inline-flex;
  flex-wrap: wrap;
  margin: 0;
  padding: 0;
  list-style-type: none;
}
.cid-vicLFLjrJt .nav-wrapper .list .item-wrap {
  position: relative;
  margin: 0 50px 10px 0;
  cursor: pointer;
}
.cid-vicLFLjrJt .nav-wrapper .list .item-wrap:hover::before,
.cid-vicLFLjrJt .nav-wrapper .list .item-wrap:focus::before {
  width: 100%;
}
.cid-vicLFLjrJt .nav-wrapper .list .item-wrap::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  width: 0;
  background-color: #144031;
  transition: all .3s ease;
}
.cid-vicLFLjrJt .mbr-copy {
  margin-bottom: 0;
  color: #144031;
}
.cid-vicLFLjrJt .mbr-section-title {
  color: #144031;
}
.cid-vicLFLjrJt .list {
  color: #144031;
}
.cid-vicOSKJ6Ef {
  z-index: 1000;
  width: 100%;
  position: relative;
}
.cid-vicOSKJ6Ef .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;
}
@media (max-width: 767px) {
  .cid-vicOSKJ6Ef .navbar-toggler {
    transform: scale(0.8);
  }
}
.cid-vicOSKJ6Ef .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-vicOSKJ6Ef .navbar-brand img {
  max-width: 100%;
  max-height: 100%;
  object-fit: cover;
}
.cid-vicOSKJ6Ef .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-vicOSKJ6Ef .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-vicOSKJ6Ef .navbar-nav {
  margin: auto;
  margin-left: 0;
  margin-left: auto;
}
.cid-vicOSKJ6Ef .navbar-nav .nav-item {
  padding: 0 !important;
  transition: .3s all !important;
}
@media (max-width: 992px) {
  .cid-vicOSKJ6Ef .navbar-nav .nav-item {
    padding-left: 0 !important;
  }
}
.cid-vicOSKJ6Ef .navbar-nav .nav-item .nav-link {
  position: relative;
  padding: 0 !important;
  margin: 4px 10px !important;
  transition: .3s all !important;
  font-weight: 400;
}
@media (max-width: 992px) {
  .cid-vicOSKJ6Ef .navbar-nav .nav-item .nav-link {
    padding: 10px 0 !important;
    margin-left: 0 !important;
  }
}
.cid-vicOSKJ6Ef .navbar-nav .nav-item .nav-link::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px !important;
  background-color: #ff6900;
  transform: translateY(-2px);
  opacity: 0;
  transition: all 0.3s ease;
}
.cid-vicOSKJ6Ef .navbar-nav .nav-item .nav-link:hover {
  color: #ff6900 !important;
}
@media (max-width: 992px) {
  .cid-vicOSKJ6Ef .navbar-nav .nav-item .nav-link:hover {
    background-color: transparent;
  }
}
.cid-vicOSKJ6Ef .navbar-nav .nav-item .nav-link:hover::before {
  transform: translateY(0);
  opacity: 1;
}
.cid-vicOSKJ6Ef .navbar-nav .open .nav-link::after {
  transform: rotate(180deg);
}
@media (min-width: 992px) {
  .cid-vicOSKJ6Ef .navbar-nav .open .nav-link::before {
    content: "";
    width: 100%;
    height: 20px;
    top: 100%;
    background: transparent;
    position: absolute;
  }
}
.cid-vicOSKJ6Ef .navbar-nav .dropdown-item {
  padding: 12px !important;
  margin: 0 8px !important;
  transition: .3s all !important;
  background: #fafafa;
  font-weight: 400;
}
@media (max-width: 992px) {
  .cid-vicOSKJ6Ef .navbar-nav .dropdown-item {
    margin: 0 8px 0 0 !important;
  }
}
.cid-vicOSKJ6Ef .navbar-nav .dropdown-item:hover {
  color: #ff6900;
}
.cid-vicOSKJ6Ef .nav-link {
  width: fit-content;
  position: relative;
}
.cid-vicOSKJ6Ef .navbar-logo {
  padding-left: 0;
  margin: 0 !important;
  border-radius: 5px !important;
}
@media (max-width: 767px) {
  .cid-vicOSKJ6Ef .navbar-logo {
    padding-left: 0;
  }
}
.cid-vicOSKJ6Ef .navbar-caption {
  padding-left: 0;
  padding-right: 20px;
  font-weight: 700;
}
@media (max-width: 992px) {
  .cid-vicOSKJ6Ef .navbar-caption {
    border-right: none;
  }
}
.cid-vicOSKJ6Ef .navbar-caption:hover {
  color: #ff6900 !important;
}
@media (max-width: 767px) {
  .cid-vicOSKJ6Ef .nav-dropdown {
    padding-bottom: 0.5rem;
  }
}
.cid-vicOSKJ6Ef .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0rem;
  transition: .3s all;
}
.cid-vicOSKJ6Ef .container,
.cid-vicOSKJ6Ef .container-fluid {
  display: flex;
  min-height: 75px;
  padding: 0 32px;
  flex-wrap: nowrap;
  left: 0;
  right: 0;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: flex-end;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  margin-top: .5rem;
  background-color: #fafafa;
  backdrop-filter: blur(8px);
  box-shadow: inset 0 10px 8px 0 #ffffff, inset 0 -5px 10px -4px #cccccc, 0 10px 10px -5px #cccccc;
}
@media (max-width: 992px) {
  .cid-vicOSKJ6Ef .container,
  .cid-vicOSKJ6Ef .container-fluid {
    padding-right: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-vicOSKJ6Ef .container,
  .cid-vicOSKJ6Ef .container-fluid {
    width: 90%;
    height: 56px !important;
    padding-right: 1rem;
    padding-left: 1rem;
    margin-top: 0rem;
  }
}
.cid-vicOSKJ6Ef .container-fluid {
  margin-left: 40px;
  margin-right: 40px;
}
@media (max-width: 992px) {
  .cid-vicOSKJ6Ef .container-fluid {
    margin-left: 20px;
    margin-right: 20px;
  }
}
.cid-vicOSKJ6Ef .iconfont-wrapper {
  color: #0f172a !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
  transition: all 0.3s ease-in-out;
}
.cid-vicOSKJ6Ef .iconfont-wrapper:hover {
  opacity: .6;
}
.cid-vicOSKJ6Ef .dropdown-menu {
  flex-wrap: wrap;
  flex-direction: column;
  max-width: 100%;
  padding: 0 !important;
  border-radius: 1rem;
  transition: .3s all !important;
  min-width: auto;
}
.cid-vicOSKJ6Ef .nav-item:focus,
.cid-vicOSKJ6Ef .nav-link:focus {
  outline: none;
}
.cid-vicOSKJ6Ef .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-vicOSKJ6Ef .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-vicOSKJ6Ef .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-vicOSKJ6Ef .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-vicOSKJ6Ef .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-vicOSKJ6Ef .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-vicOSKJ6Ef .navbar {
  min-height: 75px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: transparent !important;
  padding: 0 !important;
  border: none !important;
  box-shadow: none !important;
  border-radius: 0 !important;
}
.cid-vicOSKJ6Ef .navbar.opened {
  transition: all 0.3s;
}
.cid-vicOSKJ6Ef .navbar.opened .container {
  backdrop-filter: none;
}
.cid-vicOSKJ6Ef .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-vicOSKJ6Ef .navbar .navbar-logo img {
  width: auto;
  margin-right: 8px;
}
.cid-vicOSKJ6Ef .navbar .navbar-collapse {
  z-index: 1;
  justify-content: flex-end;
}
.cid-vicOSKJ6Ef .navbar.collapsed {
  justify-content: center;
}
.cid-vicOSKJ6Ef .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-vicOSKJ6Ef .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-vicOSKJ6Ef .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-vicOSKJ6Ef .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-vicOSKJ6Ef .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-vicOSKJ6Ef .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-vicOSKJ6Ef .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-vicOSKJ6Ef .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-vicOSKJ6Ef .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 767px) {
  .cid-vicOSKJ6Ef .navbar {
    min-height: 72px;
  }
  .cid-vicOSKJ6Ef .navbar .navbar-logo img {
    height: 2rem !important;
  }
}
@media (max-width: 991px) {
  .cid-vicOSKJ6Ef .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-vicOSKJ6Ef .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-vicOSKJ6Ef .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-vicOSKJ6Ef .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-vicOSKJ6Ef .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-vicOSKJ6Ef .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-vicOSKJ6Ef .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 10px;
  }
  .cid-vicOSKJ6Ef .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-vicOSKJ6Ef .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-vicOSKJ6Ef .navbar.navbar-short .navbar-logo img {
  height: 2rem;
}
.cid-vicOSKJ6Ef .dropdown-item.active,
.cid-vicOSKJ6Ef .dropdown-item:active {
  background-color: transparent;
}
.cid-vicOSKJ6Ef .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-vicOSKJ6Ef .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-vicOSKJ6Ef .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-vicOSKJ6Ef .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: transparent;
  top: 2rem;
}
@media (max-width: 992px) {
  .cid-vicOSKJ6Ef .navbar.navbar-expand-lg .dropdown .dropdown-menu {
    top: 0;
  }
}
.cid-vicOSKJ6Ef .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 95%;
  transform: none;
  top: 0;
}
.cid-vicOSKJ6Ef .navbar .dropdown.open > .dropdown-menu {
  display: flex;
}
.cid-vicOSKJ6Ef ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-vicOSKJ6Ef .navbar-buttons {
  text-align: center;
  min-width: 140px;
}
@media (max-width: 992px) {
  .cid-vicOSKJ6Ef .navbar-buttons {
    text-align: left;
  }
}
.cid-vicOSKJ6Ef button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-vicOSKJ6Ef button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #0f172a;
}
.cid-vicOSKJ6Ef button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-vicOSKJ6Ef button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-vicOSKJ6Ef button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-vicOSKJ6Ef button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-vicOSKJ6Ef nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-vicOSKJ6Ef nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-vicOSKJ6Ef nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-vicOSKJ6Ef nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-vicOSKJ6Ef .navbar-dropdown {
  padding: 0 1rem;
}
.cid-vicOSKJ6Ef a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-vicOSKJ6Ef .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media (max-width: 992px) {
  .cid-vicOSKJ6Ef .icons-menu {
    justify-content: flex-start;
    margin-bottom: .5rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-vicOSKJ6Ef .navbar {
    height: 75px;
  }
  .cid-vicOSKJ6Ef .navbar.opened {
    height: auto;
  }
  .cid-vicOSKJ6Ef .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-vicOSKJ6Ef .navbar .dropdown > .dropdown-menu {
  display: none;
  width: max-content;
  max-width: 500px !important;
  transform: translateX(-50%);
  top: calc(100% + 20px);
  left: 50%;
}
.cid-vicOSKJ6Ef .navbar .dropdown > .dropdown-menu .dropdown-item {
  line-height: 1 !important;
  margin-bottom: 9px !important;
}
@media (max-width: 992px) {
  .cid-vicOSKJ6Ef .navbar .dropdown > .dropdown-menu .dropdown-item {
    margin-bottom: 0;
  }
}
.cid-vicOSKJ6Ef .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item {
  align-items: center;
  display: flex;
  height: max-content !important;
  min-height: max-content !important;
}
.cid-vicOSKJ6Ef .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item::after {
  display: inline-block;
  position: static;
  margin-left: 0.6rem;
  margin-top: 0;
  margin-right: 0;
  margin-bottom: 0;
  transition: .3s all;
  transform: rotate(-90deg);
}
.cid-vicOSKJ6Ef .navbar .dropdown > .dropdown-menu .dropdown.open .dropdown-item::after {
  transform: rotate(0deg);
}
.cid-vicOSKJ6Ef .mbr-section-btn {
  margin: -0.6rem -0.6rem;
}
@media (max-width: 992px) {
  .cid-vicOSKJ6Ef .mbr-section-btn {
    margin-top: 12px;
  }
}
.cid-vicOSKJ6Ef .mbr-section-btn .btn {
  white-space: nowrap;
  width: auto;
  padding: 14px 18px;
}
.cid-vicOSKJ6Ef .mbr-section-btn .btn:hover,
.cid-vicOSKJ6Ef .mbr-section-btn .btn:focus {
  transform: none !important;
}
@media (max-width: 575px) {
  .cid-vicOSKJ6Ef .mbr-section-btn .btn {
    width: auto !important;
  }
}
.cid-vicOSKJ6Ef .navbar-toggler {
  margin-left: 12px;
  margin-right: 8px;
  order: 1000;
}
@media (max-width: 991px) {
  .cid-vicOSKJ6Ef .navbar-brand {
    margin-right: auto;
  }
  .cid-vicOSKJ6Ef .navbar-collapse {
    z-index: -1 !important;
    position: absolute;
    top: 110%;
    left: 0;
    width: 100%;
    padding: 1rem;
    border-radius: 1.5rem;
    background: #fafafa;
    backdrop-filter: blur(8px);
  }
  .cid-vicOSKJ6Ef .navbar-nav .nav-item .nav-link::after {
    margin-left: 10px;
  }
  .cid-vicOSKJ6Ef .navbar-nav .dropdown-item:hover {
    color: #ff6900;
  }
  .cid-vicOSKJ6Ef .navbar .dropdown > .dropdown-menu {
    max-width: 100% !important;
    transform: translateX(0);
    top: 10px;
    left: 0;
    padding: 0 !important;
    border-radius: 1rem;
    background-color: transparent !important;
  }
  .cid-vicOSKJ6Ef .navbar .dropdown > .dropdown-menu .dropdown-item {
    padding: 10px 10px 10px 10px !important;
    line-height: 1 !important;
    margin-bottom: 4px !important;
  }
  .cid-vicOSKJ6Ef .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item {
    align-items: center;
    display: flex;
    height: max-content !important;
    min-height: max-content !important;
  }
  .cid-vicOSKJ6Ef .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item::after {
    display: inline-block;
    position: static;
    margin-left: 0.5rem;
    margin-top: 0;
    margin-right: 0;
    margin-bottom: 0;
    transition: .3s all;
    transform: rotate(0deg);
  }
  .cid-vicOSKJ6Ef .navbar .dropdown > .dropdown-menu .dropdown.open .dropdown-item::after {
    transform: rotate(180deg);
  }
  .cid-vicOSKJ6Ef .navbar .dropdown > .dropdown-menu .dropdown-submenu {
    position: static;
    width: 100%;
    max-width: 100% !important;
    transform: translateX(0) !important;
    top: 0;
    left: 0;
    padding: 8px !important;
    padding-left: 0 !important;
    margin-left: 0;
    border-radius: 1rem;
    background-color: transparent;
  }
  .cid-vicOSKJ6Ef .navbar .dropdown.open > .dropdown-menu {
    display: flex !important;
    flex-direction: column;
    align-items: flex-start;
  }
}
@media (max-width: 575px) {
  .cid-vicOSKJ6Ef .navbar-collapse {
    padding: 1rem;
  }
}
.cid-vicPoJof1B {
  background-image: url("../../../assets/images/leas-munoz-meco-servicio-a-domicilio-de-lena-11-1500x841.jpg");
}
.cid-vicPoJof1B .mbr-fallback-image.disabled {
  display: none;
}
.cid-vicPoJof1B .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vicPoJof1B .content-wrapper .mbr-label {
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .cid-vicPoJof1B .content-wrapper .mbr-label {
    margin-bottom: 40px;
  }
}
.cid-vicPoJof1B .content-wrapper .mbr-section-title {
  margin-bottom: 20px;
}
.cid-vicPoJof1B .content-wrapper .text-wrapper .mbr-text {
  display: inline-block;
  width: 40%;
  margin-bottom: 14px;
}
@media (max-width: 1440px) {
  .cid-vicPoJof1B .content-wrapper .text-wrapper .mbr-text {
    width: 50%;
  }
}
@media (max-width: 992px) {
  .cid-vicPoJof1B .content-wrapper .text-wrapper .mbr-text {
    width: 100%;
  }
}
.cid-vicPoJof1B .mbr-label {
  color: #ffffff;
}
.cid-vicPoJof1B .mbr-section-title {
  color: #ffffff;
}
.cid-vicPoJof1B .mbr-text {
  color: #ffffff;
}
.cid-vicOSM3JEH {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-vicOSM3JEH .mbr-fallback-image.disabled {
  display: none;
}
.cid-vicOSM3JEH .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vicOSM3JEH .row {
  justify-content: center;
}
.cid-vicOSM3JEH .text-wrapper .mbr-text {
  display: inline-block;
  width: 60%;
  margin-bottom: 30px;
}
@media (max-width: 1440px) {
  .cid-vicOSM3JEH .text-wrapper .mbr-text {
    width: 80%;
  }
}
@media (max-width: 992px) {
  .cid-vicOSM3JEH .text-wrapper .mbr-text {
    width: 100%;
  }
}
.cid-vicOSM3JEH .mbr-text {
  color: #fff7ee;
}
.cid-vicOSM3JEH #divfoto {
  margin-left: auto !important;
  margin-right: auto !important;
  text-align: center !important;
  padding: 1.5rem;
}
.cid-vicOSM3JEH img {
  margin-left: auto !important;
  margin-right: auto !important;
  text-align: center !important;
  width: 100px;
  height: auto;
  border-radius: 0px !important;
}
.cid-vicPZM3DRX {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-vicPZM3DRX .mbr-fallback-image.disabled {
  display: none;
}
.cid-vicPZM3DRX .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vicPZM3DRX .content-wrapper .title-wrapper {
  margin-bottom: 32px;
}
@media (max-width: 992px) {
  .cid-vicPZM3DRX .content-wrapper .title-wrapper {
    margin-bottom: 24px;
  }
}
.cid-vicPZM3DRX .content-wrapper .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-vicPZM3DRX .content-wrapper .title-wrapper .mbr-section-subtitle {
  margin-bottom: 0;
}
.cid-vicPZM3DRX .content-wrapper .text-wrapper .mbr-text {
  display: inline-block;
  margin-bottom: 0;
}
.cid-vicPZM3DRX .content-wrapper .mbr-section-btn {
  margin-top: 24px;
}
.cid-vicPZM3DRX .mbr-section-title {
  color: #111111;
}
.cid-vicPZM3DRX .mbr-section-subtitle {
  color: #ff6d99;
}
.cid-vicPZM3DRX .mbr-text,
.cid-vicPZM3DRX .text-wrapper {
  color: #666666;
}
.cid-vicOSMBL2Y {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-vicOSMBL2Y .mbr-fallback-image.disabled {
  display: none;
}
.cid-vicOSMBL2Y .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-vicOSMBL2Y .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-vicOSMBL2Y .row {
  flex-direction: row-reverse;
}
.cid-vicOSMBL2Y img {
  width: 100%;
}
.cid-vicOSN7HH8 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #fafafa;
}
.cid-vicOSN7HH8 .mbr-fallback-image.disabled {
  display: none;
}
.cid-vicOSN7HH8 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-vicOSN7HH8 .container {
    padding: 0 30px;
  }
}
.cid-vicOSN7HH8 .row {
  padding-bottom: 100px;
}
@media (max-width: 992px) {
  .cid-vicOSN7HH8 .row {
    padding-bottom: 50px;
  }
}
.cid-vicOSN7HH8 .row .border-wrap {
  background-color: #ff6900;
  height: 2px;
  margin-bottom: 100px;
}
@media (max-width: 992px) {
  .cid-vicOSN7HH8 .row .border-wrap {
    margin-bottom: 50px;
  }
}
.cid-vicOSN7HH8 .card {
  justify-content: center;
}
.cid-vicOSN7HH8 .title-wrapper {
  margin-bottom: 20px;
}
.cid-vicOSN7HH8 .title-wrapper .title-wrap {
  display: inline-flex;
}
.cid-vicOSN7HH8 .title-wrapper .title-wrap img {
  object-fit: cover;
  width: 45px;
  height: 45px;
  margin-right: 10px;
}
.cid-vicOSN7HH8 .title-wrapper .title-wrap .mbr-section-title {
  margin-bottom: 0;
}
.cid-vicOSN7HH8 .nav-wrapper {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}
.cid-vicOSN7HH8 .nav-wrapper .list {
  display: inline-flex;
  flex-wrap: wrap;
  margin: 0;
  padding: 0;
  list-style-type: none;
}
.cid-vicOSN7HH8 .nav-wrapper .list .item-wrap {
  position: relative;
  margin: 0 50px 10px 0;
  cursor: pointer;
}
.cid-vicOSN7HH8 .nav-wrapper .list .item-wrap:hover::before,
.cid-vicOSN7HH8 .nav-wrapper .list .item-wrap:focus::before {
  width: 100%;
}
.cid-vicOSN7HH8 .nav-wrapper .list .item-wrap::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  width: 0;
  background-color: #144031;
  transition: all .3s ease;
}
.cid-vicOSN7HH8 .mbr-copy {
  margin-bottom: 0;
  color: #144031;
}
.cid-vicOSN7HH8 .mbr-section-title {
  color: #144031;
}
.cid-vicOSN7HH8 .list {
  color: #144031;
}
.cid-vicQffIRlj {
  z-index: 1000;
  width: 100%;
  position: relative;
}
.cid-vicQffIRlj .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;
}
@media (max-width: 767px) {
  .cid-vicQffIRlj .navbar-toggler {
    transform: scale(0.8);
  }
}
.cid-vicQffIRlj .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-vicQffIRlj .navbar-brand img {
  max-width: 100%;
  max-height: 100%;
  object-fit: cover;
}
.cid-vicQffIRlj .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-vicQffIRlj .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-vicQffIRlj .navbar-nav {
  margin: auto;
  margin-left: 0;
  margin-left: auto;
}
.cid-vicQffIRlj .navbar-nav .nav-item {
  padding: 0 !important;
  transition: .3s all !important;
}
@media (max-width: 992px) {
  .cid-vicQffIRlj .navbar-nav .nav-item {
    padding-left: 0 !important;
  }
}
.cid-vicQffIRlj .navbar-nav .nav-item .nav-link {
  position: relative;
  padding: 0 !important;
  margin: 4px 10px !important;
  transition: .3s all !important;
  font-weight: 400;
}
@media (max-width: 992px) {
  .cid-vicQffIRlj .navbar-nav .nav-item .nav-link {
    padding: 10px 0 !important;
    margin-left: 0 !important;
  }
}
.cid-vicQffIRlj .navbar-nav .nav-item .nav-link::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px !important;
  background-color: #ff6900;
  transform: translateY(-2px);
  opacity: 0;
  transition: all 0.3s ease;
}
.cid-vicQffIRlj .navbar-nav .nav-item .nav-link:hover {
  color: #ff6900 !important;
}
@media (max-width: 992px) {
  .cid-vicQffIRlj .navbar-nav .nav-item .nav-link:hover {
    background-color: transparent;
  }
}
.cid-vicQffIRlj .navbar-nav .nav-item .nav-link:hover::before {
  transform: translateY(0);
  opacity: 1;
}
.cid-vicQffIRlj .navbar-nav .open .nav-link::after {
  transform: rotate(180deg);
}
@media (min-width: 992px) {
  .cid-vicQffIRlj .navbar-nav .open .nav-link::before {
    content: "";
    width: 100%;
    height: 20px;
    top: 100%;
    background: transparent;
    position: absolute;
  }
}
.cid-vicQffIRlj .navbar-nav .dropdown-item {
  padding: 12px !important;
  margin: 0 8px !important;
  transition: .3s all !important;
  background: #fafafa;
  font-weight: 400;
}
@media (max-width: 992px) {
  .cid-vicQffIRlj .navbar-nav .dropdown-item {
    margin: 0 8px 0 0 !important;
  }
}
.cid-vicQffIRlj .navbar-nav .dropdown-item:hover {
  color: #ff6900;
}
.cid-vicQffIRlj .nav-link {
  width: fit-content;
  position: relative;
}
.cid-vicQffIRlj .navbar-logo {
  padding-left: 0;
  margin: 0 !important;
  border-radius: 5px !important;
}
@media (max-width: 767px) {
  .cid-vicQffIRlj .navbar-logo {
    padding-left: 0;
  }
}
.cid-vicQffIRlj .navbar-caption {
  padding-left: 0;
  padding-right: 20px;
  font-weight: 700;
}
@media (max-width: 992px) {
  .cid-vicQffIRlj .navbar-caption {
    border-right: none;
  }
}
.cid-vicQffIRlj .navbar-caption:hover {
  color: #ff6900 !important;
}
@media (max-width: 767px) {
  .cid-vicQffIRlj .nav-dropdown {
    padding-bottom: 0.5rem;
  }
}
.cid-vicQffIRlj .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0rem;
  transition: .3s all;
}
.cid-vicQffIRlj .container,
.cid-vicQffIRlj .container-fluid {
  display: flex;
  min-height: 75px;
  padding: 0 32px;
  flex-wrap: nowrap;
  left: 0;
  right: 0;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: flex-end;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  margin-top: .5rem;
  background-color: #fafafa;
  backdrop-filter: blur(8px);
  box-shadow: inset 0 10px 8px 0 #ffffff, inset 0 -5px 10px -4px #cccccc, 0 10px 10px -5px #cccccc;
}
@media (max-width: 992px) {
  .cid-vicQffIRlj .container,
  .cid-vicQffIRlj .container-fluid {
    padding-right: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-vicQffIRlj .container,
  .cid-vicQffIRlj .container-fluid {
    width: 90%;
    height: 56px !important;
    padding-right: 1rem;
    padding-left: 1rem;
    margin-top: 0rem;
  }
}
.cid-vicQffIRlj .container-fluid {
  margin-left: 40px;
  margin-right: 40px;
}
@media (max-width: 992px) {
  .cid-vicQffIRlj .container-fluid {
    margin-left: 20px;
    margin-right: 20px;
  }
}
.cid-vicQffIRlj .iconfont-wrapper {
  color: #0f172a !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
  transition: all 0.3s ease-in-out;
}
.cid-vicQffIRlj .iconfont-wrapper:hover {
  opacity: .6;
}
.cid-vicQffIRlj .dropdown-menu {
  flex-wrap: wrap;
  flex-direction: column;
  max-width: 100%;
  padding: 0 !important;
  border-radius: 1rem;
  transition: .3s all !important;
  min-width: auto;
}
.cid-vicQffIRlj .nav-item:focus,
.cid-vicQffIRlj .nav-link:focus {
  outline: none;
}
.cid-vicQffIRlj .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-vicQffIRlj .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-vicQffIRlj .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-vicQffIRlj .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-vicQffIRlj .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-vicQffIRlj .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-vicQffIRlj .navbar {
  min-height: 75px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: transparent !important;
  padding: 0 !important;
  border: none !important;
  box-shadow: none !important;
  border-radius: 0 !important;
}
.cid-vicQffIRlj .navbar.opened {
  transition: all 0.3s;
}
.cid-vicQffIRlj .navbar.opened .container {
  backdrop-filter: none;
}
.cid-vicQffIRlj .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-vicQffIRlj .navbar .navbar-logo img {
  width: auto;
  margin-right: 8px;
}
.cid-vicQffIRlj .navbar .navbar-collapse {
  z-index: 1;
  justify-content: flex-end;
}
.cid-vicQffIRlj .navbar.collapsed {
  justify-content: center;
}
.cid-vicQffIRlj .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-vicQffIRlj .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-vicQffIRlj .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-vicQffIRlj .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-vicQffIRlj .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-vicQffIRlj .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-vicQffIRlj .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-vicQffIRlj .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-vicQffIRlj .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 767px) {
  .cid-vicQffIRlj .navbar {
    min-height: 72px;
  }
  .cid-vicQffIRlj .navbar .navbar-logo img {
    height: 2rem !important;
  }
}
@media (max-width: 991px) {
  .cid-vicQffIRlj .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-vicQffIRlj .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-vicQffIRlj .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-vicQffIRlj .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-vicQffIRlj .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-vicQffIRlj .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-vicQffIRlj .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 10px;
  }
  .cid-vicQffIRlj .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-vicQffIRlj .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-vicQffIRlj .navbar.navbar-short .navbar-logo img {
  height: 2rem;
}
.cid-vicQffIRlj .dropdown-item.active,
.cid-vicQffIRlj .dropdown-item:active {
  background-color: transparent;
}
.cid-vicQffIRlj .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-vicQffIRlj .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-vicQffIRlj .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-vicQffIRlj .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: transparent;
  top: 2rem;
}
@media (max-width: 992px) {
  .cid-vicQffIRlj .navbar.navbar-expand-lg .dropdown .dropdown-menu {
    top: 0;
  }
}
.cid-vicQffIRlj .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 95%;
  transform: none;
  top: 0;
}
.cid-vicQffIRlj .navbar .dropdown.open > .dropdown-menu {
  display: flex;
}
.cid-vicQffIRlj ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-vicQffIRlj .navbar-buttons {
  text-align: center;
  min-width: 140px;
}
@media (max-width: 992px) {
  .cid-vicQffIRlj .navbar-buttons {
    text-align: left;
  }
}
.cid-vicQffIRlj button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-vicQffIRlj button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #0f172a;
}
.cid-vicQffIRlj button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-vicQffIRlj button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-vicQffIRlj button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-vicQffIRlj button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-vicQffIRlj nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-vicQffIRlj nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-vicQffIRlj nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-vicQffIRlj nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-vicQffIRlj .navbar-dropdown {
  padding: 0 1rem;
}
.cid-vicQffIRlj a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-vicQffIRlj .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media (max-width: 992px) {
  .cid-vicQffIRlj .icons-menu {
    justify-content: flex-start;
    margin-bottom: .5rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-vicQffIRlj .navbar {
    height: 75px;
  }
  .cid-vicQffIRlj .navbar.opened {
    height: auto;
  }
  .cid-vicQffIRlj .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-vicQffIRlj .navbar .dropdown > .dropdown-menu {
  display: none;
  width: max-content;
  max-width: 500px !important;
  transform: translateX(-50%);
  top: calc(100% + 20px);
  left: 50%;
}
.cid-vicQffIRlj .navbar .dropdown > .dropdown-menu .dropdown-item {
  line-height: 1 !important;
  margin-bottom: 9px !important;
}
@media (max-width: 992px) {
  .cid-vicQffIRlj .navbar .dropdown > .dropdown-menu .dropdown-item {
    margin-bottom: 0;
  }
}
.cid-vicQffIRlj .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item {
  align-items: center;
  display: flex;
  height: max-content !important;
  min-height: max-content !important;
}
.cid-vicQffIRlj .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item::after {
  display: inline-block;
  position: static;
  margin-left: 0.6rem;
  margin-top: 0;
  margin-right: 0;
  margin-bottom: 0;
  transition: .3s all;
  transform: rotate(-90deg);
}
.cid-vicQffIRlj .navbar .dropdown > .dropdown-menu .dropdown.open .dropdown-item::after {
  transform: rotate(0deg);
}
.cid-vicQffIRlj .mbr-section-btn {
  margin: -0.6rem -0.6rem;
}
@media (max-width: 992px) {
  .cid-vicQffIRlj .mbr-section-btn {
    margin-top: 12px;
  }
}
.cid-vicQffIRlj .mbr-section-btn .btn {
  white-space: nowrap;
  width: auto;
  padding: 14px 18px;
}
.cid-vicQffIRlj .mbr-section-btn .btn:hover,
.cid-vicQffIRlj .mbr-section-btn .btn:focus {
  transform: none !important;
}
@media (max-width: 575px) {
  .cid-vicQffIRlj .mbr-section-btn .btn {
    width: auto !important;
  }
}
.cid-vicQffIRlj .navbar-toggler {
  margin-left: 12px;
  margin-right: 8px;
  order: 1000;
}
@media (max-width: 991px) {
  .cid-vicQffIRlj .navbar-brand {
    margin-right: auto;
  }
  .cid-vicQffIRlj .navbar-collapse {
    z-index: -1 !important;
    position: absolute;
    top: 110%;
    left: 0;
    width: 100%;
    padding: 1rem;
    border-radius: 1.5rem;
    background: #fafafa;
    backdrop-filter: blur(8px);
  }
  .cid-vicQffIRlj .navbar-nav .nav-item .nav-link::after {
    margin-left: 10px;
  }
  .cid-vicQffIRlj .navbar-nav .dropdown-item:hover {
    color: #ff6900;
  }
  .cid-vicQffIRlj .navbar .dropdown > .dropdown-menu {
    max-width: 100% !important;
    transform: translateX(0);
    top: 10px;
    left: 0;
    padding: 0 !important;
    border-radius: 1rem;
    background-color: transparent !important;
  }
  .cid-vicQffIRlj .navbar .dropdown > .dropdown-menu .dropdown-item {
    padding: 10px 10px 10px 10px !important;
    line-height: 1 !important;
    margin-bottom: 4px !important;
  }
  .cid-vicQffIRlj .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item {
    align-items: center;
    display: flex;
    height: max-content !important;
    min-height: max-content !important;
  }
  .cid-vicQffIRlj .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item::after {
    display: inline-block;
    position: static;
    margin-left: 0.5rem;
    margin-top: 0;
    margin-right: 0;
    margin-bottom: 0;
    transition: .3s all;
    transform: rotate(0deg);
  }
  .cid-vicQffIRlj .navbar .dropdown > .dropdown-menu .dropdown.open .dropdown-item::after {
    transform: rotate(180deg);
  }
  .cid-vicQffIRlj .navbar .dropdown > .dropdown-menu .dropdown-submenu {
    position: static;
    width: 100%;
    max-width: 100% !important;
    transform: translateX(0) !important;
    top: 0;
    left: 0;
    padding: 8px !important;
    padding-left: 0 !important;
    margin-left: 0;
    border-radius: 1rem;
    background-color: transparent;
  }
  .cid-vicQffIRlj .navbar .dropdown.open > .dropdown-menu {
    display: flex !important;
    flex-direction: column;
    align-items: flex-start;
  }
}
@media (max-width: 575px) {
  .cid-vicQffIRlj .navbar-collapse {
    padding: 1rem;
  }
}
.cid-vicQfgFmws {
  background-image: url("../../../assets/images/leas-munoz-meco-servicio-a-domicilio-de-lena-32-2000x1336.jpg");
}
.cid-vicQfgFmws .mbr-fallback-image.disabled {
  display: none;
}
.cid-vicQfgFmws .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vicQfgFmws .content-wrapper .mbr-label {
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .cid-vicQfgFmws .content-wrapper .mbr-label {
    margin-bottom: 40px;
  }
}
.cid-vicQfgFmws .content-wrapper .mbr-section-title {
  margin-bottom: 20px;
}
.cid-vicQfgFmws .content-wrapper .text-wrapper .mbr-text {
  display: inline-block;
  width: 40%;
  margin-bottom: 14px;
}
@media (max-width: 1440px) {
  .cid-vicQfgFmws .content-wrapper .text-wrapper .mbr-text {
    width: 50%;
  }
}
@media (max-width: 992px) {
  .cid-vicQfgFmws .content-wrapper .text-wrapper .mbr-text {
    width: 100%;
  }
}
.cid-vicQfgFmws .mbr-label {
  color: #ffffff;
}
.cid-vicQfgFmws .mbr-section-title {
  color: #ffffff;
}
.cid-vicQfgFmws .mbr-text {
  color: #ffffff;
}
.cid-vicQfgFmws .mbr-section-title,
.cid-vicQfgFmws .mbr-section-btn {
  text-align: center;
}
.cid-vicQfhpa6K {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-vicQfhpa6K .mbr-fallback-image.disabled {
  display: none;
}
.cid-vicQfhpa6K .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vicQfhpa6K .row {
  justify-content: center;
}
.cid-vicQfhpa6K .text-wrapper .mbr-text {
  display: inline-block;
  width: 60%;
  margin-bottom: 30px;
}
@media (max-width: 1440px) {
  .cid-vicQfhpa6K .text-wrapper .mbr-text {
    width: 80%;
  }
}
@media (max-width: 992px) {
  .cid-vicQfhpa6K .text-wrapper .mbr-text {
    width: 100%;
  }
}
.cid-vicQfhpa6K .mbr-text {
  color: #fff7ee;
}
.cid-vicQfhpa6K #divfoto {
  margin-left: auto !important;
  margin-right: auto !important;
  text-align: center !important;
  padding: 1.5rem;
}
.cid-vicQfhpa6K img {
  margin-left: auto !important;
  margin-right: auto !important;
  text-align: center !important;
  width: 100px;
  height: auto;
  border-radius: 0px !important;
}
.cid-vicQfiW1qd {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-vicQfiW1qd .mbr-fallback-image.disabled {
  display: none;
}
.cid-vicQfiW1qd .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-vicQfiW1qd .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-vicQfiW1qd .row {
  flex-direction: row-reverse;
}
.cid-vicQfiW1qd img {
  width: 100%;
}
.cid-vicQfjHFZ3 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #fafafa;
}
.cid-vicQfjHFZ3 .mbr-fallback-image.disabled {
  display: none;
}
.cid-vicQfjHFZ3 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-vicQfjHFZ3 .container {
    padding: 0 30px;
  }
}
.cid-vicQfjHFZ3 .row {
  padding-bottom: 100px;
}
@media (max-width: 992px) {
  .cid-vicQfjHFZ3 .row {
    padding-bottom: 50px;
  }
}
.cid-vicQfjHFZ3 .row .border-wrap {
  background-color: #ff6900;
  height: 2px;
  margin-bottom: 100px;
}
@media (max-width: 992px) {
  .cid-vicQfjHFZ3 .row .border-wrap {
    margin-bottom: 50px;
  }
}
.cid-vicQfjHFZ3 .card {
  justify-content: center;
}
.cid-vicQfjHFZ3 .title-wrapper {
  margin-bottom: 20px;
}
.cid-vicQfjHFZ3 .title-wrapper .title-wrap {
  display: inline-flex;
}
.cid-vicQfjHFZ3 .title-wrapper .title-wrap img {
  object-fit: cover;
  width: 45px;
  height: 45px;
  margin-right: 10px;
}
.cid-vicQfjHFZ3 .title-wrapper .title-wrap .mbr-section-title {
  margin-bottom: 0;
}
.cid-vicQfjHFZ3 .nav-wrapper {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}
.cid-vicQfjHFZ3 .nav-wrapper .list {
  display: inline-flex;
  flex-wrap: wrap;
  margin: 0;
  padding: 0;
  list-style-type: none;
}
.cid-vicQfjHFZ3 .nav-wrapper .list .item-wrap {
  position: relative;
  margin: 0 50px 10px 0;
  cursor: pointer;
}
.cid-vicQfjHFZ3 .nav-wrapper .list .item-wrap:hover::before,
.cid-vicQfjHFZ3 .nav-wrapper .list .item-wrap:focus::before {
  width: 100%;
}
.cid-vicQfjHFZ3 .nav-wrapper .list .item-wrap::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  width: 0;
  background-color: #144031;
  transition: all .3s ease;
}
.cid-vicQfjHFZ3 .mbr-copy {
  margin-bottom: 0;
  color: #144031;
}
.cid-vicQfjHFZ3 .mbr-section-title {
  color: #144031;
}
.cid-vicQfjHFZ3 .list {
  color: #144031;
}
