body {
  font-family: Jost;
}
.display-1 {
  font-family: 'Open Sans', sans-serif;
  font-size: 3rem;
  line-height: 1.1;
}
.display-1 > .mbr-iconfont {
  font-size: 3.75rem;
}
.display-2 {
  font-family: 'Open Sans', sans-serif;
  font-size: 2.4rem;
  line-height: 1.1;
}
.display-2 > .mbr-iconfont {
  font-size: 3rem;
}
.display-4 {
  font-family: 'Open Sans', sans-serif;
  font-size: 1.1rem;
  line-height: 1.5;
}
.display-4 > .mbr-iconfont {
  font-size: 1.375rem;
}
.display-5 {
  font-family: 'Open Sans', sans-serif;
  font-size: 1.6rem;
  line-height: 1.5;
}
.display-5 > .mbr-iconfont {
  font-size: 2rem;
}
.display-7 {
  font-family: 'Open Sans', sans-serif;
  font-size: 1.3rem;
  line-height: 1.5;
}
.display-7 > .mbr-iconfont {
  font-size: 1.625rem;
}
/* ---- 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: 2.4rem;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 2.1rem;
    font-size: calc( 1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 1.92rem;
    font-size: calc( 1.49rem + (2.4 - 1.49) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.3 * (1.49rem + (2.4 - 1.49) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 0.88rem;
    font-size: calc( 1.0350000000000001rem + (1.1 - 1.0350000000000001) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.0350000000000001rem + (1.1 - 1.0350000000000001) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 1.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))));
  }
  .display-7 {
    font-size: 1.04rem;
    font-size: calc( 1.105rem + (1.3 - 1.105) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.105rem + (1.3 - 1.105) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* Buttons */
