.btn {
  border-radius: 50px;
}
body {
  font-family: 'Lato', sans-serif;
}
.display-1 {
  font-family: 'Lato', sans-serif;
  font-size: 3.875rem;
  line-height: 1.1;
}
.display-1 > .mbr-iconfont {
  font-size: 4.84375rem;
}
.display-2 {
  font-family: 'Lato', sans-serif;
  font-size: 3.5rem;
  line-height: 1.1;
}
.display-2 > .mbr-iconfont {
  font-size: 4.375rem;
}
.display-4 {
  font-family: 'Lato', sans-serif;
  font-size: 1rem;
  line-height: 1.5;
}
.display-4 > .mbr-iconfont {
  font-size: 1.25rem;
}
.display-5 {
  font-family: 'Lato', sans-serif;
  font-size: 2rem;
  line-height: 1.5;
}
.display-5 > .mbr-iconfont {
  font-size: 2.5rem;
}
.display-7 {
  font-family: 'Lato', sans-serif;
  font-size: 1.5rem;
  line-height: 1.5;
}
.display-7 > .mbr-iconfont {
  font-size: 1.875rem;
}
/* ---- Fluid typography for mobile devices ---- */
/* 1.4 - font scale ratio ( bootstrap == 1.42857 ) */
/* 100vw - current viewport width */
/* (48 - 20)  48 == 48rem == 768px, 20 == 20rem == 320px(minimal supported viewport) */
/* 0.65 - min scale variable, may vary */
@media (max-width: 992px) {
  .display-1 {
    font-size: 3.1rem;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 2.7125rem;
    font-size: calc( 2.0062499999999996rem + (3.875 - 2.0062499999999996) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (2.0062499999999996rem + (3.875 - 2.0062499999999996) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 2.8rem;
    font-size: calc( 1.875rem + (3.5 - 1.875) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.3 * (1.875rem + (3.5 - 1.875) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 0.8rem;
    font-size: calc( 1rem + (1 - 1) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1rem + (1 - 1) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 1.6rem;
    font-size: calc( 1.35rem + (2 - 1.35) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.35rem + (2 - 1.35) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-7 {
    font-size: 1.2rem;
    font-size: calc( 1.175rem + (1.5 - 1.175) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.175rem + (1.5 - 1.175) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* Buttons */
.btn {
  padding: 1.25rem 3.5625rem;
  border-radius: 0px;
}
.btn-sm {
  padding: 0.6rem 1.2rem;
  border-radius: 0px;
}
.btn-md {
  padding: 0.6rem 1.2rem;
  border-radius: 0px;
}
.btn-lg {
  padding: 1rem 1.5625rem;
  border-radius: 0px;
}
.bg-primary {
  background-color: #000000 !important;
}
.bg-success {
  background-color: #8d8d8d !important;
}
.bg-info {
  background-color: #f2f2f2 !important;
}
.bg-warning {
  background-color: #ddd5c3 !important;
}
.bg-danger {
  background-color: #dfd6c2 !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #000000 !important;
  border-color: #000000 !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: #000000 !important;
  border-color: #000000 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #87876c !important;
  border-color: #87876c !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: #575745 !important;
  border-color: #575745 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #575745 !important;
  border-color: #575745 !important;
}
.btn-info,
.btn-info:active {
  background-color: #f2f2f2 !important;
  border-color: #f2f2f2 !important;
  color: #727272 !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: #c7c7c7 !important;
  border-color: #c7c7c7 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-info.disabled,
.btn-info:disabled {
  color: #727272 !important;
  background-color: #c7c7c7 !important;
  border-color: #c7c7c7 !important;
}
.btn-success,
.btn-success:active {
  background-color: #8d8d8d !important;
  border-color: #8d8d8d !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: #626262 !important;
  border-color: #626262 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #626262 !important;
  border-color: #626262 !important;
}
.btn-warning,
.btn-warning:active {
  background-color: #ddd5c3 !important;
  border-color: #ddd5c3 !important;
  color: #67593a !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus,
.btn-warning.active {
  color: #ffffff !important;
  background-color: #beae8c !important;
  border-color: #beae8c !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #67593a !important;
  background-color: #beae8c !important;
  border-color: #beae8c !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #dfd6c2 !important;
  border-color: #dfd6c2 !important;
  color: #6a5b38 !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: #c1b089 !important;
  border-color: #c1b089 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #6a5b38 !important;
  background-color: #c1b089 !important;
  border-color: #c1b089 !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: #000000;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #000000 !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: #000000 !important;
  border-color: #000000 !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #87876c;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #575745 !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: #87876c !important;
  border-color: #87876c !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #f2f2f2;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #c7c7c7 !important;
  background-color: transparent !important;
  border-color: transparent !important;
  box-shadow: none !important;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #727272 !important;
  background-color: #f2f2f2 !important;
  border-color: #f2f2f2 !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #8d8d8d;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #626262 !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: #8d8d8d !important;
  border-color: #8d8d8d !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ddd5c3;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #beae8c !important;
  background-color: transparent !important;
  border-color: transparent !important;
  box-shadow: none !important;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #67593a !important;
  background-color: #ddd5c3 !important;
  border-color: #ddd5c3 !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #dfd6c2;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #c1b089 !important;
  background-color: transparent !important;
  border-color: transparent !important;
  box-shadow: none !important;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #6a5b38 !important;
  background-color: #dfd6c2 !important;
  border-color: #dfd6c2 !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: #000000 !important;
}
.text-secondary {
  color: #87876c !important;
}
.text-success {
  color: #8d8d8d !important;
}
.text-info {
  color: #f2f2f2 !important;
}
.text-warning {
  color: #ddd5c3 !important;
}
.text-danger {
  color: #dfd6c2 !important;
}
.text-white {
  color: #fafafa !important;
}
.text-black {
  color: #232323 !important;
}
a.text-primary:hover,
a.text-primary:focus,
a.text-primary.active {
  color: #000000 !important;
}
a.text-secondary:hover,
a.text-secondary:focus,
a.text-secondary.active {
  color: #87876c !important;
}
a.text-success:hover,
a.text-success:focus,
a.text-success.active {
  color: #8d8d8d !important;
}
a.text-info:hover,
a.text-info:focus,
a.text-info.active {
  color: #f2f2f2 !important;
}
a.text-warning:hover,
a.text-warning:focus,
a.text-warning.active {
  color: #ddd5c3 !important;
}
a.text-danger:hover,
a.text-danger:focus,
a.text-danger.active {
  color: #dfd6c2 !important;
}
a.text-white:hover,
a.text-white:focus,
a.text-white.active {
  color: #fafafa !important;
}
a.text-black:hover,
a.text-black:focus,
a.text-black.active {
  color: #232323 !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 0.3s ease-in-out;
  background-image: linear-gradient(currentColor 50%, currentColor 50%);
  /*  background-position: 0px 1.2em; */
}
.nav-tabs .nav-link.active {
  color: #000000;
}
.nav-tabs .nav-link:not(.active) {
  color: #232323;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #f2f2f2;
}
.alert-warning {
  background-color: #ddd5c3;
}
.alert-danger {
  background-color: #dfd6c2;
}
.mbr-section-btn a.btn:not(.btn-form) {
  border-radius: 100px;
}
.mbr-gallery-filter li a {
  border-radius: 100px !important;
}
.mbr-gallery-filter li.active .btn {
  background-color: #000000;
  border-color: #000000;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
.nav-tabs .nav-link {
  border-radius: 100px !important;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #b3b3b3;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #cdcdcd;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #ffffff;
}
/* Scroll to top button*/
#scrollToTop a {
  border-radius: 100px;
}
.form-control {
  font-family: 'Lato', sans-serif;
  font-size: 1rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control > .mbr-iconfont {
  font-size: 1.25rem;
}
.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: #000000 !important;
}
.form-control:-webkit-input-placeholder {
  font-family: 'Lato', sans-serif;
  font-size: 1rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control:-webkit-input-placeholder > .mbr-iconfont {
  font-size: 1.25rem;
}
blockquote {
  border-color: #000000;
}
/* Forms */
.mbr-form .input-group-btn a.btn {
  border-radius: 100px !important;
}
.mbr-form .input-group-btn a.btn:hover {
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.mbr-form .input-group-btn button[type="submit"] {
  border-radius: 100px !important;
  padding: 1rem 3rem;
}
.mbr-form .input-group-btn button[type="submit"]:hover {
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #000000;
  color: #ffffff;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #000000;
}
.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: #000000;
  border-bottom-color: #000000;
}
.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: #000000 !important;
  box-shadow: none !important;
}
.xdsoft_datetimepicker .xdsoft_calendar td:hover,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div:hover {
  color: #ffffff !important;
  background: #87876c !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='%23000000' %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;
}
p {
  margin-bottom: 0;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  margin-bottom: 0;
}
.container {
  max-width: 1440px;
}
a {
  transition: all 300ms ease !important;
}
a.btn {
  transition: all 300ms ease !important;
  box-shadow: none !important;
}
.card-title {
  margin-bottom: 0;
}
button:focus {
  box-shadow: none !important;
}
.cid-t2ML8etCKn {
  z-index: 1000;
  width: 100%;
}
.cid-t2ML8etCKn nav.navbar {
  position: fixed;
}
.cid-t2ML8etCKn .navbar {
  min-height: 70px;
  transition: all 0.3s;
  background: rgba(135, 135, 108, 0.5);
}
.cid-t2ML8etCKn .navbar.opened {
  transition: all 0.3s;
}
.cid-t2ML8etCKn .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-t2ML8etCKn .navbar .navbar-logo img {
  width: auto;
}
.cid-t2ML8etCKn .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-t2ML8etCKn .navbar.collapsed {
  justify-content: center;
}
.cid-t2ML8etCKn .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-t2ML8etCKn .navbar.collapsed .mbr-text {
  display: initial;
  padding-right: 0;
  padding: 10px;
}
.cid-t2ML8etCKn .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-t2ML8etCKn .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-t2ML8etCKn .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-t2ML8etCKn .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-t2ML8etCKn .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-t2ML8etCKn .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-t2ML8etCKn .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-t2ML8etCKn .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
}
@media (max-width: 991px) {
  .cid-t2ML8etCKn .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-t2ML8etCKn .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-t2ML8etCKn .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-t2ML8etCKn .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-t2ML8etCKn .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-t2ML8etCKn .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-t2ML8etCKn .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-t2ML8etCKn .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-t2ML8etCKn .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-t2ML8etCKn .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-t2ML8etCKn .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-t2ML8etCKn .navbar.navbar-short {
  min-height: 60px;
}
.cid-t2ML8etCKn .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-t2ML8etCKn .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-t2ML8etCKn .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-t2ML8etCKn .dropdown-menu {
  padding: 0;
  border-radius: 0;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  margin-top: 0px;
}
.cid-t2ML8etCKn .dropdown-item:hover,
.cid-t2ML8etCKn .dropdown-item:focus {
  color: #000000 !important;
}
.cid-t2ML8etCKn .nav-dropdown .link {
  padding: 13px 0em !important;
  font-weight: 500;
}
.cid-t2ML8etCKn .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-t2ML8etCKn .nav-link {
  position: relative;
  padding: 0;
  transition: all 0.5s ease-in-out;
  padding-bottom: 13px !important;
}
.cid-t2ML8etCKn .container {
  display: flex;
  margin: auto;
}
.cid-t2ML8etCKn .iconfont-wrapper {
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-t2ML8etCKn .dropdown-menu,
.cid-t2ML8etCKn .navbar.opened {
  background: #87876c !important;
}
.cid-t2ML8etCKn .nav-item:focus,
.cid-t2ML8etCKn .nav-link:focus {
  outline: none;
}
.cid-t2ML8etCKn .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-t2ML8etCKn .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-t2ML8etCKn .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-t2ML8etCKn .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-t2ML8etCKn .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-t2ML8etCKn .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-t2ML8etCKn .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-t2ML8etCKn .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-t2ML8etCKn .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-t2ML8etCKn .dropdown-item.active,
.cid-t2ML8etCKn .dropdown-item:active {
  background-color: transparent;
}
.cid-t2ML8etCKn .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-t2ML8etCKn .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-t2ML8etCKn .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-t2ML8etCKn .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #87876c;
}
.cid-t2ML8etCKn .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-t2ML8etCKn .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-t2ML8etCKn ul.navbar-nav {
  flex-wrap: wrap;
  padding-left: 20px;
}
.cid-t2ML8etCKn .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-t2ML8etCKn button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-t2ML8etCKn button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-t2ML8etCKn button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-t2ML8etCKn button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-t2ML8etCKn button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-t2ML8etCKn button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-t2ML8etCKn nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-t2ML8etCKn nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-t2ML8etCKn nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-t2ML8etCKn nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-t2ML8etCKn .navbar-dropdown {
  position: fixed;
}
.cid-t2ML8etCKn a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-t2ML8etCKn .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: flex-end;
  padding-left: 9rem;
  padding-top: 0.3rem;
  text-align: center;
  min-width: 340px !important;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-t2ML8etCKn .navbar {
    height: 70px;
  }
  .cid-t2ML8etCKn .navbar.opened {
    height: auto;
  }
  .cid-t2ML8etCKn .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-t2ML8etCKn a {
  display: inline;
  font-weight: 400 !important;
}
.cid-t2ML8etCKn img {
  display: inline;
  padding-right: 10px;
}
.cid-t2ML8etCKn .dropdown-toggle:after {
  display: none;
}
.cid-t2ML8etCKn .navbar .dropdown-item {
  display: block;
  border-radius: 0;
  padding-top: 9px;
  padding-bottom: 9px;
}
.cid-t2ML8etCKn .dropdown-item:hover {
  color: #75dbcd !important;
}
@media (max-width: 990px) {
  .cid-t2ML8etCKn .dropdown-menu {
    margin-top: 0px;
  }
  .cid-t2ML8etCKn .nav-dropdown .link {
    margin: 0 !important;
  }
}
.cid-t2ML8etCKn .mbr-buttons {
  margin: 20px -6px 20px;
}
.cid-t2ML8etCKn .nav-item:last-child {
  margin-right: 0;
}
@media (max-width: 970px) {
  .cid-t2ML8etCKn ul li {
    height: 45px;
    display: list-item;
  }
}
.cid-t2ML8etCKn .navbar-collapse.collapsing .nav-item {
  height: 45px;
}
.cid-t2ML8etCKn .navbar-collapse.collapse.show .nav-item {
  height: 45px;
}
.cid-t2ML8etCKn .navbar-collapse.collapse.show ul li {
  display: list-item;
}
.cid-t2ML8etCKn .mbr-iconfont {
  margin-left: -5px;
  margin-right: 7px;
}
.cid-t2ML8etCKn .btn {
  transition: color 350ms ease, transform 300ms ease, border 300ms ease, background-color 300ms ease, -webkit-transform 300ms ease !important;
  padding: 1rem 1.5625rem !important;
  display: inline-block;
  line-height: 20px;
  transform-style: preserve-3d !important;
}
.cid-t2ML8etCKn .btn {
  border-radius: 1000px !important;
}
.cid-t2ML8etCKn .navbar.collapsed .icons-menu {
  display: flex;
  flex-direction: column;
}
.cid-t2ML8etCKn .navbar.collapsed .icons-menu .top {
  margin-top: 15px;
}
.cid-t2ML8etCKn .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-t2ML8etCKn .dropdown-toggle::after {
  display: inline-block;
  margin-left: .255em;
  vertical-align: .255em;
  content: "";
  border-top: .3em solid;
  border-right: .3em solid transparent;
  border-bottom: 0;
  border-left: .3em solid transparent;
}
.cid-t2ML8etCKn .dropdown-item:focus {
  color: #75dbcd !important;
}
@media (max-width: 945px) {
  .cid-t2ML8etCKn .icons-menu {
    display: flex;
    flex-direction: column;
  }
  .cid-t2ML8etCKn .top {
    margin-top: 25px;
  }
}
@media (min-width: 992px) {
  .cid-t2ML8etCKn .container,
  .cid-t2ML8etCKn .container-fluid {
    flex-wrap: nowrap;
  }
}
.cid-t2ML8etCKn li:last-child {
  margin-right: 0;
}
@media (max-width: 989px) {
  .cid-t2ML8etCKn ul.navbar-nav {
    padding-left: 0;
  }
}
@media (max-width: 430px) {
  .cid-t2ML8etCKn .icons-menu {
    min-width: initial !important;
  }
  .cid-t2ML8etCKn a.btn {
    margin-top: 10px;
  }
}
.cid-t2ML8etCKn a.btn > span {
  margin-left: 0.5rem;
}
.cid-t2ML8etCKn .nav-item {
  position: relative;
}
.cid-t2ML8etCKn .nav-item:hover .nav-link {
  color: #Ddd5c3 !important;
}
.cid-t2ML8etCKn a.btn {
  padding: 13px 30px !important;
  transition: all .5s;
  font-weight: 600 !important;
  min-width: 146px;
}
.cid-t2ML8etCKn li.nav-item {
  padding: 13px 40px !important;
}
.cid-t2ML8etCKn a.btn:hover {
  color: #000000 !important;
  background-color: #ffffff !important;
  border-color: #ffffff !important;
}
.cid-t2ML8etCKn .mbr-text {
  display: flex;
  align-items: center;
  padding-right: 25px;
  min-width: 150px;
}
.cid-t2ML8etCKn .mbr-text,
.cid-t2ML8etCKn .button-align {
  color: #ffffff;
}
.cid-t2ML8etCKn .container-fluid {
  border-bottom: 1px solid #f2f2f2;
  margin: 0 15px;
}
@media (max-width: 1220px) {
  .cid-t2ML8etCKn .icons-menu {
    padding-left: 4rem;
  }
  .cid-t2ML8etCKn li.nav-item {
    padding: 13px 20px !important;
  }
}
@media (max-width: 992px) {
  .cid-t2ML8etCKn .mbr-text {
    display: initial;
    padding-right: 0;
    padding: 10px;
  }
}
.cid-t2ML8KFUeR {
  padding-top: 10rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/yoga-entra-1169x1251.jpg");
}
.cid-t2ML8KFUeR .mbr-section-title {
  text-align: center;
  margin-bottom: 40px;
  color: #ffffff;
}
.cid-t2ML8KFUeR .mbr-text {
  color: #ffffff;
  text-align: left;
}
.cid-t2ML8KFUeR .button-align {
  text-align: right;
}
.cid-t2ML8KFUeR .mbr-section-btn {
  display: block;
  margin-left: 0;
  margin-right: 0;
}
.cid-t2ML8KFUeR .btn {
  margin-top: 20px;
  transition: all .3s !important;
  width: 268px !important;
  height: 268px !important;
}
.cid-t2ML8KFUeR a.btn > span {
  margin-left: 0.5rem;
}
.cid-t2ML8KFUeR a.btn {
  padding: 7.5rem 4rem;
  margin: 0;
  border-radius: 100% !important;
  background-color: transparent !important;
  border: 2px solid #ffffff !important;
}
.cid-t2ML8KFUeR .al {
  display: flex;
  align-items: center;
}
.cid-t2ML8KFUeR a.btn:hover {
  color: #000000 !important;
  background-color: #Ddd5c3!important;
  border: 2px solid #ffffff !important;
}
.cid-t2ML8KFUeR a {
  font-weight: 500;
  transition: color .3s;
}
.cid-t2ML8KFUeR .mbr-iconfont {
  margin: auto;
  background-color: #Ddd5c3;
  color: #ffffff;
  border-radius: 50%;
  font-size: 13px;
  cursor: pointer;
  width: 52px;
  height: 52px;
  transition: .2s;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 14px;
  padding-right: 11px;
}
.cid-t2ML8KFUeR .icon-wrapper {
  display: inline;
}
.cid-t2ML8KFUeR .lin {
  display: inline;
  margin-left: 12px;
}
.cid-t2ML8KFUeR .linkMovement {
  margin-top: 130px;
}
@media (max-width: 960px) {
  .cid-t2ML8KFUeR .al {
    flex-direction: column;
  }
  .cid-t2ML8KFUeR .button-align {
    padding-top: 20px;
    text-align: center;
  }
  .cid-t2ML8KFUeR .linkMovement {
    display: flex;
    justify-content: center;
    padding-top: 20px;
    margin-top: 0;
  }
}
.cid-tWmRgEmJQz {
  background-image: url("../../../assets/images/logo-377x350.png");
}
.cid-tWmRgEmJQz .mbr-text,
.cid-tWmRgEmJQz .mbr-section-btn {
  text-align: left;
  color: #ffffff;
}
.cid-tWhICMO5HI {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ddd5c3;
}
.cid-tWhICMO5HI .mbr-fallback-image.disabled {
  display: none;
}
.cid-tWhICMO5HI .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tWhICMO5HI .container-fluid {
  padding: 0 50px;
}
@media (max-width: 992px) {
  .cid-tWhICMO5HI .container-fluid {
    padding: 0 30px;
  }
}
@media (max-width: 992px) {
  .cid-tWhICMO5HI .container {
    padding: 0 30px;
  }
}
.cid-tWhICMO5HI .content-wrapper {
  padding-right: 100px;
  padding-right: 0;
  padding-left: 100px;
}
@media (max-width: 992px) {
  .cid-tWhICMO5HI .content-wrapper {
    padding: 0;
  }
}
@media (max-width: 992px) {
  .cid-tWhICMO5HI .content-wrapper {
    padding: 0;
  }
}
.cid-tWhICMO5HI .content-wrapper .mbr-section-title {
  margin-bottom: 30px;
}
.cid-tWhICMO5HI .content-wrapper .mbr-text {
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .cid-tWhICMO5HI .content-wrapper .mbr-text {
    margin-bottom: 20px;
  }
}
.cid-tWhICMO5HI .content-wrapper .desc-wrap {
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .cid-tWhICMO5HI .content-wrapper .desc-wrap {
    margin-bottom: 20px;
  }
}
.cid-tWhICMO5HI .content-wrapper .desc-wrap .mbr-desc {
  margin-bottom: 0;
}
.cid-tWhICMO5HI .content-wrapper .desc-wrap .mbr-section-subtitle {
  margin-bottom: 0;
}
.cid-tWhICMO5HI .image-wrapper {
  padding-left: 100px;
  padding-left: 0;
  padding-right: 100px;
}
@media (max-width: 992px) {
  .cid-tWhICMO5HI .image-wrapper {
    padding: 0;
  }
}
@media (max-width: 992px) {
  .cid-tWhICMO5HI .image-wrapper {
    padding: 0;
  }
}
.cid-tWhICMO5HI .image-wrapper .icon-wrap {
  display: block;
}
.cid-tWhICMO5HI .image-wrapper .icon-wrap:hover .mbr-iconfont {
  opacity: .7;
}
.cid-tWhICMO5HI .image-wrapper .icon-wrap .mbr-iconfont {
  width: 180px;
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 5px solid #ffffff;
  font-size: 30px;
  color: #ffffff;
  transform: rotate(45deg);
  margin: 0 auto 50px;
  border-radius: 100%;
  transition: all 0.3s ease-in-out;
}
.cid-tWhICMO5HI .image-wrapper .image-wrap img {
  height: 700px;
  object-fit: cover;
  border-radius: 2em;
}
.cid-tWhICMO5HI .mbr-section-title {
  color: #ffffff;
}
.cid-tWhICMO5HI .mbr-text {
  color: #000000;
}
.cid-tWhICMO5HI .mbr-desc {
  color: #4e4e4e;
}
.cid-tWhICMO5HI .mbr-section-subtitle {
  color: #ffffff;
}
.cid-tWmSbFU51a {
  background-image: url("../../../assets/images/yoga-010-1170x850.jpg");
}
.cid-tWmSbFU51a .mbr-text,
.cid-tWmSbFU51a .mbr-section-btn {
  text-align: left;
  color: #ffffff;
}
.cid-tWmTCaHGci {
  padding-top: 5rem;
  padding-bottom: 5rem;
  overflow: hidden;
  background-color: #c0baab;
}
.cid-tWmTCaHGci .mbr-fallback-image.disabled {
  display: none;
}
.cid-tWmTCaHGci .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tWmTCaHGci .row {
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-tWmTCaHGci .container {
    padding: 0 15px;
  }
}
.cid-tWmTCaHGci .title-wrapper .mbr-section-title {
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .cid-tWmTCaHGci .title-wrapper .mbr-section-title {
    margin-bottom: 40px;
  }
}
.cid-tWmTCaHGci .content-wrapper {
  padding-right: 21px;
}
@media (max-width: 992px) {
  .cid-tWmTCaHGci .content-wrapper {
    padding: 0;
    margin-bottom: 40px;
  }
}
.cid-tWmTCaHGci .content-wrapper .mbr-section-subtitle {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-tWmTCaHGci .content-wrapper .mbr-section-subtitle {
    margin-bottom: 20px;
  }
}
.cid-tWmTCaHGci .content-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-tWmTCaHGci .content-wrapper .mbr-section-btn {
  margin-top: 40px;
}
.cid-tWmTCaHGci .image-wrapper {
  position: relative;
  margin-left: 21px;
  min-height: 300px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-tWmTCaHGci .image-wrapper {
    margin: 0;
  }
}
.cid-tWmTCaHGci .image-wrapper img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: 3px solid #ffffff;
}
.cid-tWmTCaHGci .image-wrapper::before {
  content: '';
  position: absolute;
  height: 110%;
  width: 125%;
  border-radius: 100%;
  background-color: #87876c;
  filter: blur(80px);
  pointer-events: none;
}
.cid-tWmTCaHGci .image-wrapper .mbr-image-text {
  position: relative;
  z-index: 1;
  padding: 0 16px;
  margin-bottom: 30px;
  width: 100%;
}
.cid-tWmTCaHGci .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-tWmTCaHGci .mbr-section-subtitle {
  color: #f2ac2b;
}
.cid-tWmTCaHGci .mbr-text {
  color: #fdfdfd;
}
.cid-tWmTCaHGci .mbr-image-text {
  color: #ffffff;
  text-align: center;
}
.cid-tWmXUr153k {
  background-image: url("../../../assets/images/ceremonia-gente-1170x1095.jpg");
}
.cid-tWmXUr153k .mbr-text,
.cid-tWmXUr153k .mbr-section-btn {
  text-align: left;
  color: #ffffff;
}
.cid-tWmZXZM4n5 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ddd5c3;
}
.cid-tWmZXZM4n5 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tWmZXZM4n5 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tWmZXZM4n5 .container-fluid {
  padding: 0 50px;
}
@media (max-width: 992px) {
  .cid-tWmZXZM4n5 .container-fluid {
    padding: 0 30px;
  }
}
@media (max-width: 992px) {
  .cid-tWmZXZM4n5 .container {
    padding: 0 30px;
  }
}
.cid-tWmZXZM4n5 .cont-wrapper {
  padding: 60px;
  background-color: #c0baab;
  border-radius: 20px;
}
@media (max-width: 992px) {
  .cid-tWmZXZM4n5 .cont-wrapper {
    padding: 16px;
  }
}
.cid-tWmZXZM4n5 .cont-wrapper .card-wrapper {
  padding: 40px 145px;
  background-color: #f0f0f0;
  border-radius: 20px;
}
@media (max-width: 992px) {
  .cid-tWmZXZM4n5 .cont-wrapper .card-wrapper {
    padding: 16px;
  }
}
.cid-tWmZXZM4n5 .cont-wrapper .card-wrapper .mbr-section-title {
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .cid-tWmZXZM4n5 .cont-wrapper .card-wrapper .mbr-section-title {
    margin-bottom: 20px;
  }
}
.cid-tWmZXZM4n5 .cont-wrapper .card-wrapper .mbr-text {
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .cid-tWmZXZM4n5 .cont-wrapper .card-wrapper .mbr-text {
    margin-bottom: 20px;
  }
}
.cid-tWmZXZM4n5 .cont-wrapper .card-wrapper .images-wrapper {
  display: flex;
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-tWmZXZM4n5 .cont-wrapper .card-wrapper .images-wrapper {
    margin-bottom: 20px;
  }
}
@media (max-width: 768px) {
  .cid-tWmZXZM4n5 .cont-wrapper .card-wrapper .images-wrapper {
    display: block;
  }
}
.cid-tWmZXZM4n5 .cont-wrapper .card-wrapper .images-wrapper img {
  border-radius: 40px;
  height: 240px;
  object-fit: cover;
}
.cid-tWmZXZM4n5 .cont-wrapper .card-wrapper .images-wrapper .image_1 {
  width: 35%;
}
@media (max-width: 768px) {
  .cid-tWmZXZM4n5 .cont-wrapper .card-wrapper .images-wrapper .image_1 {
    width: 100%;
  }
}
.cid-tWmZXZM4n5 .cont-wrapper .card-wrapper .images-wrapper .image_2 {
  width: 40%;
}
@media (max-width: 768px) {
  .cid-tWmZXZM4n5 .cont-wrapper .card-wrapper .images-wrapper .image_2 {
    width: 100%;
  }
}
.cid-tWmZXZM4n5 .cont-wrapper .card-wrapper .images-wrapper .image_3 {
  width: 25%;
}
@media (max-width: 768px) {
  .cid-tWmZXZM4n5 .cont-wrapper .card-wrapper .images-wrapper .image_3 {
    width: 100%;
  }
}
.cid-tWmZXZM4n5 .cont-wrapper .card-wrapper .mbr-desc {
  margin-bottom: 40px;
}
.cid-tWmZXZM4n5 .cont-wrapper .card-wrapper .list {
  padding: 0 30%;
  margin: 0;
  list-style-type: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-tWmZXZM4n5 .cont-wrapper .card-wrapper .list {
    padding: 0;
  }
}
.cid-tWmZXZM4n5 .cont-wrapper .card-wrapper .list .item-wrap {
  padding: 20px 25px;
  border: 3px solid #2b2b2b;
  margin: 0 8px 16px 0;
  border-radius: 40px;
}
.cid-tWmZXZM4n5 .cont-wrapper .card-wrapper .list .item-wrap:first-child,
.cid-tWmZXZM4n5 .cont-wrapper .card-wrapper .list .item-wrap:last-child {
  background-color: #87876c;
  border: 3px solid #87876c;
}
.cid-tWmZXZM4n5 .mbr-section-title {
  color: #86866d;
}
.cid-tWmZXZM4n5 .mbr-text {
  color: #4e4e4e;
}
.cid-tWmZXZM4n5 .mbr-desc {
  color: #86866d;
}
.cid-tWmZXZM4n5 .list {
  color: #2b2b2b;
}
.cid-tWtaUAZPHp {
  background-image: url("../../../assets/images/cgg-uno-2000x1429.png");
}
.cid-tWtaUAZPHp .mbr-text,
.cid-tWtaUAZPHp .mbr-section-btn {
  text-align: left;
  color: #ffffff;
}
.cid-tWthQfWGHh {
  padding-top: 5rem;
  padding-bottom: 5rem;
  overflow: hidden;
  background-color: #87876c;
}
.cid-tWthQfWGHh .mbr-fallback-image.disabled {
  display: none;
}
.cid-tWthQfWGHh .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tWthQfWGHh .container-fluid {
  padding: 0 60px;
}
@media (max-width: 992px) {
  .cid-tWthQfWGHh .container-fluid {
    padding: 0 23px;
  }
}
@media (max-width: 768px) {
  .cid-tWthQfWGHh .container-fluid {
    padding: 0 12px;
  }
}
@media (max-width: 992px) {
  .cid-tWthQfWGHh .container {
    padding: 0 23px;
  }
}
@media (max-width: 768px) {
  .cid-tWthQfWGHh .container {
    padding: 0 12px;
  }
}
.cid-tWthQfWGHh .content-wrapper {
  border-radius: 32px;
  display: flex;
  justify-content: space-between;
  overflow: hidden;
  background-color: #ddd5c3;
}
@media (max-width: 992px) {
  .cid-tWthQfWGHh .content-wrapper {
    display: block;
  }
}
.cid-tWthQfWGHh .content-wrapper .title-wrapper {
  width: 35em;
  padding: 90px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media (max-width: 1200px) {
  .cid-tWthQfWGHh .content-wrapper .title-wrapper {
    padding: 32px;
  }
}
@media (max-width: 992px) {
  .cid-tWthQfWGHh .content-wrapper .title-wrapper {
    width: 100%;
  }
}
.cid-tWthQfWGHh .content-wrapper .title-wrapper .title-wrap {
  margin-bottom: 22px;
}
.cid-tWthQfWGHh .content-wrapper .title-wrapper .title-wrap .mbr-section-title {
  margin-bottom: 32px;
  position: relative;
}
.cid-tWthQfWGHh .content-wrapper .title-wrapper .title-wrap .mbr-text {
  margin-bottom: 20px;
}
.cid-tWthQfWGHh .content-wrapper .image-wrapper {
  margin-top: 90px;
  border-top: 4px solid #ffffff;
  border-left: 4px solid #ffffff;
  padding: 40px 0 0 40px;
  border-radius: 64px 0 0 0;
  background-color: #c0baab;
  border-left: none;
  border-right: 4px solid #ffffff;
  border-radius: 0 64px 0 0;
  padding: 40px 40px 0 0;
}
@media (max-width: 992px) {
  .cid-tWthQfWGHh .content-wrapper .image-wrapper {
    margin: 0 0 0 32px;
  }
}
@media (max-width: 992px) {
  .cid-tWthQfWGHh .content-wrapper .image-wrapper {
    margin: 0 32px 0 0;
  }
}
.cid-tWthQfWGHh .content-wrapper .image-wrapper img {
  min-height: 670px;
  border-radius: 32px 0 0 0 !important;
  object-fit: cover;
  border-radius: 0 32px 0 0 !important;
}
@media (max-width: 992px) {
  .cid-tWthQfWGHh .content-wrapper .image-wrapper img {
    min-height: auto;
    height: 350px;
  }
}
.cid-tWthQfWGHh .mbr-section-title {
  color: #ffffff;
}
.cid-tWthQfWGHh .mbr-text {
  color: #ffffff;
}
.cid-tWyc1x4pE4 {
  background-image: url("../../../assets/images/captura-de-pantalla-2023-11-24-a-las-11.44.41-1091x653.png");
}
.cid-tWyc1x4pE4 .mbr-text,
.cid-tWyc1x4pE4 .mbr-section-btn {
  text-align: left;
  color: #ffffff;
}
.cid-tWyeiz0IlW {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #dfd6c2;
}
.cid-tWyeiz0IlW .item-img {
  position: relative;
}
.cid-tWyeiz0IlW .item-img img {
  transition: all 0.2s;
  object-fit: cover;
}
.cid-tWyeiz0IlW .cardbg {
  background: #87876c;
  height: 100%;
  min-height: 300px;
}
.cid-tWyeiz0IlW .mbr-section-subtitle {
  border: 1px solid currentColor;
  border-radius: 1rem;
  width: fit-content;
  padding: 0.2rem 0.7rem;
  display: inline-block;
}
.cid-tWyeiz0IlW .image-wrapper {
  overflow: hidden;
}
.cid-tWyeiz0IlW .item1 {
  margin-bottom: 2rem !important;
}
.cid-tWyeiz0IlW .item-wrapper {
  position: relative;
  background: #dfd6c2;
  border: 3px solid #dfd6c2;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
.cid-tWyeiz0IlW .item-wrapper .item-footer {
  margin-top: auto;
}
.cid-tWyeiz0IlW .item-link {
  position: absolute;
  bottom: 8px;
  right: 90px;
  color: #ffffff;
}
.cid-tWyeiz0IlW .item1,
.cid-tWyeiz0IlW .item {
  transition: transform 0.3s;
  margin-bottom: 2rem;
}
.cid-tWyeiz0IlW .item1 .item:hover,
.cid-tWyeiz0IlW .item .item:hover {
  cursor: pointer;
}
.cid-tWyeiz0IlW .item1:hover .link-icon-wrapper span,
.cid-tWyeiz0IlW .item:hover .link-icon-wrapper span {
  transform: rotate(-20deg) scale(1.3);
}
@media (max-width: 992px) {
  .cid-tWyeiz0IlW .card2 {
    margin-top: 1rem;
  }
}
.cid-tWyeiz0IlW .link-icon-wrapper {
  position: absolute;
  right: -1px;
  padding: 2px;
  bottom: -1px;
  background: #dfd6c2;
  width: 68px;
  height: 68px;
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  border-top-left-radius: 50%;
  border-bottom-right-radius: 2rem;
  z-index: 3;
}
.cid-tWyeiz0IlW .link-icon-wrapper .icon-wrap {
  background: #000000;
  width: 55px;
  height: 55px;
  transition: all 0.3s;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
}
.cid-tWyeiz0IlW .link-icon-wrapper .icon-wrap span {
  color: #ffffff;
  font-size: 1.1rem;
  transition: all 0.3s;
  display: block;
  padding-top: 1px;
}
.cid-tWyeiz0IlW .link-icon-wrapper .svg1 {
  position: absolute;
  top: -29px;
  right: 0px;
  transform: rotate(180deg);
  width: 30px;
}
.cid-tWyeiz0IlW .link-icon-wrapper .svg1 path {
  fill: #dfd6c2;
}
.cid-tWyeiz0IlW .link-icon-wrapper .svg2 {
  position: absolute;
  transform: rotate(180deg);
  width: 30px;
  bottom: 0;
  left: -29px;
}
.cid-tWyeiz0IlW .link-icon-wrapper .svg2 path {
  fill: #dfd6c2;
}
.cid-tWyeiz0IlW .item-content {
  position: absolute;
  top: 0;
  left: 0;
  margin-top: 1rem;
  padding: 0 1.5rem 2rem;
  display: flex;
  flex-direction: column;
  height: 100%;
}
@media (max-width: 767px) {
  .cid-tWyeiz0IlW .item-content {
    padding: 0 1rem 1.4rem;
    margin-top: 1rem;
  }
}
.cid-tWyeiz0IlW img,
.cid-tWyeiz0IlW .item-img {
  width: 100%;
}
.cid-tWyeiz0IlW .item:focus,
.cid-tWyeiz0IlW span:focus {
  outline: none;
}
@media (max-width: 767px) {
  .cid-tWyeiz0IlW .item {
    margin-bottom: 1rem;
  }
}
.cid-tWyeiz0IlW .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-tWyeiz0IlW .item-title {
  text-align: left;
  color: #ffffff;
}
.cid-tWyeiz0IlW .item-subtitle {
  text-align: left;
  color: #ffffff;
}
.cid-tWyeiz0IlW .mbr-section-subtitle,
.cid-tWyeiz0IlW .subtitle-wrap,
.cid-tWyeiz0IlW .mbr-section-btn {
  text-align: left;
  color: #ffffff;
}
.cid-tWyeiz0IlW .mbr-text,
.cid-tWyeiz0IlW .item .mbr-section-btn {
  color: #ffffff;
  text-align: left;
}
.cid-t2ML9lMPfs {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-t2ML9lMPfs .mbr-section-subtitle {
  margin-bottom: 20px;
  color: #000000;
  text-align: left;
  letter-spacing: 5.4px;
}
.cid-t2ML9lMPfs .mbr-section-title {
  color: #000000;
  text-align: right;
  margin-bottom: 50px;
}
.cid-t2ML9lMPfs .row {
  margin: auto;
}
.cid-t2ML9lMPfs .shadow {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  width: 350px;
  height: 350px;
  border-radius: 50%;
  padding-top: 60px;
  padding-bottom: 60px;
  border: 8px solid #ffffff;
  box-shadow: none !important;
  background-color: #87876c;
}
.cid-t2ML9lMPfs .mbr-iconfont {
  font-size: 50px;
  padding: 28px;
  border-radius: 50%;
  background-color: #ffffff;
  color: #000000;
}
.cid-t2ML9lMPfs .iconfont-wrapper {
  text-align: center;
}
.cid-t2ML9lMPfs .card-text {
  padding-top: 40px;
  text-align: center;
  padding-left: 30px;
  padding-right: 30px;
}
.cid-t2ML9lMPfs .top {
  width: 80%;
  margin: auto;
}
.cid-t2ML9lMPfs .b {
  display: flex;
  flex-direction: row;
  transform: translateX(10px);
  width: auto;
  margin: auto;
}
.cid-t2ML9lMPfs .t1 {
  transform: translateX(-20px);
}
.cid-t2ML9lMPfs .t2 {
  transform: translateX(-40px);
}
.cid-t2ML9lMPfs .t3 {
  transform: translateX(-60px);
}
@media (max-width: 1430px) {
  .cid-t2ML9lMPfs .shadow {
    width: 300px;
    height: 300px;
  }
}
@media (max-width: 1280px) {
  .cid-t2ML9lMPfs .shadow {
    width: 350px;
    height: 350px;
  }
  .cid-t2ML9lMPfs .t2,
  .cid-t2ML9lMPfs .t3 {
    position: absolute;
    top: 80%;
  }
  .cid-t2ML9lMPfs .row {
    padding-bottom: 300px;
  }
  .cid-t2ML9lMPfs .t2 {
    transform: translateX(0px);
  }
  .cid-t2ML9lMPfs .t3 {
    transform: translateX(330px);
  }
}
@media (max-width: 1120px) {
  .cid-t2ML9lMPfs .top {
    width: 80%;
  }
}
@media (max-width: 950px) {
  .cid-t2ML9lMPfs .shadow {
    width: 300px;
    height: 300px;
  }
  .cid-t2ML9lMPfs .t3 {
    transform: translateX(285px);
  }
  .cid-t2ML9lMPfs .row {
    padding-bottom: 250px;
  }
}
@media (max-width: 777px) {
  .cid-t2ML9lMPfs .b {
    display: flex;
    flex-direction: column;
    transform: none;
    align-items: center;
  }
  .cid-t2ML9lMPfs .row {
    padding-bottom: 0px;
  }
  .cid-t2ML9lMPfs .t2,
  .cid-t2ML9lMPfs .t3 {
    position: initial;
  }
  .cid-t2ML9lMPfs .top {
    width: 100%;
  }
  .cid-t2ML9lMPfs .t1 {
    transform: translateY(-20px) !important;
  }
  .cid-t2ML9lMPfs .t2 {
    transform: translateY(-40px);
  }
  .cid-t2ML9lMPfs .t3 {
    transform: translateY(-60px);
  }
}
.cid-t2MLaqKUF5 {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-t2MLaqKUF5 .item:focus,
.cid-t2MLaqKUF5 span:focus {
  outline: none;
}
.cid-t2MLaqKUF5 .item-wrapper {
  position: relative;
}
.cid-t2MLaqKUF5 .slide-content {
  position: relative;
  border-radius: 4px;
  background: transparent;
  height: 100%;
  display: flex;
  overflow: visible;
  flex-flow: column nowrap;
}
.cid-t2MLaqKUF5 .mbr-section-btn {
  margin-top: auto !important;
  margin-left: 0;
  margin-right: 0;
  width: auto;
  display: inline-block;
}
.cid-t2MLaqKUF5 .mbr-section-title {
  color: #14142b;
  text-align: center;
  margin-bottom: 40px;
}
.cid-t2MLaqKUF5 .mbr-section-subtitle {
  text-align: center;
  color: #8c8c95;
}
.cid-t2MLaqKUF5 .shadow {
  border-radius: 34px;
  overflow: visible;
  padding: 0 20px 20px;
  background-color: transparent !important;
  box-shadow: none !important;
  margin-top: 35px;
}
.cid-t2MLaqKUF5 .wrap-img {
  transition: all 300ms ease !important;
  overflow: hidden;
  border-radius: 30px 30px 0 0;
  padding: 0px 20px 20px;
  display: flex;
  justify-content: center;
}
.cid-t2MLaqKUF5 img {
  border-radius: 25px;
  margin-bottom: 20px;
}
.cid-t2MLaqKUF5 .card-title {
  margin-bottom: 10px;
  color: #4c4c4c;
  text-align: left;
}
.cid-t2MLaqKUF5 .card-text {
  color: #000000;
  text-align: left;
  padding-bottom: 18px;
}
.cid-t2MLaqKUF5 .btn {
  padding: 1rem 2rem;
  transition: all 300ms ease !important;
  font-weight: 600;
}
.cid-t2MLaqKUF5 a.btn > span {
  margin-left: 0.5rem;
}
.cid-t2MLaqKUF5 .mbr-section-title,
.cid-t2MLaqKUF5 .button-align {
  color: #000000;
  text-align: left;
}
.cid-t2MLaqKUF5 .t {
  display: flex;
  justify-content: flex-end;
}
.cid-t2MLaqKUF5 .row.b {
  display: flex;
  align-items: center;
}
.cid-t2MLaqKUF5 .card-title,
.cid-t2MLaqKUF5 .iconfont-wrapper {
  color: #000000;
}
.cid-t2MLaqKUF5 .btn-secondary:hover {
  color: #000000 !important;
}
@media (max-width: 1070px) {
  .cid-t2MLaqKUF5 .b {
    display: flex;
    flex-direction: column;
  }
  .cid-t2MLaqKUF5 .t {
    justify-content: center;
  }
  .cid-t2MLaqKUF5 .card-title {
    text-align: center;
  }
}
.cid-t2MLaqKUF5 .shadow:nth-child(1) {
  margin-top: 0;
}
.cid-t2MLaqKUF5 .shadow:nth-child(2) {
  margin-top: 0;
}
.cid-t2MLaqKUF5 .shadow:nth-child(3) {
  margin-top: 0;
}
@media (max-width: 576px) {
  .cid-t2MLaqKUF5 .shadow:nth-child(2) {
    margin-top: 35px;
  }
  .cid-t2MLaqKUF5 .shadow:nth-child(3) {
    margin-top: 35px;
  }
  .cid-t2MLaqKUF5 .shadow {
    padding-left: 12px;
    padding-right: 12px;
  }
}
.cid-t2MLdeffuM {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-t2MLdeffuM .iconfont-wrapper > .mbr-iconfont {
  font-size: 77px;
  color: #191919;
}
.cid-t2MLdeffuM .iconfont-wrapper {
  margin-bottom: 15px;
}
.cid-t2MLdeffuM .card {
  padding: 40px 70px 40px 30px;
  min-height: 330px;
  padding-right: 48px;
  margin-top: 50px;
  background-color: #75dbcd;
  width: 31%;
  border-radius: 20px;
}
.cid-t2MLdeffuM .row {
  display: flex;
  justify-content: space-between;
  padding-left: 15px;
  padding-right: 15px;
}
.cid-t2MLdeffuM .card-text {
  color: #ffffff;
}
.cid-t2MLdeffuM .card-title {
  margin-bottom: 15px;
}
.cid-t2MLdeffuM .custom-link::after {
  background-color: currentColor;
  display: block;
  position: absolute;
  bottom: -5px;
  left: 0;
  content: "";
  height: 1px;
  width: 100%;
}
.cid-t2MLdeffuM .link:hover .custom-link {
  color: #75dbcd !important;
}
.cid-t2MLdeffuM .card-title,
.cid-t2MLdeffuM .iconfont-wrapper {
  color: #000000;
}
.cid-t2MLdeffuM .c1 {
  background-color: #c0baab;
}
.cid-t2MLdeffuM .c2 {
  background-color: #87876c;
}
.cid-t2MLdeffuM .c3 {
  background-color: #e2e3e9;
}
.cid-t2MLdeffuM .c4 {
  background-color: #87876c;
}
.cid-t2MLdeffuM .c5 {
  background-color: #e2e3e9;
}
.cid-t2MLdeffuM .c6 {
  background-color: #ddd5c3;
}
.cid-t2MLdeffuM .card:nth-child(1) {
  margin-top: 0px;
}
.cid-t2MLdeffuM .card:nth-child(2) {
  margin-top: 0px;
}
.cid-t2MLdeffuM .card:nth-child(3) {
  margin-top: 0px;
}
@media (max-width: 770px) {
  .cid-t2MLdeffuM .card:nth-child(3) {
    margin-top: 30px;
  }
  .cid-t2MLdeffuM .card {
    width: 48%;
  }
}
@media (max-width: 520px) {
  .cid-t2MLdeffuM .card:nth-child(2) {
    margin-top: 30px;
  }
  .cid-t2MLdeffuM .card {
    padding-right: 15px;
    width: 100%;
  }
}
.cid-t2MLdeffuM .card-text,
.cid-t2MLdeffuM .link {
  color: #000000;
}
.cid-t2MLgzUd4u {
  padding-top: 10rem;
  padding-bottom: 10rem;
  background-image: url("../../../assets/images/mandala-5962483-1280-1140x1140.png");
  background-position: initial !important;
}
.cid-t2MLgzUd4u .mbr-section-subtitle {
  margin-bottom: 20px;
  color: #87876c;
  text-align: left;
  letter-spacing: 5.4px;
  text-shadow: 2px 2px 0 #ffffff, -1px -1px 0 #ffffff, 1px -1px 0 #ffffff, -1px 1px 0 #ffffff, 1px 1px 0 #ffffff;
  font-size: 100px;
}
.cid-t2MLgzUd4u .mbr-section-title {
  color: #dfd6c2;
  text-align: right;
  font-size: 100px;
}
.cid-t2MLgzUd4u .row {
  max-width: 900px;
  margin: auto;
}
@media (max-width: 823px) {
  .cid-t2MLgzUd4u .mbr-section-title,
  .cid-t2MLgzUd4u .mbr-section-subtitle {
    line-height: normal;
    font-size: 67px;
  }
}
.cid-t2MLiwBXws {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #87876c;
}
.cid-t2MLiwBXws .mbr-text,
.cid-t2MLiwBXws .mbr-section-btn {
  color: #232323;
}
.cid-t2MLiwBXws .justify-content-center {
  align-items: center;
}
.cid-t2MLiwBXws .mbr-section-title {
  color: #ffffff;
}
.cid-t2MLiwBXws .mbr-text {
  color: #6c7577;
}
.cid-t2MLiwBXws .form-control {
  margin-bottom: 25px;
  height: 60px;
  box-shadow: none !important;
  padding: .6rem 0;
}
.cid-t2MLiwBXws .form-group {
  margin-bottom: 0;
}
.cid-t2MLiwBXws input.form-control {
  background-color: transparent;
  border-bottom: 1px solid #adadad !important;
  border-radius: 0 !important;
}
.cid-t2MLiwBXws a.btn:hover {
  color: #000000 !important;
  background-color: #c0f22c !important;
  border: 1px solid #c0f22c !important;
}
.cid-t2MLiwBXws input {
  color: #ffffff !important;
}
.cid-t2MLiwBXws button {
  border-radius: 30px;
}
.cid-t2MLiwBXws button:hover {
  color: #000000 !important;
  background-color: #c0f22c !important;
  border: 1px solid #c0f22c !important;
}
.cid-t2MLiwBXws textarea {
  background-color: transparent;
  border-bottom: 1px solid #adadad !important;
  border-radius: 0 !important;
}
.cid-t2MLiwBXws select {
  background-color: transparent;
  border-bottom: 1px solid #adadad !important;
  border-radius: 0 !important;
}
.cid-t2MLiwBXws .mbr-section-title2 {
  text-align: right;
  color: #ffffff;
}
.cid-t2MLiwBXws .mbr-section-title3 {
  color: #dfd6c2;
}
.cid-t2MLiwBXws .b {
  padding-right: 100px;
}
.cid-t2MLiwBXws input::-webkit-input-placeholder {
  color: #adadad;
}
.cid-t2MLiwBXws .mbr-section-button a.btn,
.cid-t2MLiwBXws button {
  width: auto;
  font-weight: 600 !important;
}
.cid-t2MLiwBXws form.btn {
  padding: 1rem 2.5rem;
  width: auto;
  font-weight: 600 !important;
}
.cid-t2MLiwBXws .btn {
  font-weight: 600 !important;
  padding: 1rem 2.5rem !important;
}
@media (max-width: 991px) {
  .cid-t2MLiwBXws .image-wrapper {
    margin-bottom: 2rem;
  }
  .cid-t2MLiwBXws .b {
    padding-right: 12px;
    padding-bottom: 30px;
  }
}
.cid-t2MLiwBXws textarea::-webkit-input-placeholder {
  color: #adadad;
}
.cid-t2MLiwBXws textarea:hover {
  border-bottom: 1px solid #adadad !important;
}
.cid-t2MLiwBXws input[type="date"],
.cid-t2MLiwBXws input[type="time"] {
  color: #adadad !important;
}
.cid-t2MLiwBXws select,
.cid-t2MLiwBXws select:hover {
  color: #adadad;
  border-bottom: 1px solid #adadad !important;
}
.cid-t2MLiwBXws h5 {
  color: #adadad;
}
.cid-t2MLiwBXws p {
  color: #adadad;
}
.cid-t2MLiwBXws .form-control-label {
  color: #adadad;
  font-size: 18px;
}
.cid-t2MLiwBXws .form-check {
  color: #adadad;
}
.cid-t2MLiwBXws .form-check .form-check-input {
  float: left;
  margin-left: -1em;
  font-size: 1rem;
  margin-right: 10px;
}
.cid-t2MLiwBXws .form-check-label {
  font-size: 18px;
  color: #adadad;
}
.cid-t2MLj5V8oR {
  padding-top: 1rem;
  padding-bottom: 6rem;
  background-color: #fff8ef;
}
.cid-t2MLj5V8oR .card .card-header {
  background-color: transparent;
  margin-bottom: 0;
  padding: 26px 0;
}
.cid-t2MLj5V8oR .card {
  border-radius: 0;
  border-bottom: 1px solid #ffffff;
}
.cid-t2MLj5V8oR .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-t2MLj5V8oR .mbr-iconfont {
  padding-left: 1rem;
  font-family: 'Moririse2' !important;
  font-size: 1.4rem !important;
  color: #ffffff;
}
.cid-t2MLj5V8oR .panel-body,
.cid-t2MLj5V8oR .card-header {
  padding: 1rem 0;
}
.cid-t2MLj5V8oR .section-head {
  margin-bottom: 60px !important;
  color: #c0f22c;
}
.cid-t2MLj5V8oR .card1 {
  width: 100%;
  display: flex;
  align-items: center;
}
.cid-t2MLj5V8oR span {
  color: currentColor !important;
}
.cid-t2MLj5V8oR .mbr-section-subtitle {
  color: #111213;
  text-align: center;
}
.cid-t2MLj5V8oR .mbr-iconfont::before {
  font-size: 24px;
}
.cid-t2MLj5V8oR .b {
  display: inline-flex;
  padding-left: 30px;
}
.cid-t2MLj5V8oR .main {
  align-items: center;
  justify-content: space-between;
}
.cid-t2MLj5V8oR .card-header {
  background-color: transparent;
  border: none;
}
.cid-t2MLj5V8oR .panel-text {
  color: #000000;
}
.cid-t2MLj5V8oR .panel-title-edit {
  color: #87876c;
  display: flex;
  width: 100%;
  justify-content: space-between;
  align-items: center;
}
.cid-t2MLj5V8oR .mbr-text {
  margin-bottom: 48px;
}
.cid-t2MLj5V8oR .panel-body {
  padding: 0px 0px 40px;
}
.cid-t2MLj5V8oR .t1 {
  display: flex;
  align-items: center;
}
.cid-t2MLj5V8oR .button-align {
  margin-top: 40px;
}
.cid-t2MLj5V8oR .mbr-text,
.cid-t2MLj5V8oR .button-align {
  color: #75dbcd;
}
.cid-t2MLj5V8oR .card .collapsing .panel-body {
  border-top: transparent !important;
  border-bottom: 1px solid #ffffff;
}
.cid-t2MLj5V8oR .card .show .panel-body {
  border-top: transparent !important;
}
.cid-t2MLj5V8oR #bootstrap-toggle {
  border-top: 1px solid #ffffff;
}
.cid-t2MLj5V8oR H3 {
  color: #c0f22c;
}
.cid-tWyhahTb7o {
  background-color: #f0f0f0;
}
.cid-tWyhahTb7o input {
  background-color: rgba(0, 0, 0, 0);
  border-radius: 0;
  border: none!important;
  box-shadow: none;
  border-bottom: 1px solid #0c5b47!important;
}
.cid-tWyhahTb7o textarea {
  background-color: rgba(0, 0, 0, 0);
  border-radius: 0;
  border: none!important;
  box-shadow: none;
  border-bottom: 1px solid #0c5b47!important;
}
.cid-tWyhahTb7o a {
  padding: 0;
  border: 0px;
  transition: all 0.2s ease-out;
  padding-left: 0;
  padding-right: 0;
  word-break: normal;
  justify-content: center;
}
.cid-tWyhahTb7o .btn {
  white-space: nowrap;
  padding-left: 30px;
  padding-right: 30px;
  margin-top: 25px;
}
.cid-tWyhahTb7o .form-group {
  display: inline-block;
  margin-right: 0;
}
.cid-tWyhahTb7o .left {
  background-color: #f2f2f2;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.cid-tWyhahTb7o .mbr-section-title {
  padding-bottom: 10px;
  color: #0c5b47;
  font-size: 42px;
}
.cid-tWyhahTb7o .right {
  padding-top: 80px;
  padding-bottom: 80px;
  padding-left: 5%;
  padding-right: 5%;
  display: inline-block;
}
.cid-tWyhahTb7o .container {
  display: flex;
  padding: 0;
  margin: auto;
  max-width: initial;
}
@media (max-width: 690px) {
  .cid-tWyhahTb7o .right,
  .cid-tWyhahTb7o .left {
    width: 100%;
  }
  .cid-tWyhahTb7o .container {
    display: block;
  }
  .cid-tWyhahTb7o .google-map {
    height: 27rem;
  }
  .cid-tWyhahTb7o .right {
    padding-top: 49px;
    padding-bottom: 40px;
  }
}
@media (min-width: 690px) {
  .cid-tWyhahTb7o .right,
  .cid-tWyhahTb7o .left {
    width: 50%;
  }
}
.cid-tWyhahTb7o .desc {
  color: #0c5b47;
}
.cid-tWyhahTb7o .google-map {
  filter: grayscale(0.9);
  height: 31rem;
  position: relative;
}
.cid-tWyhahTb7o .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-tWyhahTb7o .google-map [data-state-details] {
  color: #6b6763;
  font-family: Montserrat;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-tWyhahTb7o .google-map[data-state] {
  background: #e9e5dc;
}
.cid-tWyhahTb7o .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-tWyhahTb7o input,
.cid-tWyhahTb7o textarea {
  background-color: rgba(0, 0, 0, 0);
  border-radius: 0;
}
.cid-tWyhahTb7o .mbr-text {
  padding-bottom: 20px;
}
.cid-tWyhahTb7o .form-control {
  font-style: italic;
  color: #1b745e !important;
  font-family: crimson text,serif;
}
.cid-tWyt6P3wcB {
  z-index: 1;
}
.cid-tWysW9lEJt {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/floral-2746540-1280-1259x1280.png");
}
.cid-tWysW9lEJt .mbr-fallback-image.disabled {
  display: none;
}
.cid-tWysW9lEJt .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tWysW9lEJt .row {
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-tWysW9lEJt .container {
    padding: 0 15px;
  }
}
.cid-tWysW9lEJt .content-wrapper .mbr-section-title {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-tWysW9lEJt .content-wrapper .mbr-section-title {
    margin-bottom: 20px;
  }
}
.cid-tWysW9lEJt .box .mbr-media {
  position: relative;
  overflow: hidden;
  height: 390px;
}
.cid-tWysW9lEJt .box .mbr-media img {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  border: 3px solid #373d52;
  object-fit: cover;
  z-index: 1;
}
.cid-tWysW9lEJt .box .mbr-media .mbr-iconfont {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
  font-size: 20px;
  color: #232b45;
  background-color: #f2ac2b;
  transition: all 0.3s ease-in-out;
  padding-left: 5px;
}
.cid-tWysW9lEJt .mbr-media {
  position: relative;
}
.cid-tWysW9lEJt .mbr-media img {
  object-fit: cover;
}
.cid-tWysW9lEJt a:hover {
  background-image: none !important;
}
.cid-tWysW9lEJt .icon-wrap {
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  position: absolute;
  height: 60px;
  width: 60px;
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease-in-out;
  z-index: 1;
}
.cid-tWysW9lEJt .icon-wrap::before {
  content: '';
  position: absolute;
  width: 60px;
  height: 60px;
  opacity: .2;
  background-color: #f2ac2b;
  border-radius: 100%;
  transition: all 0.3s ease-in-out;
  pointer-events: none;
}
.cid-tWysW9lEJt .icon-wrap:hover {
  cursor: pointer;
}
.cid-tWysW9lEJt .icon-wrap:hover::before {
  background-color: #ffac64;
}
.cid-tWysW9lEJt .icon-wrap:hover .mbr-iconfont {
  background-color: #ffac64;
}
.cid-tWysW9lEJt .mbr-media span {
  font-size: 5rem;
  transition: all 0.2s;
}
.cid-tWysW9lEJt .modalWindow {
  position: fixed;
  z-index: 5000;
  left: 0;
  top: 0;
  background-color: rgba(61, 61, 61, 0.65);
  width: 100%;
  height: 100%;
}
.cid-tWysW9lEJt .modalWindow .modalWindow-container {
  display: table-cell;
  vertical-align: middle;
}
.cid-tWysW9lEJt .modalWindow .modalWindow-video {
  height: calc(44.9943757vw);
  width: 80vw;
  margin: 0 auto;
}
.cid-tWysW9lEJt .close {
  position: fixed;
  opacity: 0.5;
  font-size: 1.5rem;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-tWysW9lEJt .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-tWysW9lEJt .mbr-section-title {
  color: #ffffff;
}
.cid-tWysW9lEJt .mbr-section-subtitle {
  color: #f2ac2b;
  text-align: center;
}
.cid-tWysW9lEJt .mbr-text {
  color: #d2d2df;
  text-align: center;
}
.cid-tWysW9lEJt .mbr-section-title,
.cid-tWysW9lEJt .mbr-section-btn {
  text-align: center;
}
.cid-t1p1uaBrr4 {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #ddd5c3;
}
.cid-t1p1uaBrr4 .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-t1p1uaBrr4 .wrapper {
  max-width: 350px;
}
.cid-t1p1uaBrr4 .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 35%;
  background-color: white;
  margin-top: 16px;
  margin-right: 0.5rem;
  margin-bottom: 0rem;
  padding: 1.7rem;
  height: 2.5rem;
  width: 2.5rem;
}
.cid-t1p1uaBrr4 .list {
  list-style: none;
  padding-left: 0;
  color: #bbbbbb;
}
@media (max-width: 991px) {
  .cid-t1p1uaBrr4 .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-t1p1uaBrr4 .list {
    margin-bottom: 0rem;
  }
}
.cid-t1p1uaBrr4 .mbr-text {
  color: #ffffff;
}
.cid-t1p1uaBrr4 .mbr-iconfont {
  color: black;
}
.cid-t1p1uaBrr4 img {
  max-width: 100px;
  height: auto;
  margin-bottom: 40px;
}
.cid-t1p1uaBrr4 .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  width: 100%;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-t1p1uaBrr4 .social-list .mbr-iconfont-social {
  font-size: 1.1rem;
  color: #ffffff;
  border: none;
  border-radius: 50%;
  padding: 0.6rem;
  transition: all .5s;
  display: block;
  cursor: pointer;
}
.cid-t1p1uaBrr4 .social-list .soc-item {
  margin-right: 1rem;
  background-color: #87876c;
}
.cid-t1p1uaBrr4 .social-list a {
  margin: 0;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-t1p1uaBrr4 .item-wrap {
  margin-bottom: 16px;
}
.cid-t1p1uaBrr4 .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-t1p1uaBrr4 .mbr-section-subtitle {
  margin-bottom: 20px;
  color: #ffffff;
}
.cid-t1p1uaBrr4 .text {
  color: #fdfdfd;
  display: inline;
}
.cid-t1p1uaBrr4 a {
  font-weight: 400 !important;
}
@media (max-width: 768px) {
  .cid-t1p1uaBrr4 img {
    display: inline;
  }
  .cid-t1p1uaBrr4 .b:nth-child(3) {
    padding-top: 30px;
  }
  .cid-t1p1uaBrr4 .b:nth-child(4) {
    padding-top: 30px;
  }
}
@media (max-width: 767px) {
  .cid-t1p1uaBrr4 .row {
    text-align: center;
  }
}
.cid-t1p1uaBrr4 .text1 {
  color: #ffffff;
}
.cid-t1p1uaBrr4 .s2 {
  flex-direction: row-reverse;
}
.cid-t1p1uaBrr4 .s2 .soc-item {
  margin-left: 1rem;
  margin-right: 0rem;
  transition: all .5s;
}
.cid-t1p1uaBrr4 .s1 {
  flex-direction: row-reverse;
}
.cid-t1p1uaBrr4 .mbr-iconfont-1 {
  font-size: 44px;
  color: #ffffff;
}
.cid-t1p1uaBrr4 .soc-item:hover {
  background-color: #ffffff;
}
.cid-t1p1uaBrr4 .soc-item:hover .mbr-iconfont-social {
  color: #87876c !important;
}
.cid-t1p1uaBrr4 .line {
  margin: auto;
  height: 1px;
  width: 99%;
  background-color: #ADADAD;
}
.cid-t1p1uaBrr4 .l1 {
  margin-bottom: 90px;
}
.cid-t1p1uaBrr4 .l2 {
  margin-top: 100px;
}
.cid-tWyjvWMJeE.popup-builder {
  background-color: #ffffff;
}
.cid-tWyjvWMJeE.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-tWyjvWMJeE.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-tWyjvWMJeE .modal-content,
.cid-tWyjvWMJeE .modal-dialog {
  height: auto;
}
.cid-tWyjvWMJeE .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-tWyjvWMJeE .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-tWyjvWMJeE .form-wrapper .mbr-form .form-group,
  .cid-tWyjvWMJeE .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-tWyjvWMJeE .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-tWyjvWMJeE .mbr-figure img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}
.cid-tWyjvWMJeE .mbr-text {
  text-align: center;
}
.cid-tWyjvWMJeE .pt-0 {
  padding-top: 0 !important;
}
.cid-tWyjvWMJeE .pb-0 {
  padding-bottom: 0 !important;
}
.cid-tWyjvWMJeE .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-tWyjvWMJeE .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-tWyjvWMJeE .modal-open {
  overflow: hidden;
}
.cid-tWyjvWMJeE .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-tWyjvWMJeE .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-tWyjvWMJeE .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-tWyjvWMJeE .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
.cid-tWyjvWMJeE .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-tWyjvWMJeE .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-tWyjvWMJeE .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-tWyjvWMJeE .modal-content {
  background: #fff8ef;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  outline: 0;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.cid-tWyjvWMJeE .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-tWyjvWMJeE .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-tWyjvWMJeE .modal-backdrop.fade {
  opacity: 0;
}
.cid-tWyjvWMJeE .modal-backdrop.show {
  opacity: .5;
}
.cid-tWyjvWMJeE .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border-bottom: none;
}
@media (min-width: 992px) {
  .cid-tWyjvWMJeE .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-tWyjvWMJeE .modal-header {
    padding: 1rem;
  }
}
.cid-tWyjvWMJeE .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-tWyjvWMJeE .modal-header .close svg {
  fill: #353535;
}
.cid-tWyjvWMJeE .modal-header .close:hover {
  opacity: 1;
}
.cid-tWyjvWMJeE .modal-header .close:focus {
  outline: none;
}
.cid-tWyjvWMJeE .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
}
.cid-tWyjvWMJeE .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-tWyjvWMJeE .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tWyjvWMJeE .modal-body {
    padding: 1rem;
  }
}
.cid-tWyjvWMJeE .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-top: none;
  text-align: center;
}
@media (min-width: 992px) {
  .cid-tWyjvWMJeE .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tWyjvWMJeE .modal-footer {
    padding: 1rem;
  }
}
.cid-tWyjvWMJeE .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-tWyjvWMJeE .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-tWyjvWMJeE .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-tWyjvWMJeE .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-tWyjvWMJeE .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-tWyjvWMJeE .modal-lg,
  .cid-tWyjvWMJeE .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-tWyjvWMJeE .modal-xl {
    max-width: 1140px;
  }
}
.cid-tWyjvWMJeE .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-tWyjvWMJeE .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.cid-tWyjvWMJeE .form-group {
  margin-bottom: 1rem;
}
.cid-tWyjvWMJeE .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-tWyjvWMJeE .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-tWyjvWMJeE .col-md-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.cid-tWyjvWMJeE .mbr-section-btn {
  margin: 0;
}
.cid-tWyjvWMJeE .mbr-section-btn .btn {
  margin: 0;
}
.cid-t1p1Cdj8lX {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #87876c;
}
.cid-t1p1Cdj8lX .mbr-text {
  color: #ffffff;
  text-align: left;
}
.cid-t1p1Cdj8lX a {
  font-weight: 400 !important;
  transition-duration: all .3s;
}
.cid-t1p1Cdj8lX a.text-danger:hover {
  color: #EABB80 !important;
}
.cid-t1p1Cdj8lX img {
  width: auto;
  height: 50px;
  margin: auto;
}