.btn {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-sm {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-md {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-lg {
  padding: 1rem 2.6rem;
  border-radius: 4px;
}
.bg-primary {
  background-color: #e43f3f !important;
}
.bg-success {
  background-color: #cfbe00 !important;
}
.bg-info {
  background-color: #cfbe00 !important;
}
.bg-warning {
  background-color: #ffe161 !important;
}
.bg-danger {
  background-color: #a09300 !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #e43f3f !important;
  border-color: #e43f3f !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus,
.btn-primary.active {
  color: #ffffff !important;
  background-color: #b31919 !important;
  border-color: #b31919 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #b31919 !important;
  border-color: #b31919 !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #ff6666 !important;
  border-color: #ff6666 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus,
.btn-secondary.active {
  color: #ffffff !important;
  background-color: #ff0f0f !important;
  border-color: #ff0f0f !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #ff0f0f !important;
  border-color: #ff0f0f !important;
}
.btn-info,
.btn-info:active {
  background-color: #cfbe00 !important;
  border-color: #cfbe00 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus,
.btn-info.active {
  color: #ffffff !important;
  background-color: #786e00 !important;
  border-color: #786e00 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #786e00 !important;
  border-color: #786e00 !important;
}
.btn-success,
.btn-success:active {
  background-color: #cfbe00 !important;
  border-color: #cfbe00 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus,
.btn-success.active {
  color: #ffffff !important;
  background-color: #786e00 !important;
  border-color: #786e00 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #786e00 !important;
  border-color: #786e00 !important;
}
.btn-warning,
.btn-warning:active {
  background-color: #ffe161 !important;
  border-color: #ffe161 !important;
  color: #614f00 !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus,
.btn-warning.active {
  color: #0a0800 !important;
  background-color: #ffd10a !important;
  border-color: #ffd10a !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #614f00 !important;
  background-color: #ffd10a !important;
  border-color: #ffd10a !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #a09300 !important;
  border-color: #a09300 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus,
.btn-danger.active {
  color: #ffffff !important;
  background-color: #494300 !important;
  border-color: #494300 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #494300 !important;
  border-color: #494300 !important;
}
.btn-white,
.btn-white:active {
  background-color: #fafafa !important;
  border-color: #fafafa !important;
  color: #7a7a7a !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus,
.btn-white.active {
  color: #4f4f4f !important;
  background-color: #cfcfcf !important;
  border-color: #cfcfcf !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-white.disabled,
.btn-white:disabled {
  color: #7a7a7a !important;
  background-color: #cfcfcf !important;
  border-color: #cfcfcf !important;
}
.btn-black,
.btn-black:active {
  background-color: #232323 !important;
  border-color: #232323 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-black:hover,
.btn-black:focus,
.btn-black.focus,
.btn-black.active {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-black.disabled,
.btn-black:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-primary-outline,
.btn-primary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #e43f3f;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #b31919 !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: #e43f3f !important;
  border-color: #e43f3f !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ff6666;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #ff0f0f !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #ff6666 !important;
  border-color: #ff6666 !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #cfbe00;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #786e00 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #cfbe00 !important;
  border-color: #cfbe00 !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #cfbe00;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #786e00 !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: #cfbe00 !important;
  border-color: #cfbe00 !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ffe161;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #ffd10a !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #614f00 !important;
  background-color: #ffe161 !important;
  border-color: #ffe161 !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #a09300;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #494300 !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: #a09300 !important;
  border-color: #a09300 !important;
}
.btn-black-outline,
.btn-black-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #232323;
}
.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.focus,
.btn-black-outline.active {
  color: #000000 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-black-outline.disabled,
.btn-black-outline:disabled {
  color: #ffffff !important;
  background-color: #232323 !important;
  border-color: #232323 !important;
}
.btn-white-outline,
.btn-white-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #fafafa;
}
.btn-white-outline:hover,
.btn-white-outline:focus,
.btn-white-outline.focus,
.btn-white-outline.active {
  color: #cfcfcf !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-white-outline.disabled,
.btn-white-outline:disabled {
  color: #7a7a7a !important;
  background-color: #fafafa !important;
  border-color: #fafafa !important;
}
.text-primary {
  color: #e43f3f !important;
}
.text-secondary {
  color: #ff6666 !important;
}
.text-success {
  color: #cfbe00 !important;
}
.text-info {
  color: #cfbe00 !important;
}
.text-warning {
  color: #ffe161 !important;
}
.text-danger {
  color: #a09300 !important;
}
.text-white {
  color: #fafafa !important;
}
.text-black {
  color: #232323 !important;
}
a.text-primary:hover,
a.text-primary:focus,
a.text-primary.active {
  color: #a61717 !important;
}
a.text-secondary:hover,
a.text-secondary:focus,
a.text-secondary.active {
  color: #ff0000 !important;
}
a.text-success:hover,
a.text-success:focus,
a.text-success.active {
  color: #696000 !important;
}
a.text-info:hover,
a.text-info:focus,
a.text-info.active {
  color: #696000 !important;
}
a.text-warning:hover,
a.text-warning:focus,
a.text-warning.active {
  color: #facb00 !important;
}
a.text-danger:hover,
a.text-danger:focus,
a.text-danger.active {
  color: #3a3500 !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: #e43f3f;
}
.nav-tabs .nav-link:not(.active) {
  color: #232323;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #cfbe00;
}
.alert-warning {
  background-color: #ffe161;
}
.alert-danger {
  background-color: #a09300;
}
.mbr-gallery-filter li.active .btn {
  background-color: #e43f3f;
  border-color: #e43f3f;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
a,
a:hover {
  color: #e43f3f;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #fdf2f2;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #fff79c;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #fff79c;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #ffed21;
}
/* Scroll to top button*/
.scrollToTop_wraper {
  display: none;
}
.form-control {
  font-family: 'Open Sans', sans-serif;
  font-size: 1.1rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control > .mbr-iconfont {
  font-size: 1.375rem;
}
.form-control:hover,
.form-control:focus {
  box-shadow: rgba(0, 0, 0, 0.07) 0px 1px 1px 0px, rgba(0, 0, 0, 0.07) 0px 1px 3px 0px, rgba(0, 0, 0, 0.03) 0px 0px 0px 1px;
  border-color: #e43f3f !important;
}
.form-control:-webkit-input-placeholder {
  font-family: 'Open Sans', sans-serif;
  font-size: 1.1rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control:-webkit-input-placeholder > .mbr-iconfont {
  font-size: 1.375rem;
}
blockquote {
  border-color: #e43f3f;
}
/* Forms */
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #e43f3f;
  color: #ffffff;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #e43f3f;
}
.jq-selectbox .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:after,
.jq-number__spin.plus:after {
  transition: 0.4s;
  border-top-color: #353535;
  border-bottom-color: #353535;
}
.jq-selectbox:hover .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:hover:after,
.jq-number__spin.plus:hover:after {
  border-top-color: #e43f3f;
  border-bottom-color: #e43f3f;
}
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_default,
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_current,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div.xdsoft_current {
  color: #ffffff !important;
  background-color: #e43f3f !important;
  box-shadow: none !important;
}
.xdsoft_datetimepicker .xdsoft_calendar td:hover,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div:hover {
  color: #000000 !important;
  background: #ff6666 !important;
  box-shadow: none !important;
}
.lazy-bg {
  background-image: none !important;
}
.lazy-placeholder:not(section),
.lazy-none {
  display: block;
  position: relative;
  padding-bottom: 56.25%;
  width: 100%;
  height: auto;
}
iframe.lazy-placeholder,
.lazy-placeholder:after {
  content: '';
  position: absolute;
  width: 200px;
  height: 200px;
  background: transparent no-repeat center;
  background-size: contain;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 64 64' xmlns='http://www.w3.org/2000/svg' stroke='%23e43f3f' %3e%3cg fill='none' fill-rule='evenodd'%3e%3cg transform='translate(16 16)' stroke-width='2'%3e%3ccircle stroke-opacity='.5' cx='16' cy='16' r='16'/%3e%3cpath d='M32 16c0-9.94-8.06-16-16-16'%3e%3canimateTransform attributeName='transform' type='rotate' from='0 16 16' to='360 16 16' dur='1s' repeatCount='indefinite'/%3e%3c/path%3e%3c/g%3e%3c/g%3e%3c/svg%3e");
}
section.lazy-placeholder:after {
  opacity: 0.5;
}
body {
  overflow-x: hidden;
}
a {
  transition: color 0.6s;
}
.cid-tDFS9ebR0L {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tDFS9ebR0L nav.navbar {
  position: fixed;
}
.cid-tDFS9ebR0L .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tDFS9ebR0L .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tDFS9ebR0L .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tDFS9ebR0L .dropdown-item:hover,
.cid-tDFS9ebR0L .dropdown-item:focus {
  background: #e43f3f !important;
  color: white !important;
}
.cid-tDFS9ebR0L .dropdown-item:hover span {
  color: white;
}
.cid-tDFS9ebR0L .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tDFS9ebR0L .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tDFS9ebR0L .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tDFS9ebR0L .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tDFS9ebR0L .nav-link {
  position: relative;
}
.cid-tDFS9ebR0L .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tDFS9ebR0L .container {
    flex-wrap: wrap;
  }
}
.cid-tDFS9ebR0L .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tDFS9ebR0L .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-tDFS9ebR0L .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tDFS9ebR0L .dropdown-menu,
.cid-tDFS9ebR0L .navbar.opened {
  background: #cfbe00 !important;
}
.cid-tDFS9ebR0L .nav-item:focus,
.cid-tDFS9ebR0L .nav-link:focus {
  outline: none;
}
.cid-tDFS9ebR0L .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tDFS9ebR0L .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tDFS9ebR0L .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tDFS9ebR0L .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tDFS9ebR0L .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tDFS9ebR0L .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tDFS9ebR0L .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #cfbe00;
}
.cid-tDFS9ebR0L .navbar.opened {
  transition: all 0.3s;
}
.cid-tDFS9ebR0L .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tDFS9ebR0L .navbar .navbar-logo img {
  width: auto;
}
.cid-tDFS9ebR0L .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tDFS9ebR0L .navbar.collapsed {
  justify-content: center;
}
.cid-tDFS9ebR0L .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tDFS9ebR0L .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-tDFS9ebR0L .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tDFS9ebR0L .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tDFS9ebR0L .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-tDFS9ebR0L .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tDFS9ebR0L .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tDFS9ebR0L .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tDFS9ebR0L .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tDFS9ebR0L .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tDFS9ebR0L .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tDFS9ebR0L .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tDFS9ebR0L .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-tDFS9ebR0L .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tDFS9ebR0L .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tDFS9ebR0L .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tDFS9ebR0L .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tDFS9ebR0L .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tDFS9ebR0L .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-tDFS9ebR0L .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-tDFS9ebR0L .navbar.navbar-short {
  min-height: 60px;
}
.cid-tDFS9ebR0L .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tDFS9ebR0L .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tDFS9ebR0L .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tDFS9ebR0L .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tDFS9ebR0L .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tDFS9ebR0L .dropdown-item.active,
.cid-tDFS9ebR0L .dropdown-item:active {
  background-color: transparent;
}
.cid-tDFS9ebR0L .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tDFS9ebR0L .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tDFS9ebR0L .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tDFS9ebR0L .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #cfbe00;
}
.cid-tDFS9ebR0L .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tDFS9ebR0L .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tDFS9ebR0L ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tDFS9ebR0L .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tDFS9ebR0L button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tDFS9ebR0L button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-tDFS9ebR0L button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tDFS9ebR0L button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tDFS9ebR0L button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tDFS9ebR0L button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tDFS9ebR0L nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tDFS9ebR0L nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tDFS9ebR0L nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tDFS9ebR0L nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tDFS9ebR0L .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tDFS9ebR0L a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tDFS9ebR0L .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tDFS9ebR0L .navbar {
    height: 70px;
  }
  .cid-tDFS9ebR0L .navbar.opened {
    height: auto;
  }
  .cid-tDFS9ebR0L .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tDFSaW2E4h {
  padding-top: 0;
  padding-bottom: 0;
  background-color: #fafafa;
}
.cid-tDFSaW2E4h .carousel {
  width: 100%;
}
.cid-tDFSaW2E4h .carousel-inner {
  display: flex;
  align-content: center;
  align-items: center;
}
.cid-tDFSaW2E4h .carousel-item img {
  height: 100vh;
  object-fit: cover;
}
.cid-tDFSaW2E4h .carousel-caption {
  bottom: 40px;
}
.cid-tDFSaW2E4h .mobi-mbri-arrow-next {
  margin-left: 5px;
}
.cid-tDFSaW2E4h .mobi-mbri-arrow-prev {
  margin-right: 5px;
}
.cid-tDFSaW2E4h .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
.cid-tDFSaW2E4h .item-wrapper {
  width: 100%;
}
@media (max-width: 767px) {
  .cid-tDFSaW2E4h .container .carousel-control {
    margin-bottom: 0;
  }
  .cid-tDFSaW2E4h .content-slider-wrap {
    width: 100% !important;
  }
}
.cid-tDFSaW2E4h .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-tDFSaW2E4h .carousel-control {
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-tDFSaW2E4h .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tDFSaW2E4h .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-tDFSaW2E4h .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-tDFSaW2E4h .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem !important;
}
.cid-tDFSaW2E4h .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-tDFSaW2E4h .carousel-indicators li.active,
.cid-tDFSaW2E4h .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-tDFSaW2E4h .carousel-indicators li::after,
.cid-tDFSaW2E4h .carousel-indicators li::before {
  content: none;
}
.cid-tDFSaW2E4h .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-tDFSaW2E4h .carousel-indicators {
    display: none !important;
  }
}
.cid-tDG0RyBEAw {
  padding-top: 6rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tDG0RyBEAw .mbr-fallback-image.disabled {
  display: none;
}
.cid-tDG0RyBEAw .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-tDG0RyBEAw .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tDG0RyBEAw .row {
  flex-direction: row-reverse;
}
.cid-tDG0RyBEAw img {
  width: 100%;
}
.cid-tDGauVVYsz {
  padding-top: 5rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-tDGauVVYsz .mbr-fallback-image.disabled {
  display: none;
}
.cid-tDGauVVYsz .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tDGauVVYsz .container-fluid {
  margin: 0;
  padding: 0;
}
@media (max-width: 992px) {
  .cid-tDGauVVYsz .container-fluid {
    padding: 0;
  }
}
.cid-tDGauVVYsz .container-fluid .row {
  padding: 0;
}
.cid-tDGauVVYsz .card-wrapper {
  position: relative;
  padding: 115px;
}
@media (max-width: 1360px) {
  .cid-tDGauVVYsz .card-wrapper {
    padding: 65px;
  }
}
@media (max-width: 992px) {
  .cid-tDGauVVYsz .card-wrapper {
    padding: 35px;
  }
}
@media (max-width: 768px) {
  .cid-tDGauVVYsz .card-wrapper {
    padding: 25px;
  }
}
.cid-tDGauVVYsz .card-wrapper img {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.cid-tDGauVVYsz .card-wrapper .card-text {
  padding: 80px;
  position: relative;
  background-color: #cfbe00;
}
@media (max-width: 1360px) {
  .cid-tDGauVVYsz .card-wrapper .card-text {
    padding: 55px;
  }
}
@media (max-width: 992px) {
  .cid-tDGauVVYsz .card-wrapper .card-text {
    padding: 30px;
  }
}
.cid-tDGauVVYsz .card-wrapper .card-text .icon-wrapper .mbr-card-icon {
  display: inline;
  font-size: 41px;
  margin-bottom: 11px;
}
.cid-tDGauVVYsz .card-wrapper .card-text .mbr-card-text {
  margin-bottom: 24px;
}
.cid-tDGauVVYsz .card-wrapper .card-text .card-name {
  margin-bottom: 24px;
}
.cid-tDGauVVYsz .card-wrapper .card-text .card-role {
  margin-bottom: 0;
}
.cid-tDGauVVYsz .main-wrap {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 32px 130px 42px 110px;
  height: 100%;
}
@media (max-width: 1360px) {
  .cid-tDGauVVYsz .main-wrap {
    padding: 32px 60px 42px;
  }
}
@media (max-width: 992px) {
  .cid-tDGauVVYsz .main-wrap {
    padding: 32px 25px 0;
  }
}
.cid-tDGauVVYsz .main-wrap .title-wrapper .mbr-number {
  margin-bottom: 11px;
}
.cid-tDGauVVYsz .main-wrap .title-wrapper .mbr-section-title {
  margin-bottom: 30px;
}
.cid-tDGauVVYsz .main-wrap .text-wrapper .mbr-text {
  margin-bottom: 30px;
}
.cid-tDGauVVYsz .main-wrap .text-wrapper .mbr-section-btn .btn {
  background-image: linear-gradient(99deg, rgba(255, 255, 255, 0) 30%, #ffffff 100%), radial-gradient(circle at 50% 50%, #ffffff 0, rgba(255, 255, 255, 0) 70%);
  color: #000000 !important;
}
.cid-tDGauVVYsz .mbr-number {
  color: #000000;
}
.cid-tDGauVVYsz .mbr-section-title {
  color: #000000;
}
.cid-tDGauVVYsz .mbr-text {
  color: #b6b6b6;
}
.cid-tDGauVVYsz .mbr-card-text,
.cid-tDGauVVYsz .mbr-card-icon {
  color: #b6b6b6;
}
.cid-tDGauVVYsz .card-name {
  color: #000000;
}
.cid-tDGauVVYsz .card-role {
  color: #000000;
}
.cid-tDGauVVYsz .mbr-text,
.cid-tDGauVVYsz .mbr-section-btn {
  color: #000000;
}
.cid-tDGauVVYsz .mbr-card-text,
.cid-tDGauVVYsz .icon-wrapper,
.cid-tDGauVVYsz .mbr-card-icon {
  color: #000000;
}
.cid-tE3f32hJxD {
  padding-top: 6rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-tE3f32hJxD .mbr-fallback-image.disabled {
  display: none;
}
.cid-tE3f32hJxD .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tE3f32hJxD .video-wrapper iframe {
  width: 100%;
}
.cid-tE3f32hJxD .mbr-section-title,
.cid-tE3f32hJxD .mbr-section-subtitle,
.cid-tE3f32hJxD .mbr-text {
  text-align: center;
}
.cid-tE3f32hJxD .mbr-text {
  color: #000000;
}
.cid-tE3f32hJxD .mbr-section-title {
  color: #000000;
}
.cid-tE3f32hJxD .mbr-section-subtitle {
  color: #000000;
}
.cid-tDGfvEBuma {
  padding-top: 6rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-tDGfvEBuma .mbr-fallback-image.disabled {
  display: none;
}
.cid-tDGfvEBuma .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tDGfvEBuma .link-align {
  width: 100%;
}
@media (max-width: 767px) {
  .cid-tDGfvEBuma .text-wrapper {
    text-align: center;
  }
}
@media (min-width: 992px) {
  .cid-tDGfvEBuma .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-tDGfvEBuma .link-wrap {
  width: fit-content;
  display: inline-block;
  overflow: hidden;
}
.cid-tDGfvEBuma .link-wrap:hover svg {
  animation-duration: 1s;
  animation-name: svg;
}
.cid-tDGfvEBuma svg {
  transition: all 0.3s;
  width: 100%;
  margin-top: -20px;
}
.cid-tDGfvEBuma g {
  fill: #e43f3f;
}
@keyframes svg {
  0% {
    clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
  }
  50% {
    clip-path: polygon(100% 0%, 100% 0%, 100% 100%, 100% 100%);
  }
  51% {
    clip-path: polygon(0% 0%, 0% 0%, 0% 100%, 0% 100%);
  }
  100% {
    clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
  }
}
.cid-tDGfvEBuma .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-tDGfvEBuma .image-wrapper {
    padding: 1rem;
  }
}
.cid-tDGfvEBuma .mbr-text,
.cid-tDGfvEBuma .mbr-section-btn {
  color: #000000;
}
.cid-tE3eQv5jAX {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-tE3eQv5jAX .row {
  align-items: stretch;
  justify-content: center;
}
.cid-tE3eQv5jAX .row .img-item {
  display: -webkit-flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  overflow: hidden;
}
.cid-tE3eQv5jAX .row .img-item img {
  width: 100%;
  object-fit: cover;
  min-height: 1px;
  transition: all 1s;
}
.cid-tE3eQv5jAX .row .img-item img:hover {
  transform: scale(1.1);
}
.cid-tE3eQv5jAX P {
  color: #000000;
}
.cid-tE3u6nY0To {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-tE3u6nY0To .row {
  align-items: stretch;
  justify-content: center;
}
.cid-tE3u6nY0To .row .img-item {
  display: -webkit-flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  overflow: hidden;
}
.cid-tE3u6nY0To .row .img-item img {
  width: 100%;
  object-fit: cover;
  min-height: 1px;
  transition: all 1s;
}
.cid-tE3u6nY0To .row .img-item img:hover {
  transform: scale(1.1);
}
.cid-tE3u6nY0To P {
  color: #000000;
}
.cid-tE3u79JKmK {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-tE3u79JKmK .row {
  align-items: stretch;
  justify-content: center;
}
.cid-tE3u79JKmK .row .img-item {
  display: -webkit-flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  overflow: hidden;
}
.cid-tE3u79JKmK .row .img-item img {
  width: 100%;
  object-fit: cover;
  min-height: 1px;
  transition: all 1s;
}
.cid-tE3u79JKmK .row .img-item img:hover {
  transform: scale(1.1);
}
.cid-tE3u79JKmK P {
  color: #000000;
}
.cid-tE3u7HhG3F {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-tE3u7HhG3F .row {
  align-items: stretch;
  justify-content: center;
}
.cid-tE3u7HhG3F .row .img-item {
  display: -webkit-flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  overflow: hidden;
}
.cid-tE3u7HhG3F .row .img-item img {
  width: 100%;
  object-fit: cover;
  min-height: 1px;
  transition: all 1s;
}
.cid-tE3u7HhG3F .row .img-item img:hover {
  transform: scale(1.1);
}
.cid-tE3u7HhG3F P {
  color: #000000;
}
.cid-tDGgD4bynA {
  padding-top: 1rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-tDGgD4bynA img,
.cid-tDGgD4bynA .item-img {
  width: 100%;
  height: 100%;
  height: 700px;
  object-fit: cover;
}
.cid-tDGgD4bynA .item:focus,
.cid-tDGgD4bynA span:focus {
  outline: none;
}
.cid-tDGgD4bynA .item-img {
  overflow: hidden;
}
.cid-tDGgD4bynA .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
@media (min-width: 1400px) {
  .cid-tDGgD4bynA .item {
    padding: 0 2rem;
  }
}
.cid-tDGgD4bynA .item-wrapper {
  position: relative;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
.cid-tDGgD4bynA .item-wrapper img {
  transition: all 0.6s;
}
.cid-tDGgD4bynA .item-wrapper:hover img {
  transform: scale(1.05);
}
.cid-tDGgD4bynA .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tDGgD4bynA .mbr-section-title {
  color: #000000;
}
.cid-tDGgD4bynA .mbr-text,
.cid-tDGgD4bynA .mbr-section-btn {
  text-align: left;
}
.cid-tDGgD4bynA .item-title {
  text-align: left;
  color: #000000;
}
.cid-tDGgD4bynA .item-subtitle {
  text-align: left;
  color: #000000;
}
.cid-tDGgD4bynA .mbr-section-subtitle {
  color: #000000;
}
.cid-tE3vrHnal4 {
  padding-top: 6rem;
  padding-bottom: 8rem;
  background-color: #cfc000;
}
.cid-tE3vrHnal4 .svg-top {
  width: 100%;
  position: absolute;
  left: 0;
  top: -48px;
  height: 50px;
  transform-origin: bottom;
  animation: 1.5s ease-in-out infinite alternate svg-wave;
  fill: #e43f3f;
}
.cid-tE3vrHnal4 .svg-top .st0 {
  fill: #cfc000;
}
@media (max-width: 992px) {
  .cid-tE3vrHnal4 .svg-top {
    width: 1000px;
  }
}
@keyframes svg-wave {
  from {
    transform: scaleX(1) scaleY(1.1);
  }
  to {
    transform: scaleX(1) scaleY(1.6);
  }
}
@media (min-width: 1400px) {
  .cid-tE3vrHnal4 .col-12 {
    padding: 0 2rem;
  }
  .cid-tE3vrHnal4 .row {
    margin: 0 -2rem;
  }
}
.cid-tE3vrHnal4 .mbr-text,
.cid-tE3vrHnal4 .mbr-section-btn {
  color: #000000;
  text-align: right;
}
.cid-tE3vrHnal4 .mbr-section-title {
  color: #000000;
  text-align: right;
}
.cid-tE3CSMsKsI {
  padding-top: 6rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-tE3CSMsKsI .row {
  flex-direction: row-reverse;
}
.cid-tE3CSMsKsI .image-wrapper {
  padding: 0 2rem;
}
.cid-tE3CSMsKsI .image-wrapper img {
  width: 100%;
  border-radius: 15px;
}
@media (max-width: 1199px) {
  .cid-tE3CSMsKsI .image-wrapper {
    padding: 0;
    margin-bottom: 3rem;
  }
}
.cid-tE3CSMsKsI .mbr-section-title {
  color: #000000;
  margin-bottom: 1.5rem;
}
.cid-tE3CSMsKsI .mbr-section-subtitle {
  color: #1f1437;
  margin-bottom: 4rem;
}
.cid-tE3CSMsKsI .mbr-text {
  color: #000000;
  margin-bottom: 3rem;
}
@media (min-width: 992px) {
  .cid-tE3CSMsKsI .text-wrapper,
  .cid-tE3CSMsKsI .price {
    padding-left: 4.5rem;
    padding-right: 2rem;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .cid-tE3CSMsKsI .text-wrapper,
  .cid-tE3CSMsKsI .price {
    padding-left: 2.375rem;
  }
}
@media (min-width: 992px) and (max-width: 1099px) {
  .cid-tE3CSMsKsI .text-wrapper,
  .cid-tE3CSMsKsI .price {
    padding-left: 1rem;
  }
}
@media (min-width: 992px) and (max-width: 1030px) {
  .cid-tE3CSMsKsI .text-wrapper,
  .cid-tE3CSMsKsI .price {
    padding-left: 0.8rem;
  }
}
@media (min-width: 992px) and (max-width: 991px) {
  .cid-tE3CSMsKsI .text-wrapper,
  .cid-tE3CSMsKsI .price {
    padding-left: 0;
  }
}
@media (max-width: 991px) {
  .cid-tE3CSMsKsI .content {
    text-align: center;
  }
}
.cid-tE3CSMsKsI .mbr-card-title {
  color: #1f1437;
  margin-bottom: 18px;
}
@media (max-width: 991px) {
  .cid-tE3CSMsKsI .mbr-card-title {
    text-align: start;
  }
}
.cid-tE3CSMsKsI .nutrition {
  max-width: 543px;
  background-color: #f3edf7;
  border-radius: 10px;
  padding: 2.5rem 2rem;
  margin-bottom: 2rem;
  margin-left: 4.5rem;
  margin-right: 2rem;
}
@media (max-width: 1199px) {
  .cid-tE3CSMsKsI .nutrition {
    margin-left: 2.375rem;
  }
}
@media (max-width: 1099px) {
  .cid-tE3CSMsKsI .nutrition {
    margin-left: 1rem;
  }
}
@media (max-width: 1030px) {
  .cid-tE3CSMsKsI .nutrition {
    margin-left: 0.8rem;
  }
}
@media (max-width: 991px) {
  .cid-tE3CSMsKsI .nutrition {
    margin-left: auto;
    margin-right: auto;
  }
}
@media (max-width: 479px) {
  .cid-tE3CSMsKsI .nutrition {
    padding: 1.5rem 1rem;
  }
}
.cid-tE3CSMsKsI .nutrition-head {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid #cd8ad1;
  margin-bottom: 1rem;
}
.cid-tE3CSMsKsI .nutrition-head .numbers {
  margin-bottom: 18px;
}
.cid-tE3CSMsKsI .nutrition-wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
}
@media (max-width: 991px) {
  .cid-tE3CSMsKsI .nutrition-wrap {
    justify-content: center;
  }
}
@media (max-width: 479px) {
  .cid-tE3CSMsKsI .nutrition-wrap {
    flex-wrap: wrap;
  }
}
@media (max-width: 388px) {
  .cid-tE3CSMsKsI .nutrition-wrap {
    width: 100%;
  }
}
.cid-tE3CSMsKsI .nutrition-wrap .nutrition-tile {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}
.cid-tE3CSMsKsI .nutrition-wrap .nutrition-tile:last-child {
  margin-bottom: 0;
  margin-top: 1rem;
}
.cid-tE3CSMsKsI .tile-text-wrap {
  display: flex;
}
.cid-tE3CSMsKsI svg {
  display: inline-block;
  width: 50px;
  height: 38px;
  margin-left: -0.5rem;
  margin-right: 0.6rem;
}
.cid-tE3CSMsKsI svg path {
  fill: #cd8ad1;
}
.cid-tE3CSMsKsI .numbers {
  display: flex;
  align-self: center;
}
.cid-tE3CSMsKsI .mbr-number {
  width: 60px;
  margin-bottom: 0;
}
.cid-tE3CSMsKsI .mbr-number:first-child {
  margin-right: 1rem;
}
.cid-tE3CSMsKsI .mbr-tile-text {
  color: #1f1437;
  margin: 0;
  margin-right: 2rem;
}
@media (max-width: 991px) {
  .cid-tE3CSMsKsI .mbr-tile-text {
    text-align: start;
  }
}
.cid-tE3CSMsKsI .price {
  display: flex;
}
@media (max-width: 991px) {
  .cid-tE3CSMsKsI .price {
    flex-direction: column-reverse;
    justify-content: center;
  }
}
.cid-tE3CSMsKsI .price-text-wrap {
  display: flex;
  align-items: center;
  margin-left: 2rem;
}
@media (max-width: 991px) {
  .cid-tE3CSMsKsI .price-text-wrap {
    margin-left: 0;
    justify-content: center;
    margin-bottom: 1rem;
  }
}
.cid-tE3CSMsKsI .line {
  width: 1px;
  height: 50px;
  margin: 0 20px;
  background-color: #1f1437;
  opacity: 0.5;
  opacity: 0;
}
.cid-tE3CSMsKsI .mbr-price-text {
  color: #1f1437;
  margin-bottom: 0;
}
.cid-tE3CSMsKsI .mbr-price-number {
  color: #1f1437;
  margin-bottom: 0;
}
.cid-tE3CSMsKsI .mbr-amount-text {
  color: #1f1437;
  margin-bottom: 0;
}
.cid-tE3CSMsKsI .mbr-amount-number {
  color: #1f1437;
  margin-bottom: 0;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .cid-tE3CSMsKsI div[class*="col-lg"] {
    width: 100%;
  }
}
.cid-tE3CSMsKsI .mbr-section-btn {
  display: flex;
}
.cid-tE3F0Go1eo {
  padding-top: 6rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-tE3F0Go1eo .image-wrapper {
  padding: 0 2rem;
}
.cid-tE3F0Go1eo .image-wrapper img {
  width: 100%;
  border-radius: 15px;
}
@media (max-width: 1199px) {
  .cid-tE3F0Go1eo .image-wrapper {
    padding: 0;
    margin-bottom: 3rem;
  }
}
.cid-tE3F0Go1eo .mbr-section-title {
  color: #000000;
  margin-bottom: 1.5rem;
}
.cid-tE3F0Go1eo .mbr-section-subtitle {
  color: #1f1437;
  margin-bottom: 4rem;
}
.cid-tE3F0Go1eo .mbr-text {
  color: #000000;
  margin-bottom: 3rem;
}
@media (min-width: 992px) {
  .cid-tE3F0Go1eo .text-wrapper,
  .cid-tE3F0Go1eo .price {
    padding-left: 4.5rem;
    padding-right: 2rem;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .cid-tE3F0Go1eo .text-wrapper,
  .cid-tE3F0Go1eo .price {
    padding-left: 2.375rem;
  }
}
@media (min-width: 992px) and (max-width: 1099px) {
  .cid-tE3F0Go1eo .text-wrapper,
  .cid-tE3F0Go1eo .price {
    padding-left: 1rem;
  }
}
@media (min-width: 992px) and (max-width: 1030px) {
  .cid-tE3F0Go1eo .text-wrapper,
  .cid-tE3F0Go1eo .price {
    padding-left: 0.8rem;
  }
}
@media (min-width: 992px) and (max-width: 991px) {
  .cid-tE3F0Go1eo .text-wrapper,
  .cid-tE3F0Go1eo .price {
    padding-left: 0;
  }
}
@media (max-width: 991px) {
  .cid-tE3F0Go1eo .content {
    text-align: center;
  }
}
.cid-tE3F0Go1eo .mbr-card-title {
  color: #1f1437;
  margin-bottom: 18px;
}
@media (max-width: 991px) {
  .cid-tE3F0Go1eo .mbr-card-title {
    text-align: start;
  }
}
.cid-tE3F0Go1eo .nutrition {
  max-width: 543px;
  background-color: #f3edf7;
  border-radius: 10px;
  padding: 2.5rem 2rem;
  margin-bottom: 2rem;
  margin-left: 4.5rem;
  margin-right: 2rem;
}
@media (max-width: 1199px) {
  .cid-tE3F0Go1eo .nutrition {
    margin-left: 2.375rem;
  }
}
@media (max-width: 1099px) {
  .cid-tE3F0Go1eo .nutrition {
    margin-left: 1rem;
  }
}
@media (max-width: 1030px) {
  .cid-tE3F0Go1eo .nutrition {
    margin-left: 0.8rem;
  }
}
@media (max-width: 991px) {
  .cid-tE3F0Go1eo .nutrition {
    margin-left: auto;
    margin-right: auto;
  }
}
@media (max-width: 479px) {
  .cid-tE3F0Go1eo .nutrition {
    padding: 1.5rem 1rem;
  }
}
.cid-tE3F0Go1eo .nutrition-head {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid #cd8ad1;
  margin-bottom: 1rem;
}
.cid-tE3F0Go1eo .nutrition-head .numbers {
  margin-bottom: 18px;
}
.cid-tE3F0Go1eo .nutrition-wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
}
@media (max-width: 991px) {
  .cid-tE3F0Go1eo .nutrition-wrap {
    justify-content: center;
  }
}
@media (max-width: 479px) {
  .cid-tE3F0Go1eo .nutrition-wrap {
    flex-wrap: wrap;
  }
}
@media (max-width: 388px) {
  .cid-tE3F0Go1eo .nutrition-wrap {
    width: 100%;
  }
}
.cid-tE3F0Go1eo .nutrition-wrap .nutrition-tile {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}
.cid-tE3F0Go1eo .nutrition-wrap .nutrition-tile:last-child {
  margin-bottom: 0;
  margin-top: 1rem;
}
.cid-tE3F0Go1eo .tile-text-wrap {
  display: flex;
}
.cid-tE3F0Go1eo svg {
  display: inline-block;
  width: 50px;
  height: 38px;
  margin-left: -0.5rem;
  margin-right: 0.6rem;
}
.cid-tE3F0Go1eo svg path {
  fill: #cd8ad1;
}
.cid-tE3F0Go1eo .numbers {
  display: flex;
  align-self: center;
}
.cid-tE3F0Go1eo .mbr-number {
  width: 60px;
  margin-bottom: 0;
}
.cid-tE3F0Go1eo .mbr-number:first-child {
  margin-right: 1rem;
}
.cid-tE3F0Go1eo .mbr-tile-text {
  color: #1f1437;
  margin: 0;
  margin-right: 2rem;
}
@media (max-width: 991px) {
  .cid-tE3F0Go1eo .mbr-tile-text {
    text-align: start;
  }
}
.cid-tE3F0Go1eo .price {
  display: flex;
}
@media (max-width: 991px) {
  .cid-tE3F0Go1eo .price {
    flex-direction: column-reverse;
    justify-content: center;
  }
}
.cid-tE3F0Go1eo .price-text-wrap {
  display: flex;
  align-items: center;
  margin-left: 2rem;
}
@media (max-width: 991px) {
  .cid-tE3F0Go1eo .price-text-wrap {
    margin-left: 0;
    justify-content: center;
    margin-bottom: 1rem;
  }
}
.cid-tE3F0Go1eo .line {
  width: 1px;
  height: 50px;
  margin: 0 20px;
  background-color: #1f1437;
  opacity: 0.5;
  opacity: 0;
}
.cid-tE3F0Go1eo .mbr-price-text {
  color: #1f1437;
  margin-bottom: 0;
}
.cid-tE3F0Go1eo .mbr-price-number {
  color: #1f1437;
  margin-bottom: 0;
}
.cid-tE3F0Go1eo .mbr-amount-text {
  color: #1f1437;
  margin-bottom: 0;
}
.cid-tE3F0Go1eo .mbr-amount-number {
  color: #1f1437;
  margin-bottom: 0;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .cid-tE3F0Go1eo div[class*="col-lg"] {
    width: 100%;
  }
}
.cid-tE3F0Go1eo .mbr-section-btn {
  display: flex;
}
.cid-tE3GmVldP9 {
  padding-top: 6rem;
  padding-bottom: 4rem;
  background-color: #ffffff;
}
.cid-tE3GmVldP9 .row {
  flex-direction: row-reverse;
}
.cid-tE3GmVldP9 .image-wrapper {
  padding: 0 2rem;
}
.cid-tE3GmVldP9 .image-wrapper img {
  width: 100%;
  border-radius: 15px;
}
@media (max-width: 1199px) {
  .cid-tE3GmVldP9 .image-wrapper {
    padding: 0;
    margin-bottom: 3rem;
  }
}
.cid-tE3GmVldP9 .mbr-section-title {
  color: #000000;
  margin-bottom: 1.5rem;
}
.cid-tE3GmVldP9 .mbr-section-subtitle {
  color: #1f1437;
  margin-bottom: 4rem;
}
.cid-tE3GmVldP9 .mbr-text {
  color: #000000;
  margin-bottom: 3rem;
}
@media (min-width: 992px) {
  .cid-tE3GmVldP9 .text-wrapper,
  .cid-tE3GmVldP9 .price {
    padding-left: 4.5rem;
    padding-right: 2rem;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .cid-tE3GmVldP9 .text-wrapper,
  .cid-tE3GmVldP9 .price {
    padding-left: 2.375rem;
  }
}
@media (min-width: 992px) and (max-width: 1099px) {
  .cid-tE3GmVldP9 .text-wrapper,
  .cid-tE3GmVldP9 .price {
    padding-left: 1rem;
  }
}
@media (min-width: 992px) and (max-width: 1030px) {
  .cid-tE3GmVldP9 .text-wrapper,
  .cid-tE3GmVldP9 .price {
    padding-left: 0.8rem;
  }
}
@media (min-width: 992px) and (max-width: 991px) {
  .cid-tE3GmVldP9 .text-wrapper,
  .cid-tE3GmVldP9 .price {
    padding-left: 0;
  }
}
@media (max-width: 991px) {
  .cid-tE3GmVldP9 .content {
    text-align: center;
  }
}
.cid-tE3GmVldP9 .mbr-card-title {
  color: #1f1437;
  margin-bottom: 18px;
}
@media (max-width: 991px) {
  .cid-tE3GmVldP9 .mbr-card-title {
    text-align: start;
  }
}
.cid-tE3GmVldP9 .nutrition {
  max-width: 543px;
  background-color: #f3edf7;
  border-radius: 10px;
  padding: 2.5rem 2rem;
  margin-bottom: 2rem;
  margin-left: 4.5rem;
  margin-right: 2rem;
}
@media (max-width: 1199px) {
  .cid-tE3GmVldP9 .nutrition {
    margin-left: 2.375rem;
  }
}
@media (max-width: 1099px) {
  .cid-tE3GmVldP9 .nutrition {
    margin-left: 1rem;
  }
}
@media (max-width: 1030px) {
  .cid-tE3GmVldP9 .nutrition {
    margin-left: 0.8rem;
  }
}
@media (max-width: 991px) {
  .cid-tE3GmVldP9 .nutrition {
    margin-left: auto;
    margin-right: auto;
  }
}
@media (max-width: 479px) {
  .cid-tE3GmVldP9 .nutrition {
    padding: 1.5rem 1rem;
  }
}
.cid-tE3GmVldP9 .nutrition-head {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid #cd8ad1;
  margin-bottom: 1rem;
}
.cid-tE3GmVldP9 .nutrition-head .numbers {
  margin-bottom: 18px;
}
.cid-tE3GmVldP9 .nutrition-wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
}
@media (max-width: 991px) {
  .cid-tE3GmVldP9 .nutrition-wrap {
    justify-content: center;
  }
}
@media (max-width: 479px) {
  .cid-tE3GmVldP9 .nutrition-wrap {
    flex-wrap: wrap;
  }
}
@media (max-width: 388px) {
  .cid-tE3GmVldP9 .nutrition-wrap {
    width: 100%;
  }
}
.cid-tE3GmVldP9 .nutrition-wrap .nutrition-tile {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}
.cid-tE3GmVldP9 .nutrition-wrap .nutrition-tile:last-child {
  margin-bottom: 0;
  margin-top: 1rem;
}
.cid-tE3GmVldP9 .tile-text-wrap {
  display: flex;
}
.cid-tE3GmVldP9 svg {
  display: inline-block;
  width: 50px;
  height: 38px;
  margin-left: -0.5rem;
  margin-right: 0.6rem;
}
.cid-tE3GmVldP9 svg path {
  fill: #cd8ad1;
}
.cid-tE3GmVldP9 .numbers {
  display: flex;
  align-self: center;
}
.cid-tE3GmVldP9 .mbr-number {
  width: 60px;
  margin-bottom: 0;
}
.cid-tE3GmVldP9 .mbr-number:first-child {
  margin-right: 1rem;
}
.cid-tE3GmVldP9 .mbr-tile-text {
  color: #1f1437;
  margin: 0;
  margin-right: 2rem;
}
@media (max-width: 991px) {
  .cid-tE3GmVldP9 .mbr-tile-text {
    text-align: start;
  }
}
.cid-tE3GmVldP9 .price {
  display: flex;
}
@media (max-width: 991px) {
  .cid-tE3GmVldP9 .price {
    flex-direction: column-reverse;
    justify-content: center;
  }
}
.cid-tE3GmVldP9 .price-text-wrap {
  display: flex;
  align-items: center;
  margin-left: 2rem;
}
@media (max-width: 991px) {
  .cid-tE3GmVldP9 .price-text-wrap {
    margin-left: 0;
    justify-content: center;
    margin-bottom: 1rem;
  }
}
.cid-tE3GmVldP9 .line {
  width: 1px;
  height: 50px;
  margin: 0 20px;
  background-color: #1f1437;
  opacity: 0.5;
  opacity: 0;
}
.cid-tE3GmVldP9 .mbr-price-text {
  color: #1f1437;
  margin-bottom: 0;
}
.cid-tE3GmVldP9 .mbr-price-number {
  color: #1f1437;
  margin-bottom: 0;
}
.cid-tE3GmVldP9 .mbr-amount-text {
  color: #1f1437;
  margin-bottom: 0;
}
.cid-tE3GmVldP9 .mbr-amount-number {
  color: #1f1437;
  margin-bottom: 0;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .cid-tE3GmVldP9 div[class*="col-lg"] {
    width: 100%;
  }
}
.cid-tE3GmVldP9 .mbr-section-btn {
  display: flex;
}
.cid-tE3ICZNicG {
  padding-top: 90px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-tE3ICZNicG .clients .clients-item {
  margin: 2rem;
}
.cid-tE3ICZNicG .mbr-section-subtitle {
  color: #000000;
}
.cid-tE3ICZNicG H2 {
  color: #000000;
}
.cid-tEdt8mUkm1 {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #443f04;
  position: relative;
  margin-top: -1px;
  overflow: hidden;
}
.cid-tEdt8mUkm1 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tEdt8mUkm1 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tEdt8mUkm1 .section-border-item {
  background-color: #fcdb42;
}
.cid-tEdt8mUkm1 .main-container {
  display: flex;
  align-items: center;
  padding: 5rem 0;
}
@media (max-width: 991px) {
  .cid-tEdt8mUkm1 .main-container {
    padding: 4.5rem 0;
  }
}
@media (max-width: 767px) {
  .cid-tEdt8mUkm1 .main-container {
    padding: 3rem 0;
  }
}
.cid-tEdt8mUkm1 .title-wrap {
  width: 100%;
}
.cid-tEdt8mUkm1 .title-box {
  width: 100%;
}
.cid-tEdt8mUkm1 .mbr-title {
  color: #ffffff;
  text-align: center;
}
.cid-tEdt8mUkm1 .mbr-text {
  color: #ffffff;
  margin-top: 1.5rem;
  text-align: center;
}
@media (max-width: 767px) {
  .cid-tEdt8mUkm1 .mbr-text {
    margin-top: 1.25rem;
  }
}
.cid-tEdt8mUkm1 .card-row {
  display: flex;
  align-items: stretch;
  margin: -1px 0;
}
@media (max-width: 991px) {
  .cid-tEdt8mUkm1 .card-row {
    flex-wrap: wrap;
  }
}
.cid-tEdt8mUkm1 .card {
  position: relative;
  width: 33.33333333%;
  margin-bottom: -1px;
  border-radius: 0;
}
@media (max-width: 991px) {
  .cid-tEdt8mUkm1 .card {
    width: 100%;
  }
}
.cid-tEdt8mUkm1 .card-wrap {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  width: 100%;
  height: 100%;
  padding: 1rem 2rem 2rem;
}
.cid-tEdt8mUkm1 .logo-wrap {
  width: 100%;
  max-width: 150px;
  margin-right: auto;
  padding-bottom: 0.75rem;
}
.cid-tEdt8mUkm1 .logo-wrap img {
  width: 100%;
  object-fit: contain;
}
.cid-tEdt8mUkm1 .testimonial-wrap {
  display: flex;
  align-items: center;
  margin-bottom: 2rem;
}
@media (max-width: 767px) {
  .cid-tEdt8mUkm1 .testimonial-wrap {
    margin-bottom: 1.5rem;
  }
}
.cid-tEdt8mUkm1 .iconfont-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tEdt8mUkm1 .iconfont-wrapper .mbr-iconfont {
  display: block;
  font-size: 20px;
  color: #fcdb42;
  margin-right: 0.4rem;
}
.cid-tEdt8mUkm1 .card-text-wrap {
  margin-bottom: 2rem;
}
@media (max-width: 767px) {
  .cid-tEdt8mUkm1 .card-text-wrap {
    margin-bottom: 1.5rem;
  }
}
.cid-tEdt8mUkm1 .card-text {
  color: #ffffff;
}
.cid-tEdt8mUkm1 .card-name-wrap {
  display: flex;
  align-items: center;
  margin-top: auto;
}
.cid-tEdt8mUkm1 .card-name-image-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  aspect-ratio: 1;
  border-radius: 50px;
  overflow: hidden;
  margin-right: 16px;
  border: 1px solid #fcdb42;
}
.cid-tEdt8mUkm1 .card-name-image-wrap img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.cid-tEdt8mUkm1 .card-name-text-wrap {
  flex-grow: 1;
}
.cid-tEdt8mUkm1 .card-name {
  color: #FFF;
}
.cid-tEdt8mUkm1 .card-prof {
  color: #FFF;
}
.cid-tEdvXfn1ln {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #443f04;
  position: relative;
  margin-top: -1px;
  overflow: hidden;
}
.cid-tEdvXfn1ln .mbr-fallback-image.disabled {
  display: none;
}
.cid-tEdvXfn1ln .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tEdvXfn1ln .section-border-item {
  background-color: #fcdb42;
}
.cid-tEdvXfn1ln .main-container {
  display: flex;
  align-items: center;
  padding: 5rem 0;
}
@media (max-width: 991px) {
  .cid-tEdvXfn1ln .main-container {
    padding: 4.5rem 0;
  }
}
@media (max-width: 767px) {
  .cid-tEdvXfn1ln .main-container {
    padding: 3rem 0;
  }
}
.cid-tEdvXfn1ln .title-wrap {
  width: 100%;
}
.cid-tEdvXfn1ln .title-box {
  width: 100%;
}
.cid-tEdvXfn1ln .mbr-title {
  color: #ffffff;
  text-align: center;
}
.cid-tEdvXfn1ln .mbr-text {
  color: #ffffff;
  margin-top: 1.5rem;
  text-align: center;
}
@media (max-width: 767px) {
  .cid-tEdvXfn1ln .mbr-text {
    margin-top: 1.25rem;
  }
}
.cid-tEdvXfn1ln .card-row {
  display: flex;
  align-items: stretch;
  margin: -1px 0;
}
@media (max-width: 991px) {
  .cid-tEdvXfn1ln .card-row {
    flex-wrap: wrap;
  }
}
.cid-tEdvXfn1ln .card {
  position: relative;
  width: 33.33333333%;
  margin-bottom: -1px;
  border-radius: 0;
}
@media (max-width: 991px) {
  .cid-tEdvXfn1ln .card {
    width: 100%;
  }
}
.cid-tEdvXfn1ln .card-wrap {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  width: 100%;
  height: 100%;
  padding: 1rem 2rem 2rem;
}
.cid-tEdvXfn1ln .logo-wrap {
  width: 100%;
  max-width: 150px;
  margin-right: auto;
  padding-bottom: 0.75rem;
}
.cid-tEdvXfn1ln .logo-wrap img {
  width: 100%;
  object-fit: contain;
}
.cid-tEdvXfn1ln .testimonial-wrap {
  display: flex;
  align-items: center;
  margin-bottom: 2rem;
}
@media (max-width: 767px) {
  .cid-tEdvXfn1ln .testimonial-wrap {
    margin-bottom: 1.5rem;
  }
}
.cid-tEdvXfn1ln .iconfont-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tEdvXfn1ln .iconfont-wrapper .mbr-iconfont {
  display: block;
  font-size: 20px;
  color: #fcdb42;
  margin-right: 0.4rem;
}
.cid-tEdvXfn1ln .card-text-wrap {
  margin-bottom: 2rem;
}
@media (max-width: 767px) {
  .cid-tEdvXfn1ln .card-text-wrap {
    margin-bottom: 1.5rem;
  }
}
.cid-tEdvXfn1ln .card-text {
  color: #ffffff;
}
.cid-tEdvXfn1ln .card-name-wrap {
  display: flex;
  align-items: center;
  margin-top: auto;
}
.cid-tEdvXfn1ln .card-name-image-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  aspect-ratio: 1;
  border-radius: 50px;
  overflow: hidden;
  margin-right: 16px;
  border: 1px solid #fcdb42;
}
.cid-tEdvXfn1ln .card-name-image-wrap img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.cid-tEdvXfn1ln .card-name-text-wrap {
  flex-grow: 1;
}
.cid-tEdvXfn1ln .card-name {
  color: #FFF;
}
.cid-tEdvXfn1ln .card-prof {
  color: #FFF;
}
.cid-tEdBXmzzs2 {
  padding-top: 105px;
  padding-bottom: 90px;
  background-color: #d9d9d9;
}
.cid-tEdBXmzzs2 .showAlerts {
  display: block !important;
}
.cid-tEdBXmzzs2 .rowflexrev {
  display: -webkit-flex;
}
.cid-tEdBXmzzs2 .ws-form-alerts {
  margin-top: 1rem;
}
.cid-tEdBXmzzs2 .title {
  margin-bottom: 2rem;
}
.cid-tEdBXmzzs2 .mbr-section-subtitle {
  color: #000000;
}
.cid-tEdBXmzzs2 textarea.form-control {
  min-height: 188px;
}
.cid-tEdBXmzzs2 LABEL {
  color: #232323;
  display: initial;
}
.cid-tEdBXmzzs2 .mbr-section-terms {
  text-align: center;
  color: #232323;
  margin-bottom: 0px;
}
.cid-tEdBXmzzs2 .mbr-section-labels {
  color: #232323;
  padding: 0;
  margin-bottom: .357em;
  text-align: left;
}
.cid-tEdBXmzzs2 .mbr-section-autorespond {
  text-align: left;
  color: #232323;
  margin-bottom: 0px;
}
.cid-tEdBXmzzs2 .mbr-section-gdpr {
  text-align: left;
  color: #232323;
  margin-bottom: 0px;
}
.cid-tEdBXmzzs2 .alert {
  margin-bottom: 0;
}
.cid-tEdBXmzzs2 .alert-success {
  background-color: #70c770;
}
.cid-tEdBXmzzs2 .alert-danger {
  background-color: #ff4a52;
}
.cid-tEdBXmzzs2 .btn {
  display: inline-flex;
}
.cid-tEdBXmzzs2 .mbr-alert-success {
  text-align: left;
  color: #ffffff;
}
.cid-tEdBXmzzs2 .mbr-alert-danger {
  text-align: left;
  color: #ffffff;
}
.cid-tEdBXmzzs2 .uploadBtn {
  padding-top: 13px !important;
  padding-left: 12.5px !important;
}
.cid-tEdBXmzzs2 input[type=file]::file-selector-button {
  border: 1px solid #232323 !important;
  padding: .2em .4em;
  border-radius: .2em;
  background-color: #cccccc !important;
  color: #232323 !important;
  transition: 0.3s;
}
.cid-tEdBXmzzs2 input[type=file]::-webkit-file-upload-button {
  border: 1px solid #232323 !important;
  padding: .2em .4em;
  border-radius: .2em;
  background-color: #cccccc !important;
  color: #232323 !important;
  transition: 0.3s;
}
.cid-tEdBXmzzs2 input[type=file]::-ms-browse {
  border: 1px solid #232323 !important;
  padding: .2em .4em;
  border-radius: .2em;
  background-color: #cccccc !important;
  color: #232323 !important;
  transition: 0.3s;
}
.cid-tEdBXmzzs2 P {
  color: #000000;
}
.cid-tEdEZ5brhW {
  padding-top: 105px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-tEdEZ5brhW .title {
  padding-bottom: 2.5rem;
}
.cid-tEdEZ5brhW .mbr-text {
  color: #000000;
  margin: 0;
  padding-top: 0.5rem;
}
.cid-tEdEZ5brhW .iconfont-wrapper {
  display: flex;
  align-items: center;
  width: 2rem;
  height: 2rem;
  margin-right: 2rem;
}
.cid-tEdEZ5brhW .iconfont-wrapper .amp-iconfont {
  font-size: 2rem;
}
.cid-tEdEZ5brhW .wrapper {
  display: flex;
  padding: 1rem 0;
}
.cid-tEdEZ5brhW .wrapper .b-info {
  width: 100%;
}
@media (max-width: 767px) {
  .cid-tEdEZ5brhW .iconfont-wrapper {
    display: none;
  }
}
.cid-tEdEZ5brhW H2 {
  color: #000000;
}
.cid-tEdEZ5brhW .mbr-section-subtitle {
  color: #000000;
}
.cid-tEdEZ5brhW H5 {
  color: #000000;
}
.cid-tEdEZBfPzk {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background: #e9e9e9;
}
.cid-tEdEZBfPzk .google-map {
  height: 30rem;
  position: relative;
}
.cid-tEdEZBfPzk .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-tEdEZBfPzk .google-map [data-state-details] {
  color: #6b6763;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-tEdEZBfPzk .google-map[data-state] {
  background: #e9e5dc;
}
.cid-tEdEZBfPzk .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-tEdEZBfPzk .mbr-section-subtitle {
  color: #000000;
}
.cid-tEdEZBfPzk .mbr-section-title {
  color: #000000;
}
.cid-tEdF05ePde {
  padding-top: 4rem;
  padding-bottom: 2rem;
  background-color: #232323;
}
.cid-tEdF05ePde .media-wrap {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-tEdF05ePde .media-wrap {
    margin-bottom: 1rem;
  }
}
@media (max-width: 767px) {
  .cid-tEdF05ePde .row {
    text-align: center;
  }
  .cid-tEdF05ePde .row > div {
    margin: auto;
  }
  .cid-tEdF05ePde .social-row {
    justify-content: center;
  }
}
.cid-tEdF05ePde .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-tEdF05ePde .list {
  list-style: none;
  padding-left: 0;
  color: #bbbbbb;
}
@media (max-width: 991px) {
  .cid-tEdF05ePde .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tEdF05ePde .list {
    margin-bottom: 0rem;
  }
}
.cid-tEdF05ePde .mbr-text {
  color: #bbbbbb;
}
.cid-tEdF05ePde .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
.cid-tEdF05ePde .mbr-iconfont {
  color: black;
}
@media (max-width: 991px) {
  .cid-tEdF05ePde div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-tEdF05ePde .copyright {
  text-align: left;
  color: #bbbbbb;
}
.cid-tEdF05ePde .mbr-section-subtitle {
  color: #bbbbbb;
}
.cid-tDFS9ebR0L {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tDFS9ebR0L nav.navbar {
  position: fixed;
}
.cid-tDFS9ebR0L .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tDFS9ebR0L .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tDFS9ebR0L .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tDFS9ebR0L .dropdown-item:hover,
.cid-tDFS9ebR0L .dropdown-item:focus {
  background: #e43f3f !important;
  color: white !important;
}
.cid-tDFS9ebR0L .dropdown-item:hover span {
  color: white;
}
.cid-tDFS9ebR0L .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tDFS9ebR0L .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tDFS9ebR0L .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tDFS9ebR0L .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tDFS9ebR0L .nav-link {
  position: relative;
}
.cid-tDFS9ebR0L .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tDFS9ebR0L .container {
    flex-wrap: wrap;
  }
}
.cid-tDFS9ebR0L .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tDFS9ebR0L .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-tDFS9ebR0L .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tDFS9ebR0L .dropdown-menu,
.cid-tDFS9ebR0L .navbar.opened {
  background: #cfbe00 !important;
}
.cid-tDFS9ebR0L .nav-item:focus,
.cid-tDFS9ebR0L .nav-link:focus {
  outline: none;
}
.cid-tDFS9ebR0L .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tDFS9ebR0L .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tDFS9ebR0L .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tDFS9ebR0L .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tDFS9ebR0L .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tDFS9ebR0L .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tDFS9ebR0L .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #cfbe00;
}
.cid-tDFS9ebR0L .navbar.opened {
  transition: all 0.3s;
}
.cid-tDFS9ebR0L .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tDFS9ebR0L .navbar .navbar-logo img {
  width: auto;
}
.cid-tDFS9ebR0L .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tDFS9ebR0L .navbar.collapsed {
  justify-content: center;
}
.cid-tDFS9ebR0L .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tDFS9ebR0L .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-tDFS9ebR0L .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tDFS9ebR0L .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tDFS9ebR0L .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-tDFS9ebR0L .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tDFS9ebR0L .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tDFS9ebR0L .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tDFS9ebR0L .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tDFS9ebR0L .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tDFS9ebR0L .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tDFS9ebR0L .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tDFS9ebR0L .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-tDFS9ebR0L .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tDFS9ebR0L .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tDFS9ebR0L .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tDFS9ebR0L .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tDFS9ebR0L .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tDFS9ebR0L .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-tDFS9ebR0L .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-tDFS9ebR0L .navbar.navbar-short {
  min-height: 60px;
}
.cid-tDFS9ebR0L .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tDFS9ebR0L .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tDFS9ebR0L .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tDFS9ebR0L .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tDFS9ebR0L .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tDFS9ebR0L .dropdown-item.active,
.cid-tDFS9ebR0L .dropdown-item:active {
  background-color: transparent;
}
.cid-tDFS9ebR0L .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tDFS9ebR0L .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tDFS9ebR0L .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tDFS9ebR0L .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #cfbe00;
}
.cid-tDFS9ebR0L .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tDFS9ebR0L .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tDFS9ebR0L ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tDFS9ebR0L .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tDFS9ebR0L button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tDFS9ebR0L button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-tDFS9ebR0L button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tDFS9ebR0L button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tDFS9ebR0L button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tDFS9ebR0L button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tDFS9ebR0L nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tDFS9ebR0L nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tDFS9ebR0L nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tDFS9ebR0L nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tDFS9ebR0L .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tDFS9ebR0L a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tDFS9ebR0L .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tDFS9ebR0L .navbar {
    height: 70px;
  }
  .cid-tDFS9ebR0L .navbar.opened {
    height: auto;
  }
  .cid-tDFS9ebR0L .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tDXFwO61Ld {
  background-image: url("../../../assets/images/floresyplantas-floristeria.webp");
}
.cid-tDXFwO61Ld .mbr-fallback-image.disabled {
  display: none;
}
.cid-tDXFwO61Ld .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tDXFwO61Ld .mbr-section-title {
  color: #ffffff;
}
.cid-tDXFwO61Ld .mbr-section-subtitle {
  color: #ffffff;
}
.cid-tDXFwO61Ld .mbr-text,
.cid-tDXFwO61Ld .mbr-section-btn {
  color: #bbbbbb;
}
.cid-tDXGzUqsYB {
  padding-top: 6rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tDXGzUqsYB .mbr-fallback-image.disabled {
  display: none;
}
.cid-tDXGzUqsYB .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-tDXGzUqsYB .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tDXGzUqsYB .row {
  flex-direction: row-reverse;
}
.cid-tDXGzUqsYB img {
  width: 100%;
}
.cid-tDXJM7elbN {
  padding-top: 5rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-tDXJM7elbN .mbr-fallback-image.disabled {
  display: none;
}
.cid-tDXJM7elbN .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tDXJM7elbN .container-fluid {
  margin: 0;
  padding: 0;
}
@media (max-width: 992px) {
  .cid-tDXJM7elbN .container-fluid {
    padding: 0;
  }
}
.cid-tDXJM7elbN .container-fluid .row {
  padding: 0;
}
.cid-tDXJM7elbN .card-wrapper {
  position: relative;
  padding: 115px;
}
@media (max-width: 1360px) {
  .cid-tDXJM7elbN .card-wrapper {
    padding: 65px;
  }
}
@media (max-width: 992px) {
  .cid-tDXJM7elbN .card-wrapper {
    padding: 35px;
  }
}
@media (max-width: 768px) {
  .cid-tDXJM7elbN .card-wrapper {
    padding: 25px;
  }
}
.cid-tDXJM7elbN .card-wrapper img {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.cid-tDXJM7elbN .card-wrapper .card-text {
  padding: 80px;
  position: relative;
  background-color: #cfbe00;
}
@media (max-width: 1360px) {
  .cid-tDXJM7elbN .card-wrapper .card-text {
    padding: 55px;
  }
}
@media (max-width: 992px) {
  .cid-tDXJM7elbN .card-wrapper .card-text {
    padding: 30px;
  }
}
.cid-tDXJM7elbN .card-wrapper .card-text .icon-wrapper .mbr-card-icon {
  display: inline;
  font-size: 41px;
  margin-bottom: 11px;
}
.cid-tDXJM7elbN .card-wrapper .card-text .mbr-card-text {
  margin-bottom: 24px;
}
.cid-tDXJM7elbN .card-wrapper .card-text .card-name {
  margin-bottom: 24px;
}
.cid-tDXJM7elbN .card-wrapper .card-text .card-role {
  margin-bottom: 0;
}
.cid-tDXJM7elbN .main-wrap {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 32px 130px 42px 110px;
  height: 100%;
}
@media (max-width: 1360px) {
  .cid-tDXJM7elbN .main-wrap {
    padding: 32px 60px 42px;
  }
}
@media (max-width: 992px) {
  .cid-tDXJM7elbN .main-wrap {
    padding: 32px 25px 0;
  }
}
.cid-tDXJM7elbN .main-wrap .title-wrapper .mbr-number {
  margin-bottom: 11px;
}
.cid-tDXJM7elbN .main-wrap .title-wrapper .mbr-section-title {
  margin-bottom: 30px;
}
.cid-tDXJM7elbN .main-wrap .text-wrapper .mbr-text {
  margin-bottom: 30px;
}
.cid-tDXJM7elbN .main-wrap .text-wrapper .mbr-section-btn .btn {
  background-image: linear-gradient(99deg, rgba(255, 255, 255, 0) 30%, #ffffff 100%), radial-gradient(circle at 50% 50%, #ffffff 0, rgba(255, 255, 255, 0) 70%);
  color: #000000 !important;
}
.cid-tDXJM7elbN .mbr-number {
  color: #000000;
}
.cid-tDXJM7elbN .mbr-section-title {
  color: #000000;
}
.cid-tDXJM7elbN .mbr-text {
  color: #b6b6b6;
}
.cid-tDXJM7elbN .mbr-card-text,
.cid-tDXJM7elbN .mbr-card-icon {
  color: #b6b6b6;
}
.cid-tDXJM7elbN .card-name {
  color: #000000;
}
.cid-tDXJM7elbN .card-role {
  color: #000000;
}
.cid-tDXJM7elbN .mbr-text,
.cid-tDXJM7elbN .mbr-section-btn {
  color: #000000;
}
.cid-tDXJM7elbN .mbr-card-text,
.cid-tDXJM7elbN .icon-wrapper,
.cid-tDXJM7elbN .mbr-card-icon {
  color: #000000;
}
.cid-tDXQdUkWgv {
  padding-top: 4rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-tDXQdUkWgv .mbr-fallback-image.disabled {
  display: none;
}
.cid-tDXQdUkWgv .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tDXQdUkWgv .row {
  border: 3px solid #ffffff;
  margin-top: -3px;
  border-radius: 5px;
}
.cid-tDXQdUkWgv .card {
  padding: 64px 28px;
  border-radius: 0;
}
@media (min-width: 992px) {
  .cid-tDXQdUkWgv .card {
    border-left: 1px solid #ffffff;
    border-left: none;
    border-right: 2px solid #ffffff;
  }
}
@media (max-width: 992px) {
  .cid-tDXQdUkWgv .card {
    padding: 48px 20px;
  }
}
.cid-tDXQdUkWgv .card:last-child {
  padding: 0;
}
@media (min-width: 992px) {
  .cid-tDXQdUkWgv .card:last-child {
    border-left: none;
    border-right: 2px solid #ffffff;
    border-right: none;
    border-left: 1px solid #ffffff;
  }
}
.cid-tDXQdUkWgv .card .title-wrapper {
  margin-bottom: 0;
}
.cid-tDXQdUkWgv .card .title-wrapper .mbr-section-title {
  margin-bottom: 28px;
}
.cid-tDXQdUkWgv .card .title-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-tDXQdUkWgv .card .image-wrapper {
  overflow: hidden;
}
.cid-tDXQdUkWgv .card .image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-tDXQdUkWgv .card .text-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-tDXQdUkWgv .mbr-section-title {
  color: #000000;
}
.cid-tDXQdUkWgv .mbr-text {
  color: #000000;
}
.cid-tDXSXaOIAv {
  padding-top: 4rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-tDXSXaOIAv .mbr-fallback-image.disabled {
  display: none;
}
.cid-tDXSXaOIAv .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tDXSXaOIAv .row {
  border: 3px solid #ffffff;
  margin-top: -3px;
  border-radius: 5px;
}
.cid-tDXSXaOIAv .card {
  padding: 64px 28px;
  border-radius: 0;
}
@media (min-width: 992px) {
  .cid-tDXSXaOIAv .card {
    border-left: 1px solid #ffffff;
  }
}
@media (max-width: 992px) {
  .cid-tDXSXaOIAv .card {
    padding: 48px 20px;
  }
}
.cid-tDXSXaOIAv .card:last-child {
  padding: 0;
}
@media (min-width: 992px) {
  .cid-tDXSXaOIAv .card:last-child {
    border-left: none;
    border-right: 2px solid #ffffff;
  }
}
.cid-tDXSXaOIAv .card .title-wrapper {
  margin-bottom: 0;
}
.cid-tDXSXaOIAv .card .title-wrapper .mbr-section-title {
  margin-bottom: 28px;
}
.cid-tDXSXaOIAv .card .title-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-tDXSXaOIAv .card .image-wrapper {
  overflow: hidden;
}
.cid-tDXSXaOIAv .card .image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-tDXSXaOIAv .card .text-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-tDXSXaOIAv .mbr-section-title {
  color: #000000;
}
.cid-tDXSXaOIAv .mbr-text {
  color: #000000;
}
.cid-tDXTfVSH0d {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tDXTfVSH0d .row {
  align-items: stretch;
  justify-content: center;
}
.cid-tDXTfVSH0d .row .img-item {
  display: -webkit-flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  overflow: hidden;
}
.cid-tDXTfVSH0d .row .img-item img {
  width: 100%;
  object-fit: cover;
  min-height: 1px;
  transition: all 1s;
}
.cid-tDXTfVSH0d .row .img-item img:hover {
  transform: scale(1.1);
}
.cid-tDXTfVSH0d P {
  color: #000000;
}
.cid-tDXWksVe41 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tDXWksVe41 .row {
  align-items: stretch;
  justify-content: center;
}
.cid-tDXWksVe41 .row .img-item {
  display: -webkit-flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  overflow: hidden;
}
.cid-tDXWksVe41 .row .img-item img {
  width: 100%;
  object-fit: cover;
  min-height: 1px;
  transition: all 1s;
}
.cid-tDXWksVe41 .row .img-item img:hover {
  transform: scale(1.1);
}
.cid-tDXWksVe41 P {
  color: #000000;
}
.cid-tDXX87C1vQ {
  padding-top: 15px;
  padding-bottom: 105px;
  background-color: #ffffff;
}
.cid-tDXX87C1vQ .row {
  align-items: stretch;
  justify-content: center;
}
.cid-tDXX87C1vQ .row .img-item {
  display: -webkit-flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  overflow: hidden;
}
.cid-tDXX87C1vQ .row .img-item img {
  width: 100%;
  object-fit: cover;
  min-height: 1px;
  transition: all 1s;
}
.cid-tDXX87C1vQ .row .img-item img:hover {
  transform: scale(1.1);
}
.cid-tDXX87C1vQ P {
  color: #000000;
}
.cid-tDXZ0iHAPX {
  padding-top: 7rem;
  padding-bottom: 2rem;
  background-color: #cfbe00;
}
.cid-tDXZ0iHAPX .mbr-text {
  color: #000000;
}
@media (min-width: 767px) {
  .cid-tDXZ0iHAPX .list {
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
  }
}
.cid-tDXZ0iHAPX .mbr-list {
  color: #1d5356;
}
.cid-tDXZ0iHAPX .mbr-section-subtitle {
  color: #000000;
}
.cid-tDXZ0iHAPX .mbr-section-title {
  color: #000000;
}
.cid-tDY0U5U6V3 {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #cfbe00;
}
.cid-tDY0U5U6V3 .row {
  align-items: stretch;
  justify-content: center;
}
.cid-tDY0U5U6V3 .row .img-item {
  display: -webkit-flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  overflow: hidden;
}
.cid-tDY0U5U6V3 .row .img-item img {
  width: 100%;
  object-fit: cover;
  min-height: 1px;
  transition: all 1s;
}
.cid-tDY0U5U6V3 .row .img-item img:hover {
  transform: scale(1.1);
}
.cid-tDY0U5U6V3 P {
  color: #000000;
}
.cid-tDY4aSRj25 {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #cfbe00;
}
.cid-tDY4aSRj25 .row {
  align-items: stretch;
  justify-content: center;
}
.cid-tDY4aSRj25 .row .img-item {
  display: -webkit-flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  overflow: hidden;
}
.cid-tDY4aSRj25 .row .img-item img {
  width: 100%;
  object-fit: cover;
  min-height: 1px;
  transition: all 1s;
}
.cid-tDY4aSRj25 .row .img-item img:hover {
  transform: scale(1.1);
}
.cid-tDY4aSRj25 P {
  color: #000000;
}
.cid-tDY4Qs3gJA {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #cfbe00;
}
.cid-tDY4Qs3gJA .row {
  align-items: stretch;
  justify-content: center;
}
.cid-tDY4Qs3gJA .row .img-item {
  display: -webkit-flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  overflow: hidden;
}
.cid-tDY4Qs3gJA .row .img-item img {
  width: 100%;
  object-fit: cover;
  min-height: 1px;
  transition: all 1s;
}
.cid-tDY4Qs3gJA .row .img-item img:hover {
  transform: scale(1.1);
}
.cid-tDY4Qs3gJA P {
  color: #000000;
}
.cid-tDY5j6lKRS {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #cfbe00;
}
.cid-tDY5j6lKRS .row {
  align-items: stretch;
  justify-content: center;
}
.cid-tDY5j6lKRS .row .img-item {
  display: -webkit-flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  overflow: hidden;
}
.cid-tDY5j6lKRS .row .img-item img {
  width: 100%;
  object-fit: cover;
  min-height: 1px;
  transition: all 1s;
}
.cid-tDY5j6lKRS .row .img-item img:hover {
  transform: scale(1.1);
}
.cid-tDY5j6lKRS P {
  color: #000000;
}
.cid-tDY6r2go9K {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-tDY6r2go9K .container {
  max-width: 900px;
}
.cid-tDY6r2go9K .content-container {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
}
@media (max-width: 991px) {
  .cid-tDY6r2go9K .content-container {
    min-height: auto;
  }
}
.cid-tDY6r2go9K .text-container {
  width: 100%;
}
.cid-tDY6r2go9K .text-wrapper {
  width: 100%;
}
.cid-tDY6r2go9K .mbr-text {
  color: #000000;
  width: 100%;
  margin: 0;
}
.cid-tDY6r2go9K .card-title {
  color: #000000;
  width: 100%;
  margin-bottom: 36px;
}
.cid-tDY6r2go9K .img-container {
  display: flex;
  justify-content: center;
  width: 100%;
  margin-top: 36px;
}
.cid-tDY6r2go9K .image-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tDY6r2go9K .image-wrapper img {
  width: auto;
  height: 40px;
  object-fit: contain;
}
.cid-tEe0wpL58A {
  padding-top: 105px;
  padding-bottom: 90px;
  background-color: #d9d9d9;
}
.cid-tEe0wpL58A .showAlerts {
  display: block !important;
}
.cid-tEe0wpL58A .rowflexrev {
  display: -webkit-flex;
}
.cid-tEe0wpL58A .ws-form-alerts {
  margin-top: 1rem;
}
.cid-tEe0wpL58A .title {
  margin-bottom: 2rem;
}
.cid-tEe0wpL58A .mbr-section-subtitle {
  color: #000000;
}
.cid-tEe0wpL58A textarea.form-control {
  min-height: 188px;
}
.cid-tEe0wpL58A LABEL {
  color: #232323;
  display: initial;
}
.cid-tEe0wpL58A .mbr-section-terms {
  text-align: center;
  color: #232323;
  margin-bottom: 0px;
}
.cid-tEe0wpL58A .mbr-section-labels {
  color: #232323;
  padding: 0;
  margin-bottom: .357em;
  text-align: left;
}
.cid-tEe0wpL58A .mbr-section-autorespond {
  text-align: left;
  color: #232323;
  margin-bottom: 0px;
}
.cid-tEe0wpL58A .mbr-section-gdpr {
  text-align: left;
  color: #232323;
  margin-bottom: 0px;
}
.cid-tEe0wpL58A .alert {
  margin-bottom: 0;
}
.cid-tEe0wpL58A .alert-success {
  background-color: #70c770;
}
.cid-tEe0wpL58A .alert-danger {
  background-color: #ff4a52;
}
.cid-tEe0wpL58A .btn {
  display: inline-flex;
}
.cid-tEe0wpL58A .mbr-alert-success {
  text-align: left;
  color: #ffffff;
}
.cid-tEe0wpL58A .mbr-alert-danger {
  text-align: left;
  color: #ffffff;
}
.cid-tEe0wpL58A .uploadBtn {
  padding-top: 13px !important;
  padding-left: 12.5px !important;
}
.cid-tEe0wpL58A input[type=file]::file-selector-button {
  border: 1px solid #232323 !important;
  padding: .2em .4em;
  border-radius: .2em;
  background-color: #cccccc !important;
  color: #232323 !important;
  transition: 0.3s;
}
.cid-tEe0wpL58A input[type=file]::-webkit-file-upload-button {
  border: 1px solid #232323 !important;
  padding: .2em .4em;
  border-radius: .2em;
  background-color: #cccccc !important;
  color: #232323 !important;
  transition: 0.3s;
}
.cid-tEe0wpL58A input[type=file]::-ms-browse {
  border: 1px solid #232323 !important;
  padding: .2em .4em;
  border-radius: .2em;
  background-color: #cccccc !important;
  color: #232323 !important;
  transition: 0.3s;
}
.cid-tEe0wpL58A P {
  color: #000000;
}
.cid-tEe0AFxHnn {
  padding-top: 105px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-tEe0AFxHnn .title {
  padding-bottom: 2.5rem;
}
.cid-tEe0AFxHnn .mbr-text {
  color: #000000;
  margin: 0;
  padding-top: 0.5rem;
}
.cid-tEe0AFxHnn .iconfont-wrapper {
  display: flex;
  align-items: center;
  width: 2rem;
  height: 2rem;
  margin-right: 2rem;
}
.cid-tEe0AFxHnn .iconfont-wrapper .amp-iconfont {
  font-size: 2rem;
}
.cid-tEe0AFxHnn .wrapper {
  display: flex;
  padding: 1rem 0;
}
.cid-tEe0AFxHnn .wrapper .b-info {
  width: 100%;
}
@media (max-width: 767px) {
  .cid-tEe0AFxHnn .iconfont-wrapper {
    display: none;
  }
}
.cid-tEe0AFxHnn H2 {
  color: #000000;
}
.cid-tEe0AFxHnn .mbr-section-subtitle {
  color: #000000;
}
.cid-tEe0AFxHnn H5 {
  color: #000000;
}
.cid-tEe0B50GJF {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background: #e9e9e9;
}
.cid-tEe0B50GJF .google-map {
  height: 30rem;
  position: relative;
}
.cid-tEe0B50GJF .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-tEe0B50GJF .google-map [data-state-details] {
  color: #6b6763;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-tEe0B50GJF .google-map[data-state] {
  background: #e9e5dc;
}
.cid-tEe0B50GJF .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-tEe0B50GJF .mbr-section-subtitle {
  color: #000000;
}
.cid-tEe0B50GJF .mbr-section-title {
  color: #000000;
}
.cid-tEdF05ePde {
  padding-top: 4rem;
  padding-bottom: 2rem;
  background-color: #232323;
}
.cid-tEdF05ePde .media-wrap {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-tEdF05ePde .media-wrap {
    margin-bottom: 1rem;
  }
}
@media (max-width: 767px) {
  .cid-tEdF05ePde .row {
    text-align: center;
  }
  .cid-tEdF05ePde .row > div {
    margin: auto;
  }
  .cid-tEdF05ePde .social-row {
    justify-content: center;
  }
}
.cid-tEdF05ePde .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-tEdF05ePde .list {
  list-style: none;
  padding-left: 0;
  color: #bbbbbb;
}
@media (max-width: 991px) {
  .cid-tEdF05ePde .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tEdF05ePde .list {
    margin-bottom: 0rem;
  }
}
.cid-tEdF05ePde .mbr-text {
  color: #bbbbbb;
}
.cid-tEdF05ePde .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
.cid-tEdF05ePde .mbr-iconfont {
  color: black;
}
@media (max-width: 991px) {
  .cid-tEdF05ePde div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-tEdF05ePde .copyright {
  text-align: left;
  color: #bbbbbb;
}
.cid-tEdF05ePde .mbr-section-subtitle {
  color: #bbbbbb;
}
.cid-tDFS9ebR0L {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tDFS9ebR0L nav.navbar {
  position: fixed;
}
.cid-tDFS9ebR0L .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tDFS9ebR0L .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tDFS9ebR0L .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tDFS9ebR0L .dropdown-item:hover,
.cid-tDFS9ebR0L .dropdown-item:focus {
  background: #e43f3f !important;
  color: white !important;
}
.cid-tDFS9ebR0L .dropdown-item:hover span {
  color: white;
}
.cid-tDFS9ebR0L .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tDFS9ebR0L .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tDFS9ebR0L .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tDFS9ebR0L .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tDFS9ebR0L .nav-link {
  position: relative;
}
.cid-tDFS9ebR0L .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tDFS9ebR0L .container {
    flex-wrap: wrap;
  }
}
.cid-tDFS9ebR0L .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tDFS9ebR0L .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-tDFS9ebR0L .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tDFS9ebR0L .dropdown-menu,
.cid-tDFS9ebR0L .navbar.opened {
  background: #cfbe00 !important;
}
.cid-tDFS9ebR0L .nav-item:focus,
.cid-tDFS9ebR0L .nav-link:focus {
  outline: none;
}
.cid-tDFS9ebR0L .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tDFS9ebR0L .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tDFS9ebR0L .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tDFS9ebR0L .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tDFS9ebR0L .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tDFS9ebR0L .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tDFS9ebR0L .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #cfbe00;
}
.cid-tDFS9ebR0L .navbar.opened {
  transition: all 0.3s;
}
.cid-tDFS9ebR0L .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tDFS9ebR0L .navbar .navbar-logo img {
  width: auto;
}
.cid-tDFS9ebR0L .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tDFS9ebR0L .navbar.collapsed {
  justify-content: center;
}
.cid-tDFS9ebR0L .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tDFS9ebR0L .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-tDFS9ebR0L .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tDFS9ebR0L .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tDFS9ebR0L .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-tDFS9ebR0L .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tDFS9ebR0L .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tDFS9ebR0L .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tDFS9ebR0L .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tDFS9ebR0L .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tDFS9ebR0L .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tDFS9ebR0L .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tDFS9ebR0L .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-tDFS9ebR0L .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tDFS9ebR0L .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tDFS9ebR0L .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tDFS9ebR0L .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tDFS9ebR0L .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tDFS9ebR0L .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-tDFS9ebR0L .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-tDFS9ebR0L .navbar.navbar-short {
  min-height: 60px;
}
.cid-tDFS9ebR0L .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tDFS9ebR0L .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tDFS9ebR0L .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tDFS9ebR0L .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tDFS9ebR0L .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tDFS9ebR0L .dropdown-item.active,
.cid-tDFS9ebR0L .dropdown-item:active {
  background-color: transparent;
}
.cid-tDFS9ebR0L .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tDFS9ebR0L .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tDFS9ebR0L .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tDFS9ebR0L .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #cfbe00;
}
.cid-tDFS9ebR0L .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tDFS9ebR0L .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tDFS9ebR0L ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tDFS9ebR0L .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tDFS9ebR0L button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tDFS9ebR0L button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-tDFS9ebR0L button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tDFS9ebR0L button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tDFS9ebR0L button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tDFS9ebR0L button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tDFS9ebR0L nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tDFS9ebR0L nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tDFS9ebR0L nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tDFS9ebR0L nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tDFS9ebR0L .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tDFS9ebR0L a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tDFS9ebR0L .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tDFS9ebR0L .navbar {
    height: 70px;
  }
  .cid-tDFS9ebR0L .navbar.opened {
    height: auto;
  }
  .cid-tDFS9ebR0L .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tDY8Z4qAXR {
  background-image: url("../../../assets/images/floresbodasfiestas.webp");
}
.cid-tDY8Z4qAXR .mbr-fallback-image.disabled {
  display: none;
}
.cid-tDY8Z4qAXR .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tDY8Z4qAXR .mbr-section-title {
  color: #000000;
}
.cid-tDY8Z4qAXR .mbr-section-subtitle {
  color: #000000;
}
.cid-tDY8Z4qAXR .mbr-text,
.cid-tDY8Z4qAXR .mbr-section-btn {
  color: #000000;
}
.cid-tDY92cD4Qw {
  padding-top: 6rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tDY92cD4Qw .mbr-fallback-image.disabled {
  display: none;
}
.cid-tDY92cD4Qw .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-tDY92cD4Qw .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tDY92cD4Qw .row {
  flex-direction: row-reverse;
}
.cid-tDY92cD4Qw img {
  width: 100%;
}
.cid-tDY90lCgFI {
  padding-top: 5rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-tDY90lCgFI .mbr-fallback-image.disabled {
  display: none;
}
.cid-tDY90lCgFI .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tDY90lCgFI .container-fluid {
  margin: 0;
  padding: 0;
}
@media (max-width: 992px) {
  .cid-tDY90lCgFI .container-fluid {
    padding: 0;
  }
}
.cid-tDY90lCgFI .container-fluid .row {
  padding: 0;
}
.cid-tDY90lCgFI .card-wrapper {
  position: relative;
  padding: 115px;
}
@media (max-width: 1360px) {
  .cid-tDY90lCgFI .card-wrapper {
    padding: 65px;
  }
}
@media (max-width: 992px) {
  .cid-tDY90lCgFI .card-wrapper {
    padding: 35px;
  }
}
@media (max-width: 768px) {
  .cid-tDY90lCgFI .card-wrapper {
    padding: 25px;
  }
}
.cid-tDY90lCgFI .card-wrapper img {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.cid-tDY90lCgFI .card-wrapper .card-text {
  padding: 80px;
  position: relative;
  background-color: #cfbe00;
}
@media (max-width: 1360px) {
  .cid-tDY90lCgFI .card-wrapper .card-text {
    padding: 55px;
  }
}
@media (max-width: 992px) {
  .cid-tDY90lCgFI .card-wrapper .card-text {
    padding: 30px;
  }
}
.cid-tDY90lCgFI .card-wrapper .card-text .icon-wrapper .mbr-card-icon {
  display: inline;
  font-size: 41px;
  margin-bottom: 11px;
}
.cid-tDY90lCgFI .card-wrapper .card-text .mbr-card-text {
  margin-bottom: 24px;
}
.cid-tDY90lCgFI .card-wrapper .card-text .card-name {
  margin-bottom: 24px;
}
.cid-tDY90lCgFI .card-wrapper .card-text .card-role {
  margin-bottom: 0;
}
.cid-tDY90lCgFI .main-wrap {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 32px 130px 42px 110px;
  height: 100%;
}
@media (max-width: 1360px) {
  .cid-tDY90lCgFI .main-wrap {
    padding: 32px 60px 42px;
  }
}
@media (max-width: 992px) {
  .cid-tDY90lCgFI .main-wrap {
    padding: 32px 25px 0;
  }
}
.cid-tDY90lCgFI .main-wrap .title-wrapper .mbr-number {
  margin-bottom: 11px;
}
.cid-tDY90lCgFI .main-wrap .title-wrapper .mbr-section-title {
  margin-bottom: 30px;
}
.cid-tDY90lCgFI .main-wrap .text-wrapper .mbr-text {
  margin-bottom: 30px;
}
.cid-tDY90lCgFI .main-wrap .text-wrapper .mbr-section-btn .btn {
  background-image: linear-gradient(99deg, rgba(255, 255, 255, 0) 30%, #ffffff 100%), radial-gradient(circle at 50% 50%, #ffffff 0, rgba(255, 255, 255, 0) 70%);
  color: #000000 !important;
}
.cid-tDY90lCgFI .mbr-number {
  color: #000000;
}
.cid-tDY90lCgFI .mbr-section-title {
  color: #000000;
}
.cid-tDY90lCgFI .mbr-text {
  color: #b6b6b6;
}
.cid-tDY90lCgFI .mbr-card-text,
.cid-tDY90lCgFI .mbr-card-icon {
  color: #b6b6b6;
}
.cid-tDY90lCgFI .card-name {
  color: #000000;
}
.cid-tDY90lCgFI .card-role {
  color: #000000;
}
.cid-tDY90lCgFI .mbr-text,
.cid-tDY90lCgFI .mbr-section-btn {
  color: #000000;
}
.cid-tDY90lCgFI .mbr-card-text,
.cid-tDY90lCgFI .icon-wrapper,
.cid-tDY90lCgFI .mbr-card-icon {
  color: #000000;
}
.cid-tE1slsZGdh {
  padding-top: 5rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-tE1slsZGdh .mbr-fallback-image.disabled {
  display: none;
}
.cid-tE1slsZGdh .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tE1slsZGdh .row {
  align-items: stretch;
  column-gap: 7vw;
  row-gap: 30px;
  flex-direction: row-reverse;
}
.cid-tE1slsZGdh .col-img {
  width: 57%;
}
@media (max-width: 1199px) {
  .cid-tE1slsZGdh .col-img {
    width: 100%;
  }
}
.cid-tE1slsZGdh .image-wrapper {
  position: relative;
  border-radius: 60px;
  overflow: hidden;
}
@media (max-width: 1399px) {
  .cid-tE1slsZGdh .image-wrapper {
    border-radius: 40px;
  }
}
@media (max-width: 1199px) {
  .cid-tE1slsZGdh .image-wrapper {
    border-radius: 12px;
  }
}
.cid-tE1slsZGdh .image-wrapper img {
  width: 100%;
  aspect-ratio: 1.163;
  object-fit: cover;
}
.cid-tE1slsZGdh .image-wrapper:after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  border: 30px solid rgba(0, 0, 0, 0.35);
  border-radius: 60px;
  pointer-events: none;
}
@media (max-width: 1399px) {
  .cid-tE1slsZGdh .image-wrapper:after {
    border-radius: 40px;
  }
}
@media (max-width: 1199px) {
  .cid-tE1slsZGdh .image-wrapper:after {
    border-width: 20px;
    border-radius: 12px;
  }
}
.cid-tE1slsZGdh .col-text {
  display: flex;
  align-items: center;
  width: 1%;
  flex-grow: 1;
}
.cid-tE1slsZGdh .card-title {
  color: #000000;
}
.cid-tE1slsZGdh .mbr-text {
  margin-top: 40px;
  color: #6c7a88;
}
@media (max-width: 1399px) {
  .cid-tE1slsZGdh .mbr-text {
    margin-top: 24px;
  }
}
@media (max-width: 767px) {
  .cid-tE1slsZGdh .mbr-text {
    margin-top: 12px;
  }
}
.cid-tE1slsZGdh .mbr-section-btn {
  margin-top: 30px;
}
@media (max-width: 767px) {
  .cid-tE1slsZGdh .mbr-section-btn {
    margin-top: 20px;
  }
}
.cid-tE1slsZGdh .mbr-text,
.cid-tE1slsZGdh .mbr-section-btn {
  color: #000000;
}
.cid-tEfs4apLwn {
  padding-top: 1rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-tEfs4apLwn .mbr-fallback-image.disabled {
  display: none;
}
.cid-tEfs4apLwn .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tEfs4apLwn .video-wrapper iframe {
  width: 100%;
}
.cid-tEfs4apLwn .mbr-section-title,
.cid-tEfs4apLwn .mbr-section-subtitle,
.cid-tEfs4apLwn .mbr-text {
  text-align: center;
}
.cid-tEfs4apLwn .mbr-text {
  color: #353535;
}
.cid-tE1WozJVuM {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #cfbe00;
}
.cid-tE1WozJVuM .mbr-fallback-image.disabled {
  display: none;
}
.cid-tE1WozJVuM .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tE1WozJVuM .label-container {
  display: flex;
  align-items: center;
  justify-content: center;
  width: max-content;
  max-width: 100%;
  padding: 6px 13px;
  border: 1px solid #000000;
  margin: 0 auto;
  border-radius: 4px;
}
.cid-tE1WozJVuM .label-text {
  color: #000000;
}
.cid-tE1WozJVuM .mbr-title {
  margin-top: 30px;
  color: #000000;
}
@media (min-width: 992px) {
  .cid-tE1WozJVuM .mbr-title.display-2 {
    font-size: 6vw;
  }
}
.cid-tE1WozJVuM .mbr-subtitle {
  margin-top: 40px;
  color: #000000;
}
@media (max-width: 991px) {
  .cid-tE1WozJVuM .mbr-subtitle {
    margin-top: 30px;
  }
}
.cid-tE1WozJVuM .mbr-text {
  margin-top: 30px;
  color: #000000;
}
.cid-tE1ulVDfBT {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-tE1ulVDfBT .mbr-section-subtitle {
  color: #000000;
  text-align: right;
}
.cid-tE1ulVDfBT .mbr-text {
  color: #000000;
}
.cid-tE1vihqbFc {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-tE1vihqbFc .row {
  align-items: stretch;
  justify-content: center;
}
.cid-tE1vihqbFc .row .img-item {
  display: -webkit-flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  overflow: hidden;
}
.cid-tE1vihqbFc .row .img-item img {
  width: 100%;
  object-fit: cover;
  min-height: 1px;
  transition: all 1s;
}
.cid-tE1vihqbFc .row .img-item img:hover {
  transform: scale(1.1);
}
.cid-tE1vihqbFc P {
  color: #000000;
}
.cid-tE1Rk32UsB {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-tE1Rk32UsB .row {
  align-items: stretch;
  justify-content: center;
}
.cid-tE1Rk32UsB .row .img-item {
  display: -webkit-flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  overflow: hidden;
}
.cid-tE1Rk32UsB .row .img-item img {
  width: 100%;
  object-fit: cover;
  min-height: 1px;
  transition: all 1s;
}
.cid-tE1Rk32UsB .row .img-item img:hover {
  transform: scale(1.1);
}
.cid-tE1Rk32UsB P {
  color: #000000;
}
.cid-tE1RRn1kFN {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-tE1RRn1kFN .row {
  align-items: stretch;
  justify-content: center;
}
.cid-tE1RRn1kFN .row .img-item {
  display: -webkit-flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  overflow: hidden;
}
.cid-tE1RRn1kFN .row .img-item img {
  width: 100%;
  object-fit: cover;
  min-height: 1px;
  transition: all 1s;
}
.cid-tE1RRn1kFN .row .img-item img:hover {
  transform: scale(1.1);
}
.cid-tE1RRn1kFN P {
  color: #000000;
}
.cid-tE1RRElG24 {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-tE1RRElG24 .row {
  align-items: stretch;
  justify-content: center;
}
.cid-tE1RRElG24 .row .img-item {
  display: -webkit-flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  overflow: hidden;
}
.cid-tE1RRElG24 .row .img-item img {
  width: 100%;
  object-fit: cover;
  min-height: 1px;
  transition: all 1s;
}
.cid-tE1RRElG24 .row .img-item img:hover {
  transform: scale(1.1);
}
.cid-tE1RRElG24 P {
  color: #000000;
}
.cid-tE1Sqv7pjW {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-tE1Sqv7pjW .row {
  align-items: stretch;
  justify-content: center;
}
.cid-tE1Sqv7pjW .row .img-item {
  display: -webkit-flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  overflow: hidden;
}
.cid-tE1Sqv7pjW .row .img-item img {
  width: 100%;
  object-fit: cover;
  min-height: 1px;
  transition: all 1s;
}
.cid-tE1Sqv7pjW .row .img-item img:hover {
  transform: scale(1.1);
}
.cid-tE1Sqv7pjW P {
  color: #000000;
}
.cid-tE1SqKnB3K {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-tE1SqKnB3K .row {
  align-items: stretch;
  justify-content: center;
}
.cid-tE1SqKnB3K .row .img-item {
  display: -webkit-flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  overflow: hidden;
}
.cid-tE1SqKnB3K .row .img-item img {
  width: 100%;
  object-fit: cover;
  min-height: 1px;
  transition: all 1s;
}
.cid-tE1SqKnB3K .row .img-item img:hover {
  transform: scale(1.1);
}
.cid-tE1SqKnB3K P {
  color: #000000;
}
.cid-tE1SWEr5yX {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-tE1SWEr5yX .row {
  align-items: stretch;
  justify-content: center;
}
.cid-tE1SWEr5yX .row .img-item {
  display: -webkit-flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  overflow: hidden;
}
.cid-tE1SWEr5yX .row .img-item img {
  width: 100%;
  object-fit: cover;
  min-height: 1px;
  transition: all 1s;
}
.cid-tE1SWEr5yX .row .img-item img:hover {
  transform: scale(1.1);
}
.cid-tE1SWEr5yX P {
  color: #000000;
}
.cid-tE1SWUmn5b {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-tE1SWUmn5b .row {
  align-items: stretch;
  justify-content: center;
}
.cid-tE1SWUmn5b .row .img-item {
  display: -webkit-flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  overflow: hidden;
}
.cid-tE1SWUmn5b .row .img-item img {
  width: 100%;
  object-fit: cover;
  min-height: 1px;
  transition: all 1s;
}
.cid-tE1SWUmn5b .row .img-item img:hover {
  transform: scale(1.1);
}
.cid-tE1SWUmn5b P {
  color: #000000;
}
.cid-tE1TKSyFa1 {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-tE1TKSyFa1 .row {
  align-items: stretch;
  justify-content: center;
}
.cid-tE1TKSyFa1 .row .img-item {
  display: -webkit-flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  overflow: hidden;
}
.cid-tE1TKSyFa1 .row .img-item img {
  width: 100%;
  object-fit: cover;
  min-height: 1px;
  transition: all 1s;
}
.cid-tE1TKSyFa1 .row .img-item img:hover {
  transform: scale(1.1);
}
.cid-tE1TKSyFa1 P {
  color: #000000;
}
.cid-tE1TLa4N2v {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-tE1TLa4N2v .row {
  align-items: stretch;
  justify-content: center;
}
.cid-tE1TLa4N2v .row .img-item {
  display: -webkit-flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  overflow: hidden;
}
.cid-tE1TLa4N2v .row .img-item img {
  width: 100%;
  object-fit: cover;
  min-height: 1px;
  transition: all 1s;
}
.cid-tE1TLa4N2v .row .img-item img:hover {
  transform: scale(1.1);
}
.cid-tE1TLa4N2v P {
  color: #000000;
}
.cid-tE1XTDGa2q {
  padding-top: 7rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-tE1XTDGa2q .mbr-section-subtitle {
  color: #000000;
}
.cid-tE1XTDGa2q .mbr-text {
  color: #000000;
}
.cid-tE1YBB3F9u {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-tE1YBB3F9u .row {
  align-items: stretch;
  justify-content: center;
}
.cid-tE1YBB3F9u .row .img-item {
  display: -webkit-flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  overflow: hidden;
}
.cid-tE1YBB3F9u .row .img-item img {
  width: 100%;
  object-fit: cover;
  min-height: 1px;
  transition: all 1s;
}
.cid-tE1YBB3F9u .row .img-item img:hover {
  transform: scale(1.1);
}
.cid-tE1YBB3F9u P {
  color: #000000;
}
.cid-tE29iM53G5 {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-tE29iM53G5 .row {
  align-items: stretch;
  justify-content: center;
}
.cid-tE29iM53G5 .row .img-item {
  display: -webkit-flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  overflow: hidden;
}
.cid-tE29iM53G5 .row .img-item img {
  width: 100%;
  object-fit: cover;
  min-height: 1px;
  transition: all 1s;
}
.cid-tE29iM53G5 .row .img-item img:hover {
  transform: scale(1.1);
}
.cid-tE29iM53G5 P {
  color: #000000;
}
.cid-tE29jwdYnB {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-tE29jwdYnB .row {
  align-items: stretch;
  justify-content: center;
}
.cid-tE29jwdYnB .row .img-item {
  display: -webkit-flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  overflow: hidden;
}
.cid-tE29jwdYnB .row .img-item img {
  width: 100%;
  object-fit: cover;
  min-height: 1px;
  transition: all 1s;
}
.cid-tE29jwdYnB .row .img-item img:hover {
  transform: scale(1.1);
}
.cid-tE29jwdYnB P {
  color: #000000;
}
.cid-tE29jXh67l {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-tE29jXh67l .row {
  align-items: stretch;
  justify-content: center;
}
.cid-tE29jXh67l .row .img-item {
  display: -webkit-flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  overflow: hidden;
}
.cid-tE29jXh67l .row .img-item img {
  width: 100%;
  object-fit: cover;
  min-height: 1px;
  transition: all 1s;
}
.cid-tE29jXh67l .row .img-item img:hover {
  transform: scale(1.1);
}
.cid-tE29jXh67l P {
  color: #000000;
}
.cid-tE29kjk99T {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-tE29kjk99T .row {
  align-items: stretch;
  justify-content: center;
}
.cid-tE29kjk99T .row .img-item {
  display: -webkit-flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  overflow: hidden;
}
.cid-tE29kjk99T .row .img-item img {
  width: 100%;
  object-fit: cover;
  min-height: 1px;
  transition: all 1s;
}
.cid-tE29kjk99T .row .img-item img:hover {
  transform: scale(1.1);
}
.cid-tE29kjk99T P {
  color: #000000;
}
.cid-tE29ls5Wko {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-tE29ls5Wko .row {
  align-items: stretch;
  justify-content: center;
}
.cid-tE29ls5Wko .row .img-item {
  display: -webkit-flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  overflow: hidden;
}
.cid-tE29ls5Wko .row .img-item img {
  width: 100%;
  object-fit: cover;
  min-height: 1px;
  transition: all 1s;
}
.cid-tE29ls5Wko .row .img-item img:hover {
  transform: scale(1.1);
}
.cid-tE29ls5Wko P {
  color: #000000;
}
.cid-tE29ZMeCvi {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-tE29ZMeCvi .container {
  max-width: 900px;
}
.cid-tE29ZMeCvi .content-container {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
}
@media (max-width: 991px) {
  .cid-tE29ZMeCvi .content-container {
    min-height: auto;
  }
}
.cid-tE29ZMeCvi .text-container {
  width: 100%;
}
.cid-tE29ZMeCvi .text-wrapper {
  width: 100%;
}
.cid-tE29ZMeCvi .mbr-text {
  color: #000000;
  width: 100%;
  margin: 0;
}
.cid-tE29ZMeCvi .card-title {
  color: #000000;
  width: 100%;
  margin-bottom: 36px;
}
.cid-tE29ZMeCvi .img-container {
  display: flex;
  justify-content: center;
  width: 100%;
  margin-top: 36px;
}
.cid-tE29ZMeCvi .image-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tE29ZMeCvi .image-wrapper img {
  width: auto;
  height: 40px;
  object-fit: contain;
}
.cid-tEeeHMNFT0 {
  padding-top: 105px;
  padding-bottom: 90px;
  background-color: #d9d9d9;
}
.cid-tEeeHMNFT0 .showAlerts {
  display: block !important;
}
.cid-tEeeHMNFT0 .rowflexrev {
  display: -webkit-flex;
}
.cid-tEeeHMNFT0 .ws-form-alerts {
  margin-top: 1rem;
}
.cid-tEeeHMNFT0 .title {
  margin-bottom: 2rem;
}
.cid-tEeeHMNFT0 .mbr-section-subtitle {
  color: #000000;
}
.cid-tEeeHMNFT0 textarea.form-control {
  min-height: 188px;
}
.cid-tEeeHMNFT0 LABEL {
  color: #232323;
  display: initial;
}
.cid-tEeeHMNFT0 .mbr-section-terms {
  text-align: center;
  color: #232323;
  margin-bottom: 0px;
}
.cid-tEeeHMNFT0 .mbr-section-labels {
  color: #232323;
  padding: 0;
  margin-bottom: .357em;
  text-align: left;
}
.cid-tEeeHMNFT0 .mbr-section-autorespond {
  text-align: left;
  color: #232323;
  margin-bottom: 0px;
}
.cid-tEeeHMNFT0 .mbr-section-gdpr {
  text-align: left;
  color: #232323;
  margin-bottom: 0px;
}
.cid-tEeeHMNFT0 .alert {
  margin-bottom: 0;
}
.cid-tEeeHMNFT0 .alert-success {
  background-color: #70c770;
}
.cid-tEeeHMNFT0 .alert-danger {
  background-color: #ff4a52;
}
.cid-tEeeHMNFT0 .btn {
  display: inline-flex;
}
.cid-tEeeHMNFT0 .mbr-alert-success {
  text-align: left;
  color: #ffffff;
}
.cid-tEeeHMNFT0 .mbr-alert-danger {
  text-align: left;
  color: #ffffff;
}
.cid-tEeeHMNFT0 .uploadBtn {
  padding-top: 13px !important;
  padding-left: 12.5px !important;
}
.cid-tEeeHMNFT0 input[type=file]::file-selector-button {
  border: 1px solid #232323 !important;
  padding: .2em .4em;
  border-radius: .2em;
  background-color: #cccccc !important;
  color: #232323 !important;
  transition: 0.3s;
}
.cid-tEeeHMNFT0 input[type=file]::-webkit-file-upload-button {
  border: 1px solid #232323 !important;
  padding: .2em .4em;
  border-radius: .2em;
  background-color: #cccccc !important;
  color: #232323 !important;
  transition: 0.3s;
}
.cid-tEeeHMNFT0 input[type=file]::-ms-browse {
  border: 1px solid #232323 !important;
  padding: .2em .4em;
  border-radius: .2em;
  background-color: #cccccc !important;
  color: #232323 !important;
  transition: 0.3s;
}
.cid-tEeeHMNFT0 P {
  color: #000000;
}
.cid-tEeeIk527t {
  padding-top: 105px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-tEeeIk527t .title {
  padding-bottom: 2.5rem;
}
.cid-tEeeIk527t .mbr-text {
  color: #000000;
  margin: 0;
  padding-top: 0.5rem;
}
.cid-tEeeIk527t .iconfont-wrapper {
  display: flex;
  align-items: center;
  width: 2rem;
  height: 2rem;
  margin-right: 2rem;
}
.cid-tEeeIk527t .iconfont-wrapper .amp-iconfont {
  font-size: 2rem;
}
.cid-tEeeIk527t .wrapper {
  display: flex;
  padding: 1rem 0;
}
.cid-tEeeIk527t .wrapper .b-info {
  width: 100%;
}
@media (max-width: 767px) {
  .cid-tEeeIk527t .iconfont-wrapper {
    display: none;
  }
}
.cid-tEeeIk527t H2 {
  color: #000000;
}
.cid-tEeeIk527t .mbr-section-subtitle {
  color: #000000;
}
.cid-tEeeIk527t H5 {
  color: #000000;
}
.cid-tEeeIPgGij {
  padding-top: 4rem;
  padding-bottom: 1rem;
  background: #e9e9e9;
}
.cid-tEeeIPgGij .google-map {
  height: 30rem;
  position: relative;
}
.cid-tEeeIPgGij .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-tEeeIPgGij .google-map [data-state-details] {
  color: #6b6763;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-tEeeIPgGij .google-map[data-state] {
  background: #e9e5dc;
}
.cid-tEeeIPgGij .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-tEeeIPgGij .mbr-section-subtitle {
  color: #000000;
}
.cid-tEeeIPgGij .mbr-section-title {
  color: #000000;
}
.cid-tEdF05ePde {
  padding-top: 4rem;
  padding-bottom: 2rem;
  background-color: #232323;
}
.cid-tEdF05ePde .media-wrap {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-tEdF05ePde .media-wrap {
    margin-bottom: 1rem;
  }
}
@media (max-width: 767px) {
  .cid-tEdF05ePde .row {
    text-align: center;
  }
  .cid-tEdF05ePde .row > div {
    margin: auto;
  }
  .cid-tEdF05ePde .social-row {
    justify-content: center;
  }
}
.cid-tEdF05ePde .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-tEdF05ePde .list {
  list-style: none;
  padding-left: 0;
  color: #bbbbbb;
}
@media (max-width: 991px) {
  .cid-tEdF05ePde .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tEdF05ePde .list {
    margin-bottom: 0rem;
  }
}
.cid-tEdF05ePde .mbr-text {
  color: #bbbbbb;
}
.cid-tEdF05ePde .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
.cid-tEdF05ePde .mbr-iconfont {
  color: black;
}
@media (max-width: 991px) {
  .cid-tEdF05ePde div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-tEdF05ePde .copyright {
  text-align: left;
  color: #bbbbbb;
}
.cid-tEdF05ePde .mbr-section-subtitle {
  color: #bbbbbb;
}
.cid-tE2dtkCrEO {
  background-image: url("../../../assets/images/regalosdecoracionflores.webp");
}
.cid-tE2dtkCrEO .mbr-fallback-image.disabled {
  display: none;
}
.cid-tE2dtkCrEO .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tE2dtkCrEO .icons-media-container {
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-direction: row;
  flex-direction: row;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  padding-top: 4rem;
}
.cid-tE2dtkCrEO .icons-media-container .mbr-iconfont {
  font-size: 96px;
  color: #ffffff;
}
.cid-tE2dtkCrEO .icons-media-container .icon-block {
  padding-bottom: 1rem;
}
.cid-tE2dtkCrEO .mbr-text {
  color: #ffffff;
}
.cid-tE2dtkCrEO .card {
  padding-bottom: 1.5rem;
}
.cid-tE2dtkCrEO .card-wrapper {
  min-height: 220px;
  transition: all 0.3s;
  border-radius: 4px;
  padding: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-tE2dtkCrEO .card-wrapper .mbr-iconfont {
  display: block;
  font-size: 4rem;
  color: #ffffff;
  margin-bottom: 2rem;
}
.cid-tE2dtkCrEO .card-wrapper .card-title {
  color: #ffffff;
}
.cid-tDFS9ebR0L {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tDFS9ebR0L nav.navbar {
  position: fixed;
}
.cid-tDFS9ebR0L .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tDFS9ebR0L .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tDFS9ebR0L .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tDFS9ebR0L .dropdown-item:hover,
.cid-tDFS9ebR0L .dropdown-item:focus {
  background: #e43f3f !important;
  color: white !important;
}
.cid-tDFS9ebR0L .dropdown-item:hover span {
  color: white;
}
.cid-tDFS9ebR0L .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tDFS9ebR0L .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tDFS9ebR0L .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tDFS9ebR0L .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tDFS9ebR0L .nav-link {
  position: relative;
}
.cid-tDFS9ebR0L .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tDFS9ebR0L .container {
    flex-wrap: wrap;
  }
}
.cid-tDFS9ebR0L .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tDFS9ebR0L .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-tDFS9ebR0L .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tDFS9ebR0L .dropdown-menu,
.cid-tDFS9ebR0L .navbar.opened {
  background: #cfbe00 !important;
}
.cid-tDFS9ebR0L .nav-item:focus,
.cid-tDFS9ebR0L .nav-link:focus {
  outline: none;
}
.cid-tDFS9ebR0L .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tDFS9ebR0L .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tDFS9ebR0L .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tDFS9ebR0L .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tDFS9ebR0L .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tDFS9ebR0L .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tDFS9ebR0L .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #cfbe00;
}
.cid-tDFS9ebR0L .navbar.opened {
  transition: all 0.3s;
}
.cid-tDFS9ebR0L .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tDFS9ebR0L .navbar .navbar-logo img {
  width: auto;
}
.cid-tDFS9ebR0L .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tDFS9ebR0L .navbar.collapsed {
  justify-content: center;
}
.cid-tDFS9ebR0L .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tDFS9ebR0L .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-tDFS9ebR0L .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tDFS9ebR0L .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tDFS9ebR0L .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-tDFS9ebR0L .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tDFS9ebR0L .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tDFS9ebR0L .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tDFS9ebR0L .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tDFS9ebR0L .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tDFS9ebR0L .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tDFS9ebR0L .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tDFS9ebR0L .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-tDFS9ebR0L .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tDFS9ebR0L .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tDFS9ebR0L .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tDFS9ebR0L .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tDFS9ebR0L .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tDFS9ebR0L .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-tDFS9ebR0L .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-tDFS9ebR0L .navbar.navbar-short {
  min-height: 60px;
}
.cid-tDFS9ebR0L .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tDFS9ebR0L .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tDFS9ebR0L .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tDFS9ebR0L .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tDFS9ebR0L .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tDFS9ebR0L .dropdown-item.active,
.cid-tDFS9ebR0L .dropdown-item:active {
  background-color: transparent;
}
.cid-tDFS9ebR0L .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tDFS9ebR0L .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tDFS9ebR0L .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tDFS9ebR0L .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #cfbe00;
}
.cid-tDFS9ebR0L .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tDFS9ebR0L .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tDFS9ebR0L ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tDFS9ebR0L .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tDFS9ebR0L button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tDFS9ebR0L button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-tDFS9ebR0L button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tDFS9ebR0L button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tDFS9ebR0L button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tDFS9ebR0L button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tDFS9ebR0L nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tDFS9ebR0L nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tDFS9ebR0L nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tDFS9ebR0L nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tDFS9ebR0L .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tDFS9ebR0L a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tDFS9ebR0L .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tDFS9ebR0L .navbar {
    height: 70px;
  }
  .cid-tDFS9ebR0L .navbar.opened {
    height: auto;
  }
  .cid-tDFS9ebR0L .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tE2dhuBDHy {
  padding-top: 6rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tE2dhuBDHy .mbr-fallback-image.disabled {
  display: none;
}
.cid-tE2dhuBDHy .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-tE2dhuBDHy .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tE2dhuBDHy .row {
  flex-direction: row-reverse;
}
.cid-tE2dhuBDHy img {
  width: 100%;
}
.cid-tE2di4DrEK {
  padding-top: 5rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-tE2di4DrEK .mbr-fallback-image.disabled {
  display: none;
}
.cid-tE2di4DrEK .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tE2di4DrEK .container-fluid {
  margin: 0;
  padding: 0;
}
@media (max-width: 992px) {
  .cid-tE2di4DrEK .container-fluid {
    padding: 0;
  }
}
.cid-tE2di4DrEK .container-fluid .row {
  padding: 0;
}
.cid-tE2di4DrEK .card-wrapper {
  position: relative;
  padding: 115px;
}
@media (max-width: 1360px) {
  .cid-tE2di4DrEK .card-wrapper {
    padding: 65px;
  }
}
@media (max-width: 992px) {
  .cid-tE2di4DrEK .card-wrapper {
    padding: 35px;
  }
}
@media (max-width: 768px) {
  .cid-tE2di4DrEK .card-wrapper {
    padding: 25px;
  }
}
.cid-tE2di4DrEK .card-wrapper img {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.cid-tE2di4DrEK .card-wrapper .card-text {
  padding: 80px;
  position: relative;
  background-color: #cfbe00;
}
@media (max-width: 1360px) {
  .cid-tE2di4DrEK .card-wrapper .card-text {
    padding: 55px;
  }
}
@media (max-width: 992px) {
  .cid-tE2di4DrEK .card-wrapper .card-text {
    padding: 30px;
  }
}
.cid-tE2di4DrEK .card-wrapper .card-text .icon-wrapper .mbr-card-icon {
  display: inline;
  font-size: 41px;
  margin-bottom: 11px;
}
.cid-tE2di4DrEK .card-wrapper .card-text .mbr-card-text {
  margin-bottom: 24px;
}
.cid-tE2di4DrEK .card-wrapper .card-text .card-name {
  margin-bottom: 24px;
}
.cid-tE2di4DrEK .card-wrapper .card-text .card-role {
  margin-bottom: 0;
}
.cid-tE2di4DrEK .main-wrap {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 32px 130px 42px 110px;
  height: 100%;
}
@media (max-width: 1360px) {
  .cid-tE2di4DrEK .main-wrap {
    padding: 32px 60px 42px;
  }
}
@media (max-width: 992px) {
  .cid-tE2di4DrEK .main-wrap {
    padding: 32px 25px 0;
  }
}
.cid-tE2di4DrEK .main-wrap .title-wrapper .mbr-number {
  margin-bottom: 11px;
}
.cid-tE2di4DrEK .main-wrap .title-wrapper .mbr-section-title {
  margin-bottom: 30px;
}
.cid-tE2di4DrEK .main-wrap .text-wrapper .mbr-text {
  margin-bottom: 30px;
}
.cid-tE2di4DrEK .main-wrap .text-wrapper .mbr-section-btn .btn {
  background-image: linear-gradient(99deg, rgba(255, 255, 255, 0) 30%, #ffffff 100%), radial-gradient(circle at 50% 50%, #ffffff 0, rgba(255, 255, 255, 0) 70%);
  color: #000000 !important;
}
.cid-tE2di4DrEK .mbr-number {
  color: #000000;
}
.cid-tE2di4DrEK .mbr-section-title {
  color: #000000;
}
.cid-tE2di4DrEK .mbr-text {
  color: #b6b6b6;
}
.cid-tE2di4DrEK .mbr-card-text,
.cid-tE2di4DrEK .mbr-card-icon {
  color: #b6b6b6;
}
.cid-tE2di4DrEK .card-name {
  color: #000000;
}
.cid-tE2di4DrEK .card-role {
  color: #000000;
}
.cid-tE2di4DrEK .mbr-text,
.cid-tE2di4DrEK .mbr-section-btn {
  color: #000000;
}
.cid-tE2di4DrEK .mbr-card-text,
.cid-tE2di4DrEK .icon-wrapper,
.cid-tE2di4DrEK .mbr-card-icon {
  color: #000000;
}
.cid-tEeKscpPas {
  padding-top: 5rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-tEeKscpPas .mbr-section-subtitle {
  color: #000000;
}
.cid-tE2lkDF5Y8 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-tE2lkDF5Y8 img,
.cid-tE2lkDF5Y8 .item-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-tE2lkDF5Y8 .item:focus,
.cid-tE2lkDF5Y8 span:focus {
  outline: none;
}
.cid-tE2lkDF5Y8 .item {
  cursor: pointer;
  margin-bottom: 2rem;
  position: relative;
}
.cid-tE2lkDF5Y8 .item-wrapper {
  position: unset;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-tE2lkDF5Y8 .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tE2lkDF5Y8 .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-tE2lkDF5Y8 .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tE2lkDF5Y8 .mbr-section-title {
  color: #232323;
}
.cid-tE2uE2fbzq {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #ffffff;
}
.cid-tE2uE2fbzq .mbr-section-subtitle {
  margin-bottom: .75rem;
  line-height: 1;
}
.cid-tE2uE2fbzq .mbr-text {
  margin-top: 1.5rem;
  letter-spacing: -0.025rem;
}
.cid-tE2uE2fbzq .card_item {
  border-radius: 0 !important;
}
@media (min-width: 768px) {
  .cid-tE2uE2fbzq .card_item:nth-child(1) .card-box {
    padding: 2.5rem 0 2.5rem 2rem;
  }
  .cid-tE2uE2fbzq .card_item:nth-child(2) .card-box {
    padding: 12rem 0 2.5rem 2rem;
  }
  .cid-tE2uE2fbzq .card_item:nth-child(3) .card-box {
    padding: 6rem 2rem 2.5rem 2rem;
  }
}
.cid-tE2uE2fbzq .card_item:nth-child(1) .square_null {
  transform: translateX(2rem);
}
.cid-tE2uE2fbzq .card_item:nth-child(1) .square_fill {
  transform: translate(-5rem, -2rem);
  background-color: #a09300;
}
.cid-tE2uE2fbzq .card_item:nth-child(1):hover .square_fill {
  transform: rotate(45deg) translate(-2rem, 2rem);
}
.cid-tE2uE2fbzq .card_item:nth-child(2):hover .square_fill {
  transform: rotate(-45deg) translate(0.25rem, -3rem) scale(0.75);
}
.cid-tE2uE2fbzq .card_item:nth-child(2) .square_fill {
  background-color: #cfbe00;
  transform: translate(-2.5rem, -0.5rem);
}
.cid-tE2uE2fbzq .card_item:nth-child(2) .square_null {
  transform: rotate(45deg) translate(-1rem, -2rem);
}
.cid-tE2uE2fbzq .card_item:nth-child(3):hover .square_fill {
  transform: scale(1) translateX(-5rem) rotate(45deg);
}
.cid-tE2uE2fbzq .card_item:nth-child(3) .square_fill {
  background-color: #cfbe00;
  transform: scale(0.8) translateX(-6.25rem);
}
.cid-tE2uE2fbzq .card_item .card-box {
  border-left: 1px dotted rgba(255, 255, 255, 0.5);
}
.cid-tE2uE2fbzq .card_item:last-child .card-box {
  border-right: 1px dotted rgba(255, 255, 255, 0.5);
}
.cid-tE2uE2fbzq .card-box {
  height: 100%;
}
.cid-tE2uE2fbzq .item-wrapper {
  height: 100%;
  padding: 0 1rem;
}
.cid-tE2uE2fbzq .square_animation {
  display: flex;
  position: relative;
  margin-bottom: 1.75rem;
}
.cid-tE2uE2fbzq .square_animation .square {
  width: 5rem;
  height: 5rem;
}
.cid-tE2uE2fbzq .square_animation .square_null {
  z-index: 1;
  border: 1px solid #e43f3f;
}
.cid-tE2uE2fbzq .square_animation .square_fill {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.cid-tE2uE2fbzq .card-title {
  margin-bottom: 1.75rem;
}
.cid-tE2uE2fbzq .card-text {
  margin-bottom: 2rem;
}
@media (max-width: 991px) {
  .cid-tE2uE2fbzq .square_animation .square {
    width: 4rem;
    height: 4rem;
  }
  .cid-tE2uE2fbzq .card_item:nth-child(1) .square_null {
    transform: translateX(1rem);
  }
  .cid-tE2uE2fbzq .card_item:nth-child(3) .square_fill {
    transform: scale(0.8) translateX(-4.75rem);
  }
  .cid-tE2uE2fbzq .card_item:nth-child(3):hover .square_fill {
    transform: scale(1) translateX(-4rem) rotate(45deg);
  }
}
@media (max-width: 767px) {
  .cid-tE2uE2fbzq .item-wrapper {
    padding: 0;
  }
  .cid-tE2uE2fbzq .card-box {
    padding: 2rem 0 2.5rem;
  }
  .cid-tE2uE2fbzq .mbr-section-subtitle {
    margin-bottom: .25rem;
  }
  .cid-tE2uE2fbzq .mbr-text {
    margin-top: .75rem;
  }
  .cid-tE2uE2fbzq .square_animation {
    margin-bottom: 1rem;
  }
  .cid-tE2uE2fbzq .square_animation .square {
    width: 2.5rem;
    height: 2.5rem;
  }
  .cid-tE2uE2fbzq .card_item:nth-child(1):hover .square_fill {
    transform: none;
  }
  .cid-tE2uE2fbzq .card_item:nth-child(1) .square_fill {
    transform: translate(-2rem, -1rem) !important;
  }
  .cid-tE2uE2fbzq .card_item:nth-child(1) .square_null {
    transform: translateX(1.5rem);
  }
  .cid-tE2uE2fbzq .card_item:nth-child(2):hover .square_fill {
    transform: none;
  }
  .cid-tE2uE2fbzq .card_item:nth-child(2) .square_fill {
    transform: translate(-1.75rem, 0.75rem) !important;
  }
  .cid-tE2uE2fbzq .card_item:nth-child(2) .square_null {
    margin-left: 1rem;
    transform: rotate(45deg) translate(0);
  }
  .cid-tE2uE2fbzq .card_item:nth-child(3):hover .square_fill {
    transform: none;
  }
  .cid-tE2uE2fbzq .card_item:nth-child(3) .square_fill {
    transform: scale(0.8) translateX(-3.15rem) !important;
  }
  .cid-tE2uE2fbzq .card_item .card-box {
    border-width: 0;
    border-bottom: 1px dotted rgba(255, 255, 255, 0.5);
  }
  .cid-tE2uE2fbzq .card_item:last-child .card-box {
    border-width: 0;
  }
  .cid-tE2uE2fbzq .card-title {
    margin-bottom: 1.25rem;
  }
  .cid-tE2uE2fbzq .card-text {
    margin-bottom: 1.25rem;
  }
}
.cid-tE2uE2fbzq .card-text,
.cid-tE2uE2fbzq .linkBtn {
  color: #000000;
}
.cid-tE2vOVuZW2 {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tE2vOVuZW2 img,
.cid-tE2vOVuZW2 .item-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-tE2vOVuZW2 .item:focus,
.cid-tE2vOVuZW2 span:focus {
  outline: none;
}
.cid-tE2vOVuZW2 .item {
  cursor: pointer;
  margin-bottom: 2rem;
  position: relative;
}
.cid-tE2vOVuZW2 .item-wrapper {
  position: unset;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-tE2vOVuZW2 .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tE2vOVuZW2 .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-tE2vOVuZW2 .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tE2vOVuZW2 .mbr-section-title {
  color: #232323;
}
.cid-tE2vOVuZW2 .mbr-section-subtitle {
  color: #000000;
}
.cid-tE37e8ewFM {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-tE37e8ewFM .mbr-fallback-image.disabled {
  display: none;
}
.cid-tE37e8ewFM .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tE37e8ewFM .label-container {
  display: flex;
  align-items: center;
  justify-content: center;
  width: max-content;
  max-width: 100%;
  padding: 6px 13px;
  border: 1px solid #000000;
  margin: 0 auto;
  border-radius: 4px;
}
.cid-tE37e8ewFM .label-text {
  color: #000000;
}
.cid-tE37e8ewFM .mbr-title {
  margin-top: 30px;
  color: #000000;
}
@media (min-width: 992px) {
  .cid-tE37e8ewFM .mbr-title.display-2 {
    font-size: 6vw;
  }
}
.cid-tE37e8ewFM .mbr-subtitle {
  margin-top: 40px;
  color: #000000;
}
@media (max-width: 991px) {
  .cid-tE37e8ewFM .mbr-subtitle {
    margin-top: 30px;
  }
}
.cid-tE37e8ewFM .mbr-text {
  margin-top: 30px;
  color: #000000;
}
.cid-tE37M3bYcl {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tE37M3bYcl img,
.cid-tE37M3bYcl .item-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-tE37M3bYcl .item:focus,
.cid-tE37M3bYcl span:focus {
  outline: none;
}
.cid-tE37M3bYcl .item {
  cursor: pointer;
  margin-bottom: 2rem;
  position: relative;
}
.cid-tE37M3bYcl .item-wrapper {
  position: unset;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-tE37M3bYcl .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tE37M3bYcl .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-tE37M3bYcl .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tE37M3bYcl .mbr-section-title {
  color: #232323;
}
.cid-tE37M3bYcl .mbr-section-subtitle {
  color: #000000;
}
.cid-tEeJWfs8xi {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-tEeJWfs8xi .container {
  max-width: 900px;
}
.cid-tEeJWfs8xi .content-container {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
}
@media (max-width: 991px) {
  .cid-tEeJWfs8xi .content-container {
    min-height: auto;
  }
}
.cid-tEeJWfs8xi .text-container {
  width: 100%;
}
.cid-tEeJWfs8xi .text-wrapper {
  width: 100%;
}
.cid-tEeJWfs8xi .mbr-text {
  color: #000000;
  width: 100%;
  margin: 0;
}
.cid-tEeJWfs8xi .card-title {
  color: #000000;
  width: 100%;
  margin-bottom: 36px;
}
.cid-tEeJWfs8xi .img-container {
  display: flex;
  justify-content: center;
  width: 100%;
  margin-top: 36px;
}
.cid-tEeJWfs8xi .image-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tEeJWfs8xi .image-wrapper img {
  width: auto;
  height: 40px;
  object-fit: contain;
}
.cid-tEeJY1tXBd {
  padding-top: 105px;
  padding-bottom: 90px;
  background-color: #d9d9d9;
}
.cid-tEeJY1tXBd .showAlerts {
  display: block !important;
}
.cid-tEeJY1tXBd .rowflexrev {
  display: -webkit-flex;
}
.cid-tEeJY1tXBd .ws-form-alerts {
  margin-top: 1rem;
}
.cid-tEeJY1tXBd .title {
  margin-bottom: 2rem;
}
.cid-tEeJY1tXBd .mbr-section-subtitle {
  color: #000000;
}
.cid-tEeJY1tXBd textarea.form-control {
  min-height: 188px;
}
.cid-tEeJY1tXBd LABEL {
  color: #232323;
  display: initial;
}
.cid-tEeJY1tXBd .mbr-section-terms {
  text-align: center;
  color: #232323;
  margin-bottom: 0px;
}
.cid-tEeJY1tXBd .mbr-section-labels {
  color: #232323;
  padding: 0;
  margin-bottom: .357em;
  text-align: left;
}
.cid-tEeJY1tXBd .mbr-section-autorespond {
  text-align: left;
  color: #232323;
  margin-bottom: 0px;
}
.cid-tEeJY1tXBd .mbr-section-gdpr {
  text-align: left;
  color: #232323;
  margin-bottom: 0px;
}
.cid-tEeJY1tXBd .alert {
  margin-bottom: 0;
}
.cid-tEeJY1tXBd .alert-success {
  background-color: #70c770;
}
.cid-tEeJY1tXBd .alert-danger {
  background-color: #ff4a52;
}
.cid-tEeJY1tXBd .btn {
  display: inline-flex;
}
.cid-tEeJY1tXBd .mbr-alert-success {
  text-align: left;
  color: #ffffff;
}
.cid-tEeJY1tXBd .mbr-alert-danger {
  text-align: left;
  color: #ffffff;
}
.cid-tEeJY1tXBd .uploadBtn {
  padding-top: 13px !important;
  padding-left: 12.5px !important;
}
.cid-tEeJY1tXBd input[type=file]::file-selector-button {
  border: 1px solid #232323 !important;
  padding: .2em .4em;
  border-radius: .2em;
  background-color: #cccccc !important;
  color: #232323 !important;
  transition: 0.3s;
}
.cid-tEeJY1tXBd input[type=file]::-webkit-file-upload-button {
  border: 1px solid #232323 !important;
  padding: .2em .4em;
  border-radius: .2em;
  background-color: #cccccc !important;
  color: #232323 !important;
  transition: 0.3s;
}
.cid-tEeJY1tXBd input[type=file]::-ms-browse {
  border: 1px solid #232323 !important;
  padding: .2em .4em;
  border-radius: .2em;
  background-color: #cccccc !important;
  color: #232323 !important;
  transition: 0.3s;
}
.cid-tEeJY1tXBd P {
  color: #000000;
}
.cid-tEeJYEql4i {
  padding-top: 105px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-tEeJYEql4i .title {
  padding-bottom: 2.5rem;
}
.cid-tEeJYEql4i .mbr-text {
  color: #000000;
  margin: 0;
  padding-top: 0.5rem;
}
.cid-tEeJYEql4i .iconfont-wrapper {
  display: flex;
  align-items: center;
  width: 2rem;
  height: 2rem;
  margin-right: 2rem;
}
.cid-tEeJYEql4i .iconfont-wrapper .amp-iconfont {
  font-size: 2rem;
}
.cid-tEeJYEql4i .wrapper {
  display: flex;
  padding: 1rem 0;
}
.cid-tEeJYEql4i .wrapper .b-info {
  width: 100%;
}
@media (max-width: 767px) {
  .cid-tEeJYEql4i .iconfont-wrapper {
    display: none;
  }
}
.cid-tEeJYEql4i H2 {
  color: #000000;
}
.cid-tEeJYEql4i .mbr-section-subtitle {
  color: #000000;
}
.cid-tEeJYEql4i H5 {
  color: #000000;
}
.cid-tEeJZdeXR1 {
  padding-top: 4rem;
  padding-bottom: 1rem;
  background: #e9e9e9;
}
.cid-tEeJZdeXR1 .google-map {
  height: 30rem;
  position: relative;
}
.cid-tEeJZdeXR1 .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-tEeJZdeXR1 .google-map [data-state-details] {
  color: #6b6763;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-tEeJZdeXR1 .google-map[data-state] {
  background: #e9e5dc;
}
.cid-tEeJZdeXR1 .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-tEeJZdeXR1 .mbr-section-subtitle {
  color: #000000;
}
.cid-tEeJZdeXR1 .mbr-section-title {
  color: #000000;
}
.cid-tEdF05ePde {
  padding-top: 4rem;
  padding-bottom: 2rem;
  background-color: #232323;
}
.cid-tEdF05ePde .media-wrap {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-tEdF05ePde .media-wrap {
    margin-bottom: 1rem;
  }
}
@media (max-width: 767px) {
  .cid-tEdF05ePde .row {
    text-align: center;
  }
  .cid-tEdF05ePde .row > div {
    margin: auto;
  }
  .cid-tEdF05ePde .social-row {
    justify-content: center;
  }
}
.cid-tEdF05ePde .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-tEdF05ePde .list {
  list-style: none;
  padding-left: 0;
  color: #bbbbbb;
}
@media (max-width: 991px) {
  .cid-tEdF05ePde .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tEdF05ePde .list {
    margin-bottom: 0rem;
  }
}
.cid-tEdF05ePde .mbr-text {
  color: #bbbbbb;
}
.cid-tEdF05ePde .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
.cid-tEdF05ePde .mbr-iconfont {
  color: black;
}
@media (max-width: 991px) {
  .cid-tEdF05ePde div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-tEdF05ePde .copyright {
  text-align: left;
  color: #bbbbbb;
}
.cid-tEdF05ePde .mbr-section-subtitle {
  color: #bbbbbb;
}
.cid-tDFS9ebR0L {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tDFS9ebR0L nav.navbar {
  position: fixed;
}
.cid-tDFS9ebR0L .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tDFS9ebR0L .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tDFS9ebR0L .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tDFS9ebR0L .dropdown-item:hover,
.cid-tDFS9ebR0L .dropdown-item:focus {
  background: #e43f3f !important;
  color: white !important;
}
.cid-tDFS9ebR0L .dropdown-item:hover span {
  color: white;
}
.cid-tDFS9ebR0L .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tDFS9ebR0L .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tDFS9ebR0L .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tDFS9ebR0L .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tDFS9ebR0L .nav-link {
  position: relative;
}
.cid-tDFS9ebR0L .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tDFS9ebR0L .container {
    flex-wrap: wrap;
  }
}
.cid-tDFS9ebR0L .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tDFS9ebR0L .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-tDFS9ebR0L .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tDFS9ebR0L .dropdown-menu,
.cid-tDFS9ebR0L .navbar.opened {
  background: #cfbe00 !important;
}
.cid-tDFS9ebR0L .nav-item:focus,
.cid-tDFS9ebR0L .nav-link:focus {
  outline: none;
}
.cid-tDFS9ebR0L .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tDFS9ebR0L .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tDFS9ebR0L .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tDFS9ebR0L .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tDFS9ebR0L .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tDFS9ebR0L .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tDFS9ebR0L .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #cfbe00;
}
.cid-tDFS9ebR0L .navbar.opened {
  transition: all 0.3s;
}
.cid-tDFS9ebR0L .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tDFS9ebR0L .navbar .navbar-logo img {
  width: auto;
}
.cid-tDFS9ebR0L .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tDFS9ebR0L .navbar.collapsed {
  justify-content: center;
}
.cid-tDFS9ebR0L .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tDFS9ebR0L .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-tDFS9ebR0L .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tDFS9ebR0L .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tDFS9ebR0L .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-tDFS9ebR0L .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tDFS9ebR0L .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tDFS9ebR0L .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tDFS9ebR0L .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tDFS9ebR0L .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tDFS9ebR0L .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tDFS9ebR0L .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tDFS9ebR0L .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-tDFS9ebR0L .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tDFS9ebR0L .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tDFS9ebR0L .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tDFS9ebR0L .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tDFS9ebR0L .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tDFS9ebR0L .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-tDFS9ebR0L .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-tDFS9ebR0L .navbar.navbar-short {
  min-height: 60px;
}
.cid-tDFS9ebR0L .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tDFS9ebR0L .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tDFS9ebR0L .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tDFS9ebR0L .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tDFS9ebR0L .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tDFS9ebR0L .dropdown-item.active,
.cid-tDFS9ebR0L .dropdown-item:active {
  background-color: transparent;
}
.cid-tDFS9ebR0L .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tDFS9ebR0L .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tDFS9ebR0L .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tDFS9ebR0L .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #cfbe00;
}
.cid-tDFS9ebR0L .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tDFS9ebR0L .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tDFS9ebR0L ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tDFS9ebR0L .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tDFS9ebR0L button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tDFS9ebR0L button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-tDFS9ebR0L button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tDFS9ebR0L button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tDFS9ebR0L button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tDFS9ebR0L button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tDFS9ebR0L nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tDFS9ebR0L nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tDFS9ebR0L nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tDFS9ebR0L nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tDFS9ebR0L .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tDFS9ebR0L a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tDFS9ebR0L .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tDFS9ebR0L .navbar {
    height: 70px;
  }
  .cid-tDFS9ebR0L .navbar.opened {
    height: auto;
  }
  .cid-tDFS9ebR0L .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tE3aTRVdm7 {
  padding-top: 120px;
  padding-bottom: 75px;
  background-color: #ffffff;
}
.cid-tE3aTRVdm7 .line {
  background-color: #c19b76;
  color: #c19b76;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-tE3aTRVdm7 .mbr-text {
  margin: 0;
  text-align: left;
  color: #000000;
}
@media (max-width: 768px) {
  .cid-tE3aTRVdm7 .inner-container {
    width: 100% !important;
    padding: 0 15px;
  }
}
.cid-tE3aUraLRN {
  padding-top: 120px;
  padding-bottom: 105px;
  background-color: #ffffff;
}
.cid-tE3aUraLRN .line {
  background-color: #c19b76;
  color: #c19b76;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-tE3aUraLRN .mbr-text {
  margin: 0;
  text-align: left;
  color: #000000;
}
@media (max-width: 768px) {
  .cid-tE3aUraLRN .inner-container {
    width: 100% !important;
    padding: 0 15px;
  }
}
.cid-tEdF05ePde {
  padding-top: 4rem;
  padding-bottom: 2rem;
  background-color: #232323;
}
.cid-tEdF05ePde .media-wrap {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-tEdF05ePde .media-wrap {
    margin-bottom: 1rem;
  }
}
@media (max-width: 767px) {
  .cid-tEdF05ePde .row {
    text-align: center;
  }
  .cid-tEdF05ePde .row > div {
    margin: auto;
  }
  .cid-tEdF05ePde .social-row {
    justify-content: center;
  }
}
.cid-tEdF05ePde .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-tEdF05ePde .list {
  list-style: none;
  padding-left: 0;
  color: #bbbbbb;
}
@media (max-width: 991px) {
  .cid-tEdF05ePde .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tEdF05ePde .list {
    margin-bottom: 0rem;
  }
}
.cid-tEdF05ePde .mbr-text {
  color: #bbbbbb;
}
.cid-tEdF05ePde .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
.cid-tEdF05ePde .mbr-iconfont {
  color: black;
}
@media (max-width: 991px) {
  .cid-tEdF05ePde div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-tEdF05ePde .copyright {
  text-align: left;
  color: #bbbbbb;
}
.cid-tEdF05ePde .mbr-section-subtitle {
  color: #bbbbbb;
}
