body {
  font-family: Poppins;
}
.display-1 {
  font-family: 'Open Sans', sans-serif;
  font-size: 3rem;
  line-height: 1.5;
}
.display-1 > .mbr-iconfont {
  font-size: 4.8rem;
}
.display-2 {
  font-family: 'Open Sans', sans-serif;
  font-size: 2.5rem;
  line-height: 1.3;
}
.display-2 > .mbr-iconfont {
  font-size: 4rem;
}
.display-4 {
  font-family: 'Open Sans', sans-serif;
  font-size: 1rem;
  line-height: 1.8;
}
.display-4 > .mbr-iconfont {
  font-size: 1.6rem;
}
.display-5 {
  font-family: 'Open Sans', sans-serif;
  font-size: 1.875rem;
  line-height: 1.3;
}
.display-5 > .mbr-iconfont {
  font-size: 3rem;
}
.display-7 {
  font-family: 'Open Sans', sans-serif;
  font-size: 1.25rem;
  line-height: 2;
}
.display-7 > .mbr-iconfont {
  font-size: 2rem;
}
/* ---- Fluid typography for mobile devices ---- */
/* 1.4 - font scale ratio ( bootstrap == 1.42857 ) */
/* 100vw - current viewport width */
/* (48 - 20)  48 == 48rem == 768px, 20 == 20rem == 320px(minimal supported viewport) */
/* 0.65 - min scale variable, may vary */
@media (max-width: 768px) {
  .display-1 {
    font-size: 2.1rem;
    font-size: calc( 1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 2rem;
    font-size: calc( 1.525rem + (2.5 - 1.525) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.3 * (1.525rem + (2.5 - 1.525) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 0.9rem !important;
    font-size: calc( 1rem + (1 - 1) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1rem + (1 - 1) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 1.5rem;
    font-size: calc( 1.30625rem + (1.875 - 1.30625) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.30625rem + (1.875 - 1.30625) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-7 {
    font-size: 1rem;
    font-size: calc( 1.0875rem + (1.25 - 1.0875) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.0875rem + (1.25 - 1.0875) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* Buttons */
.btn {
  padding: 1rem 3rem;
  border-radius: 4px;
}
.btn-sm {
  padding: 0.4rem 1rem;
  border-radius: 4px;
}
.btn-md {
  padding: 1rem 2.6rem;
  border-radius: 8px;
}
.btn-lg {
  padding: 1.2rem 3.2rem;
  border-radius: 8px;
}
.bg-primary {
  background-color: #999999 !important;
}
.bg-success {
  background-color: #ff4d39 !important;
}
.bg-info {
  background-color: #f4eddd !important;
}
.bg-warning {
  background-color: #25970f !important;
}
.bg-danger {
  background-color: #2aadff !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #999999 !important;
  border-color: #999999 !important;
  color: #ffffff !important;
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus,
.btn-primary.active {
  color: #ffffff !important;
  background-color: #737373 !important;
  border-color: #737373 !important;
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #737373 !important;
  border-color: #737373 !important;
}
.btn-primary:hover {
  background-color: #999999 !important;
  border-color: #999999 !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #333333 !important;
  border-color: #333333 !important;
  color: #ffffff !important;
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus,
.btn-secondary.active {
  color: #ffffff !important;
  background-color: #0d0d0d !important;
  border-color: #0d0d0d !important;
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #0d0d0d !important;
  border-color: #0d0d0d !important;
}
.btn-secondary:hover {
  background-color: #999999 !important;
  border-color: #999999 !important;
}
.btn-info,
.btn-info:active {
  background-color: #f4eddd !important;
  border-color: #f4eddd !important;
  color: #9f7e33 !important;
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus,
.btn-info.active {
  color: #9f7e33 !important;
  background-color: #e1cea3 !important;
  border-color: #e1cea3 !important;
}
.btn-info.disabled,
.btn-info:disabled {
  color: #9f7e33 !important;
  background-color: #e1cea3 !important;
  border-color: #e1cea3 !important;
}
.btn-info:hover {
  background-color: #999999 !important;
  border-color: #999999 !important;
}
.btn-success,
.btn-success:active {
  background-color: #ff4d39 !important;
  border-color: #ff4d39 !important;
  color: #ffffff !important;
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus,
.btn-success.active {
  color: #ffffff !important;
  background-color: #ec1800 !important;
  border-color: #ec1800 !important;
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #ec1800 !important;
  border-color: #ec1800 !important;
}
.btn-success:hover {
  background-color: #999999 !important;
  border-color: #999999 !important;
}
.btn-warning,
.btn-warning:active {
  background-color: #25970f !important;
  border-color: #25970f !important;
  color: #ffffff !important;
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus,
.btn-warning.active {
  color: #ffffff !important;
  background-color: #145108 !important;
  border-color: #145108 !important;
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #ffffff !important;
  background-color: #145108 !important;
  border-color: #145108 !important;
}
.btn-warning:hover {
  background-color: #999999 !important;
  border-color: #999999 !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #2aadff !important;
  border-color: #2aadff !important;
  color: #ffffff !important;
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus,
.btn-danger.active {
  color: #ffffff !important;
  background-color: #0088dd !important;
  border-color: #0088dd !important;
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #0088dd !important;
  border-color: #0088dd !important;
}
.btn-danger:hover {
  background-color: #999999 !important;
  border-color: #999999 !important;
}
.btn-white,
.btn-white:active {
  background-color: #f3f3f3 !important;
  border-color: #f3f3f3 !important;
  color: #737373 !important;
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus,
.btn-white.active {
  color: #737373 !important;
  background-color: #cdcdcd !important;
  border-color: #cdcdcd !important;
}
.btn-white.disabled,
.btn-white:disabled {
  color: #737373 !important;
  background-color: #cdcdcd !important;
  border-color: #cdcdcd !important;
}
.btn-white:hover {
  background-color: #999999 !important;
  border-color: #999999 !important;
}
.btn-white:hover {
  color: white!important;
}
.btn-black,
.btn-black:active {
  background-color: #000000 !important;
  border-color: #000000 !important;
  color: #ffffff !important;
}
.btn-black:hover,
.btn-black:focus,
.btn-black.focus,
.btn-black.active {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-black.disabled,
.btn-black:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-black:hover {
  background-color: #999999 !important;
  border-color: #999999 !important;
}
.btn-primary-outline,
.btn-primary-outline:active {
  background: none;
  border-color: #999999;
  color: #999999;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #ffffff;
  background-color: #999999;
  border-color: #999999;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #999999 !important;
  border-color: #999999 !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background: none;
  border-color: #333333;
  color: #333333;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #ffffff;
  background-color: #333333;
  border-color: #333333;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #333333 !important;
  border-color: #333333 !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background: none;
  border-color: #f4eddd;
  color: #f4eddd;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #9f7e33;
  background-color: #f4eddd;
  border-color: #f4eddd;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #9f7e33 !important;
  background-color: #f4eddd !important;
  border-color: #f4eddd !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background: none;
  border-color: #ff4d39;
  color: #ff4d39;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #ffffff;
  background-color: #ff4d39;
  border-color: #ff4d39;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #ffffff !important;
  background-color: #ff4d39 !important;
  border-color: #ff4d39 !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background: none;
  border-color: #25970f;
  color: #25970f;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #ffffff;
  background-color: #25970f;
  border-color: #25970f;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #ffffff !important;
  background-color: #25970f !important;
  border-color: #25970f !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background: none;
  border-color: #2aadff;
  color: #2aadff;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #ffffff;
  background-color: #2aadff;
  border-color: #2aadff;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #2aadff !important;
  border-color: #2aadff !important;
}
.btn-black-outline,
.btn-black-outline:active {
  background: none;
  border-color: #333333;
  color: #333333;
}
.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.focus,
.btn-black-outline.active {
  color: #ffffff;
  background-color: #333333;
  border-color: #333333;
}
.btn-black-outline.disabled,
.btn-black-outline:disabled {
  color: #ffffff !important;
  background-color: #333333 !important;
  border-color: #333333 !important;
}
.btn-white-outline,
.btn-white-outline:active {
  background: none;
  border-color: #f3f3f3;
  color: #f3f3f3;
}
.btn-white-outline:hover,
.btn-white-outline:focus,
.btn-white-outline.focus,
.btn-white-outline.active {
  color: #737373;
  background-color: #f3f3f3;
  border-color: #f3f3f3;
}
.btn-white-outline.disabled,
.btn-white-outline:disabled {
  color: #737373 !important;
  background-color: #f3f3f3 !important;
  border-color: #f3f3f3 !important;
}
.text-primary {
  color: #999999 !important;
}
.text-secondary {
  color: #333333 !important;
}
.text-success {
  color: #ff4d39 !important;
}
.text-info {
  color: #f4eddd !important;
}
.text-warning {
  color: #25970f !important;
}
.text-danger {
  color: #2aadff !important;
}
.text-white {
  color: #ffffff !important;
}
.text-black {
  color: #000000 !important;
}
a.text-primary:hover,
a.text-primary:focus {
  color: #cccccc !important;
}
a.text-secondary:hover,
a.text-secondary:focus {
  color: #666666 !important;
}
a.text-success:hover,
a.text-success:focus {
  color: #ffa99f !important;
}
a.text-info:hover,
a.text-info:focus {
  color: #ffffff !important;
}
a.text-warning:hover,
a.text-warning:focus {
  color: #43e923 !important;
}
a.text-danger:hover,
a.text-danger:focus {
  color: #90d4ff !important;
}
a.text-white:hover,
a.text-white:focus {
  color: #ffffff !important;
}
a.text-black:hover,
a.text-black:focus {
  color: #4d4d4d !important;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #f4eddd;
}
.alert-warning {
  background-color: #25970f;
}
.alert-danger {
  background-color: #2aadff;
}
.mbr-section-btn a.btn:not(.btn-form) {
  border-radius: 100px;
}
.mbr-section-btn a.btn:not(.btn-form):hover,
.mbr-section-btn a.btn:not(.btn-form):focus {
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2) !important;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2) !important;
}
.mbr-gallery-filter li a {
  border-radius: 100px !important;
}
.mbr-gallery-filter li.active .btn {
  background-color: #999999;
  border-color: #999999;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
.nav-tabs .nav-link {
  border-radius: 100px !important;
}
a,
a:hover {
  color: #999999;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #d9d9d9;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #ffffff;
}
.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: #57eb3a;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #f6fcff;
}
/* Scroll to top button*/
.scrollToTop_wraper {
  display: none;
}
blockquote {
  border-color: #999999;
}
/* Forms */
.mbr-form .btn {
  margin: .4rem 0;
}
.mbr-form .input-group-btn a.btn {
  border-radius: 100px !important;
}
.mbr-form .input-group-btn a.btn:hover {
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.mbr-form .input-group-btn button[type="submit"] {
  border-radius: 100px !important;
  padding: 1rem 3rem;
}
.mbr-form .input-group-btn button[type="submit"]:hover {
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #999999;
  color: #ffffff;
}
.jq-selectbox .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:after,
.jq-number__spin.plus:after {
  transition: 0.4s;
  border-top-color: gray !important;
  border-bottom-color: gray !important;
}
.jq-selectbox:hover .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:hover:after,
.jq-number__spin.plus:hover:after {
  border-top-color: #999999;
  border-bottom-color: #999999;
}
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_default,
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_current,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div.xdsoft_current {
  color: #000000 !important;
  background-color: #999999 !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: #333333 !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='%23999999' %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-s8NuOmXMZp .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 16px;
  position: absolute;
  right: 1rem;
  top: 30%;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-s8NuOmXMZp .nav-item,
.cid-s8NuOmXMZp .nav-link,
.cid-s8NuOmXMZp .navbar-caption {
  font-weight: normal;
}
.cid-s8NuOmXMZp .nav-item:focus,
.cid-s8NuOmXMZp .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-s8NuOmXMZp .dropdown-item:hover:before {
    transform: scale(1, 1);
  }
}
.cid-s8NuOmXMZp .dropdown .dropdown-menu .dropdown-item {
  display: flex;
  align-items: center;
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-s8NuOmXMZp .dropdown .dropdown-menu .dropdown-item::after {
  right: 1rem;
}
.cid-s8NuOmXMZp .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  transform: scale(0, 1);
}
.cid-s8NuOmXMZp .dropdown .dropdown-menu .dropdown-item.dropdown-toggle:before {
  display: none;
}
.cid-s8NuOmXMZp .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-s8NuOmXMZp .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-s8NuOmXMZp .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-s8NuOmXMZp .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-s8NuOmXMZp .collapsed .icons-menu {
  padding-left: 16px;
}
.cid-s8NuOmXMZp .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #f4eddd;
}
.cid-s8NuOmXMZp .navbar.opened {
  transition: all .3s;
  background: #f4eddd !important;
}
.cid-s8NuOmXMZp .navbar .dropdown-item {
  padding: .235rem 2.5rem .235rem 1.5rem;
}
.cid-s8NuOmXMZp .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-s8NuOmXMZp .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-s8NuOmXMZp .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-s8NuOmXMZp .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(100vh - 5.2rem - 1rem);
  }
}
.cid-s8NuOmXMZp .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-s8NuOmXMZp .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-s8NuOmXMZp .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-s8NuOmXMZp .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-s8NuOmXMZp .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
  justify-content: center;
}
.cid-s8NuOmXMZp .navbar.collapsed .icons-menu {
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-s8NuOmXMZp .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-s8NuOmXMZp .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-s8NuOmXMZp .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-s8NuOmXMZp .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-s8NuOmXMZp .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-s8NuOmXMZp .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-s8NuOmXMZp .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-s8NuOmXMZp .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
    justify-content: center;
  }
  .cid-s8NuOmXMZp .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-s8NuOmXMZp .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-s8NuOmXMZp .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-s8NuOmXMZp .navbar.navbar-short {
  background: #f4eddd !important;
  min-height: 60px;
}
.cid-s8NuOmXMZp .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-s8NuOmXMZp .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-s8NuOmXMZp .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-s8NuOmXMZp .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-s8NuOmXMZp .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-s8NuOmXMZp .dropdown-item.active,
.cid-s8NuOmXMZp .dropdown-item:active {
  background-color: transparent;
}
.cid-s8NuOmXMZp .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-s8NuOmXMZp .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-s8NuOmXMZp .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #f4eddd;
}
.cid-s8NuOmXMZp .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-s8NuOmXMZp .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-s8NuOmXMZp ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-s8NuOmXMZp .navbar-buttons {
  text-align: center;
}
.cid-s8NuOmXMZp .navbar-buttons .btn.btn-sm {
  padding: 6px 24px !important;
  min-width: 140px;
  line-height: 1.5;
}
.cid-s8NuOmXMZp button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-s8NuOmXMZp button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-s8NuOmXMZp button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-s8NuOmXMZp button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-s8NuOmXMZp button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-s8NuOmXMZp button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-s8NuOmXMZp nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-s8NuOmXMZp nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-s8NuOmXMZp nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-s8NuOmXMZp nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-s8NuOmXMZp .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-s8NuOmXMZp a.nav-link {
  justify-content: center;
  display: flex;
  align-items: center;
}
.cid-s8NuOmXMZp .mbr-iconfont {
  font-size: 1rem;
  color: #ffffff;
  display: inline-flex;
}
.cid-s8NuOmXMZp .soc-item {
  margin: .5rem .3rem;
}
.cid-s8NuOmXMZp .icons-menu {
  flex-wrap: wrap;
  display: flex;
  justify-content: center;
  padding-right: 1rem;
  text-align: center;
  align-items: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-s8NuOmXMZp .navbar {
    height: 77px;
  }
  .cid-s8NuOmXMZp .navbar.opened {
    height: auto;
  }
  .cid-s8NuOmXMZp .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-rZqakGdhKi {
  background-image: url("../../../assets/images/whatsapp-image-2020-12-06-at-23.56.50-940x627.jpg");
}
.cid-rZqakGdhKi .card {
  border-radius: 0;
  margin: auto 0;
}
.cid-rZqakGdhKi .card .wrapper .mbr-section-title {
  color: #ffffff;
  font-weight: 700;
}
.cid-rZqakGdhKi .card .wrapper .mbr-section-title span:first-child {
  color: #52c158;
}
.cid-rZqakGdhKi .card .wrapper .mbr-section-title span:nth-child(2) {
  line-height: 1;
  color: #ffffff;
  padding: 0 6px 1px 5px;
  transform: skew(-14deg);
  background: #52c158;
  display: inline-block;
  font-weight: 500;
  letter-spacing: 0;
  position: relative;
}
.cid-rZqakGdhKi .card .wrapper .mbr-section-subtitle {
  color: #ffffff;
}
.cid-rZqakGdhKi .card .wrapper .mbr-section-subtitle.display-7 {
  letter-spacing: 0;
}
.cid-rZqakGdhKi .card .wrapper .mbr-text {
  color: #ffffff;
  font-weight: 300;
}
.cid-rZqakGdhKi .card .wrapper .mbr-list {
  margin-top: 20px;
  color: #ffffff;
}
.cid-rZqakGdhKi .card .wrapper .mbr-list .list {
  list-style-type: none;
  padding-left: 0;
}
.cid-rZqakGdhKi .card .wrapper .mbr-list .list li {
  line-height: 1.75;
  padding-top: 5px;
  padding-bottom: 5px;
}
.cid-rZqakGdhKi .card .wrapper .mbr-list .list li:before {
  font-weight: 900;
  color: #52c158;
  display: inline-block;
  content: "\e97c";
  font-family: 'Moririse2' !important;
  text-align: center;
  line-height: 1.5em;
  transition: all 0.3s;
  width: 25px;
  height: 25px;
  margin-right: 15px;
}
.cid-rZqakGdhKi .card .wrapper .buttons-wrap .mbr-section-btn .btn.display-4 {
  padding: 12px 35px;
  line-height: 1.0625;
}
.cid-rZqakGdhKi .card .wrapper .mbr-section-title,
.cid-rZqakGdhKi .mbr-section-btn,
.cid-rZqakGdhKi .mbr-list .list {
  text-align: center;
}
.cid-rZqakGdhKi .card .wrapper .mbr-section-subtitle,
.cid-rZqakGdhKi .mbr-section-btn,
.cid-rZqakGdhKi .mbr-list .list {
  text-align: center;
}
.cid-rZqakGdhKi .card .wrapper .mbr-text,
.cid-rZqakGdhKi .mbr-section-btn,
.cid-rZqakGdhKi .mbr-list .list {
  text-align: center;
}
.cid-rZqakYmFVv {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-rZqakYmFVv .row {
  flex-direction: row-reverse;
}
.cid-rZqakYmFVv .img-wrap img {
  width: 100%;
}
.cid-rZqakYmFVv .card {
  border-radius: 0;
  margin: auto 0;
}
.cid-rZqakYmFVv .card .wrapper {
  overflow: hidden;
}
.cid-rZqakYmFVv .card .wrapper .mbr-section-title {
  color: #06182d;
}
.cid-rZqakYmFVv .card .wrapper .mbr-section-subtitle {
  color: #06182d;
}
.cid-rZqakYmFVv .card .wrapper .mbr-section-subtitle.display-7 {
  letter-spacing: 0;
}
.cid-rZqakYmFVv .card .wrapper .mbr-text {
  color: #f4eddd;
  font-weight: 300;
}
.cid-rZqakYmFVv .card .wrapper .sign-wrap {
  text-align: center;
  overflow: hidden;
  position: relative;
}
.cid-rZqakYmFVv .card .wrapper .sign-wrap::before {
  right: 65.8%;
  height: 2px;
  transform: translateY(-50%);
  width: 250px;
  top: 50%;
  position: absolute;
  display: inline-block;
  content: "";
  background-color: #333333;
}
.cid-rZqakYmFVv .card .wrapper .sign-wrap img {
  width: 140px;
}
.cid-rZqakYmFVv .card .wrapper .sign-wrap::after {
  left: 65.9%;
  height: 2px;
  transform: translateY(-50%);
  width: 250px;
  top: 50%;
  position: absolute;
  display: inline-block;
  content: "";
  background-color: #333333;
}
.cid-rZqakYmFVv .card .wrapper .mbr-section-title {
  text-align: left;
  color: #333333;
}
.cid-rZqakYmFVv .card .wrapper .mbr-text {
  color: #000000;
  text-align: center;
}
.cid-rZqakYmFVv .card .wrapper .mbr-section-title P {
  text-align: center;
}
.cid-siBU2CtOca .mbr-text {
  color: #e5e5e5;
}
.cid-siBU2CtOca .icon-wrap {
  margin: auto;
  transition: all 0.3s;
  font-size: 2rem;
  border: 2px solid currentColor;
  border-radius: 50%;
  cursor: pointer;
  width: 100px;
  height: 100px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 1;
  color: #ffffff;
}
.cid-siBU2CtOca .icon-wrap:hover {
  border-color: #eb0500;
  transition: all 0.3s;
}
.cid-siBU2CtOca .icon-wrap:hover .mbr-iconfont {
  color: #eb0500;
  transition: all 0.3s;
}
.cid-siBU2CtOca .icon-wrap.mbri-play:before {
  position: absolute;
  left: 50%;
  transform: translateX(-35%);
}
.cid-siBU2CtOca .icon-wrap span {
  padding-left: 6px;
}
.cid-siBU2CtOca .modalWindow {
  position: fixed;
  z-index: 5000;
  left: 0;
  top: 0;
  background-color: rgba(61, 61, 61, 0.65);
  width: 100%;
  height: 100%;
}
.cid-siBU2CtOca .modalWindow .modalWindow-container {
  display: table-cell;
  vertical-align: middle;
}
.cid-siBU2CtOca .modalWindow .modalWindow-video {
  height: calc(44.9943757vw);
  width: 80vw;
  margin: 0 auto;
}
.cid-siBU2CtOca a.close {
  position: absolute;
  right: 4vw;
  top: 4vh;
  color: #ffffff;
  z-index: 5000000;
  font-size: 37px;
  background: #000;
  padding: 20px;
  border-radius: 50%;
}
.cid-siBU2CtOca a.close:hover {
  color: #ffffff;
}
.cid-shzeAb7hPW {
  padding-top: 60px;
  padding-bottom: 0px;
  background-color: #f3f3f3;
}
.cid-shzeAb7hPW .mbr-section-title span {
  line-height: 1;
  color: #ffffff;
  padding: 0 6px 1px 5px;
  transform: skew(-14deg);
  background: #25970f;
  display: inline-block;
  font-weight: 500;
  letter-spacing: 0;
  position: relative;
}
.cid-shzeAb7hPW .mbr-section-subtitle {
  color: #06182d;
  line-height: 1;
  font-weight: 300;
}
.cid-shzeAb7hPW .card {
  max-width: 300px;
  margin-bottom: 20px;
}
.cid-shzeAb7hPW .card .card-wrapper {
  overflow: hidden;
  height: 100%;
  background: #ffffff;
  color: #444444;
  padding: 0;
  border: 1px solid rgba(97, 114, 138, 0.2);
}
.cid-shzeAb7hPW .card .card-wrapper .card-img {
  width: auto;
}
.cid-shzeAb7hPW .card .card-wrapper .card-img img {
  width: 100%;
  max-height: 450px;
}
.cid-shzeAb7hPW .card .card-wrapper .card-box {
  padding: 44px 30px 41px;
}
.cid-shzeAb7hPW .card .card-wrapper .card-box .sticky-tag {
  position: absolute;
  top: 0;
  left: 4px;
  z-index: 10;
  display: block;
}
@media (max-width: 768px) {
  .cid-shzeAb7hPW .card .card-wrapper .card-box .sticky-tag {
    display: none;
  }
}
.cid-shzeAb7hPW .card .card-wrapper .card-box .sticky-tag .mbr-text {
  padding: 5px 6px;
  margin: 0 3px 9px;
  text-align: center;
  display: inline-block;
  line-height: 1;
  transform: skew(-22deg);
  background: #25970f;
  font-weight: 400;
  border-image-slice: 1;
  color: #ffffff;
}
.cid-shzeAb7hPW .card .card-wrapper .card-box .sticky-tag .mbr-text::before {
  content: "";
  position: absolute;
  bottom: -12px;
  left: 1.5px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 15px 12px 0;
  border-color: transparent #db3321 transparent transparent;
  transform: skew(22deg) !important;
}
.cid-shzeAb7hPW .card .card-wrapper .card-box .card-title {
  color: #06182d;
  margin: 0;
  line-height: 1.3;
  padding-bottom: 1rem;
  text-align: center;
  font-weight: 500;
}
.cid-shzeAb7hPW .card .card-wrapper .card-box .mbr-text {
  line-height: 1.6;
  text-align: center;
  color: #f4eddd;
}
.cid-shzeAb7hPW .card .card-wrapper .card-box .ico-line {
  width: 100%;
  color: #767676;
  justify-content: space-between;
}
.cid-shzeAb7hPW .card .card-wrapper .card-box .ico-line .mbr-iconfont {
  display: inline-block;
  color: #ff4e3c;
}
.cid-shzeAb7hPW .card .card-wrapper .card-box .ico-line .rev {
  display: inline-block;
  color: #0a1c44;
}
.cid-shzeAb7hPW .card .card-wrapper .card-box .mbr-section-btn {
  color: #767676;
  text-align: center;
}
.cid-shzfD9qIjh {
  padding-top: 0px;
  padding-bottom: 45px;
  background-color: #f3f3f3;
}
.cid-shzfD9qIjh .mbr-section-title span {
  line-height: 1;
  color: #ffffff;
  padding: 0 6px 1px 5px;
  transform: skew(-14deg);
  background: #2aadff;
  display: inline-block;
  font-weight: 500;
  letter-spacing: 0;
  position: relative;
}
.cid-shzfD9qIjh .mbr-section-subtitle {
  color: #06182d;
  line-height: 1;
  font-weight: 300;
}
.cid-shzfD9qIjh .card {
  max-width: 300px;
  margin-bottom: 20px;
}
.cid-shzfD9qIjh .card .card-wrapper {
  overflow: hidden;
  height: 100%;
  background: #ffffff;
  color: #444444;
  padding: 0;
  border: 1px solid rgba(97, 114, 138, 0.2);
}
.cid-shzfD9qIjh .card .card-wrapper .card-img {
  width: auto;
}
.cid-shzfD9qIjh .card .card-wrapper .card-img img {
  width: 100%;
  max-height: 450px;
}
.cid-shzfD9qIjh .card .card-wrapper .card-box {
  padding: 44px 30px 41px;
}
.cid-shzfD9qIjh .card .card-wrapper .card-box .sticky-tag {
  position: absolute;
  top: 0;
  left: 4px;
  z-index: 10;
  display: block;
}
@media (max-width: 768px) {
  .cid-shzfD9qIjh .card .card-wrapper .card-box .sticky-tag {
    display: none;
  }
}
.cid-shzfD9qIjh .card .card-wrapper .card-box .sticky-tag .mbr-text {
  padding: 5px 6px;
  margin: 0 3px 9px;
  text-align: center;
  display: inline-block;
  line-height: 1;
  transform: skew(-22deg);
  background: #2aadff;
  font-weight: 400;
  border-image-slice: 1;
  color: #ffffff;
}
.cid-shzfD9qIjh .card .card-wrapper .card-box .sticky-tag .mbr-text::before {
  content: "";
  position: absolute;
  bottom: -12px;
  left: 1.5px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 15px 12px 0;
  border-color: transparent #db3321 transparent transparent;
  transform: skew(22deg) !important;
}
.cid-shzfD9qIjh .card .card-wrapper .card-box .card-title {
  color: #06182d;
  margin: 0;
  line-height: 1.3;
  padding-bottom: 1rem;
  text-align: center;
  font-weight: 500;
}
.cid-shzfD9qIjh .card .card-wrapper .card-box .mbr-text {
  line-height: 1.6;
  text-align: center;
  color: #f4eddd;
}
.cid-shzfD9qIjh .card .card-wrapper .card-box .ico-line {
  width: 100%;
  color: #767676;
  justify-content: space-between;
}
.cid-shzfD9qIjh .card .card-wrapper .card-box .ico-line .mbr-iconfont {
  display: inline-block;
  color: #ff4e3c;
}
.cid-shzfD9qIjh .card .card-wrapper .card-box .ico-line .rev {
  display: inline-block;
  color: #0a1c44;
}
.cid-shzfD9qIjh .card .card-wrapper .card-box .mbr-section-btn {
  color: #767676;
  text-align: center;
}
.cid-shz4XWVixU {
  padding-top: 150px;
  padding-bottom: 150px;
  background-image: url("../../../assets/images/whatsapp-image-2020-12-06-at-23.56.47-940x627.jpg");
}
.cid-shz4XWVixU .mbr-section-title {
  text-align: center;
}
.cid-shz4XWVixU .mbr-section-subtitle {
  text-align: center;
}
.cid-shzh9vYVLd {
  padding-top: 60px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-shzh9vYVLd img {
  width: 100%;
  border-radius: 50px;
  margin-bottom: 20px;
  max-height: ;
}
.cid-shzh9vYVLd .card {
  margin-bottom: 130px !important;
}
.cid-shzh9vYVLd .card .img-wrapper {
  overflow: hidden;
}
.cid-shzh9vYVLd .card:hover {
  cursor: pointer;
}
.cid-shzh9vYVLd .card:hover img {
  transform: scale(1.05);
}
.cid-shzh9vYVLd .card:hover .img-wrapper {
  box-shadow: 0 30px 30px -20px rgba(50, 50, 50, 0.3);
}
@media (max-width: 1200px) {
  .cid-shzh9vYVLd .card {
    margin-bottom: 50px !important;
  }
}
.cid-shzh9vYVLd .card .card-wrapper {
  text-align: left;
}
.cid-shzh9vYVLd .card .card-wrapper .mbr-iconfont {
  font-size: 41px;
  color: #ff513c;
  display: block;
  justify-content: center;
  align-items: center;
  transition: all 0.3s ease-in-out;
  padding-bottom: 14px;
  margin-right: 14px;
}
.cid-shzh9vYVLd .card .card-wrapper .card-box .card-title {
  cursor: pointer;
  color: #06182d;
}
.cid-shzh9vYVLd .card .card-wrapper .card-box .card-title.display-7 {
  line-height: 1.2;
}
.cid-shzh9vYVLd .card .card-wrapper .card-box .card-text {
  color: #f4eddd;
}
@media (min-width: 1400px) {
  .cid-shzh9vYVLd .card.left-box {
    right: 105px !important;
  }
  .cid-shzh9vYVLd .card.right-box {
    left: 97px !important;
  }
}
.cid-shzh9vYVLd .mbr-section-title {
  color: #06182d;
}
.cid-shzh9vYVLd .mbr-section-title span {
  line-height: 1;
  color: #ffffff;
  padding: 0 6px 1px 5px;
  transform: skew(-14deg);
  background: #25970f;
  display: inline-block;
  font-weight: 500;
  letter-spacing: 0;
  position: relative;
}
.cid-shzh9vYVLd .mbr-section-subtitle {
  color: #06182d;
}
.cid-shzh9vYVLd .mbr-section-subtitle.display-7 {
  letter-spacing: 0;
}
.cid-shzh9vYVLd .mbr-section-text {
  color: #999999;
}
.cid-tlhBZK1kUZ {
  padding-top: 75px;
  padding-bottom: 75px;
  background-color: #f3f3f3;
}
.cid-tlhBZK1kUZ .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.8;
}
.cid-tlhBZK1kUZ input,
.cid-tlhBZK1kUZ textarea {
  font-size: 14px;
}
.cid-tlhBZK1kUZ input {
  padding: 1.5rem 1.8rem !important;
  border-radius: 50px;
}
.cid-tlhBZK1kUZ textarea {
  padding: 1rem 1.8rem !important;
  border-radius: 30px;
  min-height: 160px !important;
}
.cid-tlhBZK1kUZ .form-group {
  margin-bottom: 1.3rem;
}
.cid-tlhBZK1kUZ .block-title {
  margin-bottom: 0.7rem;
}
.cid-tlhBZK1kUZ .form-control:hover,
.cid-tlhBZK1kUZ .form-control:focus {
  color: #000000 !important;
}
.cid-tlhBZK1kUZ .mbr-section-subtitle {
  font-weight: 700;
}
.cid-tlhBZK1kUZ img {
  width: 90%;
  border-radius: 8px;
}
.cid-tlhBZK1kUZ .btn {
  border-radius: 30px;
}
.cid-tlhBZK1kUZ .form-control,
.cid-tlhBZK1kUZ .field-input {
  padding: 0.5rem;
  background-color: #f3f3f3;
  border-color: #181818;
  color: #000000;
  transition: 0.4s;
  box-shadow: none;
  outline: none;
}
.cid-tlhBZK1kUZ .form-control:hover,
.cid-tlhBZK1kUZ .field-input:hover {
  background-color: #f3f3f3;
  border-color: #181818 !important;
  color: #000000;
  box-shadow: none;
  outline: none;
}
.cid-tlhBZK1kUZ .form-control:focus,
.cid-tlhBZK1kUZ .field-input:focus {
  background-color: #ffffff;
  border-color: #181818 !important;
  color: #000000;
  box-shadow: none;
  outline: none;
}
.cid-tlhBZK1kUZ input::-webkit-input-placeholder,
.cid-tlhBZK1kUZ textarea::-webkit-input-placeholder {
  color: #000000;
}
.cid-tlhBZK1kUZ input:-moz-placeholder,
.cid-tlhBZK1kUZ textarea:-moz-placeholder {
  color: #000000;
}
.cid-tlhBZK1kUZ .jq-selectbox li,
.cid-tlhBZK1kUZ .jq-selectbox li {
  background-color: #f3f3f3;
  color: #000000;
}
.cid-tlhBZK1kUZ .jq-selectbox li:hover,
.cid-tlhBZK1kUZ .jq-selectbox li.selected {
  background-color: #f3f3f3;
  color: #000000;
}
.cid-tlhBZK1kUZ .jq-selectbox:hover .jq-selectbox__trigger-arrow {
  border-top-color: #f3f3f3;
}
.cid-tlhBZK1kUZ .jq-selectbox .jq-selectbox__trigger-arrow {
  border-top-color: #f3f3f3;
}
@media (max-width: 992px) {
  .cid-tlhBZK1kUZ img {
    width: 100%;
  }
  .cid-tlhBZK1kUZ .google-map {
    margin-bottom: 2rem;
  }
}
.cid-tlhBZK1kUZ .google-map {
  height: 100%;
  min-height: 30rem;
  position: relative;
  filter: grayscale(1);
  padding-right: 0.5rem;
}
.cid-tlhBZK1kUZ .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-tlhBZK1kUZ .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-tlhBZK1kUZ .google-map[data-state] {
  background: #e9e5dc;
}
.cid-tlhBZK1kUZ .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
@media (max-width: 576px) {
  .cid-tlhBZK1kUZ .col-auto {
    width: 100%;
    text-align: center;
  }
}
@media (max-width: 767px) {
  .cid-tlhBZK1kUZ .mbr-form {
    margin-top: 2rem;
  }
  .cid-tlhBZK1kUZ .btn {
    width: 100%;
  }
}
@media (min-width: 776px) and (max-width: 992px) {
  .cid-tlhBZK1kUZ .mbr-form {
    margin-top: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tlhBZK1kUZ .form-row > [class*="col-"] {
    padding: 0 1rem;
  }
}
.cid-rZqasE8Bhf {
  padding-top: 45px;
  padding-bottom: 30px;
  background-color: #25970f;
}
.cid-rZqasE8Bhf .copyright {
  display: flex;
}
@media (max-width: 992px) {
  .cid-rZqasE8Bhf .copyright {
    margin-bottom: 1rem;
  }
}
.cid-rZqasE8Bhf .text-wrap {
  transition: all 0.3s;
  padding: 23px;
  bottom: 0;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: flex-end;
  width: 100%;
  overflow: hidden;
  position: relative;
}
.cid-rZqasE8Bhf .text-wrap .icons-wrap .icon-wrapper {
  background: #ffffff;
  display: flex;
  width: 31px;
  height: 31px;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  border: 2px solid #ffffff;
  transition: all 0.3s;
  z-index: 4;
  cursor: pointer;
  margin: 0 0.2rem;
}
.cid-rZqasE8Bhf .text-wrap .icons-wrap .icon-wrapper:hover {
  background: #25970f;
  border-color: #25970f;
}
.cid-rZqasE8Bhf .text-wrap .icons-wrap .icon-wrapper:hover .link-icon {
  color: #ffffde;
}
.cid-rZqasE8Bhf .text-wrap .icons-wrap .icon-wrapper .link-icon {
  display: inline-block;
  color: #ffffde;
  transition: all 0.3s;
  font-size: 14px;
  justify-content: center;
}
.cid-rZqasE8Bhf .text-wrap .icons-wrap::before {
  height: 2px;
  width: 100%;
  top: 50%;
  right: 58%;
  position: absolute;
  display: inline-block;
  content: "";
  background-color: #ffffff;
}
@media (max-width: 992px) {
  .cid-rZqasE8Bhf .text-wrap .icons-wrap::before {
    display: none;
  }
}
.cid-rZqasE8Bhf .text-wrap .icons-wrap::after {
  height: 2px;
  width: 100%;
  top: 50%;
  left: 58%;
  position: absolute;
  display: inline-block;
  content: "";
  background-color: #ffffff;
}
@media (max-width: 992px) {
  .cid-rZqasE8Bhf .text-wrap .icons-wrap::after {
    display: none;
  }
}
.cid-s8NuOmXMZp .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 16px;
  position: absolute;
  right: 1rem;
  top: 30%;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-s8NuOmXMZp .nav-item,
.cid-s8NuOmXMZp .nav-link,
.cid-s8NuOmXMZp .navbar-caption {
  font-weight: normal;
}
.cid-s8NuOmXMZp .nav-item:focus,
.cid-s8NuOmXMZp .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-s8NuOmXMZp .dropdown-item:hover:before {
    transform: scale(1, 1);
  }
}
.cid-s8NuOmXMZp .dropdown .dropdown-menu .dropdown-item {
  display: flex;
  align-items: center;
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-s8NuOmXMZp .dropdown .dropdown-menu .dropdown-item::after {
  right: 1rem;
}
.cid-s8NuOmXMZp .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  transform: scale(0, 1);
}
.cid-s8NuOmXMZp .dropdown .dropdown-menu .dropdown-item.dropdown-toggle:before {
  display: none;
}
.cid-s8NuOmXMZp .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-s8NuOmXMZp .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-s8NuOmXMZp .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-s8NuOmXMZp .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-s8NuOmXMZp .collapsed .icons-menu {
  padding-left: 16px;
}
.cid-s8NuOmXMZp .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #f4eddd;
}
.cid-s8NuOmXMZp .navbar.opened {
  transition: all .3s;
  background: #f4eddd !important;
}
.cid-s8NuOmXMZp .navbar .dropdown-item {
  padding: .235rem 2.5rem .235rem 1.5rem;
}
.cid-s8NuOmXMZp .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-s8NuOmXMZp .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-s8NuOmXMZp .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-s8NuOmXMZp .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(100vh - 5.2rem - 1rem);
  }
}
.cid-s8NuOmXMZp .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-s8NuOmXMZp .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-s8NuOmXMZp .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-s8NuOmXMZp .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-s8NuOmXMZp .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
  justify-content: center;
}
.cid-s8NuOmXMZp .navbar.collapsed .icons-menu {
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-s8NuOmXMZp .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-s8NuOmXMZp .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-s8NuOmXMZp .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-s8NuOmXMZp .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-s8NuOmXMZp .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-s8NuOmXMZp .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-s8NuOmXMZp .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-s8NuOmXMZp .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
    justify-content: center;
  }
  .cid-s8NuOmXMZp .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-s8NuOmXMZp .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-s8NuOmXMZp .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-s8NuOmXMZp .navbar.navbar-short {
  background: #f4eddd !important;
  min-height: 60px;
}
.cid-s8NuOmXMZp .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-s8NuOmXMZp .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-s8NuOmXMZp .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-s8NuOmXMZp .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-s8NuOmXMZp .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-s8NuOmXMZp .dropdown-item.active,
.cid-s8NuOmXMZp .dropdown-item:active {
  background-color: transparent;
}
.cid-s8NuOmXMZp .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-s8NuOmXMZp .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-s8NuOmXMZp .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #f4eddd;
}
.cid-s8NuOmXMZp .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-s8NuOmXMZp .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-s8NuOmXMZp ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-s8NuOmXMZp .navbar-buttons {
  text-align: center;
}
.cid-s8NuOmXMZp .navbar-buttons .btn.btn-sm {
  padding: 6px 24px !important;
  min-width: 140px;
  line-height: 1.5;
}
.cid-s8NuOmXMZp button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-s8NuOmXMZp button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-s8NuOmXMZp button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-s8NuOmXMZp button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-s8NuOmXMZp button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-s8NuOmXMZp button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-s8NuOmXMZp nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-s8NuOmXMZp nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-s8NuOmXMZp nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-s8NuOmXMZp nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-s8NuOmXMZp .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-s8NuOmXMZp a.nav-link {
  justify-content: center;
  display: flex;
  align-items: center;
}
.cid-s8NuOmXMZp .mbr-iconfont {
  font-size: 1rem;
  color: #ffffff;
  display: inline-flex;
}
.cid-s8NuOmXMZp .soc-item {
  margin: .5rem .3rem;
}
.cid-s8NuOmXMZp .icons-menu {
  flex-wrap: wrap;
  display: flex;
  justify-content: center;
  padding-right: 1rem;
  text-align: center;
  align-items: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-s8NuOmXMZp .navbar {
    height: 77px;
  }
  .cid-s8NuOmXMZp .navbar.opened {
    height: auto;
  }
  .cid-s8NuOmXMZp .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sg35NO4k0S {
  padding-top: 135px;
  padding-bottom: 135px;
  background-image: url("../../../assets/images/mbr-4-1920x1279.jpeg");
}
.cid-sg35NO4k0S .card {
  border-radius: 0;
  margin: auto 0;
}
.cid-sg35NO4k0S .card .wrapper .mbr-section-title {
  color: #ffffff;
  font-weight: 700;
}
.cid-sg35NO4k0S .card .wrapper .mbr-section-title span:nth-child(2) {
  line-height: 1;
  color: #ffffff;
  padding: 0 6px 1px 5px;
  transform: skew(-14deg);
  background: #25970f;
  display: inline-block;
  font-weight: 500;
  letter-spacing: 0;
  position: relative;
}
.cid-sg35NO4k0S .card .wrapper .mbr-section-subtitle {
  color: #ffffff;
}
.cid-sg35NO4k0S .card .wrapper .mbr-section-subtitle.display-7 {
  letter-spacing: 0;
}
.cid-sg35NO4k0S .card .wrapper .mbr-text {
  color: #ffffff;
  font-weight: 300;
}
.cid-sg35NO4k0S .card .wrapper .buttons-wrap .mbr-section-btn .btn.display-4 {
  padding: 7px 39px;
  line-height: 1.5;
  letter-spacing: 0;
}
.cid-sg35NO4k0S .card .wrapper .buttons-wrap .mbr-section-btn .btn.btn-success-outline {
  color: #ffffff;
}
.cid-sg35NO4k0S .card .wrapper .buttons-wrap .mbr-section-btn .btn.btn-success-outline:hover {
  color: #000000;
}
.cid-sg35NO4k0S .card .wrapper .mbr-section-title,
.cid-sg35NO4k0S .mbr-section-btn {
  color: #ffffff;
}
.cid-sfAdGNoFL3 {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-sfAdGNoFL3 .row {
  flex-direction: row-reverse;
}
.cid-sfAdGNoFL3 .img-wrap img {
  width: 100%;
}
.cid-sfAdGNoFL3 .card {
  border-radius: 0;
  margin: auto 0;
}
.cid-sfAdGNoFL3 .card .wrapper {
  overflow: hidden;
}
.cid-sfAdGNoFL3 .card .wrapper .mbr-section-title {
  color: #06182d;
}
.cid-sfAdGNoFL3 .card .wrapper .mbr-section-title span {
  line-height: 1;
  color: #ffffff;
  padding: 0 6px 1px 5px;
  transform: skew(-14deg);
  background: #000000;
  background: linear-gradient(#000000 0%, #333333 69%, #333333 100%);
  display: inline-block;
  font-weight: 500;
  letter-spacing: 0;
  position: relative;
}
.cid-sfAdGNoFL3 .card .wrapper .mbr-section-subtitle {
  color: #06182d;
}
.cid-sfAdGNoFL3 .card .wrapper .mbr-section-subtitle.display-7 {
  letter-spacing: 0;
}
.cid-sfAdGNoFL3 .card .wrapper .mbr-text {
  color: #f4eddd;
  font-weight: 300;
}
.cid-sfAdGNoFL3 .card .wrapper .sign-wrap {
  text-align: center;
  overflow: hidden;
  position: relative;
}
.cid-sfAdGNoFL3 .card .wrapper .sign-wrap::before {
  right: 65.8%;
  height: 2px;
  transform: translateY(-50%);
  width: 250px;
  top: 50%;
  position: absolute;
  display: inline-block;
  content: "";
  background-color: #dfe3e8;
}
.cid-sfAdGNoFL3 .card .wrapper .sign-wrap img {
  width: 140px;
}
.cid-sfAdGNoFL3 .card .wrapper .sign-wrap::after {
  left: 65.9%;
  height: 2px;
  transform: translateY(-50%);
  width: 250px;
  top: 50%;
  position: absolute;
  display: inline-block;
  content: "";
  background-color: #dfe3e8;
}
.cid-sfAdGNoFL3 .card .wrapper .mbr-section-title {
  text-align: left;
  color: #333333;
}
.cid-sfAdGNoFL3 .card .wrapper .mbr-text {
  color: #000000;
}
.cid-shWJIFqnCt {
  padding-top: 60px;
  padding-bottom: 0px;
  background-color: #f3f3f3;
}
.cid-shWJIFqnCt img {
  width: 100%;
  border-radius: 50px;
  margin-bottom: 20px;
  max-height: ;
}
.cid-shWJIFqnCt .card {
  margin-bottom: 130px !important;
}
.cid-shWJIFqnCt .card .img-wrapper {
  overflow: hidden;
}
.cid-shWJIFqnCt .card:hover {
  cursor: pointer;
}
.cid-shWJIFqnCt .card:hover img {
  transform: scale(1.05);
}
.cid-shWJIFqnCt .card:hover .img-wrapper {
  box-shadow: 0 30px 30px -20px rgba(50, 50, 50, 0.3);
}
@media (max-width: 1200px) {
  .cid-shWJIFqnCt .card {
    margin-bottom: 50px !important;
  }
}
.cid-shWJIFqnCt .card .card-wrapper {
  text-align: left;
}
.cid-shWJIFqnCt .card .card-wrapper .mbr-iconfont {
  font-size: 41px;
  color: #ff513c;
  display: block;
  justify-content: center;
  align-items: center;
  transition: all 0.3s ease-in-out;
  padding-bottom: 14px;
  margin-right: 14px;
}
.cid-shWJIFqnCt .card .card-wrapper .card-box .card-title {
  cursor: pointer;
  color: #06182d;
}
.cid-shWJIFqnCt .card .card-wrapper .card-box .card-title.display-7 {
  line-height: 1.2;
}
.cid-shWJIFqnCt .card .card-wrapper .card-box .card-text {
  color: #f4eddd;
}
@media (min-width: 1400px) {
  .cid-shWJIFqnCt .card.left-box {
    right: 105px !important;
  }
  .cid-shWJIFqnCt .card.right-box {
    left: 97px !important;
  }
}
.cid-shWJIFqnCt .mbr-section-title {
  color: #06182d;
}
.cid-shWJIFqnCt .mbr-section-title span {
  line-height: 1;
  color: #ffffff;
  padding: 0 6px 1px 5px;
  transform: skew(-14deg);
  background: #25970f;
  display: inline-block;
  font-weight: 500;
  letter-spacing: 0;
  position: relative;
}
.cid-shWJIFqnCt .mbr-section-subtitle {
  color: #06182d;
}
.cid-shWJIFqnCt .mbr-section-subtitle.display-7 {
  letter-spacing: 0;
}
.cid-shWJIFqnCt .mbr-section-text {
  color: #999999;
}
.cid-tlhCzUXtvi {
  padding-top: 75px;
  padding-bottom: 75px;
  background-color: #ffffff;
}
.cid-tlhCzUXtvi .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.8;
}
.cid-tlhCzUXtvi input,
.cid-tlhCzUXtvi textarea {
  font-size: 14px;
}
.cid-tlhCzUXtvi input {
  padding: 1.5rem 1.8rem !important;
  border-radius: 50px;
}
.cid-tlhCzUXtvi textarea {
  padding: 1rem 1.8rem !important;
  border-radius: 30px;
  min-height: 160px !important;
}
.cid-tlhCzUXtvi .form-group {
  margin-bottom: 1.3rem;
}
.cid-tlhCzUXtvi .block-title {
  margin-bottom: 0.7rem;
}
.cid-tlhCzUXtvi .form-control:hover,
.cid-tlhCzUXtvi .form-control:focus {
  color: #000000 !important;
}
.cid-tlhCzUXtvi .mbr-section-subtitle {
  font-weight: 700;
}
.cid-tlhCzUXtvi img {
  width: 90%;
  border-radius: 8px;
}
.cid-tlhCzUXtvi .btn {
  border-radius: 30px;
}
.cid-tlhCzUXtvi .form-control,
.cid-tlhCzUXtvi .field-input {
  padding: 0.5rem;
  background-color: #ffffff;
  border-color: #181818;
  color: #000000;
  transition: 0.4s;
  box-shadow: none;
  outline: none;
}
.cid-tlhCzUXtvi .form-control:hover,
.cid-tlhCzUXtvi .field-input:hover {
  background-color: #ffffff;
  border-color: #181818 !important;
  color: #000000;
  box-shadow: none;
  outline: none;
}
.cid-tlhCzUXtvi .form-control:focus,
.cid-tlhCzUXtvi .field-input:focus {
  background-color: #ffffff;
  border-color: #181818 !important;
  color: #000000;
  box-shadow: none;
  outline: none;
}
.cid-tlhCzUXtvi input::-webkit-input-placeholder,
.cid-tlhCzUXtvi textarea::-webkit-input-placeholder {
  color: #000000;
}
.cid-tlhCzUXtvi input:-moz-placeholder,
.cid-tlhCzUXtvi textarea:-moz-placeholder {
  color: #000000;
}
.cid-tlhCzUXtvi .jq-selectbox li,
.cid-tlhCzUXtvi .jq-selectbox li {
  background-color: #ffffff;
  color: #000000;
}
.cid-tlhCzUXtvi .jq-selectbox li:hover,
.cid-tlhCzUXtvi .jq-selectbox li.selected {
  background-color: #ffffff;
  color: #000000;
}
.cid-tlhCzUXtvi .jq-selectbox:hover .jq-selectbox__trigger-arrow {
  border-top-color: #ffffff;
}
.cid-tlhCzUXtvi .jq-selectbox .jq-selectbox__trigger-arrow {
  border-top-color: #ffffff;
}
@media (max-width: 992px) {
  .cid-tlhCzUXtvi img {
    width: 100%;
  }
  .cid-tlhCzUXtvi .google-map {
    margin-bottom: 2rem;
  }
}
.cid-tlhCzUXtvi .google-map {
  height: 100%;
  min-height: 30rem;
  position: relative;
  filter: grayscale(1);
  padding-right: 0.5rem;
}
.cid-tlhCzUXtvi .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-tlhCzUXtvi .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-tlhCzUXtvi .google-map[data-state] {
  background: #e9e5dc;
}
.cid-tlhCzUXtvi .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
@media (max-width: 576px) {
  .cid-tlhCzUXtvi .col-auto {
    width: 100%;
    text-align: center;
  }
}
@media (max-width: 767px) {
  .cid-tlhCzUXtvi .mbr-form {
    margin-top: 2rem;
  }
  .cid-tlhCzUXtvi .btn {
    width: 100%;
  }
}
@media (min-width: 776px) and (max-width: 992px) {
  .cid-tlhCzUXtvi .mbr-form {
    margin-top: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tlhCzUXtvi .form-row > [class*="col-"] {
    padding: 0 1rem;
  }
}
.cid-rZqasE8Bhf {
  padding-top: 45px;
  padding-bottom: 30px;
  background-color: #25970f;
}
.cid-rZqasE8Bhf .copyright {
  display: flex;
}
@media (max-width: 992px) {
  .cid-rZqasE8Bhf .copyright {
    margin-bottom: 1rem;
  }
}
.cid-rZqasE8Bhf .text-wrap {
  transition: all 0.3s;
  padding: 23px;
  bottom: 0;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: flex-end;
  width: 100%;
  overflow: hidden;
  position: relative;
}
.cid-rZqasE8Bhf .text-wrap .icons-wrap .icon-wrapper {
  background: #ffffff;
  display: flex;
  width: 31px;
  height: 31px;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  border: 2px solid #ffffff;
  transition: all 0.3s;
  z-index: 4;
  cursor: pointer;
  margin: 0 0.2rem;
}
.cid-rZqasE8Bhf .text-wrap .icons-wrap .icon-wrapper:hover {
  background: #25970f;
  border-color: #25970f;
}
.cid-rZqasE8Bhf .text-wrap .icons-wrap .icon-wrapper:hover .link-icon {
  color: #ffffde;
}
.cid-rZqasE8Bhf .text-wrap .icons-wrap .icon-wrapper .link-icon {
  display: inline-block;
  color: #ffffde;
  transition: all 0.3s;
  font-size: 14px;
  justify-content: center;
}
.cid-rZqasE8Bhf .text-wrap .icons-wrap::before {
  height: 2px;
  width: 100%;
  top: 50%;
  right: 58%;
  position: absolute;
  display: inline-block;
  content: "";
  background-color: #ffffff;
}
@media (max-width: 992px) {
  .cid-rZqasE8Bhf .text-wrap .icons-wrap::before {
    display: none;
  }
}
.cid-rZqasE8Bhf .text-wrap .icons-wrap::after {
  height: 2px;
  width: 100%;
  top: 50%;
  left: 58%;
  position: absolute;
  display: inline-block;
  content: "";
  background-color: #ffffff;
}
@media (max-width: 992px) {
  .cid-rZqasE8Bhf .text-wrap .icons-wrap::after {
    display: none;
  }
}
.cid-s8NuOmXMZp .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 16px;
  position: absolute;
  right: 1rem;
  top: 30%;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-s8NuOmXMZp .nav-item,
.cid-s8NuOmXMZp .nav-link,
.cid-s8NuOmXMZp .navbar-caption {
  font-weight: normal;
}
.cid-s8NuOmXMZp .nav-item:focus,
.cid-s8NuOmXMZp .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-s8NuOmXMZp .dropdown-item:hover:before {
    transform: scale(1, 1);
  }
}
.cid-s8NuOmXMZp .dropdown .dropdown-menu .dropdown-item {
  display: flex;
  align-items: center;
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-s8NuOmXMZp .dropdown .dropdown-menu .dropdown-item::after {
  right: 1rem;
}
.cid-s8NuOmXMZp .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  transform: scale(0, 1);
}
.cid-s8NuOmXMZp .dropdown .dropdown-menu .dropdown-item.dropdown-toggle:before {
  display: none;
}
.cid-s8NuOmXMZp .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-s8NuOmXMZp .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-s8NuOmXMZp .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-s8NuOmXMZp .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-s8NuOmXMZp .collapsed .icons-menu {
  padding-left: 16px;
}
.cid-s8NuOmXMZp .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #f4eddd;
}
.cid-s8NuOmXMZp .navbar.opened {
  transition: all .3s;
  background: #f4eddd !important;
}
.cid-s8NuOmXMZp .navbar .dropdown-item {
  padding: .235rem 2.5rem .235rem 1.5rem;
}
.cid-s8NuOmXMZp .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-s8NuOmXMZp .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-s8NuOmXMZp .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-s8NuOmXMZp .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(100vh - 5.2rem - 1rem);
  }
}
.cid-s8NuOmXMZp .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-s8NuOmXMZp .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-s8NuOmXMZp .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-s8NuOmXMZp .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-s8NuOmXMZp .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
  justify-content: center;
}
.cid-s8NuOmXMZp .navbar.collapsed .icons-menu {
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-s8NuOmXMZp .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-s8NuOmXMZp .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-s8NuOmXMZp .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-s8NuOmXMZp .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-s8NuOmXMZp .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-s8NuOmXMZp .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-s8NuOmXMZp .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-s8NuOmXMZp .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
    justify-content: center;
  }
  .cid-s8NuOmXMZp .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-s8NuOmXMZp .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-s8NuOmXMZp .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-s8NuOmXMZp .navbar.navbar-short {
  background: #f4eddd !important;
  min-height: 60px;
}
.cid-s8NuOmXMZp .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-s8NuOmXMZp .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-s8NuOmXMZp .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-s8NuOmXMZp .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-s8NuOmXMZp .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-s8NuOmXMZp .dropdown-item.active,
.cid-s8NuOmXMZp .dropdown-item:active {
  background-color: transparent;
}
.cid-s8NuOmXMZp .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-s8NuOmXMZp .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-s8NuOmXMZp .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #f4eddd;
}
.cid-s8NuOmXMZp .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-s8NuOmXMZp .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-s8NuOmXMZp ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-s8NuOmXMZp .navbar-buttons {
  text-align: center;
}
.cid-s8NuOmXMZp .navbar-buttons .btn.btn-sm {
  padding: 6px 24px !important;
  min-width: 140px;
  line-height: 1.5;
}
.cid-s8NuOmXMZp button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-s8NuOmXMZp button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-s8NuOmXMZp button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-s8NuOmXMZp button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-s8NuOmXMZp button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-s8NuOmXMZp button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-s8NuOmXMZp nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-s8NuOmXMZp nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-s8NuOmXMZp nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-s8NuOmXMZp nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-s8NuOmXMZp .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-s8NuOmXMZp a.nav-link {
  justify-content: center;
  display: flex;
  align-items: center;
}
.cid-s8NuOmXMZp .mbr-iconfont {
  font-size: 1rem;
  color: #ffffff;
  display: inline-flex;
}
.cid-s8NuOmXMZp .soc-item {
  margin: .5rem .3rem;
}
.cid-s8NuOmXMZp .icons-menu {
  flex-wrap: wrap;
  display: flex;
  justify-content: center;
  padding-right: 1rem;
  text-align: center;
  align-items: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-s8NuOmXMZp .navbar {
    height: 77px;
  }
  .cid-s8NuOmXMZp .navbar.opened {
    height: auto;
  }
  .cid-s8NuOmXMZp .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-shWLbveoFx {
  padding-top: 135px;
  padding-bottom: 135px;
  background-image: url("../../../assets/images/mbr-6-1920x1280.jpg");
}
.cid-shWLbveoFx .card {
  border-radius: 0;
  margin: auto 0;
}
.cid-shWLbveoFx .card .wrapper .mbr-section-title {
  color: #ffffff;
  font-weight: 700;
}
.cid-shWLbveoFx .card .wrapper .mbr-section-title span:nth-child(2) {
  line-height: 1;
  color: #ffffff;
  padding: 0 6px 1px 5px;
  transform: skew(-14deg);
  background: #25970f;
  display: inline-block;
  font-weight: 500;
  letter-spacing: 0;
  position: relative;
}
.cid-shWLbveoFx .card .wrapper .mbr-section-subtitle {
  color: #ffffff;
}
.cid-shWLbveoFx .card .wrapper .mbr-section-subtitle.display-7 {
  letter-spacing: 0;
}
.cid-shWLbveoFx .card .wrapper .mbr-text {
  color: #ffffff;
  font-weight: 300;
}
.cid-shWLbveoFx .card .wrapper .buttons-wrap .mbr-section-btn .btn.display-4 {
  padding: 7px 39px;
  line-height: 1.5;
  letter-spacing: 0;
}
.cid-shWLbveoFx .card .wrapper .buttons-wrap .mbr-section-btn .btn.btn-success-outline {
  color: #ffffff;
}
.cid-shWLbveoFx .card .wrapper .buttons-wrap .mbr-section-btn .btn.btn-success-outline:hover {
  color: #000000;
}
.cid-shWLbveoFx .card .wrapper .mbr-section-title,
.cid-shWLbveoFx .mbr-section-btn {
  color: #ffffff;
}
.cid-shWMHW2ay9 {
  padding-top: 60px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-shWMHW2ay9 .mbr-section-title span {
  line-height: 1;
  color: #ffffff;
  padding: 0 6px 1px 5px;
  transform: skew(-14deg);
  background: #25970f;
  display: inline-block;
  font-weight: 500;
  letter-spacing: 0;
  position: relative;
}
.cid-shWMHW2ay9 .mbr-section-subtitle {
  color: #06182d;
  line-height: 1;
  font-weight: 300;
}
.cid-shWMHW2ay9 .card {
  max-width: 300px;
  margin-bottom: 20px;
}
.cid-shWMHW2ay9 .card .card-wrapper {
  overflow: hidden;
  height: 100%;
  background: #ffffff;
  color: #444444;
  padding: 0;
  border: 1px solid rgba(97, 114, 138, 0.2);
}
.cid-shWMHW2ay9 .card .card-wrapper .card-img {
  width: auto;
}
.cid-shWMHW2ay9 .card .card-wrapper .card-img img {
  width: 100%;
  max-height: 450px;
}
.cid-shWMHW2ay9 .card .card-wrapper .card-box {
  padding: 44px 30px 41px;
}
.cid-shWMHW2ay9 .card .card-wrapper .card-box .sticky-tag {
  position: absolute;
  top: 0;
  left: 4px;
  z-index: 10;
  display: block;
}
@media (max-width: 768px) {
  .cid-shWMHW2ay9 .card .card-wrapper .card-box .sticky-tag {
    display: none;
  }
}
.cid-shWMHW2ay9 .card .card-wrapper .card-box .sticky-tag .mbr-text {
  padding: 5px 6px;
  margin: 0 3px 9px;
  text-align: center;
  display: inline-block;
  line-height: 1;
  transform: skew(-22deg);
  background: #25970f;
  font-weight: 400;
  border-image-slice: 1;
  color: #ffffff;
}
.cid-shWMHW2ay9 .card .card-wrapper .card-box .sticky-tag .mbr-text::before {
  content: "";
  position: absolute;
  bottom: -12px;
  left: 1.5px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 15px 12px 0;
  border-color: transparent #db3321 transparent transparent;
  transform: skew(22deg) !important;
}
.cid-shWMHW2ay9 .card .card-wrapper .card-box .card-title {
  color: #06182d;
  margin: 0;
  line-height: 1.3;
  padding-bottom: 1rem;
  text-align: center;
  font-weight: 500;
}
.cid-shWMHW2ay9 .card .card-wrapper .card-box .mbr-text {
  line-height: 1.6;
  text-align: center;
  color: #f4eddd;
}
.cid-shWMHW2ay9 .card .card-wrapper .card-box .ico-line {
  width: 100%;
  color: #767676;
  justify-content: space-between;
}
.cid-shWMHW2ay9 .card .card-wrapper .card-box .ico-line .mbr-iconfont {
  display: inline-block;
  color: #ff4e3c;
}
.cid-shWMHW2ay9 .card .card-wrapper .card-box .ico-line .rev {
  display: inline-block;
  color: #0a1c44;
}
.cid-shWMHW2ay9 .card .card-wrapper .card-box .mbr-section-btn {
  color: #767676;
  text-align: center;
}
.cid-shWMIp5Ujt {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-shWMIp5Ujt .mbr-section-title span {
  line-height: 1;
  color: #ffffff;
  padding: 0 6px 1px 5px;
  transform: skew(-14deg);
  background: #2aadff;
  display: inline-block;
  font-weight: 500;
  letter-spacing: 0;
  position: relative;
}
.cid-shWMIp5Ujt .mbr-section-subtitle {
  color: #06182d;
  line-height: 1;
  font-weight: 300;
}
.cid-shWMIp5Ujt .card {
  max-width: 300px;
  margin-bottom: 20px;
}
.cid-shWMIp5Ujt .card .card-wrapper {
  overflow: hidden;
  height: 100%;
  background: #ffffff;
  color: #444444;
  padding: 0;
  border: 1px solid rgba(97, 114, 138, 0.2);
}
.cid-shWMIp5Ujt .card .card-wrapper .card-img {
  width: auto;
}
.cid-shWMIp5Ujt .card .card-wrapper .card-img img {
  width: 100%;
  max-height: 450px;
}
.cid-shWMIp5Ujt .card .card-wrapper .card-box {
  padding: 44px 30px 41px;
}
.cid-shWMIp5Ujt .card .card-wrapper .card-box .sticky-tag {
  position: absolute;
  top: 0;
  left: 4px;
  z-index: 10;
  display: block;
}
@media (max-width: 768px) {
  .cid-shWMIp5Ujt .card .card-wrapper .card-box .sticky-tag {
    display: none;
  }
}
.cid-shWMIp5Ujt .card .card-wrapper .card-box .sticky-tag .mbr-text {
  padding: 5px 6px;
  margin: 0 3px 9px;
  text-align: center;
  display: inline-block;
  line-height: 1;
  transform: skew(-22deg);
  background: #2aadff;
  font-weight: 400;
  border-image-slice: 1;
  color: #ffffff;
}
.cid-shWMIp5Ujt .card .card-wrapper .card-box .sticky-tag .mbr-text::before {
  content: "";
  position: absolute;
  bottom: -12px;
  left: 1.5px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 15px 12px 0;
  border-color: transparent #db3321 transparent transparent;
  transform: skew(22deg) !important;
}
.cid-shWMIp5Ujt .card .card-wrapper .card-box .card-title {
  color: #06182d;
  margin: 0;
  line-height: 1.3;
  padding-bottom: 1rem;
  text-align: center;
  font-weight: 500;
}
.cid-shWMIp5Ujt .card .card-wrapper .card-box .mbr-text {
  line-height: 1.6;
  text-align: center;
  color: #f4eddd;
}
.cid-shWMIp5Ujt .card .card-wrapper .card-box .ico-line {
  width: 100%;
  color: #767676;
  justify-content: space-between;
}
.cid-shWMIp5Ujt .card .card-wrapper .card-box .ico-line .mbr-iconfont {
  display: inline-block;
  color: #ff4e3c;
}
.cid-shWMIp5Ujt .card .card-wrapper .card-box .ico-line .rev {
  display: inline-block;
  color: #0a1c44;
}
.cid-shWMIp5Ujt .card .card-wrapper .card-box .mbr-section-btn {
  color: #767676;
  text-align: center;
}
.cid-shWMIVB1U1 {
  padding-top: 0px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-shWMIVB1U1 .mbr-section-title span {
  line-height: 1;
  color: #ffffff;
  padding: 0 6px 1px 5px;
  transform: skew(-14deg);
  background: #2aadff;
  display: inline-block;
  font-weight: 500;
  letter-spacing: 0;
  position: relative;
}
.cid-shWMIVB1U1 .mbr-section-subtitle {
  color: #06182d;
  line-height: 1;
  font-weight: 300;
}
.cid-shWMIVB1U1 .card {
  max-width: 300px;
  margin-bottom: 20px;
}
.cid-shWMIVB1U1 .card .card-wrapper {
  overflow: hidden;
  height: 100%;
  background: #ffffff;
  color: #444444;
  padding: 0;
  border: 1px solid rgba(97, 114, 138, 0.2);
}
.cid-shWMIVB1U1 .card .card-wrapper .card-img {
  width: auto;
}
.cid-shWMIVB1U1 .card .card-wrapper .card-img img {
  width: 100%;
  max-height: 450px;
}
.cid-shWMIVB1U1 .card .card-wrapper .card-box {
  padding: 44px 30px 41px;
}
.cid-shWMIVB1U1 .card .card-wrapper .card-box .sticky-tag {
  position: absolute;
  top: 0;
  left: 4px;
  z-index: 10;
  display: block;
}
@media (max-width: 768px) {
  .cid-shWMIVB1U1 .card .card-wrapper .card-box .sticky-tag {
    display: none;
  }
}
.cid-shWMIVB1U1 .card .card-wrapper .card-box .sticky-tag .mbr-text {
  padding: 5px 6px;
  margin: 0 3px 9px;
  text-align: center;
  display: inline-block;
  line-height: 1;
  transform: skew(-22deg);
  background: #2aadff;
  font-weight: 400;
  border-image-slice: 1;
  color: #ffffff;
}
.cid-shWMIVB1U1 .card .card-wrapper .card-box .sticky-tag .mbr-text::before {
  content: "";
  position: absolute;
  bottom: -12px;
  left: 1.5px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 15px 12px 0;
  border-color: transparent #db3321 transparent transparent;
  transform: skew(22deg) !important;
}
.cid-shWMIVB1U1 .card .card-wrapper .card-box .card-title {
  color: #06182d;
  margin: 0;
  line-height: 1.3;
  padding-bottom: 1rem;
  text-align: center;
  font-weight: 500;
}
.cid-shWMIVB1U1 .card .card-wrapper .card-box .mbr-text {
  line-height: 1.6;
  text-align: center;
  color: #f4eddd;
}
.cid-shWMIVB1U1 .card .card-wrapper .card-box .ico-line {
  width: 100%;
  color: #767676;
  justify-content: space-between;
}
.cid-shWMIVB1U1 .card .card-wrapper .card-box .ico-line .mbr-iconfont {
  display: inline-block;
  color: #ff4e3c;
}
.cid-shWMIVB1U1 .card .card-wrapper .card-box .ico-line .rev {
  display: inline-block;
  color: #0a1c44;
}
.cid-shWMIVB1U1 .card .card-wrapper .card-box .mbr-section-btn {
  color: #767676;
  text-align: center;
}
.cid-tlhCDG9Ecg {
  padding-top: 75px;
  padding-bottom: 75px;
  background-color: #f3f3f3;
}
.cid-tlhCDG9Ecg .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.8;
}
.cid-tlhCDG9Ecg input,
.cid-tlhCDG9Ecg textarea {
  font-size: 14px;
}
.cid-tlhCDG9Ecg input {
  padding: 1.5rem 1.8rem !important;
  border-radius: 50px;
}
.cid-tlhCDG9Ecg textarea {
  padding: 1rem 1.8rem !important;
  border-radius: 30px;
  min-height: 160px !important;
}
.cid-tlhCDG9Ecg .form-group {
  margin-bottom: 1.3rem;
}
.cid-tlhCDG9Ecg .block-title {
  margin-bottom: 0.7rem;
}
.cid-tlhCDG9Ecg .form-control:hover,
.cid-tlhCDG9Ecg .form-control:focus {
  color: #000000 !important;
}
.cid-tlhCDG9Ecg .mbr-section-subtitle {
  font-weight: 700;
}
.cid-tlhCDG9Ecg img {
  width: 90%;
  border-radius: 8px;
}
.cid-tlhCDG9Ecg .btn {
  border-radius: 30px;
}
.cid-tlhCDG9Ecg .form-control,
.cid-tlhCDG9Ecg .field-input {
  padding: 0.5rem;
  background-color: #f3f3f3;
  border-color: #181818;
  color: #000000;
  transition: 0.4s;
  box-shadow: none;
  outline: none;
}
.cid-tlhCDG9Ecg .form-control:hover,
.cid-tlhCDG9Ecg .field-input:hover {
  background-color: #f3f3f3;
  border-color: #181818 !important;
  color: #000000;
  box-shadow: none;
  outline: none;
}
.cid-tlhCDG9Ecg .form-control:focus,
.cid-tlhCDG9Ecg .field-input:focus {
  background-color: #ffffff;
  border-color: #181818 !important;
  color: #000000;
  box-shadow: none;
  outline: none;
}
.cid-tlhCDG9Ecg input::-webkit-input-placeholder,
.cid-tlhCDG9Ecg textarea::-webkit-input-placeholder {
  color: #000000;
}
.cid-tlhCDG9Ecg input:-moz-placeholder,
.cid-tlhCDG9Ecg textarea:-moz-placeholder {
  color: #000000;
}
.cid-tlhCDG9Ecg .jq-selectbox li,
.cid-tlhCDG9Ecg .jq-selectbox li {
  background-color: #f3f3f3;
  color: #000000;
}
.cid-tlhCDG9Ecg .jq-selectbox li:hover,
.cid-tlhCDG9Ecg .jq-selectbox li.selected {
  background-color: #f3f3f3;
  color: #000000;
}
.cid-tlhCDG9Ecg .jq-selectbox:hover .jq-selectbox__trigger-arrow {
  border-top-color: #f3f3f3;
}
.cid-tlhCDG9Ecg .jq-selectbox .jq-selectbox__trigger-arrow {
  border-top-color: #f3f3f3;
}
@media (max-width: 992px) {
  .cid-tlhCDG9Ecg img {
    width: 100%;
  }
  .cid-tlhCDG9Ecg .google-map {
    margin-bottom: 2rem;
  }
}
.cid-tlhCDG9Ecg .google-map {
  height: 100%;
  min-height: 30rem;
  position: relative;
  filter: grayscale(1);
  padding-right: 0.5rem;
}
.cid-tlhCDG9Ecg .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-tlhCDG9Ecg .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-tlhCDG9Ecg .google-map[data-state] {
  background: #e9e5dc;
}
.cid-tlhCDG9Ecg .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
@media (max-width: 576px) {
  .cid-tlhCDG9Ecg .col-auto {
    width: 100%;
    text-align: center;
  }
}
@media (max-width: 767px) {
  .cid-tlhCDG9Ecg .mbr-form {
    margin-top: 2rem;
  }
  .cid-tlhCDG9Ecg .btn {
    width: 100%;
  }
}
@media (min-width: 776px) and (max-width: 992px) {
  .cid-tlhCDG9Ecg .mbr-form {
    margin-top: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tlhCDG9Ecg .form-row > [class*="col-"] {
    padding: 0 1rem;
  }
}
.cid-rZqasE8Bhf {
  padding-top: 45px;
  padding-bottom: 30px;
  background-color: #25970f;
}
.cid-rZqasE8Bhf .copyright {
  display: flex;
}
@media (max-width: 992px) {
  .cid-rZqasE8Bhf .copyright {
    margin-bottom: 1rem;
  }
}
.cid-rZqasE8Bhf .text-wrap {
  transition: all 0.3s;
  padding: 23px;
  bottom: 0;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: flex-end;
  width: 100%;
  overflow: hidden;
  position: relative;
}
.cid-rZqasE8Bhf .text-wrap .icons-wrap .icon-wrapper {
  background: #ffffff;
  display: flex;
  width: 31px;
  height: 31px;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  border: 2px solid #ffffff;
  transition: all 0.3s;
  z-index: 4;
  cursor: pointer;
  margin: 0 0.2rem;
}
.cid-rZqasE8Bhf .text-wrap .icons-wrap .icon-wrapper:hover {
  background: #25970f;
  border-color: #25970f;
}
.cid-rZqasE8Bhf .text-wrap .icons-wrap .icon-wrapper:hover .link-icon {
  color: #ffffde;
}
.cid-rZqasE8Bhf .text-wrap .icons-wrap .icon-wrapper .link-icon {
  display: inline-block;
  color: #ffffde;
  transition: all 0.3s;
  font-size: 14px;
  justify-content: center;
}
.cid-rZqasE8Bhf .text-wrap .icons-wrap::before {
  height: 2px;
  width: 100%;
  top: 50%;
  right: 58%;
  position: absolute;
  display: inline-block;
  content: "";
  background-color: #ffffff;
}
@media (max-width: 992px) {
  .cid-rZqasE8Bhf .text-wrap .icons-wrap::before {
    display: none;
  }
}
.cid-rZqasE8Bhf .text-wrap .icons-wrap::after {
  height: 2px;
  width: 100%;
  top: 50%;
  left: 58%;
  position: absolute;
  display: inline-block;
  content: "";
  background-color: #ffffff;
}
@media (max-width: 992px) {
  .cid-rZqasE8Bhf .text-wrap .icons-wrap::after {
    display: none;
  }
}
.cid-si1fHa8GMj .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 16px;
  position: absolute;
  right: 1rem;
  top: 30%;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-si1fHa8GMj .nav-item,
.cid-si1fHa8GMj .nav-link,
.cid-si1fHa8GMj .navbar-caption {
  font-weight: normal;
}
.cid-si1fHa8GMj .nav-item:focus,
.cid-si1fHa8GMj .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-si1fHa8GMj .dropdown-item:hover:before {
    transform: scale(1, 1);
  }
}
.cid-si1fHa8GMj .dropdown .dropdown-menu .dropdown-item {
  display: flex;
  align-items: center;
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-si1fHa8GMj .dropdown .dropdown-menu .dropdown-item::after {
  right: 1rem;
}
.cid-si1fHa8GMj .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  transform: scale(0, 1);
}
.cid-si1fHa8GMj .dropdown .dropdown-menu .dropdown-item.dropdown-toggle:before {
  display: none;
}
.cid-si1fHa8GMj .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-si1fHa8GMj .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-si1fHa8GMj .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-si1fHa8GMj .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-si1fHa8GMj .collapsed .icons-menu {
  padding-left: 16px;
}
.cid-si1fHa8GMj .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #f4eddd;
}
.cid-si1fHa8GMj .navbar.opened {
  transition: all .3s;
  background: #f4eddd !important;
}
.cid-si1fHa8GMj .navbar .dropdown-item {
  padding: .235rem 2.5rem .235rem 1.5rem;
}
.cid-si1fHa8GMj .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-si1fHa8GMj .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-si1fHa8GMj .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-si1fHa8GMj .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(100vh - 5.2rem - 1rem);
  }
}
.cid-si1fHa8GMj .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-si1fHa8GMj .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-si1fHa8GMj .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-si1fHa8GMj .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-si1fHa8GMj .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
  justify-content: center;
}
.cid-si1fHa8GMj .navbar.collapsed .icons-menu {
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-si1fHa8GMj .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-si1fHa8GMj .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-si1fHa8GMj .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-si1fHa8GMj .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-si1fHa8GMj .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-si1fHa8GMj .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-si1fHa8GMj .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-si1fHa8GMj .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
    justify-content: center;
  }
  .cid-si1fHa8GMj .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-si1fHa8GMj .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-si1fHa8GMj .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-si1fHa8GMj .navbar.navbar-short {
  background: #f4eddd !important;
  min-height: 60px;
}
.cid-si1fHa8GMj .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-si1fHa8GMj .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-si1fHa8GMj .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-si1fHa8GMj .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-si1fHa8GMj .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-si1fHa8GMj .dropdown-item.active,
.cid-si1fHa8GMj .dropdown-item:active {
  background-color: transparent;
}
.cid-si1fHa8GMj .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-si1fHa8GMj .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-si1fHa8GMj .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #f4eddd;
}
.cid-si1fHa8GMj .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-si1fHa8GMj .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-si1fHa8GMj ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-si1fHa8GMj .navbar-buttons {
  text-align: center;
}
.cid-si1fHa8GMj .navbar-buttons .btn.btn-sm {
  padding: 6px 24px !important;
  min-width: 140px;
  line-height: 1.5;
}
.cid-si1fHa8GMj button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-si1fHa8GMj button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-si1fHa8GMj button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-si1fHa8GMj button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-si1fHa8GMj button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-si1fHa8GMj button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-si1fHa8GMj nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-si1fHa8GMj nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-si1fHa8GMj nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-si1fHa8GMj nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-si1fHa8GMj .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-si1fHa8GMj a.nav-link {
  justify-content: center;
  display: flex;
  align-items: center;
}
.cid-si1fHa8GMj .mbr-iconfont {
  font-size: 1rem;
  color: #ffffff;
  display: inline-flex;
}
.cid-si1fHa8GMj .soc-item {
  margin: .5rem .3rem;
}
.cid-si1fHa8GMj .icons-menu {
  flex-wrap: wrap;
  display: flex;
  justify-content: center;
  padding-right: 1rem;
  text-align: center;
  align-items: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-si1fHa8GMj .navbar {
    height: 77px;
  }
  .cid-si1fHa8GMj .navbar.opened {
    height: auto;
  }
  .cid-si1fHa8GMj .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-si1fHbeP6F {
  padding-top: 135px;
  padding-bottom: 135px;
  background-image: url("../../../assets/images/mbr-6-1920x1280.jpg");
}
.cid-si1fHbeP6F .card {
  border-radius: 0;
  margin: auto 0;
}
.cid-si1fHbeP6F .card .wrapper .mbr-section-title {
  color: #ffffff;
  font-weight: 700;
}
.cid-si1fHbeP6F .card .wrapper .mbr-section-title span:nth-child(2) {
  line-height: 1;
  color: #ffffff;
  padding: 0 6px 1px 5px;
  transform: skew(-14deg);
  background: #25970f;
  display: inline-block;
  font-weight: 500;
  letter-spacing: 0;
  position: relative;
}
.cid-si1fHbeP6F .card .wrapper .mbr-section-subtitle {
  color: #ffffff;
}
.cid-si1fHbeP6F .card .wrapper .mbr-section-subtitle.display-7 {
  letter-spacing: 0;
}
.cid-si1fHbeP6F .card .wrapper .mbr-text {
  color: #ffffff;
  font-weight: 300;
}
.cid-si1fHbeP6F .card .wrapper .buttons-wrap .mbr-section-btn .btn.display-4 {
  padding: 7px 39px;
  line-height: 1.5;
  letter-spacing: 0;
}
.cid-si1fHbeP6F .card .wrapper .buttons-wrap .mbr-section-btn .btn.btn-success-outline {
  color: #ffffff;
}
.cid-si1fHbeP6F .card .wrapper .buttons-wrap .mbr-section-btn .btn.btn-success-outline:hover {
  color: #000000;
}
.cid-si1fHbeP6F .card .wrapper .mbr-section-title,
.cid-si1fHbeP6F .mbr-section-btn {
  color: #ffffff;
}
.cid-si1hisFVTh {
  padding-top: 60px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-si1hisFVTh img {
  width: 100%;
  border-radius: 50px;
  margin-bottom: 20px;
  max-height: ;
}
.cid-si1hisFVTh .card {
  margin-bottom: 130px !important;
}
.cid-si1hisFVTh .card .img-wrapper {
  overflow: hidden;
}
.cid-si1hisFVTh .card:hover {
  cursor: pointer;
}
.cid-si1hisFVTh .card:hover img {
  transform: scale(1.05);
}
.cid-si1hisFVTh .card:hover .img-wrapper {
  box-shadow: 0 30px 30px -20px rgba(50, 50, 50, 0.3);
}
@media (max-width: 1200px) {
  .cid-si1hisFVTh .card {
    margin-bottom: 50px !important;
  }
}
.cid-si1hisFVTh .card .card-wrapper {
  text-align: left;
}
.cid-si1hisFVTh .card .card-wrapper .mbr-iconfont {
  font-size: 41px;
  color: #ff513c;
  display: block;
  justify-content: center;
  align-items: center;
  transition: all 0.3s ease-in-out;
  padding-bottom: 14px;
  margin-right: 14px;
}
.cid-si1hisFVTh .card .card-wrapper .card-box .card-title {
  cursor: pointer;
  color: #06182d;
}
.cid-si1hisFVTh .card .card-wrapper .card-box .card-title.display-7 {
  line-height: 1.2;
}
.cid-si1hisFVTh .card .card-wrapper .card-box .card-text {
  color: #f4eddd;
}
@media (min-width: 1400px) {
  .cid-si1hisFVTh .card.left-box {
    right: 105px !important;
  }
  .cid-si1hisFVTh .card.right-box {
    left: 97px !important;
  }
}
.cid-si1hisFVTh .mbr-section-title {
  color: #06182d;
}
.cid-si1hisFVTh .mbr-section-title span {
  line-height: 1;
  color: #ffffff;
  padding: 0 6px 1px 5px;
  transform: skew(-14deg);
  background: #25970f;
  display: inline-block;
  font-weight: 500;
  letter-spacing: 0;
  position: relative;
}
.cid-si1hisFVTh .mbr-section-subtitle {
  color: #06182d;
}
.cid-si1hisFVTh .mbr-section-subtitle.display-7 {
  letter-spacing: 0;
}
.cid-si1hisFVTh .mbr-section-text {
  color: #999999;
}
.cid-si1iQHllHz {
  padding-top: 90px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/whatsapp-image-2020-12-06-at-23.56.47-940x627.jpg");
}
.cid-si1iQHllHz .mbr-section-title {
  text-align: center;
}
.cid-si1iQHllHz .mbr-section-subtitle {
  text-align: center;
}
.cid-tluvfdcfiJ {
  padding-top: 75px;
  padding-bottom: 75px;
  background-color: #f3f3f3;
}
.cid-tluvfdcfiJ .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.8;
}
.cid-tluvfdcfiJ input,
.cid-tluvfdcfiJ textarea {
  font-size: 14px;
}
.cid-tluvfdcfiJ input {
  padding: 1.5rem 1.8rem !important;
  border-radius: 50px;
}
.cid-tluvfdcfiJ textarea {
  padding: 1rem 1.8rem !important;
  border-radius: 30px;
  min-height: 160px !important;
}
.cid-tluvfdcfiJ .form-group {
  margin-bottom: 1.3rem;
}
.cid-tluvfdcfiJ .block-title {
  margin-bottom: 0.7rem;
}
.cid-tluvfdcfiJ .form-control:hover,
.cid-tluvfdcfiJ .form-control:focus {
  color: #000000 !important;
}
.cid-tluvfdcfiJ .mbr-section-subtitle {
  font-weight: 700;
}
.cid-tluvfdcfiJ img {
  width: 90%;
  border-radius: 8px;
}
.cid-tluvfdcfiJ .btn {
  border-radius: 30px;
}
.cid-tluvfdcfiJ .form-control,
.cid-tluvfdcfiJ .field-input {
  padding: 0.5rem;
  background-color: #f3f3f3;
  border-color: #181818;
  color: #000000;
  transition: 0.4s;
  box-shadow: none;
  outline: none;
}
.cid-tluvfdcfiJ .form-control:hover,
.cid-tluvfdcfiJ .field-input:hover {
  background-color: #f3f3f3;
  border-color: #181818 !important;
  color: #000000;
  box-shadow: none;
  outline: none;
}
.cid-tluvfdcfiJ .form-control:focus,
.cid-tluvfdcfiJ .field-input:focus {
  background-color: #ffffff;
  border-color: #181818 !important;
  color: #000000;
  box-shadow: none;
  outline: none;
}
.cid-tluvfdcfiJ input::-webkit-input-placeholder,
.cid-tluvfdcfiJ textarea::-webkit-input-placeholder {
  color: #000000;
}
.cid-tluvfdcfiJ input:-moz-placeholder,
.cid-tluvfdcfiJ textarea:-moz-placeholder {
  color: #000000;
}
.cid-tluvfdcfiJ .jq-selectbox li,
.cid-tluvfdcfiJ .jq-selectbox li {
  background-color: #f3f3f3;
  color: #000000;
}
.cid-tluvfdcfiJ .jq-selectbox li:hover,
.cid-tluvfdcfiJ .jq-selectbox li.selected {
  background-color: #f3f3f3;
  color: #000000;
}
.cid-tluvfdcfiJ .jq-selectbox:hover .jq-selectbox__trigger-arrow {
  border-top-color: #f3f3f3;
}
.cid-tluvfdcfiJ .jq-selectbox .jq-selectbox__trigger-arrow {
  border-top-color: #f3f3f3;
}
@media (max-width: 992px) {
  .cid-tluvfdcfiJ img {
    width: 100%;
  }
  .cid-tluvfdcfiJ .google-map {
    margin-bottom: 2rem;
  }
}
.cid-tluvfdcfiJ .google-map {
  height: 100%;
  min-height: 30rem;
  position: relative;
  filter: grayscale(1);
  padding-right: 0.5rem;
}
.cid-tluvfdcfiJ .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-tluvfdcfiJ .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-tluvfdcfiJ .google-map[data-state] {
  background: #e9e5dc;
}
.cid-tluvfdcfiJ .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
@media (max-width: 576px) {
  .cid-tluvfdcfiJ .col-auto {
    width: 100%;
    text-align: center;
  }
}
@media (max-width: 767px) {
  .cid-tluvfdcfiJ .mbr-form {
    margin-top: 2rem;
  }
  .cid-tluvfdcfiJ .btn {
    width: 100%;
  }
}
@media (min-width: 776px) and (max-width: 992px) {
  .cid-tluvfdcfiJ .mbr-form {
    margin-top: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tluvfdcfiJ .form-row > [class*="col-"] {
    padding: 0 1rem;
  }
}
.cid-si1fHhjIkX {
  padding-top: 45px;
  padding-bottom: 30px;
  background-color: #25970f;
}
.cid-si1fHhjIkX .copyright {
  display: flex;
}
@media (max-width: 992px) {
  .cid-si1fHhjIkX .copyright {
    margin-bottom: 1rem;
  }
}
.cid-si1fHhjIkX .text-wrap {
  transition: all 0.3s;
  padding: 23px;
  bottom: 0;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: flex-end;
  width: 100%;
  overflow: hidden;
  position: relative;
}
.cid-si1fHhjIkX .text-wrap .icons-wrap .icon-wrapper {
  background: #ffffff;
  display: flex;
  width: 31px;
  height: 31px;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  border: 2px solid #ffffff;
  transition: all 0.3s;
  z-index: 4;
  cursor: pointer;
  margin: 0 0.2rem;
}
.cid-si1fHhjIkX .text-wrap .icons-wrap .icon-wrapper:hover {
  background: #25970f;
  border-color: #25970f;
}
.cid-si1fHhjIkX .text-wrap .icons-wrap .icon-wrapper:hover .link-icon {
  color: #ffffde;
}
.cid-si1fHhjIkX .text-wrap .icons-wrap .icon-wrapper .link-icon {
  display: inline-block;
  color: #ffffde;
  transition: all 0.3s;
  font-size: 14px;
  justify-content: center;
}
.cid-si1fHhjIkX .text-wrap .icons-wrap::before {
  height: 2px;
  width: 100%;
  top: 50%;
  right: 58%;
  position: absolute;
  display: inline-block;
  content: "";
  background-color: #ffffff;
}
@media (max-width: 992px) {
  .cid-si1fHhjIkX .text-wrap .icons-wrap::before {
    display: none;
  }
}
.cid-si1fHhjIkX .text-wrap .icons-wrap::after {
  height: 2px;
  width: 100%;
  top: 50%;
  left: 58%;
  position: absolute;
  display: inline-block;
  content: "";
  background-color: #ffffff;
}
@media (max-width: 992px) {
  .cid-si1fHhjIkX .text-wrap .icons-wrap::after {
    display: none;
  }
}
.cid-sJX8HpL5d9 .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 16px;
  position: absolute;
  right: 1rem;
  top: 30%;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sJX8HpL5d9 .nav-item,
.cid-sJX8HpL5d9 .nav-link,
.cid-sJX8HpL5d9 .navbar-caption {
  font-weight: normal;
}
.cid-sJX8HpL5d9 .nav-item:focus,
.cid-sJX8HpL5d9 .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-sJX8HpL5d9 .dropdown-item:hover:before {
    transform: scale(1, 1);
  }
}
.cid-sJX8HpL5d9 .dropdown .dropdown-menu .dropdown-item {
  display: flex;
  align-items: center;
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sJX8HpL5d9 .dropdown .dropdown-menu .dropdown-item::after {
  right: 1rem;
}
.cid-sJX8HpL5d9 .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  transform: scale(0, 1);
}
.cid-sJX8HpL5d9 .dropdown .dropdown-menu .dropdown-item.dropdown-toggle:before {
  display: none;
}
.cid-sJX8HpL5d9 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-sJX8HpL5d9 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sJX8HpL5d9 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sJX8HpL5d9 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sJX8HpL5d9 .collapsed .icons-menu {
  padding-left: 16px;
}
.cid-sJX8HpL5d9 .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #f4eddd;
}
.cid-sJX8HpL5d9 .navbar.opened {
  transition: all .3s;
  background: #f4eddd !important;
}
.cid-sJX8HpL5d9 .navbar .dropdown-item {
  padding: .235rem 2.5rem .235rem 1.5rem;
}
.cid-sJX8HpL5d9 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sJX8HpL5d9 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sJX8HpL5d9 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sJX8HpL5d9 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(100vh - 5.2rem - 1rem);
  }
}
.cid-sJX8HpL5d9 .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-sJX8HpL5d9 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sJX8HpL5d9 .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-sJX8HpL5d9 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sJX8HpL5d9 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
  justify-content: center;
}
.cid-sJX8HpL5d9 .navbar.collapsed .icons-menu {
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-sJX8HpL5d9 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sJX8HpL5d9 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sJX8HpL5d9 .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-sJX8HpL5d9 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sJX8HpL5d9 .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-sJX8HpL5d9 .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-sJX8HpL5d9 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sJX8HpL5d9 .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
    justify-content: center;
  }
  .cid-sJX8HpL5d9 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-sJX8HpL5d9 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sJX8HpL5d9 .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-sJX8HpL5d9 .navbar.navbar-short {
  background: #f4eddd !important;
  min-height: 60px;
}
.cid-sJX8HpL5d9 .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-sJX8HpL5d9 .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-sJX8HpL5d9 .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sJX8HpL5d9 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sJX8HpL5d9 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sJX8HpL5d9 .dropdown-item.active,
.cid-sJX8HpL5d9 .dropdown-item:active {
  background-color: transparent;
}
.cid-sJX8HpL5d9 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sJX8HpL5d9 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sJX8HpL5d9 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #f4eddd;
}
.cid-sJX8HpL5d9 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sJX8HpL5d9 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sJX8HpL5d9 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sJX8HpL5d9 .navbar-buttons {
  text-align: center;
}
.cid-sJX8HpL5d9 .navbar-buttons .btn.btn-sm {
  padding: 6px 24px !important;
  min-width: 140px;
  line-height: 1.5;
}
.cid-sJX8HpL5d9 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-sJX8HpL5d9 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-sJX8HpL5d9 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-sJX8HpL5d9 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-sJX8HpL5d9 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-sJX8HpL5d9 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-sJX8HpL5d9 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sJX8HpL5d9 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-sJX8HpL5d9 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-sJX8HpL5d9 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sJX8HpL5d9 .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-sJX8HpL5d9 a.nav-link {
  justify-content: center;
  display: flex;
  align-items: center;
}
.cid-sJX8HpL5d9 .mbr-iconfont {
  font-size: 1rem;
  color: #ffffff;
  display: inline-flex;
}
.cid-sJX8HpL5d9 .soc-item {
  margin: .5rem .3rem;
}
.cid-sJX8HpL5d9 .icons-menu {
  flex-wrap: wrap;
  display: flex;
  justify-content: center;
  padding-right: 1rem;
  text-align: center;
  align-items: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sJX8HpL5d9 .navbar {
    height: 77px;
  }
  .cid-sJX8HpL5d9 .navbar.opened {
    height: auto;
  }
  .cid-sJX8HpL5d9 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sJX8Hs96Q1 {
  padding-top: 135px;
  padding-bottom: 135px;
  background-image: url("../../../assets/images/mbr-3-1920x1279.jpg");
}
.cid-sJX8Hs96Q1 .card {
  border-radius: 0;
  margin: auto 0;
}
.cid-sJX8Hs96Q1 .card .wrapper .mbr-section-title {
  color: #ffffff;
  font-weight: 700;
}
.cid-sJX8Hs96Q1 .card .wrapper .mbr-section-title span:nth-child(2) {
  line-height: 1;
  color: #ffffff;
  padding: 0 6px 1px 5px;
  transform: skew(-14deg);
  background: #25970f;
  display: inline-block;
  font-weight: 500;
  letter-spacing: 0;
  position: relative;
}
.cid-sJX8Hs96Q1 .card .wrapper .mbr-section-subtitle {
  color: #ffffff;
}
.cid-sJX8Hs96Q1 .card .wrapper .mbr-section-subtitle.display-7 {
  letter-spacing: 0;
}
.cid-sJX8Hs96Q1 .card .wrapper .mbr-text {
  color: #ffffff;
  font-weight: 300;
}
.cid-sJX8Hs96Q1 .card .wrapper .buttons-wrap .mbr-section-btn .btn.display-4 {
  padding: 7px 39px;
  line-height: 1.5;
  letter-spacing: 0;
}
.cid-sJX8Hs96Q1 .card .wrapper .buttons-wrap .mbr-section-btn .btn.btn-success-outline {
  color: #ffffff;
}
.cid-sJX8Hs96Q1 .card .wrapper .buttons-wrap .mbr-section-btn .btn.btn-success-outline:hover {
  color: #000000;
}
.cid-sJX8Hs96Q1 .card .wrapper .mbr-section-title,
.cid-sJX8Hs96Q1 .mbr-section-btn {
  color: #ffffff;
}
.cid-sJX8HtsUUA {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-sJX8HtsUUA .row {
  flex-direction: row-reverse;
}
.cid-sJX8HtsUUA .img-wrap img {
  width: 100%;
}
.cid-sJX8HtsUUA .card {
  border-radius: 0;
  margin: auto 0;
}
.cid-sJX8HtsUUA .card .wrapper {
  overflow: hidden;
}
.cid-sJX8HtsUUA .card .wrapper .mbr-section-title {
  color: #06182d;
}
.cid-sJX8HtsUUA .card .wrapper .mbr-section-title span {
  line-height: 1;
  color: #ffffff;
  padding: 0 6px 1px 5px;
  transform: skew(-14deg);
  background: #000000;
  background: linear-gradient(#000000 0%, #333333 69%, #333333 100%);
  display: inline-block;
  font-weight: 500;
  letter-spacing: 0;
  position: relative;
}
.cid-sJX8HtsUUA .card .wrapper .mbr-section-subtitle {
  color: #06182d;
}
.cid-sJX8HtsUUA .card .wrapper .mbr-section-subtitle.display-7 {
  letter-spacing: 0;
}
.cid-sJX8HtsUUA .card .wrapper .mbr-text {
  color: #f4eddd;
  font-weight: 300;
}
.cid-sJX8HtsUUA .card .wrapper .sign-wrap {
  text-align: center;
  overflow: hidden;
  position: relative;
}
.cid-sJX8HtsUUA .card .wrapper .sign-wrap::before {
  right: 65.8%;
  height: 2px;
  transform: translateY(-50%);
  width: 250px;
  top: 50%;
  position: absolute;
  display: inline-block;
  content: "";
  background-color: #dfe3e8;
}
.cid-sJX8HtsUUA .card .wrapper .sign-wrap img {
  width: 140px;
}
.cid-sJX8HtsUUA .card .wrapper .sign-wrap::after {
  left: 65.9%;
  height: 2px;
  transform: translateY(-50%);
  width: 250px;
  top: 50%;
  position: absolute;
  display: inline-block;
  content: "";
  background-color: #dfe3e8;
}
.cid-sJX8HtsUUA .card .wrapper .mbr-section-title {
  text-align: left;
  color: #333333;
}
.cid-sJX8HtsUUA .card .wrapper .mbr-text {
  color: #000000;
}
.cid-sJX8Hu4vIc {
  padding-top: 90px;
  padding-bottom: 90px;
  position: relative;
  background-color: #f3f3f3;
}
.cid-sJX8Hu4vIc p {
  color: #767676;
  padding: 0;
  letter-spacing: 0px;
}
.cid-sJX8Hu4vIc .panel-title {
  border-bottom: 2px solid #ffffff;
  display: flex!important;
  justify-content: space-between;
  align-items: center;
  padding-right: 2rem;
}
.cid-sJX8Hu4vIc .collapsed {
  border: none;
}
.cid-sJX8Hu4vIc .collapsed span {
  transform: rotate(0deg);
}
.cid-sJX8Hu4vIc span {
  font-size: 1.4rem;
  transition: all 0.3s;
  transform: rotate(45deg);
  background: linear-gradient(to left, #333333, #999999);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 900;
}
.cid-sJX8Hu4vIc .panel-body {
  padding-top: 0.5rem;
}
.cid-sJX8Hu4vIc .card {
  border-radius: 0px;
  margin-bottom: -1px;
}
.cid-sJX8Hu4vIc .card .card-header {
  border-radius: 0px;
  margin: 0.5rem 0;
  border: 0px;
  background: #25970f;
  padding: 0;
}
.cid-sJX8Hu4vIc .card .card-header a.panel-title {
  margin-bottom: 0;
  margin-top: -1px;
  font-style: normal;
  text-decoration: none !important;
  line-height: normal;
}
.cid-sJX8Hu4vIc .card .card-header a.panel-title:focus {
  text-decoration: none !important;
}
.cid-sJX8Hu4vIc .card .card-header a.panel-title h4 {
  padding: 1.3rem 2rem;
  margin-bottom: 0;
}
.cid-sJX8Hu4vIc .card .card-header a.panel-title h4 .sign {
  padding-right: 1rem;
}
.cid-sJX8Hu4vIc .panel-text {
  color: #767676;
}
.cid-sJX8Hu4vIc H4 {
  color: #ffffff;
}
.cid-sJX8Hu4vIc H2 {
  color: #000000;
}
.cid-sJX8Hu4vIc .mbr-section-text {
  color: #999999;
}
.cid-sJX8HuCpAF {
  padding-top: 60px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sJX8HuCpAF img {
  width: 100%;
  border-radius: 50px;
  margin-bottom: 20px;
  max-height: ;
}
.cid-sJX8HuCpAF .card {
  margin-bottom: 130px !important;
}
.cid-sJX8HuCpAF .card .img-wrapper {
  overflow: hidden;
}
.cid-sJX8HuCpAF .card:hover {
  cursor: pointer;
}
.cid-sJX8HuCpAF .card:hover img {
  transform: scale(1.05);
}
.cid-sJX8HuCpAF .card:hover .img-wrapper {
  box-shadow: 0 30px 30px -20px rgba(50, 50, 50, 0.3);
}
@media (max-width: 1200px) {
  .cid-sJX8HuCpAF .card {
    margin-bottom: 50px !important;
  }
}
.cid-sJX8HuCpAF .card .card-wrapper {
  text-align: left;
}
.cid-sJX8HuCpAF .card .card-wrapper .mbr-iconfont {
  font-size: 41px;
  color: #ff513c;
  display: block;
  justify-content: center;
  align-items: center;
  transition: all 0.3s ease-in-out;
  padding-bottom: 14px;
  margin-right: 14px;
}
.cid-sJX8HuCpAF .card .card-wrapper .card-box .card-title {
  cursor: pointer;
  color: #06182d;
}
.cid-sJX8HuCpAF .card .card-wrapper .card-box .card-title.display-7 {
  line-height: 1.2;
}
.cid-sJX8HuCpAF .card .card-wrapper .card-box .card-text {
  color: #f4eddd;
}
@media (min-width: 1400px) {
  .cid-sJX8HuCpAF .card.left-box {
    right: 105px !important;
  }
  .cid-sJX8HuCpAF .card.right-box {
    left: 97px !important;
  }
}
.cid-sJX8HuCpAF .mbr-section-title {
  color: #06182d;
}
.cid-sJX8HuCpAF .mbr-section-title span {
  line-height: 1;
  color: #ffffff;
  padding: 0 6px 1px 5px;
  transform: skew(-14deg);
  background: #25970f;
  display: inline-block;
  font-weight: 500;
  letter-spacing: 0;
  position: relative;
}
.cid-sJX8HuCpAF .mbr-section-subtitle {
  color: #06182d;
}
.cid-sJX8HuCpAF .mbr-section-subtitle.display-7 {
  letter-spacing: 0;
}
.cid-sJX8HuCpAF .mbr-section-text {
  color: #999999;
}
.cid-tluuXfxsbV {
  padding-top: 75px;
  padding-bottom: 75px;
  background-color: #f3f3f3;
}
.cid-tluuXfxsbV .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.8;
}
.cid-tluuXfxsbV input,
.cid-tluuXfxsbV textarea {
  font-size: 14px;
}
.cid-tluuXfxsbV input {
  padding: 1.5rem 1.8rem !important;
  border-radius: 50px;
}
.cid-tluuXfxsbV textarea {
  padding: 1rem 1.8rem !important;
  border-radius: 30px;
  min-height: 160px !important;
}
.cid-tluuXfxsbV .form-group {
  margin-bottom: 1.3rem;
}
.cid-tluuXfxsbV .block-title {
  margin-bottom: 0.7rem;
}
.cid-tluuXfxsbV .form-control:hover,
.cid-tluuXfxsbV .form-control:focus {
  color: #000000 !important;
}
.cid-tluuXfxsbV .mbr-section-subtitle {
  font-weight: 700;
}
.cid-tluuXfxsbV img {
  width: 90%;
  border-radius: 8px;
}
.cid-tluuXfxsbV .btn {
  border-radius: 30px;
}
.cid-tluuXfxsbV .form-control,
.cid-tluuXfxsbV .field-input {
  padding: 0.5rem;
  background-color: #f3f3f3;
  border-color: #181818;
  color: #000000;
  transition: 0.4s;
  box-shadow: none;
  outline: none;
}
.cid-tluuXfxsbV .form-control:hover,
.cid-tluuXfxsbV .field-input:hover {
  background-color: #f3f3f3;
  border-color: #181818 !important;
  color: #000000;
  box-shadow: none;
  outline: none;
}
.cid-tluuXfxsbV .form-control:focus,
.cid-tluuXfxsbV .field-input:focus {
  background-color: #ffffff;
  border-color: #181818 !important;
  color: #000000;
  box-shadow: none;
  outline: none;
}
.cid-tluuXfxsbV input::-webkit-input-placeholder,
.cid-tluuXfxsbV textarea::-webkit-input-placeholder {
  color: #000000;
}
.cid-tluuXfxsbV input:-moz-placeholder,
.cid-tluuXfxsbV textarea:-moz-placeholder {
  color: #000000;
}
.cid-tluuXfxsbV .jq-selectbox li,
.cid-tluuXfxsbV .jq-selectbox li {
  background-color: #f3f3f3;
  color: #000000;
}
.cid-tluuXfxsbV .jq-selectbox li:hover,
.cid-tluuXfxsbV .jq-selectbox li.selected {
  background-color: #f3f3f3;
  color: #000000;
}
.cid-tluuXfxsbV .jq-selectbox:hover .jq-selectbox__trigger-arrow {
  border-top-color: #f3f3f3;
}
.cid-tluuXfxsbV .jq-selectbox .jq-selectbox__trigger-arrow {
  border-top-color: #f3f3f3;
}
@media (max-width: 992px) {
  .cid-tluuXfxsbV img {
    width: 100%;
  }
  .cid-tluuXfxsbV .google-map {
    margin-bottom: 2rem;
  }
}
.cid-tluuXfxsbV .google-map {
  height: 100%;
  min-height: 30rem;
  position: relative;
  filter: grayscale(1);
  padding-right: 0.5rem;
}
.cid-tluuXfxsbV .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-tluuXfxsbV .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-tluuXfxsbV .google-map[data-state] {
  background: #e9e5dc;
}
.cid-tluuXfxsbV .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
@media (max-width: 576px) {
  .cid-tluuXfxsbV .col-auto {
    width: 100%;
    text-align: center;
  }
}
@media (max-width: 767px) {
  .cid-tluuXfxsbV .mbr-form {
    margin-top: 2rem;
  }
  .cid-tluuXfxsbV .btn {
    width: 100%;
  }
}
@media (min-width: 776px) and (max-width: 992px) {
  .cid-tluuXfxsbV .mbr-form {
    margin-top: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tluuXfxsbV .form-row > [class*="col-"] {
    padding: 0 1rem;
  }
}
.cid-sJX8HwoRc1 {
  padding-top: 45px;
  padding-bottom: 30px;
  background-color: #25970f;
}
.cid-sJX8HwoRc1 .copyright {
  display: flex;
}
@media (max-width: 992px) {
  .cid-sJX8HwoRc1 .copyright {
    margin-bottom: 1rem;
  }
}
.cid-sJX8HwoRc1 .text-wrap {
  transition: all 0.3s;
  padding: 23px;
  bottom: 0;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: flex-end;
  width: 100%;
  overflow: hidden;
  position: relative;
}
.cid-sJX8HwoRc1 .text-wrap .icons-wrap .icon-wrapper {
  background: #ffffff;
  display: flex;
  width: 31px;
  height: 31px;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  border: 2px solid #ffffff;
  transition: all 0.3s;
  z-index: 4;
  cursor: pointer;
  margin: 0 0.2rem;
}
.cid-sJX8HwoRc1 .text-wrap .icons-wrap .icon-wrapper:hover {
  background: #25970f;
  border-color: #25970f;
}
.cid-sJX8HwoRc1 .text-wrap .icons-wrap .icon-wrapper:hover .link-icon {
  color: #ffffde;
}
.cid-sJX8HwoRc1 .text-wrap .icons-wrap .icon-wrapper .link-icon {
  display: inline-block;
  color: #ffffde;
  transition: all 0.3s;
  font-size: 14px;
  justify-content: center;
}
.cid-sJX8HwoRc1 .text-wrap .icons-wrap::before {
  height: 2px;
  width: 100%;
  top: 50%;
  right: 58%;
  position: absolute;
  display: inline-block;
  content: "";
  background-color: #ffffff;
}
@media (max-width: 992px) {
  .cid-sJX8HwoRc1 .text-wrap .icons-wrap::before {
    display: none;
  }
}
.cid-sJX8HwoRc1 .text-wrap .icons-wrap::after {
  height: 2px;
  width: 100%;
  top: 50%;
  left: 58%;
  position: absolute;
  display: inline-block;
  content: "";
  background-color: #ffffff;
}
@media (max-width: 992px) {
  .cid-sJX8HwoRc1 .text-wrap .icons-wrap::after {
    display: none;
  }
}
.cid-sJX8KqtXWj .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 16px;
  position: absolute;
  right: 1rem;
  top: 30%;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sJX8KqtXWj .nav-item,
.cid-sJX8KqtXWj .nav-link,
.cid-sJX8KqtXWj .navbar-caption {
  font-weight: normal;
}
.cid-sJX8KqtXWj .nav-item:focus,
.cid-sJX8KqtXWj .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-sJX8KqtXWj .dropdown-item:hover:before {
    transform: scale(1, 1);
  }
}
.cid-sJX8KqtXWj .dropdown .dropdown-menu .dropdown-item {
  display: flex;
  align-items: center;
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sJX8KqtXWj .dropdown .dropdown-menu .dropdown-item::after {
  right: 1rem;
}
.cid-sJX8KqtXWj .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  transform: scale(0, 1);
}
.cid-sJX8KqtXWj .dropdown .dropdown-menu .dropdown-item.dropdown-toggle:before {
  display: none;
}
.cid-sJX8KqtXWj .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-sJX8KqtXWj .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sJX8KqtXWj .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sJX8KqtXWj .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sJX8KqtXWj .collapsed .icons-menu {
  padding-left: 16px;
}
.cid-sJX8KqtXWj .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #f4eddd;
}
.cid-sJX8KqtXWj .navbar.opened {
  transition: all .3s;
  background: #f4eddd !important;
}
.cid-sJX8KqtXWj .navbar .dropdown-item {
  padding: .235rem 2.5rem .235rem 1.5rem;
}
.cid-sJX8KqtXWj .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sJX8KqtXWj .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sJX8KqtXWj .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sJX8KqtXWj .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(100vh - 5.2rem - 1rem);
  }
}
.cid-sJX8KqtXWj .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-sJX8KqtXWj .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sJX8KqtXWj .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-sJX8KqtXWj .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sJX8KqtXWj .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
  justify-content: center;
}
.cid-sJX8KqtXWj .navbar.collapsed .icons-menu {
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-sJX8KqtXWj .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sJX8KqtXWj .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sJX8KqtXWj .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-sJX8KqtXWj .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sJX8KqtXWj .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-sJX8KqtXWj .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-sJX8KqtXWj .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sJX8KqtXWj .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
    justify-content: center;
  }
  .cid-sJX8KqtXWj .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-sJX8KqtXWj .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sJX8KqtXWj .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-sJX8KqtXWj .navbar.navbar-short {
  background: #f4eddd !important;
  min-height: 60px;
}
.cid-sJX8KqtXWj .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-sJX8KqtXWj .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-sJX8KqtXWj .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sJX8KqtXWj .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sJX8KqtXWj .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sJX8KqtXWj .dropdown-item.active,
.cid-sJX8KqtXWj .dropdown-item:active {
  background-color: transparent;
}
.cid-sJX8KqtXWj .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sJX8KqtXWj .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sJX8KqtXWj .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #f4eddd;
}
.cid-sJX8KqtXWj .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sJX8KqtXWj .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sJX8KqtXWj ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sJX8KqtXWj .navbar-buttons {
  text-align: center;
}
.cid-sJX8KqtXWj .navbar-buttons .btn.btn-sm {
  padding: 6px 24px !important;
  min-width: 140px;
  line-height: 1.5;
}
.cid-sJX8KqtXWj button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-sJX8KqtXWj button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-sJX8KqtXWj button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-sJX8KqtXWj button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-sJX8KqtXWj button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-sJX8KqtXWj button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-sJX8KqtXWj nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sJX8KqtXWj nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-sJX8KqtXWj nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-sJX8KqtXWj nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sJX8KqtXWj .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-sJX8KqtXWj a.nav-link {
  justify-content: center;
  display: flex;
  align-items: center;
}
.cid-sJX8KqtXWj .mbr-iconfont {
  font-size: 1rem;
  color: #ffffff;
  display: inline-flex;
}
.cid-sJX8KqtXWj .soc-item {
  margin: .5rem .3rem;
}
.cid-sJX8KqtXWj .icons-menu {
  flex-wrap: wrap;
  display: flex;
  justify-content: center;
  padding-right: 1rem;
  text-align: center;
  align-items: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sJX8KqtXWj .navbar {
    height: 77px;
  }
  .cid-sJX8KqtXWj .navbar.opened {
    height: auto;
  }
  .cid-sJX8KqtXWj .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sJX8KrTOZN {
  padding-top: 135px;
  padding-bottom: 135px;
  background-image: url("../../../assets/images/mbr-9-1920x1280.jpg");
}
.cid-sJX8KrTOZN .card {
  border-radius: 0;
  margin: auto 0;
}
.cid-sJX8KrTOZN .card .wrapper .mbr-section-title {
  color: #ffffff;
  font-weight: 700;
}
.cid-sJX8KrTOZN .card .wrapper .mbr-section-title span:nth-child(2) {
  line-height: 1;
  color: #ffffff;
  padding: 0 6px 1px 5px;
  transform: skew(-14deg);
  background: #25970f;
  display: inline-block;
  font-weight: 500;
  letter-spacing: 0;
  position: relative;
}
.cid-sJX8KrTOZN .card .wrapper .mbr-section-subtitle {
  color: #ffffff;
}
.cid-sJX8KrTOZN .card .wrapper .mbr-section-subtitle.display-7 {
  letter-spacing: 0;
}
.cid-sJX8KrTOZN .card .wrapper .mbr-text {
  color: #ffffff;
  font-weight: 300;
}
.cid-sJX8KrTOZN .card .wrapper .buttons-wrap .mbr-section-btn .btn.display-4 {
  padding: 7px 39px;
  line-height: 1.5;
  letter-spacing: 0;
}
.cid-sJX8KrTOZN .card .wrapper .buttons-wrap .mbr-section-btn .btn.btn-success-outline {
  color: #ffffff;
}
.cid-sJX8KrTOZN .card .wrapper .buttons-wrap .mbr-section-btn .btn.btn-success-outline:hover {
  color: #000000;
}
.cid-sJX8KrTOZN .card .wrapper .mbr-section-title,
.cid-sJX8KrTOZN .mbr-section-btn {
  color: #ffffff;
}
.cid-sJX8KsoQqq {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-sJX8KsoQqq .row {
  flex-direction: row-reverse;
}
.cid-sJX8KsoQqq .img-wrap img {
  width: 100%;
}
.cid-sJX8KsoQqq .card {
  border-radius: 0;
  margin: auto 0;
}
.cid-sJX8KsoQqq .card .wrapper {
  overflow: hidden;
}
.cid-sJX8KsoQqq .card .wrapper .mbr-section-title {
  color: #06182d;
}
.cid-sJX8KsoQqq .card .wrapper .mbr-section-title span {
  line-height: 1;
  color: #ffffff;
  padding: 0 6px 1px 5px;
  transform: skew(-14deg);
  background: #000000;
  background: linear-gradient(#000000 0%, #333333 69%, #333333 100%);
  display: inline-block;
  font-weight: 500;
  letter-spacing: 0;
  position: relative;
}
.cid-sJX8KsoQqq .card .wrapper .mbr-section-subtitle {
  color: #06182d;
}
.cid-sJX8KsoQqq .card .wrapper .mbr-section-subtitle.display-7 {
  letter-spacing: 0;
}
.cid-sJX8KsoQqq .card .wrapper .mbr-text {
  color: #f4eddd;
  font-weight: 300;
}
.cid-sJX8KsoQqq .card .wrapper .sign-wrap {
  text-align: center;
  overflow: hidden;
  position: relative;
}
.cid-sJX8KsoQqq .card .wrapper .sign-wrap::before {
  right: 65.8%;
  height: 2px;
  transform: translateY(-50%);
  width: 250px;
  top: 50%;
  position: absolute;
  display: inline-block;
  content: "";
  background-color: #dfe3e8;
}
.cid-sJX8KsoQqq .card .wrapper .sign-wrap img {
  width: 140px;
}
.cid-sJX8KsoQqq .card .wrapper .sign-wrap::after {
  left: 65.9%;
  height: 2px;
  transform: translateY(-50%);
  width: 250px;
  top: 50%;
  position: absolute;
  display: inline-block;
  content: "";
  background-color: #dfe3e8;
}
.cid-sJX8KsoQqq .card .wrapper .mbr-section-title {
  text-align: left;
  color: #333333;
}
.cid-sJX8KsoQqq .card .wrapper .mbr-text {
  color: #000000;
}
.cid-sJX8KsWyG0 {
  padding-top: 90px;
  padding-bottom: 90px;
  position: relative;
  background-color: #f3f3f3;
}
.cid-sJX8KsWyG0 p {
  color: #767676;
  padding: 0;
  letter-spacing: 0px;
}
.cid-sJX8KsWyG0 .panel-title {
  border-bottom: 2px solid #ffffff;
  display: flex!important;
  justify-content: space-between;
  align-items: center;
  padding-right: 2rem;
}
.cid-sJX8KsWyG0 .collapsed {
  border: none;
}
.cid-sJX8KsWyG0 .collapsed span {
  transform: rotate(0deg);
}
.cid-sJX8KsWyG0 span {
  font-size: 1.4rem;
  transition: all 0.3s;
  transform: rotate(45deg);
  background: linear-gradient(to left, #333333, #999999);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 900;
}
.cid-sJX8KsWyG0 .panel-body {
  padding-top: 0.5rem;
}
.cid-sJX8KsWyG0 .card {
  border-radius: 0px;
  margin-bottom: -1px;
}
.cid-sJX8KsWyG0 .card .card-header {
  border-radius: 0px;
  margin: 0.5rem 0;
  border: 0px;
  background: #25970f;
  padding: 0;
}
.cid-sJX8KsWyG0 .card .card-header a.panel-title {
  margin-bottom: 0;
  margin-top: -1px;
  font-style: normal;
  text-decoration: none !important;
  line-height: normal;
}
.cid-sJX8KsWyG0 .card .card-header a.panel-title:focus {
  text-decoration: none !important;
}
.cid-sJX8KsWyG0 .card .card-header a.panel-title h4 {
  padding: 1.3rem 2rem;
  margin-bottom: 0;
}
.cid-sJX8KsWyG0 .card .card-header a.panel-title h4 .sign {
  padding-right: 1rem;
}
.cid-sJX8KsWyG0 .panel-text {
  color: #767676;
}
.cid-sJX8KsWyG0 H4 {
  color: #ffffff;
}
.cid-sJX8KsWyG0 H2 {
  color: #000000;
}
.cid-sJX8KsWyG0 .mbr-section-text {
  color: #999999;
}
.cid-sJX8KtCENH {
  padding-top: 60px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sJX8KtCENH img {
  width: 100%;
  border-radius: 50px;
  margin-bottom: 20px;
  max-height: ;
}
.cid-sJX8KtCENH .card {
  margin-bottom: 130px !important;
}
.cid-sJX8KtCENH .card .img-wrapper {
  overflow: hidden;
}
.cid-sJX8KtCENH .card:hover {
  cursor: pointer;
}
.cid-sJX8KtCENH .card:hover img {
  transform: scale(1.05);
}
.cid-sJX8KtCENH .card:hover .img-wrapper {
  box-shadow: 0 30px 30px -20px rgba(50, 50, 50, 0.3);
}
@media (max-width: 1200px) {
  .cid-sJX8KtCENH .card {
    margin-bottom: 50px !important;
  }
}
.cid-sJX8KtCENH .card .card-wrapper {
  text-align: left;
}
.cid-sJX8KtCENH .card .card-wrapper .mbr-iconfont {
  font-size: 41px;
  color: #ff513c;
  display: block;
  justify-content: center;
  align-items: center;
  transition: all 0.3s ease-in-out;
  padding-bottom: 14px;
  margin-right: 14px;
}
.cid-sJX8KtCENH .card .card-wrapper .card-box .card-title {
  cursor: pointer;
  color: #06182d;
}
.cid-sJX8KtCENH .card .card-wrapper .card-box .card-title.display-7 {
  line-height: 1.2;
}
.cid-sJX8KtCENH .card .card-wrapper .card-box .card-text {
  color: #f4eddd;
}
@media (min-width: 1400px) {
  .cid-sJX8KtCENH .card.left-box {
    right: 105px !important;
  }
  .cid-sJX8KtCENH .card.right-box {
    left: 97px !important;
  }
}
.cid-sJX8KtCENH .mbr-section-title {
  color: #06182d;
}
.cid-sJX8KtCENH .mbr-section-title span {
  line-height: 1;
  color: #ffffff;
  padding: 0 6px 1px 5px;
  transform: skew(-14deg);
  background: #25970f;
  display: inline-block;
  font-weight: 500;
  letter-spacing: 0;
  position: relative;
}
.cid-sJX8KtCENH .mbr-section-subtitle {
  color: #06182d;
}
.cid-sJX8KtCENH .mbr-section-subtitle.display-7 {
  letter-spacing: 0;
}
.cid-sJX8KtCENH .mbr-section-text {
  color: #999999;
}
.cid-tluuVHpw61 {
  padding-top: 75px;
  padding-bottom: 75px;
  background-color: #f3f3f3;
}
.cid-tluuVHpw61 .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.8;
}
.cid-tluuVHpw61 input,
.cid-tluuVHpw61 textarea {
  font-size: 14px;
}
.cid-tluuVHpw61 input {
  padding: 1.5rem 1.8rem !important;
  border-radius: 50px;
}
.cid-tluuVHpw61 textarea {
  padding: 1rem 1.8rem !important;
  border-radius: 30px;
  min-height: 160px !important;
}
.cid-tluuVHpw61 .form-group {
  margin-bottom: 1.3rem;
}
.cid-tluuVHpw61 .block-title {
  margin-bottom: 0.7rem;
}
.cid-tluuVHpw61 .form-control:hover,
.cid-tluuVHpw61 .form-control:focus {
  color: #000000 !important;
}
.cid-tluuVHpw61 .mbr-section-subtitle {
  font-weight: 700;
}
.cid-tluuVHpw61 img {
  width: 90%;
  border-radius: 8px;
}
.cid-tluuVHpw61 .btn {
  border-radius: 30px;
}
.cid-tluuVHpw61 .form-control,
.cid-tluuVHpw61 .field-input {
  padding: 0.5rem;
  background-color: #f3f3f3;
  border-color: #181818;
  color: #000000;
  transition: 0.4s;
  box-shadow: none;
  outline: none;
}
.cid-tluuVHpw61 .form-control:hover,
.cid-tluuVHpw61 .field-input:hover {
  background-color: #f3f3f3;
  border-color: #181818 !important;
  color: #000000;
  box-shadow: none;
  outline: none;
}
.cid-tluuVHpw61 .form-control:focus,
.cid-tluuVHpw61 .field-input:focus {
  background-color: #ffffff;
  border-color: #181818 !important;
  color: #000000;
  box-shadow: none;
  outline: none;
}
.cid-tluuVHpw61 input::-webkit-input-placeholder,
.cid-tluuVHpw61 textarea::-webkit-input-placeholder {
  color: #000000;
}
.cid-tluuVHpw61 input:-moz-placeholder,
.cid-tluuVHpw61 textarea:-moz-placeholder {
  color: #000000;
}
.cid-tluuVHpw61 .jq-selectbox li,
.cid-tluuVHpw61 .jq-selectbox li {
  background-color: #f3f3f3;
  color: #000000;
}
.cid-tluuVHpw61 .jq-selectbox li:hover,
.cid-tluuVHpw61 .jq-selectbox li.selected {
  background-color: #f3f3f3;
  color: #000000;
}
.cid-tluuVHpw61 .jq-selectbox:hover .jq-selectbox__trigger-arrow {
  border-top-color: #f3f3f3;
}
.cid-tluuVHpw61 .jq-selectbox .jq-selectbox__trigger-arrow {
  border-top-color: #f3f3f3;
}
@media (max-width: 992px) {
  .cid-tluuVHpw61 img {
    width: 100%;
  }
  .cid-tluuVHpw61 .google-map {
    margin-bottom: 2rem;
  }
}
.cid-tluuVHpw61 .google-map {
  height: 100%;
  min-height: 30rem;
  position: relative;
  filter: grayscale(1);
  padding-right: 0.5rem;
}
.cid-tluuVHpw61 .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-tluuVHpw61 .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-tluuVHpw61 .google-map[data-state] {
  background: #e9e5dc;
}
.cid-tluuVHpw61 .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
@media (max-width: 576px) {
  .cid-tluuVHpw61 .col-auto {
    width: 100%;
    text-align: center;
  }
}
@media (max-width: 767px) {
  .cid-tluuVHpw61 .mbr-form {
    margin-top: 2rem;
  }
  .cid-tluuVHpw61 .btn {
    width: 100%;
  }
}
@media (min-width: 776px) and (max-width: 992px) {
  .cid-tluuVHpw61 .mbr-form {
    margin-top: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tluuVHpw61 .form-row > [class*="col-"] {
    padding: 0 1rem;
  }
}
.cid-sJX8Kvegad {
  padding-top: 45px;
  padding-bottom: 30px;
  background-color: #25970f;
}
.cid-sJX8Kvegad .copyright {
  display: flex;
}
@media (max-width: 992px) {
  .cid-sJX8Kvegad .copyright {
    margin-bottom: 1rem;
  }
}
.cid-sJX8Kvegad .text-wrap {
  transition: all 0.3s;
  padding: 23px;
  bottom: 0;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: flex-end;
  width: 100%;
  overflow: hidden;
  position: relative;
}
.cid-sJX8Kvegad .text-wrap .icons-wrap .icon-wrapper {
  background: #ffffff;
  display: flex;
  width: 31px;
  height: 31px;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  border: 2px solid #ffffff;
  transition: all 0.3s;
  z-index: 4;
  cursor: pointer;
  margin: 0 0.2rem;
}
.cid-sJX8Kvegad .text-wrap .icons-wrap .icon-wrapper:hover {
  background: #25970f;
  border-color: #25970f;
}
.cid-sJX8Kvegad .text-wrap .icons-wrap .icon-wrapper:hover .link-icon {
  color: #ffffde;
}
.cid-sJX8Kvegad .text-wrap .icons-wrap .icon-wrapper .link-icon {
  display: inline-block;
  color: #ffffde;
  transition: all 0.3s;
  font-size: 14px;
  justify-content: center;
}
.cid-sJX8Kvegad .text-wrap .icons-wrap::before {
  height: 2px;
  width: 100%;
  top: 50%;
  right: 58%;
  position: absolute;
  display: inline-block;
  content: "";
  background-color: #ffffff;
}
@media (max-width: 992px) {
  .cid-sJX8Kvegad .text-wrap .icons-wrap::before {
    display: none;
  }
}
.cid-sJX8Kvegad .text-wrap .icons-wrap::after {
  height: 2px;
  width: 100%;
  top: 50%;
  left: 58%;
  position: absolute;
  display: inline-block;
  content: "";
  background-color: #ffffff;
}
@media (max-width: 992px) {
  .cid-sJX8Kvegad .text-wrap .icons-wrap::after {
    display: none;
  }
}
.cid-sJX8OvRXnv .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 16px;
  position: absolute;
  right: 1rem;
  top: 30%;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sJX8OvRXnv .nav-item,
.cid-sJX8OvRXnv .nav-link,
.cid-sJX8OvRXnv .navbar-caption {
  font-weight: normal;
}
.cid-sJX8OvRXnv .nav-item:focus,
.cid-sJX8OvRXnv .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-sJX8OvRXnv .dropdown-item:hover:before {
    transform: scale(1, 1);
  }
}
.cid-sJX8OvRXnv .dropdown .dropdown-menu .dropdown-item {
  display: flex;
  align-items: center;
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sJX8OvRXnv .dropdown .dropdown-menu .dropdown-item::after {
  right: 1rem;
}
.cid-sJX8OvRXnv .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  transform: scale(0, 1);
}
.cid-sJX8OvRXnv .dropdown .dropdown-menu .dropdown-item.dropdown-toggle:before {
  display: none;
}
.cid-sJX8OvRXnv .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-sJX8OvRXnv .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sJX8OvRXnv .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sJX8OvRXnv .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sJX8OvRXnv .collapsed .icons-menu {
  padding-left: 16px;
}
.cid-sJX8OvRXnv .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #f4eddd;
}
.cid-sJX8OvRXnv .navbar.opened {
  transition: all .3s;
  background: #f4eddd !important;
}
.cid-sJX8OvRXnv .navbar .dropdown-item {
  padding: .235rem 2.5rem .235rem 1.5rem;
}
.cid-sJX8OvRXnv .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sJX8OvRXnv .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sJX8OvRXnv .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sJX8OvRXnv .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(100vh - 5.2rem - 1rem);
  }
}
.cid-sJX8OvRXnv .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-sJX8OvRXnv .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sJX8OvRXnv .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-sJX8OvRXnv .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sJX8OvRXnv .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
  justify-content: center;
}
.cid-sJX8OvRXnv .navbar.collapsed .icons-menu {
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-sJX8OvRXnv .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sJX8OvRXnv .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sJX8OvRXnv .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-sJX8OvRXnv .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sJX8OvRXnv .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-sJX8OvRXnv .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-sJX8OvRXnv .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sJX8OvRXnv .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
    justify-content: center;
  }
  .cid-sJX8OvRXnv .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-sJX8OvRXnv .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sJX8OvRXnv .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-sJX8OvRXnv .navbar.navbar-short {
  background: #f4eddd !important;
  min-height: 60px;
}
.cid-sJX8OvRXnv .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-sJX8OvRXnv .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-sJX8OvRXnv .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sJX8OvRXnv .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sJX8OvRXnv .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sJX8OvRXnv .dropdown-item.active,
.cid-sJX8OvRXnv .dropdown-item:active {
  background-color: transparent;
}
.cid-sJX8OvRXnv .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sJX8OvRXnv .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sJX8OvRXnv .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #f4eddd;
}
.cid-sJX8OvRXnv .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sJX8OvRXnv .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sJX8OvRXnv ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sJX8OvRXnv .navbar-buttons {
  text-align: center;
}
.cid-sJX8OvRXnv .navbar-buttons .btn.btn-sm {
  padding: 6px 24px !important;
  min-width: 140px;
  line-height: 1.5;
}
.cid-sJX8OvRXnv button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-sJX8OvRXnv button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-sJX8OvRXnv button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-sJX8OvRXnv button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-sJX8OvRXnv button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-sJX8OvRXnv button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-sJX8OvRXnv nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sJX8OvRXnv nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-sJX8OvRXnv nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-sJX8OvRXnv nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sJX8OvRXnv .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-sJX8OvRXnv a.nav-link {
  justify-content: center;
  display: flex;
  align-items: center;
}
.cid-sJX8OvRXnv .mbr-iconfont {
  font-size: 1rem;
  color: #ffffff;
  display: inline-flex;
}
.cid-sJX8OvRXnv .soc-item {
  margin: .5rem .3rem;
}
.cid-sJX8OvRXnv .icons-menu {
  flex-wrap: wrap;
  display: flex;
  justify-content: center;
  padding-right: 1rem;
  text-align: center;
  align-items: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sJX8OvRXnv .navbar {
    height: 77px;
  }
  .cid-sJX8OvRXnv .navbar.opened {
    height: auto;
  }
  .cid-sJX8OvRXnv .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sJX8OyfBBe {
  padding-top: 135px;
  padding-bottom: 135px;
  background-image: url("../../../assets/images/mbr-8-1920x1280.jpg");
}
.cid-sJX8OyfBBe .card {
  border-radius: 0;
  margin: auto 0;
}
.cid-sJX8OyfBBe .card .wrapper .mbr-section-title {
  color: #ffffff;
  font-weight: 700;
}
.cid-sJX8OyfBBe .card .wrapper .mbr-section-title span:nth-child(2) {
  line-height: 1;
  color: #ffffff;
  padding: 0 6px 1px 5px;
  transform: skew(-14deg);
  background: #25970f;
  display: inline-block;
  font-weight: 500;
  letter-spacing: 0;
  position: relative;
}
.cid-sJX8OyfBBe .card .wrapper .mbr-section-subtitle {
  color: #ffffff;
}
.cid-sJX8OyfBBe .card .wrapper .mbr-section-subtitle.display-7 {
  letter-spacing: 0;
}
.cid-sJX8OyfBBe .card .wrapper .mbr-text {
  color: #ffffff;
  font-weight: 300;
}
.cid-sJX8OyfBBe .card .wrapper .buttons-wrap .mbr-section-btn .btn.display-4 {
  padding: 7px 39px;
  line-height: 1.5;
  letter-spacing: 0;
}
.cid-sJX8OyfBBe .card .wrapper .buttons-wrap .mbr-section-btn .btn.btn-success-outline {
  color: #ffffff;
}
.cid-sJX8OyfBBe .card .wrapper .buttons-wrap .mbr-section-btn .btn.btn-success-outline:hover {
  color: #000000;
}
.cid-sJX8OyfBBe .card .wrapper .mbr-section-title,
.cid-sJX8OyfBBe .mbr-section-btn {
  color: #ffffff;
}
.cid-sJX8Oz3kyI {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-sJX8Oz3kyI .row {
  flex-direction: row-reverse;
}
.cid-sJX8Oz3kyI .img-wrap img {
  width: 100%;
}
.cid-sJX8Oz3kyI .card {
  border-radius: 0;
  margin: auto 0;
}
.cid-sJX8Oz3kyI .card .wrapper {
  overflow: hidden;
}
.cid-sJX8Oz3kyI .card .wrapper .mbr-section-title {
  color: #06182d;
}
.cid-sJX8Oz3kyI .card .wrapper .mbr-section-title span {
  line-height: 1;
  color: #ffffff;
  padding: 0 6px 1px 5px;
  transform: skew(-14deg);
  background: #000000;
  background: linear-gradient(#000000 0%, #333333 69%, #333333 100%);
  display: inline-block;
  font-weight: 500;
  letter-spacing: 0;
  position: relative;
}
.cid-sJX8Oz3kyI .card .wrapper .mbr-section-subtitle {
  color: #06182d;
}
.cid-sJX8Oz3kyI .card .wrapper .mbr-section-subtitle.display-7 {
  letter-spacing: 0;
}
.cid-sJX8Oz3kyI .card .wrapper .mbr-text {
  color: #f4eddd;
  font-weight: 300;
}
.cid-sJX8Oz3kyI .card .wrapper .sign-wrap {
  text-align: center;
  overflow: hidden;
  position: relative;
}
.cid-sJX8Oz3kyI .card .wrapper .sign-wrap::before {
  right: 65.8%;
  height: 2px;
  transform: translateY(-50%);
  width: 250px;
  top: 50%;
  position: absolute;
  display: inline-block;
  content: "";
  background-color: #dfe3e8;
}
.cid-sJX8Oz3kyI .card .wrapper .sign-wrap img {
  width: 140px;
}
.cid-sJX8Oz3kyI .card .wrapper .sign-wrap::after {
  left: 65.9%;
  height: 2px;
  transform: translateY(-50%);
  width: 250px;
  top: 50%;
  position: absolute;
  display: inline-block;
  content: "";
  background-color: #dfe3e8;
}
.cid-sJX8Oz3kyI .card .wrapper .mbr-section-title {
  text-align: left;
  color: #333333;
}
.cid-sJX8Oz3kyI .card .wrapper .mbr-text {
  color: #000000;
}
.cid-sJX8OzK4Y7 {
  padding-top: 90px;
  padding-bottom: 90px;
  position: relative;
  background-color: #f3f3f3;
}
.cid-sJX8OzK4Y7 p {
  color: #767676;
  padding: 0;
  letter-spacing: 0px;
}
.cid-sJX8OzK4Y7 .panel-title {
  border-bottom: 2px solid #ffffff;
  display: flex!important;
  justify-content: space-between;
  align-items: center;
  padding-right: 2rem;
}
.cid-sJX8OzK4Y7 .collapsed {
  border: none;
}
.cid-sJX8OzK4Y7 .collapsed span {
  transform: rotate(0deg);
}
.cid-sJX8OzK4Y7 span {
  font-size: 1.4rem;
  transition: all 0.3s;
  transform: rotate(45deg);
  background: linear-gradient(to left, #333333, #999999);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 900;
}
.cid-sJX8OzK4Y7 .panel-body {
  padding-top: 0.5rem;
}
.cid-sJX8OzK4Y7 .card {
  border-radius: 0px;
  margin-bottom: -1px;
}
.cid-sJX8OzK4Y7 .card .card-header {
  border-radius: 0px;
  margin: 0.5rem 0;
  border: 0px;
  background: #25970f;
  padding: 0;
}
.cid-sJX8OzK4Y7 .card .card-header a.panel-title {
  margin-bottom: 0;
  margin-top: -1px;
  font-style: normal;
  text-decoration: none !important;
  line-height: normal;
}
.cid-sJX8OzK4Y7 .card .card-header a.panel-title:focus {
  text-decoration: none !important;
}
.cid-sJX8OzK4Y7 .card .card-header a.panel-title h4 {
  padding: 1.3rem 2rem;
  margin-bottom: 0;
}
.cid-sJX8OzK4Y7 .card .card-header a.panel-title h4 .sign {
  padding-right: 1rem;
}
.cid-sJX8OzK4Y7 .panel-text {
  color: #767676;
}
.cid-sJX8OzK4Y7 H4 {
  color: #ffffff;
}
.cid-sJX8OzK4Y7 H2 {
  color: #000000;
}
.cid-sJX8OzK4Y7 .mbr-section-text {
  color: #999999;
}
.cid-sJX8OAFElS {
  padding-top: 60px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sJX8OAFElS img {
  width: 100%;
  border-radius: 50px;
  margin-bottom: 20px;
  max-height: ;
}
.cid-sJX8OAFElS .card {
  margin-bottom: 130px !important;
}
.cid-sJX8OAFElS .card .img-wrapper {
  overflow: hidden;
}
.cid-sJX8OAFElS .card:hover {
  cursor: pointer;
}
.cid-sJX8OAFElS .card:hover img {
  transform: scale(1.05);
}
.cid-sJX8OAFElS .card:hover .img-wrapper {
  box-shadow: 0 30px 30px -20px rgba(50, 50, 50, 0.3);
}
@media (max-width: 1200px) {
  .cid-sJX8OAFElS .card {
    margin-bottom: 50px !important;
  }
}
.cid-sJX8OAFElS .card .card-wrapper {
  text-align: left;
}
.cid-sJX8OAFElS .card .card-wrapper .mbr-iconfont {
  font-size: 41px;
  color: #ff513c;
  display: block;
  justify-content: center;
  align-items: center;
  transition: all 0.3s ease-in-out;
  padding-bottom: 14px;
  margin-right: 14px;
}
.cid-sJX8OAFElS .card .card-wrapper .card-box .card-title {
  cursor: pointer;
  color: #06182d;
}
.cid-sJX8OAFElS .card .card-wrapper .card-box .card-title.display-7 {
  line-height: 1.2;
}
.cid-sJX8OAFElS .card .card-wrapper .card-box .card-text {
  color: #f4eddd;
}
@media (min-width: 1400px) {
  .cid-sJX8OAFElS .card.left-box {
    right: 105px !important;
  }
  .cid-sJX8OAFElS .card.right-box {
    left: 97px !important;
  }
}
.cid-sJX8OAFElS .mbr-section-title {
  color: #06182d;
}
.cid-sJX8OAFElS .mbr-section-title span {
  line-height: 1;
  color: #ffffff;
  padding: 0 6px 1px 5px;
  transform: skew(-14deg);
  background: #25970f;
  display: inline-block;
  font-weight: 500;
  letter-spacing: 0;
  position: relative;
}
.cid-sJX8OAFElS .mbr-section-subtitle {
  color: #06182d;
}
.cid-sJX8OAFElS .mbr-section-subtitle.display-7 {
  letter-spacing: 0;
}
.cid-sJX8OAFElS .mbr-section-text {
  color: #999999;
}
.cid-tluuZ6pAsV {
  padding-top: 75px;
  padding-bottom: 75px;
  background-color: #f3f3f3;
}
.cid-tluuZ6pAsV .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.8;
}
.cid-tluuZ6pAsV input,
.cid-tluuZ6pAsV textarea {
  font-size: 14px;
}
.cid-tluuZ6pAsV input {
  padding: 1.5rem 1.8rem !important;
  border-radius: 50px;
}
.cid-tluuZ6pAsV textarea {
  padding: 1rem 1.8rem !important;
  border-radius: 30px;
  min-height: 160px !important;
}
.cid-tluuZ6pAsV .form-group {
  margin-bottom: 1.3rem;
}
.cid-tluuZ6pAsV .block-title {
  margin-bottom: 0.7rem;
}
.cid-tluuZ6pAsV .form-control:hover,
.cid-tluuZ6pAsV .form-control:focus {
  color: #000000 !important;
}
.cid-tluuZ6pAsV .mbr-section-subtitle {
  font-weight: 700;
}
.cid-tluuZ6pAsV img {
  width: 90%;
  border-radius: 8px;
}
.cid-tluuZ6pAsV .btn {
  border-radius: 30px;
}
.cid-tluuZ6pAsV .form-control,
.cid-tluuZ6pAsV .field-input {
  padding: 0.5rem;
  background-color: #f3f3f3;
  border-color: #181818;
  color: #000000;
  transition: 0.4s;
  box-shadow: none;
  outline: none;
}
.cid-tluuZ6pAsV .form-control:hover,
.cid-tluuZ6pAsV .field-input:hover {
  background-color: #f3f3f3;
  border-color: #181818 !important;
  color: #000000;
  box-shadow: none;
  outline: none;
}
.cid-tluuZ6pAsV .form-control:focus,
.cid-tluuZ6pAsV .field-input:focus {
  background-color: #ffffff;
  border-color: #181818 !important;
  color: #000000;
  box-shadow: none;
  outline: none;
}
.cid-tluuZ6pAsV input::-webkit-input-placeholder,
.cid-tluuZ6pAsV textarea::-webkit-input-placeholder {
  color: #000000;
}
.cid-tluuZ6pAsV input:-moz-placeholder,
.cid-tluuZ6pAsV textarea:-moz-placeholder {
  color: #000000;
}
.cid-tluuZ6pAsV .jq-selectbox li,
.cid-tluuZ6pAsV .jq-selectbox li {
  background-color: #f3f3f3;
  color: #000000;
}
.cid-tluuZ6pAsV .jq-selectbox li:hover,
.cid-tluuZ6pAsV .jq-selectbox li.selected {
  background-color: #f3f3f3;
  color: #000000;
}
.cid-tluuZ6pAsV .jq-selectbox:hover .jq-selectbox__trigger-arrow {
  border-top-color: #f3f3f3;
}
.cid-tluuZ6pAsV .jq-selectbox .jq-selectbox__trigger-arrow {
  border-top-color: #f3f3f3;
}
@media (max-width: 992px) {
  .cid-tluuZ6pAsV img {
    width: 100%;
  }
  .cid-tluuZ6pAsV .google-map {
    margin-bottom: 2rem;
  }
}
.cid-tluuZ6pAsV .google-map {
  height: 100%;
  min-height: 30rem;
  position: relative;
  filter: grayscale(1);
  padding-right: 0.5rem;
}
.cid-tluuZ6pAsV .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-tluuZ6pAsV .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-tluuZ6pAsV .google-map[data-state] {
  background: #e9e5dc;
}
.cid-tluuZ6pAsV .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
@media (max-width: 576px) {
  .cid-tluuZ6pAsV .col-auto {
    width: 100%;
    text-align: center;
  }
}
@media (max-width: 767px) {
  .cid-tluuZ6pAsV .mbr-form {
    margin-top: 2rem;
  }
  .cid-tluuZ6pAsV .btn {
    width: 100%;
  }
}
@media (min-width: 776px) and (max-width: 992px) {
  .cid-tluuZ6pAsV .mbr-form {
    margin-top: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tluuZ6pAsV .form-row > [class*="col-"] {
    padding: 0 1rem;
  }
}
.cid-sJX8ODbjJh {
  padding-top: 45px;
  padding-bottom: 30px;
  background-color: #25970f;
}
.cid-sJX8ODbjJh .copyright {
  display: flex;
}
@media (max-width: 992px) {
  .cid-sJX8ODbjJh .copyright {
    margin-bottom: 1rem;
  }
}
.cid-sJX8ODbjJh .text-wrap {
  transition: all 0.3s;
  padding: 23px;
  bottom: 0;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: flex-end;
  width: 100%;
  overflow: hidden;
  position: relative;
}
.cid-sJX8ODbjJh .text-wrap .icons-wrap .icon-wrapper {
  background: #ffffff;
  display: flex;
  width: 31px;
  height: 31px;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  border: 2px solid #ffffff;
  transition: all 0.3s;
  z-index: 4;
  cursor: pointer;
  margin: 0 0.2rem;
}
.cid-sJX8ODbjJh .text-wrap .icons-wrap .icon-wrapper:hover {
  background: #25970f;
  border-color: #25970f;
}
.cid-sJX8ODbjJh .text-wrap .icons-wrap .icon-wrapper:hover .link-icon {
  color: #ffffde;
}
.cid-sJX8ODbjJh .text-wrap .icons-wrap .icon-wrapper .link-icon {
  display: inline-block;
  color: #ffffde;
  transition: all 0.3s;
  font-size: 14px;
  justify-content: center;
}
.cid-sJX8ODbjJh .text-wrap .icons-wrap::before {
  height: 2px;
  width: 100%;
  top: 50%;
  right: 58%;
  position: absolute;
  display: inline-block;
  content: "";
  background-color: #ffffff;
}
@media (max-width: 992px) {
  .cid-sJX8ODbjJh .text-wrap .icons-wrap::before {
    display: none;
  }
}
.cid-sJX8ODbjJh .text-wrap .icons-wrap::after {
  height: 2px;
  width: 100%;
  top: 50%;
  left: 58%;
  position: absolute;
  display: inline-block;
  content: "";
  background-color: #ffffff;
}
@media (max-width: 992px) {
  .cid-sJX8ODbjJh .text-wrap .icons-wrap::after {
    display: none;
  }
}
.cid-sJX8SOBbqw .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 16px;
  position: absolute;
  right: 1rem;
  top: 30%;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sJX8SOBbqw .nav-item,
.cid-sJX8SOBbqw .nav-link,
.cid-sJX8SOBbqw .navbar-caption {
  font-weight: normal;
}
.cid-sJX8SOBbqw .nav-item:focus,
.cid-sJX8SOBbqw .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-sJX8SOBbqw .dropdown-item:hover:before {
    transform: scale(1, 1);
  }
}
.cid-sJX8SOBbqw .dropdown .dropdown-menu .dropdown-item {
  display: flex;
  align-items: center;
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sJX8SOBbqw .dropdown .dropdown-menu .dropdown-item::after {
  right: 1rem;
}
.cid-sJX8SOBbqw .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  transform: scale(0, 1);
}
.cid-sJX8SOBbqw .dropdown .dropdown-menu .dropdown-item.dropdown-toggle:before {
  display: none;
}
.cid-sJX8SOBbqw .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-sJX8SOBbqw .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sJX8SOBbqw .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sJX8SOBbqw .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sJX8SOBbqw .collapsed .icons-menu {
  padding-left: 16px;
}
.cid-sJX8SOBbqw .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #f4eddd;
}
.cid-sJX8SOBbqw .navbar.opened {
  transition: all .3s;
  background: #f4eddd !important;
}
.cid-sJX8SOBbqw .navbar .dropdown-item {
  padding: .235rem 2.5rem .235rem 1.5rem;
}
.cid-sJX8SOBbqw .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sJX8SOBbqw .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sJX8SOBbqw .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sJX8SOBbqw .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(100vh - 5.2rem - 1rem);
  }
}
.cid-sJX8SOBbqw .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-sJX8SOBbqw .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sJX8SOBbqw .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-sJX8SOBbqw .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sJX8SOBbqw .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
  justify-content: center;
}
.cid-sJX8SOBbqw .navbar.collapsed .icons-menu {
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-sJX8SOBbqw .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sJX8SOBbqw .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sJX8SOBbqw .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-sJX8SOBbqw .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sJX8SOBbqw .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-sJX8SOBbqw .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-sJX8SOBbqw .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sJX8SOBbqw .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
    justify-content: center;
  }
  .cid-sJX8SOBbqw .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-sJX8SOBbqw .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sJX8SOBbqw .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-sJX8SOBbqw .navbar.navbar-short {
  background: #f4eddd !important;
  min-height: 60px;
}
.cid-sJX8SOBbqw .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-sJX8SOBbqw .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-sJX8SOBbqw .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sJX8SOBbqw .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sJX8SOBbqw .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sJX8SOBbqw .dropdown-item.active,
.cid-sJX8SOBbqw .dropdown-item:active {
  background-color: transparent;
}
.cid-sJX8SOBbqw .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sJX8SOBbqw .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sJX8SOBbqw .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #f4eddd;
}
.cid-sJX8SOBbqw .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sJX8SOBbqw .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sJX8SOBbqw ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sJX8SOBbqw .navbar-buttons {
  text-align: center;
}
.cid-sJX8SOBbqw .navbar-buttons .btn.btn-sm {
  padding: 6px 24px !important;
  min-width: 140px;
  line-height: 1.5;
}
.cid-sJX8SOBbqw button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-sJX8SOBbqw button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-sJX8SOBbqw button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-sJX8SOBbqw button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-sJX8SOBbqw button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-sJX8SOBbqw button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-sJX8SOBbqw nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sJX8SOBbqw nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-sJX8SOBbqw nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-sJX8SOBbqw nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sJX8SOBbqw .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-sJX8SOBbqw a.nav-link {
  justify-content: center;
  display: flex;
  align-items: center;
}
.cid-sJX8SOBbqw .mbr-iconfont {
  font-size: 1rem;
  color: #ffffff;
  display: inline-flex;
}
.cid-sJX8SOBbqw .soc-item {
  margin: .5rem .3rem;
}
.cid-sJX8SOBbqw .icons-menu {
  flex-wrap: wrap;
  display: flex;
  justify-content: center;
  padding-right: 1rem;
  text-align: center;
  align-items: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sJX8SOBbqw .navbar {
    height: 77px;
  }
  .cid-sJX8SOBbqw .navbar.opened {
    height: auto;
  }
  .cid-sJX8SOBbqw .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sJX8SPCkU6 {
  padding-top: 135px;
  padding-bottom: 135px;
  background-image: url("../../../assets/images/mbr-2-1920x1279.jpeg");
}
.cid-sJX8SPCkU6 .card {
  border-radius: 0;
  margin: auto 0;
}
.cid-sJX8SPCkU6 .card .wrapper .mbr-section-title {
  color: #ffffff;
  font-weight: 700;
}
.cid-sJX8SPCkU6 .card .wrapper .mbr-section-title span:nth-child(2) {
  line-height: 1;
  color: #ffffff;
  padding: 0 6px 1px 5px;
  transform: skew(-14deg);
  background: #25970f;
  display: inline-block;
  font-weight: 500;
  letter-spacing: 0;
  position: relative;
}
.cid-sJX8SPCkU6 .card .wrapper .mbr-section-subtitle {
  color: #ffffff;
}
.cid-sJX8SPCkU6 .card .wrapper .mbr-section-subtitle.display-7 {
  letter-spacing: 0;
}
.cid-sJX8SPCkU6 .card .wrapper .mbr-text {
  color: #ffffff;
  font-weight: 300;
}
.cid-sJX8SPCkU6 .card .wrapper .buttons-wrap .mbr-section-btn .btn.display-4 {
  padding: 7px 39px;
  line-height: 1.5;
  letter-spacing: 0;
}
.cid-sJX8SPCkU6 .card .wrapper .buttons-wrap .mbr-section-btn .btn.btn-success-outline {
  color: #ffffff;
}
.cid-sJX8SPCkU6 .card .wrapper .buttons-wrap .mbr-section-btn .btn.btn-success-outline:hover {
  color: #000000;
}
.cid-sJX8SPCkU6 .card .wrapper .mbr-section-title,
.cid-sJX8SPCkU6 .mbr-section-btn {
  color: #ffffff;
}
.cid-sJX8SQ58PJ {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-sJX8SQ58PJ .row {
  flex-direction: row-reverse;
}
.cid-sJX8SQ58PJ .img-wrap img {
  width: 100%;
}
.cid-sJX8SQ58PJ .card {
  border-radius: 0;
  margin: auto 0;
}
.cid-sJX8SQ58PJ .card .wrapper {
  overflow: hidden;
}
.cid-sJX8SQ58PJ .card .wrapper .mbr-section-title {
  color: #06182d;
}
.cid-sJX8SQ58PJ .card .wrapper .mbr-section-title span {
  line-height: 1;
  color: #ffffff;
  padding: 0 6px 1px 5px;
  transform: skew(-14deg);
  background: #000000;
  background: linear-gradient(#000000 0%, #333333 69%, #333333 100%);
  display: inline-block;
  font-weight: 500;
  letter-spacing: 0;
  position: relative;
}
.cid-sJX8SQ58PJ .card .wrapper .mbr-section-subtitle {
  color: #06182d;
}
.cid-sJX8SQ58PJ .card .wrapper .mbr-section-subtitle.display-7 {
  letter-spacing: 0;
}
.cid-sJX8SQ58PJ .card .wrapper .mbr-text {
  color: #f4eddd;
  font-weight: 300;
}
.cid-sJX8SQ58PJ .card .wrapper .sign-wrap {
  text-align: center;
  overflow: hidden;
  position: relative;
}
.cid-sJX8SQ58PJ .card .wrapper .sign-wrap::before {
  right: 65.8%;
  height: 2px;
  transform: translateY(-50%);
  width: 250px;
  top: 50%;
  position: absolute;
  display: inline-block;
  content: "";
  background-color: #dfe3e8;
}
.cid-sJX8SQ58PJ .card .wrapper .sign-wrap img {
  width: 140px;
}
.cid-sJX8SQ58PJ .card .wrapper .sign-wrap::after {
  left: 65.9%;
  height: 2px;
  transform: translateY(-50%);
  width: 250px;
  top: 50%;
  position: absolute;
  display: inline-block;
  content: "";
  background-color: #dfe3e8;
}
.cid-sJX8SQ58PJ .card .wrapper .mbr-section-title {
  text-align: left;
  color: #333333;
}
.cid-sJX8SQ58PJ .card .wrapper .mbr-text {
  color: #000000;
}
.cid-sJX8SQEIIy {
  padding-top: 90px;
  padding-bottom: 90px;
  position: relative;
  background-color: #f3f3f3;
}
.cid-sJX8SQEIIy p {
  color: #767676;
  padding: 0;
  letter-spacing: 0px;
}
.cid-sJX8SQEIIy .panel-title {
  border-bottom: 2px solid #ffffff;
  display: flex!important;
  justify-content: space-between;
  align-items: center;
  padding-right: 2rem;
}
.cid-sJX8SQEIIy .collapsed {
  border: none;
}
.cid-sJX8SQEIIy .collapsed span {
  transform: rotate(0deg);
}
.cid-sJX8SQEIIy span {
  font-size: 1.4rem;
  transition: all 0.3s;
  transform: rotate(45deg);
  background: linear-gradient(to left, #333333, #999999);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 900;
}
.cid-sJX8SQEIIy .panel-body {
  padding-top: 0.5rem;
}
.cid-sJX8SQEIIy .card {
  border-radius: 0px;
  margin-bottom: -1px;
}
.cid-sJX8SQEIIy .card .card-header {
  border-radius: 0px;
  margin: 0.5rem 0;
  border: 0px;
  background: #25970f;
  padding: 0;
}
.cid-sJX8SQEIIy .card .card-header a.panel-title {
  margin-bottom: 0;
  margin-top: -1px;
  font-style: normal;
  text-decoration: none !important;
  line-height: normal;
}
.cid-sJX8SQEIIy .card .card-header a.panel-title:focus {
  text-decoration: none !important;
}
.cid-sJX8SQEIIy .card .card-header a.panel-title h4 {
  padding: 1.3rem 2rem;
  margin-bottom: 0;
}
.cid-sJX8SQEIIy .card .card-header a.panel-title h4 .sign {
  padding-right: 1rem;
}
.cid-sJX8SQEIIy .panel-text {
  color: #767676;
}
.cid-sJX8SQEIIy H4 {
  color: #ffffff;
}
.cid-sJX8SQEIIy H2 {
  color: #000000;
}
.cid-sJX8SQEIIy .mbr-section-text {
  color: #999999;
}
.cid-sJX8SRkjri {
  padding-top: 60px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sJX8SRkjri img {
  width: 100%;
  border-radius: 50px;
  margin-bottom: 20px;
  max-height: ;
}
.cid-sJX8SRkjri .card {
  margin-bottom: 130px !important;
}
.cid-sJX8SRkjri .card .img-wrapper {
  overflow: hidden;
}
.cid-sJX8SRkjri .card:hover {
  cursor: pointer;
}
.cid-sJX8SRkjri .card:hover img {
  transform: scale(1.05);
}
.cid-sJX8SRkjri .card:hover .img-wrapper {
  box-shadow: 0 30px 30px -20px rgba(50, 50, 50, 0.3);
}
@media (max-width: 1200px) {
  .cid-sJX8SRkjri .card {
    margin-bottom: 50px !important;
  }
}
.cid-sJX8SRkjri .card .card-wrapper {
  text-align: left;
}
.cid-sJX8SRkjri .card .card-wrapper .mbr-iconfont {
  font-size: 41px;
  color: #ff513c;
  display: block;
  justify-content: center;
  align-items: center;
  transition: all 0.3s ease-in-out;
  padding-bottom: 14px;
  margin-right: 14px;
}
.cid-sJX8SRkjri .card .card-wrapper .card-box .card-title {
  cursor: pointer;
  color: #06182d;
}
.cid-sJX8SRkjri .card .card-wrapper .card-box .card-title.display-7 {
  line-height: 1.2;
}
.cid-sJX8SRkjri .card .card-wrapper .card-box .card-text {
  color: #f4eddd;
}
@media (min-width: 1400px) {
  .cid-sJX8SRkjri .card.left-box {
    right: 105px !important;
  }
  .cid-sJX8SRkjri .card.right-box {
    left: 97px !important;
  }
}
.cid-sJX8SRkjri .mbr-section-title {
  color: #06182d;
}
.cid-sJX8SRkjri .mbr-section-title span {
  line-height: 1;
  color: #ffffff;
  padding: 0 6px 1px 5px;
  transform: skew(-14deg);
  background: #25970f;
  display: inline-block;
  font-weight: 500;
  letter-spacing: 0;
  position: relative;
}
.cid-sJX8SRkjri .mbr-section-subtitle {
  color: #06182d;
}
.cid-sJX8SRkjri .mbr-section-subtitle.display-7 {
  letter-spacing: 0;
}
.cid-sJX8SRkjri .mbr-section-text {
  color: #999999;
}
.cid-tluv12VNKa {
  padding-top: 75px;
  padding-bottom: 75px;
  background-color: #f3f3f3;
}
.cid-tluv12VNKa .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.8;
}
.cid-tluv12VNKa input,
.cid-tluv12VNKa textarea {
  font-size: 14px;
}
.cid-tluv12VNKa input {
  padding: 1.5rem 1.8rem !important;
  border-radius: 50px;
}
.cid-tluv12VNKa textarea {
  padding: 1rem 1.8rem !important;
  border-radius: 30px;
  min-height: 160px !important;
}
.cid-tluv12VNKa .form-group {
  margin-bottom: 1.3rem;
}
.cid-tluv12VNKa .block-title {
  margin-bottom: 0.7rem;
}
.cid-tluv12VNKa .form-control:hover,
.cid-tluv12VNKa .form-control:focus {
  color: #000000 !important;
}
.cid-tluv12VNKa .mbr-section-subtitle {
  font-weight: 700;
}
.cid-tluv12VNKa img {
  width: 90%;
  border-radius: 8px;
}
.cid-tluv12VNKa .btn {
  border-radius: 30px;
}
.cid-tluv12VNKa .form-control,
.cid-tluv12VNKa .field-input {
  padding: 0.5rem;
  background-color: #f3f3f3;
  border-color: #181818;
  color: #000000;
  transition: 0.4s;
  box-shadow: none;
  outline: none;
}
.cid-tluv12VNKa .form-control:hover,
.cid-tluv12VNKa .field-input:hover {
  background-color: #f3f3f3;
  border-color: #181818 !important;
  color: #000000;
  box-shadow: none;
  outline: none;
}
.cid-tluv12VNKa .form-control:focus,
.cid-tluv12VNKa .field-input:focus {
  background-color: #ffffff;
  border-color: #181818 !important;
  color: #000000;
  box-shadow: none;
  outline: none;
}
.cid-tluv12VNKa input::-webkit-input-placeholder,
.cid-tluv12VNKa textarea::-webkit-input-placeholder {
  color: #000000;
}
.cid-tluv12VNKa input:-moz-placeholder,
.cid-tluv12VNKa textarea:-moz-placeholder {
  color: #000000;
}
.cid-tluv12VNKa .jq-selectbox li,
.cid-tluv12VNKa .jq-selectbox li {
  background-color: #f3f3f3;
  color: #000000;
}
.cid-tluv12VNKa .jq-selectbox li:hover,
.cid-tluv12VNKa .jq-selectbox li.selected {
  background-color: #f3f3f3;
  color: #000000;
}
.cid-tluv12VNKa .jq-selectbox:hover .jq-selectbox__trigger-arrow {
  border-top-color: #f3f3f3;
}
.cid-tluv12VNKa .jq-selectbox .jq-selectbox__trigger-arrow {
  border-top-color: #f3f3f3;
}
@media (max-width: 992px) {
  .cid-tluv12VNKa img {
    width: 100%;
  }
  .cid-tluv12VNKa .google-map {
    margin-bottom: 2rem;
  }
}
.cid-tluv12VNKa .google-map {
  height: 100%;
  min-height: 30rem;
  position: relative;
  filter: grayscale(1);
  padding-right: 0.5rem;
}
.cid-tluv12VNKa .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-tluv12VNKa .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-tluv12VNKa .google-map[data-state] {
  background: #e9e5dc;
}
.cid-tluv12VNKa .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
@media (max-width: 576px) {
  .cid-tluv12VNKa .col-auto {
    width: 100%;
    text-align: center;
  }
}
@media (max-width: 767px) {
  .cid-tluv12VNKa .mbr-form {
    margin-top: 2rem;
  }
  .cid-tluv12VNKa .btn {
    width: 100%;
  }
}
@media (min-width: 776px) and (max-width: 992px) {
  .cid-tluv12VNKa .mbr-form {
    margin-top: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tluv12VNKa .form-row > [class*="col-"] {
    padding: 0 1rem;
  }
}
.cid-sJX8ST7fCa {
  padding-top: 45px;
  padding-bottom: 30px;
  background-color: #25970f;
}
.cid-sJX8ST7fCa .copyright {
  display: flex;
}
@media (max-width: 992px) {
  .cid-sJX8ST7fCa .copyright {
    margin-bottom: 1rem;
  }
}
.cid-sJX8ST7fCa .text-wrap {
  transition: all 0.3s;
  padding: 23px;
  bottom: 0;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: flex-end;
  width: 100%;
  overflow: hidden;
  position: relative;
}
.cid-sJX8ST7fCa .text-wrap .icons-wrap .icon-wrapper {
  background: #ffffff;
  display: flex;
  width: 31px;
  height: 31px;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  border: 2px solid #ffffff;
  transition: all 0.3s;
  z-index: 4;
  cursor: pointer;
  margin: 0 0.2rem;
}
.cid-sJX8ST7fCa .text-wrap .icons-wrap .icon-wrapper:hover {
  background: #25970f;
  border-color: #25970f;
}
.cid-sJX8ST7fCa .text-wrap .icons-wrap .icon-wrapper:hover .link-icon {
  color: #ffffde;
}
.cid-sJX8ST7fCa .text-wrap .icons-wrap .icon-wrapper .link-icon {
  display: inline-block;
  color: #ffffde;
  transition: all 0.3s;
  font-size: 14px;
  justify-content: center;
}
.cid-sJX8ST7fCa .text-wrap .icons-wrap::before {
  height: 2px;
  width: 100%;
  top: 50%;
  right: 58%;
  position: absolute;
  display: inline-block;
  content: "";
  background-color: #ffffff;
}
@media (max-width: 992px) {
  .cid-sJX8ST7fCa .text-wrap .icons-wrap::before {
    display: none;
  }
}
.cid-sJX8ST7fCa .text-wrap .icons-wrap::after {
  height: 2px;
  width: 100%;
  top: 50%;
  left: 58%;
  position: absolute;
  display: inline-block;
  content: "";
  background-color: #ffffff;
}
@media (max-width: 992px) {
  .cid-sJX8ST7fCa .text-wrap .icons-wrap::after {
    display: none;
  }
}
.cid-sJX8Wxi5r8 .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 16px;
  position: absolute;
  right: 1rem;
  top: 30%;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sJX8Wxi5r8 .nav-item,
.cid-sJX8Wxi5r8 .nav-link,
.cid-sJX8Wxi5r8 .navbar-caption {
  font-weight: normal;
}
.cid-sJX8Wxi5r8 .nav-item:focus,
.cid-sJX8Wxi5r8 .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-sJX8Wxi5r8 .dropdown-item:hover:before {
    transform: scale(1, 1);
  }
}
.cid-sJX8Wxi5r8 .dropdown .dropdown-menu .dropdown-item {
  display: flex;
  align-items: center;
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sJX8Wxi5r8 .dropdown .dropdown-menu .dropdown-item::after {
  right: 1rem;
}
.cid-sJX8Wxi5r8 .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  transform: scale(0, 1);
}
.cid-sJX8Wxi5r8 .dropdown .dropdown-menu .dropdown-item.dropdown-toggle:before {
  display: none;
}
.cid-sJX8Wxi5r8 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-sJX8Wxi5r8 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sJX8Wxi5r8 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sJX8Wxi5r8 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sJX8Wxi5r8 .collapsed .icons-menu {
  padding-left: 16px;
}
.cid-sJX8Wxi5r8 .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #f4eddd;
}
.cid-sJX8Wxi5r8 .navbar.opened {
  transition: all .3s;
  background: #f4eddd !important;
}
.cid-sJX8Wxi5r8 .navbar .dropdown-item {
  padding: .235rem 2.5rem .235rem 1.5rem;
}
.cid-sJX8Wxi5r8 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sJX8Wxi5r8 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sJX8Wxi5r8 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sJX8Wxi5r8 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(100vh - 5.2rem - 1rem);
  }
}
.cid-sJX8Wxi5r8 .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-sJX8Wxi5r8 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sJX8Wxi5r8 .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-sJX8Wxi5r8 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sJX8Wxi5r8 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
  justify-content: center;
}
.cid-sJX8Wxi5r8 .navbar.collapsed .icons-menu {
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-sJX8Wxi5r8 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sJX8Wxi5r8 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sJX8Wxi5r8 .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-sJX8Wxi5r8 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sJX8Wxi5r8 .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-sJX8Wxi5r8 .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-sJX8Wxi5r8 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sJX8Wxi5r8 .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
    justify-content: center;
  }
  .cid-sJX8Wxi5r8 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-sJX8Wxi5r8 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sJX8Wxi5r8 .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-sJX8Wxi5r8 .navbar.navbar-short {
  background: #f4eddd !important;
  min-height: 60px;
}
.cid-sJX8Wxi5r8 .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-sJX8Wxi5r8 .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-sJX8Wxi5r8 .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sJX8Wxi5r8 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sJX8Wxi5r8 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sJX8Wxi5r8 .dropdown-item.active,
.cid-sJX8Wxi5r8 .dropdown-item:active {
  background-color: transparent;
}
.cid-sJX8Wxi5r8 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sJX8Wxi5r8 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sJX8Wxi5r8 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #f4eddd;
}
.cid-sJX8Wxi5r8 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sJX8Wxi5r8 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sJX8Wxi5r8 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sJX8Wxi5r8 .navbar-buttons {
  text-align: center;
}
.cid-sJX8Wxi5r8 .navbar-buttons .btn.btn-sm {
  padding: 6px 24px !important;
  min-width: 140px;
  line-height: 1.5;
}
.cid-sJX8Wxi5r8 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-sJX8Wxi5r8 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-sJX8Wxi5r8 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-sJX8Wxi5r8 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-sJX8Wxi5r8 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-sJX8Wxi5r8 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-sJX8Wxi5r8 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sJX8Wxi5r8 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-sJX8Wxi5r8 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-sJX8Wxi5r8 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sJX8Wxi5r8 .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-sJX8Wxi5r8 a.nav-link {
  justify-content: center;
  display: flex;
  align-items: center;
}
.cid-sJX8Wxi5r8 .mbr-iconfont {
  font-size: 1rem;
  color: #ffffff;
  display: inline-flex;
}
.cid-sJX8Wxi5r8 .soc-item {
  margin: .5rem .3rem;
}
.cid-sJX8Wxi5r8 .icons-menu {
  flex-wrap: wrap;
  display: flex;
  justify-content: center;
  padding-right: 1rem;
  text-align: center;
  align-items: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sJX8Wxi5r8 .navbar {
    height: 77px;
  }
  .cid-sJX8Wxi5r8 .navbar.opened {
    height: auto;
  }
  .cid-sJX8Wxi5r8 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sJX8Wza44j {
  padding-top: 135px;
  padding-bottom: 135px;
  background-image: url("../../../assets/images/mbr-1920x1276.jpeg");
}
.cid-sJX8Wza44j .card {
  border-radius: 0;
  margin: auto 0;
}
.cid-sJX8Wza44j .card .wrapper .mbr-section-title {
  color: #ffffff;
  font-weight: 700;
}
.cid-sJX8Wza44j .card .wrapper .mbr-section-title span:nth-child(2) {
  line-height: 1;
  color: #ffffff;
  padding: 0 6px 1px 5px;
  transform: skew(-14deg);
  background: #25970f;
  display: inline-block;
  font-weight: 500;
  letter-spacing: 0;
  position: relative;
}
.cid-sJX8Wza44j .card .wrapper .mbr-section-subtitle {
  color: #ffffff;
}
.cid-sJX8Wza44j .card .wrapper .mbr-section-subtitle.display-7 {
  letter-spacing: 0;
}
.cid-sJX8Wza44j .card .wrapper .mbr-text {
  color: #ffffff;
  font-weight: 300;
}
.cid-sJX8Wza44j .card .wrapper .buttons-wrap .mbr-section-btn .btn.display-4 {
  padding: 7px 39px;
  line-height: 1.5;
  letter-spacing: 0;
}
.cid-sJX8Wza44j .card .wrapper .buttons-wrap .mbr-section-btn .btn.btn-success-outline {
  color: #ffffff;
}
.cid-sJX8Wza44j .card .wrapper .buttons-wrap .mbr-section-btn .btn.btn-success-outline:hover {
  color: #000000;
}
.cid-sJX8Wza44j .card .wrapper .mbr-section-title,
.cid-sJX8Wza44j .mbr-section-btn {
  color: #ffffff;
}
.cid-sJX8WzWtqw {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-sJX8WzWtqw .row {
  flex-direction: row-reverse;
}
.cid-sJX8WzWtqw .img-wrap img {
  width: 100%;
}
.cid-sJX8WzWtqw .card {
  border-radius: 0;
  margin: auto 0;
}
.cid-sJX8WzWtqw .card .wrapper {
  overflow: hidden;
}
.cid-sJX8WzWtqw .card .wrapper .mbr-section-title {
  color: #06182d;
}
.cid-sJX8WzWtqw .card .wrapper .mbr-section-title span {
  line-height: 1;
  color: #ffffff;
  padding: 0 6px 1px 5px;
  transform: skew(-14deg);
  background: #000000;
  background: linear-gradient(#000000 0%, #333333 69%, #333333 100%);
  display: inline-block;
  font-weight: 500;
  letter-spacing: 0;
  position: relative;
}
.cid-sJX8WzWtqw .card .wrapper .mbr-section-subtitle {
  color: #06182d;
}
.cid-sJX8WzWtqw .card .wrapper .mbr-section-subtitle.display-7 {
  letter-spacing: 0;
}
.cid-sJX8WzWtqw .card .wrapper .mbr-text {
  color: #f4eddd;
  font-weight: 300;
}
.cid-sJX8WzWtqw .card .wrapper .sign-wrap {
  text-align: center;
  overflow: hidden;
  position: relative;
}
.cid-sJX8WzWtqw .card .wrapper .sign-wrap::before {
  right: 65.8%;
  height: 2px;
  transform: translateY(-50%);
  width: 250px;
  top: 50%;
  position: absolute;
  display: inline-block;
  content: "";
  background-color: #dfe3e8;
}
.cid-sJX8WzWtqw .card .wrapper .sign-wrap img {
  width: 140px;
}
.cid-sJX8WzWtqw .card .wrapper .sign-wrap::after {
  left: 65.9%;
  height: 2px;
  transform: translateY(-50%);
  width: 250px;
  top: 50%;
  position: absolute;
  display: inline-block;
  content: "";
  background-color: #dfe3e8;
}
.cid-sJX8WzWtqw .card .wrapper .mbr-section-title {
  text-align: left;
  color: #333333;
}
.cid-sJX8WzWtqw .card .wrapper .mbr-text {
  color: #000000;
}
.cid-sJX8WADIlW {
  padding-top: 90px;
  padding-bottom: 90px;
  position: relative;
  background-color: #f3f3f3;
}
.cid-sJX8WADIlW p {
  color: #767676;
  padding: 0;
  letter-spacing: 0px;
}
.cid-sJX8WADIlW .panel-title {
  border-bottom: 2px solid #ffffff;
  display: flex!important;
  justify-content: space-between;
  align-items: center;
  padding-right: 2rem;
}
.cid-sJX8WADIlW .collapsed {
  border: none;
}
.cid-sJX8WADIlW .collapsed span {
  transform: rotate(0deg);
}
.cid-sJX8WADIlW span {
  font-size: 1.4rem;
  transition: all 0.3s;
  transform: rotate(45deg);
  background: linear-gradient(to left, #333333, #999999);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 900;
}
.cid-sJX8WADIlW .panel-body {
  padding-top: 0.5rem;
}
.cid-sJX8WADIlW .card {
  border-radius: 0px;
  margin-bottom: -1px;
}
.cid-sJX8WADIlW .card .card-header {
  border-radius: 0px;
  margin: 0.5rem 0;
  border: 0px;
  background: #25970f;
  padding: 0;
}
.cid-sJX8WADIlW .card .card-header a.panel-title {
  margin-bottom: 0;
  margin-top: -1px;
  font-style: normal;
  text-decoration: none !important;
  line-height: normal;
}
.cid-sJX8WADIlW .card .card-header a.panel-title:focus {
  text-decoration: none !important;
}
.cid-sJX8WADIlW .card .card-header a.panel-title h4 {
  padding: 1.3rem 2rem;
  margin-bottom: 0;
}
.cid-sJX8WADIlW .card .card-header a.panel-title h4 .sign {
  padding-right: 1rem;
}
.cid-sJX8WADIlW .panel-text {
  color: #767676;
}
.cid-sJX8WADIlW H4 {
  color: #ffffff;
}
.cid-sJX8WADIlW H2 {
  color: #000000;
}
.cid-sJX8WADIlW .mbr-section-text {
  color: #999999;
}
.cid-sJX8WBsJWh {
  padding-top: 60px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sJX8WBsJWh img {
  width: 100%;
  border-radius: 50px;
  margin-bottom: 20px;
  max-height: ;
}
.cid-sJX8WBsJWh .card {
  margin-bottom: 130px !important;
}
.cid-sJX8WBsJWh .card .img-wrapper {
  overflow: hidden;
}
.cid-sJX8WBsJWh .card:hover {
  cursor: pointer;
}
.cid-sJX8WBsJWh .card:hover img {
  transform: scale(1.05);
}
.cid-sJX8WBsJWh .card:hover .img-wrapper {
  box-shadow: 0 30px 30px -20px rgba(50, 50, 50, 0.3);
}
@media (max-width: 1200px) {
  .cid-sJX8WBsJWh .card {
    margin-bottom: 50px !important;
  }
}
.cid-sJX8WBsJWh .card .card-wrapper {
  text-align: left;
}
.cid-sJX8WBsJWh .card .card-wrapper .mbr-iconfont {
  font-size: 41px;
  color: #ff513c;
  display: block;
  justify-content: center;
  align-items: center;
  transition: all 0.3s ease-in-out;
  padding-bottom: 14px;
  margin-right: 14px;
}
.cid-sJX8WBsJWh .card .card-wrapper .card-box .card-title {
  cursor: pointer;
  color: #06182d;
}
.cid-sJX8WBsJWh .card .card-wrapper .card-box .card-title.display-7 {
  line-height: 1.2;
}
.cid-sJX8WBsJWh .card .card-wrapper .card-box .card-text {
  color: #f4eddd;
}
@media (min-width: 1400px) {
  .cid-sJX8WBsJWh .card.left-box {
    right: 105px !important;
  }
  .cid-sJX8WBsJWh .card.right-box {
    left: 97px !important;
  }
}
.cid-sJX8WBsJWh .mbr-section-title {
  color: #06182d;
}
.cid-sJX8WBsJWh .mbr-section-title span {
  line-height: 1;
  color: #ffffff;
  padding: 0 6px 1px 5px;
  transform: skew(-14deg);
  background: #25970f;
  display: inline-block;
  font-weight: 500;
  letter-spacing: 0;
  position: relative;
}
.cid-sJX8WBsJWh .mbr-section-subtitle {
  color: #06182d;
}
.cid-sJX8WBsJWh .mbr-section-subtitle.display-7 {
  letter-spacing: 0;
}
.cid-sJX8WBsJWh .mbr-section-text {
  color: #999999;
}
.cid-tluv39BaWE {
  padding-top: 75px;
  padding-bottom: 75px;
  background-color: #f3f3f3;
}
.cid-tluv39BaWE .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.8;
}
.cid-tluv39BaWE input,
.cid-tluv39BaWE textarea {
  font-size: 14px;
}
.cid-tluv39BaWE input {
  padding: 1.5rem 1.8rem !important;
  border-radius: 50px;
}
.cid-tluv39BaWE textarea {
  padding: 1rem 1.8rem !important;
  border-radius: 30px;
  min-height: 160px !important;
}
.cid-tluv39BaWE .form-group {
  margin-bottom: 1.3rem;
}
.cid-tluv39BaWE .block-title {
  margin-bottom: 0.7rem;
}
.cid-tluv39BaWE .form-control:hover,
.cid-tluv39BaWE .form-control:focus {
  color: #000000 !important;
}
.cid-tluv39BaWE .mbr-section-subtitle {
  font-weight: 700;
}
.cid-tluv39BaWE img {
  width: 90%;
  border-radius: 8px;
}
.cid-tluv39BaWE .btn {
  border-radius: 30px;
}
.cid-tluv39BaWE .form-control,
.cid-tluv39BaWE .field-input {
  padding: 0.5rem;
  background-color: #f3f3f3;
  border-color: #181818;
  color: #000000;
  transition: 0.4s;
  box-shadow: none;
  outline: none;
}
.cid-tluv39BaWE .form-control:hover,
.cid-tluv39BaWE .field-input:hover {
  background-color: #f3f3f3;
  border-color: #181818 !important;
  color: #000000;
  box-shadow: none;
  outline: none;
}
.cid-tluv39BaWE .form-control:focus,
.cid-tluv39BaWE .field-input:focus {
  background-color: #ffffff;
  border-color: #181818 !important;
  color: #000000;
  box-shadow: none;
  outline: none;
}
.cid-tluv39BaWE input::-webkit-input-placeholder,
.cid-tluv39BaWE textarea::-webkit-input-placeholder {
  color: #000000;
}
.cid-tluv39BaWE input:-moz-placeholder,
.cid-tluv39BaWE textarea:-moz-placeholder {
  color: #000000;
}
.cid-tluv39BaWE .jq-selectbox li,
.cid-tluv39BaWE .jq-selectbox li {
  background-color: #f3f3f3;
  color: #000000;
}
.cid-tluv39BaWE .jq-selectbox li:hover,
.cid-tluv39BaWE .jq-selectbox li.selected {
  background-color: #f3f3f3;
  color: #000000;
}
.cid-tluv39BaWE .jq-selectbox:hover .jq-selectbox__trigger-arrow {
  border-top-color: #f3f3f3;
}
.cid-tluv39BaWE .jq-selectbox .jq-selectbox__trigger-arrow {
  border-top-color: #f3f3f3;
}
@media (max-width: 992px) {
  .cid-tluv39BaWE img {
    width: 100%;
  }
  .cid-tluv39BaWE .google-map {
    margin-bottom: 2rem;
  }
}
.cid-tluv39BaWE .google-map {
  height: 100%;
  min-height: 30rem;
  position: relative;
  filter: grayscale(1);
  padding-right: 0.5rem;
}
.cid-tluv39BaWE .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-tluv39BaWE .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-tluv39BaWE .google-map[data-state] {
  background: #e9e5dc;
}
.cid-tluv39BaWE .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
@media (max-width: 576px) {
  .cid-tluv39BaWE .col-auto {
    width: 100%;
    text-align: center;
  }
}
@media (max-width: 767px) {
  .cid-tluv39BaWE .mbr-form {
    margin-top: 2rem;
  }
  .cid-tluv39BaWE .btn {
    width: 100%;
  }
}
@media (min-width: 776px) and (max-width: 992px) {
  .cid-tluv39BaWE .mbr-form {
    margin-top: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tluv39BaWE .form-row > [class*="col-"] {
    padding: 0 1rem;
  }
}
.cid-sJX8WEx1pJ {
  padding-top: 45px;
  padding-bottom: 30px;
  background-color: #25970f;
}
.cid-sJX8WEx1pJ .copyright {
  display: flex;
}
@media (max-width: 992px) {
  .cid-sJX8WEx1pJ .copyright {
    margin-bottom: 1rem;
  }
}
.cid-sJX8WEx1pJ .text-wrap {
  transition: all 0.3s;
  padding: 23px;
  bottom: 0;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: flex-end;
  width: 100%;
  overflow: hidden;
  position: relative;
}
.cid-sJX8WEx1pJ .text-wrap .icons-wrap .icon-wrapper {
  background: #ffffff;
  display: flex;
  width: 31px;
  height: 31px;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  border: 2px solid #ffffff;
  transition: all 0.3s;
  z-index: 4;
  cursor: pointer;
  margin: 0 0.2rem;
}
.cid-sJX8WEx1pJ .text-wrap .icons-wrap .icon-wrapper:hover {
  background: #25970f;
  border-color: #25970f;
}
.cid-sJX8WEx1pJ .text-wrap .icons-wrap .icon-wrapper:hover .link-icon {
  color: #ffffde;
}
.cid-sJX8WEx1pJ .text-wrap .icons-wrap .icon-wrapper .link-icon {
  display: inline-block;
  color: #ffffde;
  transition: all 0.3s;
  font-size: 14px;
  justify-content: center;
}
.cid-sJX8WEx1pJ .text-wrap .icons-wrap::before {
  height: 2px;
  width: 100%;
  top: 50%;
  right: 58%;
  position: absolute;
  display: inline-block;
  content: "";
  background-color: #ffffff;
}
@media (max-width: 992px) {
  .cid-sJX8WEx1pJ .text-wrap .icons-wrap::before {
    display: none;
  }
}
.cid-sJX8WEx1pJ .text-wrap .icons-wrap::after {
  height: 2px;
  width: 100%;
  top: 50%;
  left: 58%;
  position: absolute;
  display: inline-block;
  content: "";
  background-color: #ffffff;
}
@media (max-width: 992px) {
  .cid-sJX8WEx1pJ .text-wrap .icons-wrap::after {
    display: none;
  }
}
.cid-sJX90xkNm6 .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 16px;
  position: absolute;
  right: 1rem;
  top: 30%;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sJX90xkNm6 .nav-item,
.cid-sJX90xkNm6 .nav-link,
.cid-sJX90xkNm6 .navbar-caption {
  font-weight: normal;
}
.cid-sJX90xkNm6 .nav-item:focus,
.cid-sJX90xkNm6 .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-sJX90xkNm6 .dropdown-item:hover:before {
    transform: scale(1, 1);
  }
}
.cid-sJX90xkNm6 .dropdown .dropdown-menu .dropdown-item {
  display: flex;
  align-items: center;
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sJX90xkNm6 .dropdown .dropdown-menu .dropdown-item::after {
  right: 1rem;
}
.cid-sJX90xkNm6 .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  transform: scale(0, 1);
}
.cid-sJX90xkNm6 .dropdown .dropdown-menu .dropdown-item.dropdown-toggle:before {
  display: none;
}
.cid-sJX90xkNm6 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-sJX90xkNm6 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sJX90xkNm6 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sJX90xkNm6 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sJX90xkNm6 .collapsed .icons-menu {
  padding-left: 16px;
}
.cid-sJX90xkNm6 .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #f4eddd;
}
.cid-sJX90xkNm6 .navbar.opened {
  transition: all .3s;
  background: #f4eddd !important;
}
.cid-sJX90xkNm6 .navbar .dropdown-item {
  padding: .235rem 2.5rem .235rem 1.5rem;
}
.cid-sJX90xkNm6 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sJX90xkNm6 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sJX90xkNm6 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sJX90xkNm6 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(100vh - 5.2rem - 1rem);
  }
}
.cid-sJX90xkNm6 .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-sJX90xkNm6 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sJX90xkNm6 .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-sJX90xkNm6 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sJX90xkNm6 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
  justify-content: center;
}
.cid-sJX90xkNm6 .navbar.collapsed .icons-menu {
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-sJX90xkNm6 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sJX90xkNm6 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sJX90xkNm6 .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-sJX90xkNm6 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sJX90xkNm6 .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-sJX90xkNm6 .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-sJX90xkNm6 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sJX90xkNm6 .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
    justify-content: center;
  }
  .cid-sJX90xkNm6 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-sJX90xkNm6 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sJX90xkNm6 .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-sJX90xkNm6 .navbar.navbar-short {
  background: #f4eddd !important;
  min-height: 60px;
}
.cid-sJX90xkNm6 .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-sJX90xkNm6 .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-sJX90xkNm6 .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sJX90xkNm6 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sJX90xkNm6 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sJX90xkNm6 .dropdown-item.active,
.cid-sJX90xkNm6 .dropdown-item:active {
  background-color: transparent;
}
.cid-sJX90xkNm6 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sJX90xkNm6 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sJX90xkNm6 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #f4eddd;
}
.cid-sJX90xkNm6 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sJX90xkNm6 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sJX90xkNm6 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sJX90xkNm6 .navbar-buttons {
  text-align: center;
}
.cid-sJX90xkNm6 .navbar-buttons .btn.btn-sm {
  padding: 6px 24px !important;
  min-width: 140px;
  line-height: 1.5;
}
.cid-sJX90xkNm6 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-sJX90xkNm6 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-sJX90xkNm6 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-sJX90xkNm6 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-sJX90xkNm6 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-sJX90xkNm6 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-sJX90xkNm6 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sJX90xkNm6 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-sJX90xkNm6 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-sJX90xkNm6 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sJX90xkNm6 .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-sJX90xkNm6 a.nav-link {
  justify-content: center;
  display: flex;
  align-items: center;
}
.cid-sJX90xkNm6 .mbr-iconfont {
  font-size: 1rem;
  color: #ffffff;
  display: inline-flex;
}
.cid-sJX90xkNm6 .soc-item {
  margin: .5rem .3rem;
}
.cid-sJX90xkNm6 .icons-menu {
  flex-wrap: wrap;
  display: flex;
  justify-content: center;
  padding-right: 1rem;
  text-align: center;
  align-items: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sJX90xkNm6 .navbar {
    height: 77px;
  }
  .cid-sJX90xkNm6 .navbar.opened {
    height: auto;
  }
  .cid-sJX90xkNm6 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sJX90yFmWL {
  padding-top: 135px;
  padding-bottom: 135px;
  background-image: url("../../../assets/images/buldogue-ingls-600px-600x363.jpg");
}
.cid-sJX90yFmWL .card {
  border-radius: 0;
  margin: auto 0;
}
.cid-sJX90yFmWL .card .wrapper .mbr-section-title {
  color: #ffffff;
  font-weight: 700;
}
.cid-sJX90yFmWL .card .wrapper .mbr-section-title span:nth-child(2) {
  line-height: 1;
  color: #ffffff;
  padding: 0 6px 1px 5px;
  transform: skew(-14deg);
  background: #25970f;
  display: inline-block;
  font-weight: 500;
  letter-spacing: 0;
  position: relative;
}
.cid-sJX90yFmWL .card .wrapper .mbr-section-subtitle {
  color: #ffffff;
}
.cid-sJX90yFmWL .card .wrapper .mbr-section-subtitle.display-7 {
  letter-spacing: 0;
}
.cid-sJX90yFmWL .card .wrapper .mbr-text {
  color: #ffffff;
  font-weight: 300;
}
.cid-sJX90yFmWL .card .wrapper .buttons-wrap .mbr-section-btn .btn.display-4 {
  padding: 7px 39px;
  line-height: 1.5;
  letter-spacing: 0;
}
.cid-sJX90yFmWL .card .wrapper .buttons-wrap .mbr-section-btn .btn.btn-success-outline {
  color: #ffffff;
}
.cid-sJX90yFmWL .card .wrapper .buttons-wrap .mbr-section-btn .btn.btn-success-outline:hover {
  color: #000000;
}
.cid-sJX90yFmWL .card .wrapper .mbr-section-title,
.cid-sJX90yFmWL .mbr-section-btn {
  color: #ffffff;
}
.cid-sJX90z18Cs {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-sJX90z18Cs .row {
  flex-direction: row-reverse;
}
.cid-sJX90z18Cs .img-wrap img {
  width: 100%;
}
.cid-sJX90z18Cs .card {
  border-radius: 0;
  margin: auto 0;
}
.cid-sJX90z18Cs .card .wrapper {
  overflow: hidden;
}
.cid-sJX90z18Cs .card .wrapper .mbr-section-title {
  color: #06182d;
}
.cid-sJX90z18Cs .card .wrapper .mbr-section-title span {
  line-height: 1;
  color: #ffffff;
  padding: 0 6px 1px 5px;
  transform: skew(-14deg);
  background: #000000;
  background: linear-gradient(#000000 0%, #333333 69%, #333333 100%);
  display: inline-block;
  font-weight: 500;
  letter-spacing: 0;
  position: relative;
}
.cid-sJX90z18Cs .card .wrapper .mbr-section-subtitle {
  color: #06182d;
}
.cid-sJX90z18Cs .card .wrapper .mbr-section-subtitle.display-7 {
  letter-spacing: 0;
}
.cid-sJX90z18Cs .card .wrapper .mbr-text {
  color: #f4eddd;
  font-weight: 300;
}
.cid-sJX90z18Cs .card .wrapper .sign-wrap {
  text-align: center;
  overflow: hidden;
  position: relative;
}
.cid-sJX90z18Cs .card .wrapper .sign-wrap::before {
  right: 65.8%;
  height: 2px;
  transform: translateY(-50%);
  width: 250px;
  top: 50%;
  position: absolute;
  display: inline-block;
  content: "";
  background-color: #dfe3e8;
}
.cid-sJX90z18Cs .card .wrapper .sign-wrap img {
  width: 140px;
}
.cid-sJX90z18Cs .card .wrapper .sign-wrap::after {
  left: 65.9%;
  height: 2px;
  transform: translateY(-50%);
  width: 250px;
  top: 50%;
  position: absolute;
  display: inline-block;
  content: "";
  background-color: #dfe3e8;
}
.cid-sJX90z18Cs .card .wrapper .mbr-section-title {
  text-align: left;
  color: #333333;
}
.cid-sJX90z18Cs .card .wrapper .mbr-text {
  color: #000000;
}
.cid-sJX90ztZJU {
  padding-top: 90px;
  padding-bottom: 90px;
  position: relative;
  background-color: #f3f3f3;
}
.cid-sJX90ztZJU p {
  color: #767676;
  padding: 0;
  letter-spacing: 0px;
}
.cid-sJX90ztZJU .panel-title {
  border-bottom: 2px solid #ffffff;
  display: flex!important;
  justify-content: space-between;
  align-items: center;
  padding-right: 2rem;
}
.cid-sJX90ztZJU .collapsed {
  border: none;
}
.cid-sJX90ztZJU .collapsed span {
  transform: rotate(0deg);
}
.cid-sJX90ztZJU span {
  font-size: 1.4rem;
  transition: all 0.3s;
  transform: rotate(45deg);
  background: linear-gradient(to left, #333333, #999999);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 900;
}
.cid-sJX90ztZJU .panel-body {
  padding-top: 0.5rem;
}
.cid-sJX90ztZJU .card {
  border-radius: 0px;
  margin-bottom: -1px;
}
.cid-sJX90ztZJU .card .card-header {
  border-radius: 0px;
  margin: 0.5rem 0;
  border: 0px;
  background: #25970f;
  padding: 0;
}
.cid-sJX90ztZJU .card .card-header a.panel-title {
  margin-bottom: 0;
  margin-top: -1px;
  font-style: normal;
  text-decoration: none !important;
  line-height: normal;
}
.cid-sJX90ztZJU .card .card-header a.panel-title:focus {
  text-decoration: none !important;
}
.cid-sJX90ztZJU .card .card-header a.panel-title h4 {
  padding: 1.3rem 2rem;
  margin-bottom: 0;
}
.cid-sJX90ztZJU .card .card-header a.panel-title h4 .sign {
  padding-right: 1rem;
}
.cid-sJX90ztZJU .panel-text {
  color: #767676;
}
.cid-sJX90ztZJU H4 {
  color: #ffffff;
}
.cid-sJX90ztZJU H2 {
  color: #000000;
}
.cid-sJX90ztZJU .mbr-section-text {
  color: #999999;
}
.cid-sJX90Ad21w {
  padding-top: 60px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sJX90Ad21w img {
  width: 100%;
  border-radius: 50px;
  margin-bottom: 20px;
  max-height: ;
}
.cid-sJX90Ad21w .card {
  margin-bottom: 130px !important;
}
.cid-sJX90Ad21w .card .img-wrapper {
  overflow: hidden;
}
.cid-sJX90Ad21w .card:hover {
  cursor: pointer;
}
.cid-sJX90Ad21w .card:hover img {
  transform: scale(1.05);
}
.cid-sJX90Ad21w .card:hover .img-wrapper {
  box-shadow: 0 30px 30px -20px rgba(50, 50, 50, 0.3);
}
@media (max-width: 1200px) {
  .cid-sJX90Ad21w .card {
    margin-bottom: 50px !important;
  }
}
.cid-sJX90Ad21w .card .card-wrapper {
  text-align: left;
}
.cid-sJX90Ad21w .card .card-wrapper .mbr-iconfont {
  font-size: 41px;
  color: #ff513c;
  display: block;
  justify-content: center;
  align-items: center;
  transition: all 0.3s ease-in-out;
  padding-bottom: 14px;
  margin-right: 14px;
}
.cid-sJX90Ad21w .card .card-wrapper .card-box .card-title {
  cursor: pointer;
  color: #06182d;
}
.cid-sJX90Ad21w .card .card-wrapper .card-box .card-title.display-7 {
  line-height: 1.2;
}
.cid-sJX90Ad21w .card .card-wrapper .card-box .card-text {
  color: #f4eddd;
}
@media (min-width: 1400px) {
  .cid-sJX90Ad21w .card.left-box {
    right: 105px !important;
  }
  .cid-sJX90Ad21w .card.right-box {
    left: 97px !important;
  }
}
.cid-sJX90Ad21w .mbr-section-title {
  color: #06182d;
}
.cid-sJX90Ad21w .mbr-section-title span {
  line-height: 1;
  color: #ffffff;
  padding: 0 6px 1px 5px;
  transform: skew(-14deg);
  background: #25970f;
  display: inline-block;
  font-weight: 500;
  letter-spacing: 0;
  position: relative;
}
.cid-sJX90Ad21w .mbr-section-subtitle {
  color: #06182d;
}
.cid-sJX90Ad21w .mbr-section-subtitle.display-7 {
  letter-spacing: 0;
}
.cid-sJX90Ad21w .mbr-section-text {
  color: #999999;
}
.cid-tluv4wRRUg {
  padding-top: 75px;
  padding-bottom: 75px;
  background-color: #f3f3f3;
}
.cid-tluv4wRRUg .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.8;
}
.cid-tluv4wRRUg input,
.cid-tluv4wRRUg textarea {
  font-size: 14px;
}
.cid-tluv4wRRUg input {
  padding: 1.5rem 1.8rem !important;
  border-radius: 50px;
}
.cid-tluv4wRRUg textarea {
  padding: 1rem 1.8rem !important;
  border-radius: 30px;
  min-height: 160px !important;
}
.cid-tluv4wRRUg .form-group {
  margin-bottom: 1.3rem;
}
.cid-tluv4wRRUg .block-title {
  margin-bottom: 0.7rem;
}
.cid-tluv4wRRUg .form-control:hover,
.cid-tluv4wRRUg .form-control:focus {
  color: #000000 !important;
}
.cid-tluv4wRRUg .mbr-section-subtitle {
  font-weight: 700;
}
.cid-tluv4wRRUg img {
  width: 90%;
  border-radius: 8px;
}
.cid-tluv4wRRUg .btn {
  border-radius: 30px;
}
.cid-tluv4wRRUg .form-control,
.cid-tluv4wRRUg .field-input {
  padding: 0.5rem;
  background-color: #f3f3f3;
  border-color: #181818;
  color: #000000;
  transition: 0.4s;
  box-shadow: none;
  outline: none;
}
.cid-tluv4wRRUg .form-control:hover,
.cid-tluv4wRRUg .field-input:hover {
  background-color: #f3f3f3;
  border-color: #181818 !important;
  color: #000000;
  box-shadow: none;
  outline: none;
}
.cid-tluv4wRRUg .form-control:focus,
.cid-tluv4wRRUg .field-input:focus {
  background-color: #ffffff;
  border-color: #181818 !important;
  color: #000000;
  box-shadow: none;
  outline: none;
}
.cid-tluv4wRRUg input::-webkit-input-placeholder,
.cid-tluv4wRRUg textarea::-webkit-input-placeholder {
  color: #000000;
}
.cid-tluv4wRRUg input:-moz-placeholder,
.cid-tluv4wRRUg textarea:-moz-placeholder {
  color: #000000;
}
.cid-tluv4wRRUg .jq-selectbox li,
.cid-tluv4wRRUg .jq-selectbox li {
  background-color: #f3f3f3;
  color: #000000;
}
.cid-tluv4wRRUg .jq-selectbox li:hover,
.cid-tluv4wRRUg .jq-selectbox li.selected {
  background-color: #f3f3f3;
  color: #000000;
}
.cid-tluv4wRRUg .jq-selectbox:hover .jq-selectbox__trigger-arrow {
  border-top-color: #f3f3f3;
}
.cid-tluv4wRRUg .jq-selectbox .jq-selectbox__trigger-arrow {
  border-top-color: #f3f3f3;
}
@media (max-width: 992px) {
  .cid-tluv4wRRUg img {
    width: 100%;
  }
  .cid-tluv4wRRUg .google-map {
    margin-bottom: 2rem;
  }
}
.cid-tluv4wRRUg .google-map {
  height: 100%;
  min-height: 30rem;
  position: relative;
  filter: grayscale(1);
  padding-right: 0.5rem;
}
.cid-tluv4wRRUg .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-tluv4wRRUg .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-tluv4wRRUg .google-map[data-state] {
  background: #e9e5dc;
}
.cid-tluv4wRRUg .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
@media (max-width: 576px) {
  .cid-tluv4wRRUg .col-auto {
    width: 100%;
    text-align: center;
  }
}
@media (max-width: 767px) {
  .cid-tluv4wRRUg .mbr-form {
    margin-top: 2rem;
  }
  .cid-tluv4wRRUg .btn {
    width: 100%;
  }
}
@media (min-width: 776px) and (max-width: 992px) {
  .cid-tluv4wRRUg .mbr-form {
    margin-top: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tluv4wRRUg .form-row > [class*="col-"] {
    padding: 0 1rem;
  }
}
.cid-sJX90BP6d1 {
  padding-top: 45px;
  padding-bottom: 30px;
  background-color: #25970f;
}
.cid-sJX90BP6d1 .copyright {
  display: flex;
}
@media (max-width: 992px) {
  .cid-sJX90BP6d1 .copyright {
    margin-bottom: 1rem;
  }
}
.cid-sJX90BP6d1 .text-wrap {
  transition: all 0.3s;
  padding: 23px;
  bottom: 0;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: flex-end;
  width: 100%;
  overflow: hidden;
  position: relative;
}
.cid-sJX90BP6d1 .text-wrap .icons-wrap .icon-wrapper {
  background: #ffffff;
  display: flex;
  width: 31px;
  height: 31px;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  border: 2px solid #ffffff;
  transition: all 0.3s;
  z-index: 4;
  cursor: pointer;
  margin: 0 0.2rem;
}
.cid-sJX90BP6d1 .text-wrap .icons-wrap .icon-wrapper:hover {
  background: #25970f;
  border-color: #25970f;
}
.cid-sJX90BP6d1 .text-wrap .icons-wrap .icon-wrapper:hover .link-icon {
  color: #ffffde;
}
.cid-sJX90BP6d1 .text-wrap .icons-wrap .icon-wrapper .link-icon {
  display: inline-block;
  color: #ffffde;
  transition: all 0.3s;
  font-size: 14px;
  justify-content: center;
}
.cid-sJX90BP6d1 .text-wrap .icons-wrap::before {
  height: 2px;
  width: 100%;
  top: 50%;
  right: 58%;
  position: absolute;
  display: inline-block;
  content: "";
  background-color: #ffffff;
}
@media (max-width: 992px) {
  .cid-sJX90BP6d1 .text-wrap .icons-wrap::before {
    display: none;
  }
}
.cid-sJX90BP6d1 .text-wrap .icons-wrap::after {
  height: 2px;
  width: 100%;
  top: 50%;
  left: 58%;
  position: absolute;
  display: inline-block;
  content: "";
  background-color: #ffffff;
}
@media (max-width: 992px) {
  .cid-sJX90BP6d1 .text-wrap .icons-wrap::after {
    display: none;
  }
}
.cid-sJX9mOhkay .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 16px;
  position: absolute;
  right: 1rem;
  top: 30%;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sJX9mOhkay .nav-item,
.cid-sJX9mOhkay .nav-link,
.cid-sJX9mOhkay .navbar-caption {
  font-weight: normal;
}
.cid-sJX9mOhkay .nav-item:focus,
.cid-sJX9mOhkay .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-sJX9mOhkay .dropdown-item:hover:before {
    transform: scale(1, 1);
  }
}
.cid-sJX9mOhkay .dropdown .dropdown-menu .dropdown-item {
  display: flex;
  align-items: center;
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sJX9mOhkay .dropdown .dropdown-menu .dropdown-item::after {
  right: 1rem;
}
.cid-sJX9mOhkay .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  transform: scale(0, 1);
}
.cid-sJX9mOhkay .dropdown .dropdown-menu .dropdown-item.dropdown-toggle:before {
  display: none;
}
.cid-sJX9mOhkay .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-sJX9mOhkay .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sJX9mOhkay .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sJX9mOhkay .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sJX9mOhkay .collapsed .icons-menu {
  padding-left: 16px;
}
.cid-sJX9mOhkay .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #f4eddd;
}
.cid-sJX9mOhkay .navbar.opened {
  transition: all .3s;
  background: #f4eddd !important;
}
.cid-sJX9mOhkay .navbar .dropdown-item {
  padding: .235rem 2.5rem .235rem 1.5rem;
}
.cid-sJX9mOhkay .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sJX9mOhkay .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sJX9mOhkay .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sJX9mOhkay .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(100vh - 5.2rem - 1rem);
  }
}
.cid-sJX9mOhkay .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-sJX9mOhkay .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sJX9mOhkay .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-sJX9mOhkay .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sJX9mOhkay .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
  justify-content: center;
}
.cid-sJX9mOhkay .navbar.collapsed .icons-menu {
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-sJX9mOhkay .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sJX9mOhkay .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sJX9mOhkay .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-sJX9mOhkay .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sJX9mOhkay .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-sJX9mOhkay .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-sJX9mOhkay .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sJX9mOhkay .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
    justify-content: center;
  }
  .cid-sJX9mOhkay .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-sJX9mOhkay .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sJX9mOhkay .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-sJX9mOhkay .navbar.navbar-short {
  background: #f4eddd !important;
  min-height: 60px;
}
.cid-sJX9mOhkay .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-sJX9mOhkay .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-sJX9mOhkay .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sJX9mOhkay .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sJX9mOhkay .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sJX9mOhkay .dropdown-item.active,
.cid-sJX9mOhkay .dropdown-item:active {
  background-color: transparent;
}
.cid-sJX9mOhkay .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sJX9mOhkay .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sJX9mOhkay .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #f4eddd;
}
.cid-sJX9mOhkay .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sJX9mOhkay .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sJX9mOhkay ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sJX9mOhkay .navbar-buttons {
  text-align: center;
}
.cid-sJX9mOhkay .navbar-buttons .btn.btn-sm {
  padding: 6px 24px !important;
  min-width: 140px;
  line-height: 1.5;
}
.cid-sJX9mOhkay button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-sJX9mOhkay button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-sJX9mOhkay button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-sJX9mOhkay button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-sJX9mOhkay button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-sJX9mOhkay button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-sJX9mOhkay nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sJX9mOhkay nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-sJX9mOhkay nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-sJX9mOhkay nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sJX9mOhkay .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-sJX9mOhkay a.nav-link {
  justify-content: center;
  display: flex;
  align-items: center;
}
.cid-sJX9mOhkay .mbr-iconfont {
  font-size: 1rem;
  color: #ffffff;
  display: inline-flex;
}
.cid-sJX9mOhkay .soc-item {
  margin: .5rem .3rem;
}
.cid-sJX9mOhkay .icons-menu {
  flex-wrap: wrap;
  display: flex;
  justify-content: center;
  padding-right: 1rem;
  text-align: center;
  align-items: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sJX9mOhkay .navbar {
    height: 77px;
  }
  .cid-sJX9mOhkay .navbar.opened {
    height: auto;
  }
  .cid-sJX9mOhkay .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sJX9mPPEyA {
  padding-top: 135px;
  padding-bottom: 135px;
  background-image: url("../../../assets/images/spitz-alemao-yoshi-1280x720.jpeg");
}
.cid-sJX9mPPEyA .card {
  border-radius: 0;
  margin: auto 0;
}
.cid-sJX9mPPEyA .card .wrapper .mbr-section-title {
  color: #ffffff;
  font-weight: 700;
}
.cid-sJX9mPPEyA .card .wrapper .mbr-section-title span:nth-child(2) {
  line-height: 1;
  color: #ffffff;
  padding: 0 6px 1px 5px;
  transform: skew(-14deg);
  background: #25970f;
  display: inline-block;
  font-weight: 500;
  letter-spacing: 0;
  position: relative;
}
.cid-sJX9mPPEyA .card .wrapper .mbr-section-subtitle {
  color: #ffffff;
}
.cid-sJX9mPPEyA .card .wrapper .mbr-section-subtitle.display-7 {
  letter-spacing: 0;
}
.cid-sJX9mPPEyA .card .wrapper .mbr-text {
  color: #ffffff;
  font-weight: 300;
}
.cid-sJX9mPPEyA .card .wrapper .buttons-wrap .mbr-section-btn .btn.display-4 {
  padding: 7px 39px;
  line-height: 1.5;
  letter-spacing: 0;
}
.cid-sJX9mPPEyA .card .wrapper .buttons-wrap .mbr-section-btn .btn.btn-success-outline {
  color: #ffffff;
}
.cid-sJX9mPPEyA .card .wrapper .buttons-wrap .mbr-section-btn .btn.btn-success-outline:hover {
  color: #000000;
}
.cid-sJX9mPPEyA .card .wrapper .mbr-section-title,
.cid-sJX9mPPEyA .mbr-section-btn {
  color: #ffffff;
}
.cid-sJX9mQqilF {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-sJX9mQqilF .row {
  flex-direction: row-reverse;
}
.cid-sJX9mQqilF .img-wrap img {
  width: 100%;
}
.cid-sJX9mQqilF .card {
  border-radius: 0;
  margin: auto 0;
}
.cid-sJX9mQqilF .card .wrapper {
  overflow: hidden;
}
.cid-sJX9mQqilF .card .wrapper .mbr-section-title {
  color: #06182d;
}
.cid-sJX9mQqilF .card .wrapper .mbr-section-title span {
  line-height: 1;
  color: #ffffff;
  padding: 0 6px 1px 5px;
  transform: skew(-14deg);
  background: #000000;
  background: linear-gradient(#000000 0%, #333333 69%, #333333 100%);
  display: inline-block;
  font-weight: 500;
  letter-spacing: 0;
  position: relative;
}
.cid-sJX9mQqilF .card .wrapper .mbr-section-subtitle {
  color: #06182d;
}
.cid-sJX9mQqilF .card .wrapper .mbr-section-subtitle.display-7 {
  letter-spacing: 0;
}
.cid-sJX9mQqilF .card .wrapper .mbr-text {
  color: #f4eddd;
  font-weight: 300;
}
.cid-sJX9mQqilF .card .wrapper .sign-wrap {
  text-align: center;
  overflow: hidden;
  position: relative;
}
.cid-sJX9mQqilF .card .wrapper .sign-wrap::before {
  right: 65.8%;
  height: 2px;
  transform: translateY(-50%);
  width: 250px;
  top: 50%;
  position: absolute;
  display: inline-block;
  content: "";
  background-color: #dfe3e8;
}
.cid-sJX9mQqilF .card .wrapper .sign-wrap img {
  width: 140px;
}
.cid-sJX9mQqilF .card .wrapper .sign-wrap::after {
  left: 65.9%;
  height: 2px;
  transform: translateY(-50%);
  width: 250px;
  top: 50%;
  position: absolute;
  display: inline-block;
  content: "";
  background-color: #dfe3e8;
}
.cid-sJX9mQqilF .card .wrapper .mbr-section-title {
  text-align: left;
  color: #333333;
}
.cid-sJX9mQqilF .card .wrapper .mbr-text {
  color: #000000;
}
.cid-sJX9mQZFOO {
  padding-top: 90px;
  padding-bottom: 90px;
  position: relative;
  background-color: #f3f3f3;
}
.cid-sJX9mQZFOO p {
  color: #767676;
  padding: 0;
  letter-spacing: 0px;
}
.cid-sJX9mQZFOO .panel-title {
  border-bottom: 2px solid #ffffff;
  display: flex!important;
  justify-content: space-between;
  align-items: center;
  padding-right: 2rem;
}
.cid-sJX9mQZFOO .collapsed {
  border: none;
}
.cid-sJX9mQZFOO .collapsed span {
  transform: rotate(0deg);
}
.cid-sJX9mQZFOO span {
  font-size: 1.4rem;
  transition: all 0.3s;
  transform: rotate(45deg);
  background: linear-gradient(to left, #333333, #999999);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 900;
}
.cid-sJX9mQZFOO .panel-body {
  padding-top: 0.5rem;
}
.cid-sJX9mQZFOO .card {
  border-radius: 0px;
  margin-bottom: -1px;
}
.cid-sJX9mQZFOO .card .card-header {
  border-radius: 0px;
  margin: 0.5rem 0;
  border: 0px;
  background: #25970f;
  padding: 0;
}
.cid-sJX9mQZFOO .card .card-header a.panel-title {
  margin-bottom: 0;
  margin-top: -1px;
  font-style: normal;
  text-decoration: none !important;
  line-height: normal;
}
.cid-sJX9mQZFOO .card .card-header a.panel-title:focus {
  text-decoration: none !important;
}
.cid-sJX9mQZFOO .card .card-header a.panel-title h4 {
  padding: 1.3rem 2rem;
  margin-bottom: 0;
}
.cid-sJX9mQZFOO .card .card-header a.panel-title h4 .sign {
  padding-right: 1rem;
}
.cid-sJX9mQZFOO .panel-text {
  color: #767676;
}
.cid-sJX9mQZFOO H4 {
  color: #ffffff;
}
.cid-sJX9mQZFOO H2 {
  color: #000000;
}
.cid-sJX9mQZFOO .mbr-section-text {
  color: #999999;
}
.cid-sJX9mRI0Wb {
  padding-top: 60px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sJX9mRI0Wb img {
  width: 100%;
  border-radius: 50px;
  margin-bottom: 20px;
  max-height: ;
}
.cid-sJX9mRI0Wb .card {
  margin-bottom: 130px !important;
}
.cid-sJX9mRI0Wb .card .img-wrapper {
  overflow: hidden;
}
.cid-sJX9mRI0Wb .card:hover {
  cursor: pointer;
}
.cid-sJX9mRI0Wb .card:hover img {
  transform: scale(1.05);
}
.cid-sJX9mRI0Wb .card:hover .img-wrapper {
  box-shadow: 0 30px 30px -20px rgba(50, 50, 50, 0.3);
}
@media (max-width: 1200px) {
  .cid-sJX9mRI0Wb .card {
    margin-bottom: 50px !important;
  }
}
.cid-sJX9mRI0Wb .card .card-wrapper {
  text-align: left;
}
.cid-sJX9mRI0Wb .card .card-wrapper .mbr-iconfont {
  font-size: 41px;
  color: #ff513c;
  display: block;
  justify-content: center;
  align-items: center;
  transition: all 0.3s ease-in-out;
  padding-bottom: 14px;
  margin-right: 14px;
}
.cid-sJX9mRI0Wb .card .card-wrapper .card-box .card-title {
  cursor: pointer;
  color: #06182d;
}
.cid-sJX9mRI0Wb .card .card-wrapper .card-box .card-title.display-7 {
  line-height: 1.2;
}
.cid-sJX9mRI0Wb .card .card-wrapper .card-box .card-text {
  color: #f4eddd;
}
@media (min-width: 1400px) {
  .cid-sJX9mRI0Wb .card.left-box {
    right: 105px !important;
  }
  .cid-sJX9mRI0Wb .card.right-box {
    left: 97px !important;
  }
}
.cid-sJX9mRI0Wb .mbr-section-title {
  color: #06182d;
}
.cid-sJX9mRI0Wb .mbr-section-title span {
  line-height: 1;
  color: #ffffff;
  padding: 0 6px 1px 5px;
  transform: skew(-14deg);
  background: #25970f;
  display: inline-block;
  font-weight: 500;
  letter-spacing: 0;
  position: relative;
}
.cid-sJX9mRI0Wb .mbr-section-subtitle {
  color: #06182d;
}
.cid-sJX9mRI0Wb .mbr-section-subtitle.display-7 {
  letter-spacing: 0;
}
.cid-sJX9mRI0Wb .mbr-section-text {
  color: #999999;
}
.cid-tluv6nBrNH {
  padding-top: 75px;
  padding-bottom: 75px;
  background-color: #f3f3f3;
}
.cid-tluv6nBrNH .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.8;
}
.cid-tluv6nBrNH input,
.cid-tluv6nBrNH textarea {
  font-size: 14px;
}
.cid-tluv6nBrNH input {
  padding: 1.5rem 1.8rem !important;
  border-radius: 50px;
}
.cid-tluv6nBrNH textarea {
  padding: 1rem 1.8rem !important;
  border-radius: 30px;
  min-height: 160px !important;
}
.cid-tluv6nBrNH .form-group {
  margin-bottom: 1.3rem;
}
.cid-tluv6nBrNH .block-title {
  margin-bottom: 0.7rem;
}
.cid-tluv6nBrNH .form-control:hover,
.cid-tluv6nBrNH .form-control:focus {
  color: #000000 !important;
}
.cid-tluv6nBrNH .mbr-section-subtitle {
  font-weight: 700;
}
.cid-tluv6nBrNH img {
  width: 90%;
  border-radius: 8px;
}
.cid-tluv6nBrNH .btn {
  border-radius: 30px;
}
.cid-tluv6nBrNH .form-control,
.cid-tluv6nBrNH .field-input {
  padding: 0.5rem;
  background-color: #f3f3f3;
  border-color: #181818;
  color: #000000;
  transition: 0.4s;
  box-shadow: none;
  outline: none;
}
.cid-tluv6nBrNH .form-control:hover,
.cid-tluv6nBrNH .field-input:hover {
  background-color: #f3f3f3;
  border-color: #181818 !important;
  color: #000000;
  box-shadow: none;
  outline: none;
}
.cid-tluv6nBrNH .form-control:focus,
.cid-tluv6nBrNH .field-input:focus {
  background-color: #ffffff;
  border-color: #181818 !important;
  color: #000000;
  box-shadow: none;
  outline: none;
}
.cid-tluv6nBrNH input::-webkit-input-placeholder,
.cid-tluv6nBrNH textarea::-webkit-input-placeholder {
  color: #000000;
}
.cid-tluv6nBrNH input:-moz-placeholder,
.cid-tluv6nBrNH textarea:-moz-placeholder {
  color: #000000;
}
.cid-tluv6nBrNH .jq-selectbox li,
.cid-tluv6nBrNH .jq-selectbox li {
  background-color: #f3f3f3;
  color: #000000;
}
.cid-tluv6nBrNH .jq-selectbox li:hover,
.cid-tluv6nBrNH .jq-selectbox li.selected {
  background-color: #f3f3f3;
  color: #000000;
}
.cid-tluv6nBrNH .jq-selectbox:hover .jq-selectbox__trigger-arrow {
  border-top-color: #f3f3f3;
}
.cid-tluv6nBrNH .jq-selectbox .jq-selectbox__trigger-arrow {
  border-top-color: #f3f3f3;
}
@media (max-width: 992px) {
  .cid-tluv6nBrNH img {
    width: 100%;
  }
  .cid-tluv6nBrNH .google-map {
    margin-bottom: 2rem;
  }
}
.cid-tluv6nBrNH .google-map {
  height: 100%;
  min-height: 30rem;
  position: relative;
  filter: grayscale(1);
  padding-right: 0.5rem;
}
.cid-tluv6nBrNH .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-tluv6nBrNH .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-tluv6nBrNH .google-map[data-state] {
  background: #e9e5dc;
}
.cid-tluv6nBrNH .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
@media (max-width: 576px) {
  .cid-tluv6nBrNH .col-auto {
    width: 100%;
    text-align: center;
  }
}
@media (max-width: 767px) {
  .cid-tluv6nBrNH .mbr-form {
    margin-top: 2rem;
  }
  .cid-tluv6nBrNH .btn {
    width: 100%;
  }
}
@media (min-width: 776px) and (max-width: 992px) {
  .cid-tluv6nBrNH .mbr-form {
    margin-top: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tluv6nBrNH .form-row > [class*="col-"] {
    padding: 0 1rem;
  }
}
.cid-sJX9mU7aFO {
  padding-top: 45px;
  padding-bottom: 30px;
  background-color: #25970f;
}
.cid-sJX9mU7aFO .copyright {
  display: flex;
}
@media (max-width: 992px) {
  .cid-sJX9mU7aFO .copyright {
    margin-bottom: 1rem;
  }
}
.cid-sJX9mU7aFO .text-wrap {
  transition: all 0.3s;
  padding: 23px;
  bottom: 0;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: flex-end;
  width: 100%;
  overflow: hidden;
  position: relative;
}
.cid-sJX9mU7aFO .text-wrap .icons-wrap .icon-wrapper {
  background: #ffffff;
  display: flex;
  width: 31px;
  height: 31px;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  border: 2px solid #ffffff;
  transition: all 0.3s;
  z-index: 4;
  cursor: pointer;
  margin: 0 0.2rem;
}
.cid-sJX9mU7aFO .text-wrap .icons-wrap .icon-wrapper:hover {
  background: #25970f;
  border-color: #25970f;
}
.cid-sJX9mU7aFO .text-wrap .icons-wrap .icon-wrapper:hover .link-icon {
  color: #ffffde;
}
.cid-sJX9mU7aFO .text-wrap .icons-wrap .icon-wrapper .link-icon {
  display: inline-block;
  color: #ffffde;
  transition: all 0.3s;
  font-size: 14px;
  justify-content: center;
}
.cid-sJX9mU7aFO .text-wrap .icons-wrap::before {
  height: 2px;
  width: 100%;
  top: 50%;
  right: 58%;
  position: absolute;
  display: inline-block;
  content: "";
  background-color: #ffffff;
}
@media (max-width: 992px) {
  .cid-sJX9mU7aFO .text-wrap .icons-wrap::before {
    display: none;
  }
}
.cid-sJX9mU7aFO .text-wrap .icons-wrap::after {
  height: 2px;
  width: 100%;
  top: 50%;
  left: 58%;
  position: absolute;
  display: inline-block;
  content: "";
  background-color: #ffffff;
}
@media (max-width: 992px) {
  .cid-sJX9mU7aFO .text-wrap .icons-wrap::after {
    display: none;
  }
}
.cid-sJX9qDrqj9 .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 16px;
  position: absolute;
  right: 1rem;
  top: 30%;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sJX9qDrqj9 .nav-item,
.cid-sJX9qDrqj9 .nav-link,
.cid-sJX9qDrqj9 .navbar-caption {
  font-weight: normal;
}
.cid-sJX9qDrqj9 .nav-item:focus,
.cid-sJX9qDrqj9 .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-sJX9qDrqj9 .dropdown-item:hover:before {
    transform: scale(1, 1);
  }
}
.cid-sJX9qDrqj9 .dropdown .dropdown-menu .dropdown-item {
  display: flex;
  align-items: center;
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sJX9qDrqj9 .dropdown .dropdown-menu .dropdown-item::after {
  right: 1rem;
}
.cid-sJX9qDrqj9 .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  transform: scale(0, 1);
}
.cid-sJX9qDrqj9 .dropdown .dropdown-menu .dropdown-item.dropdown-toggle:before {
  display: none;
}
.cid-sJX9qDrqj9 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-sJX9qDrqj9 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sJX9qDrqj9 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sJX9qDrqj9 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sJX9qDrqj9 .collapsed .icons-menu {
  padding-left: 16px;
}
.cid-sJX9qDrqj9 .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #f4eddd;
}
.cid-sJX9qDrqj9 .navbar.opened {
  transition: all .3s;
  background: #f4eddd !important;
}
.cid-sJX9qDrqj9 .navbar .dropdown-item {
  padding: .235rem 2.5rem .235rem 1.5rem;
}
.cid-sJX9qDrqj9 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sJX9qDrqj9 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sJX9qDrqj9 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sJX9qDrqj9 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(100vh - 5.2rem - 1rem);
  }
}
.cid-sJX9qDrqj9 .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-sJX9qDrqj9 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sJX9qDrqj9 .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-sJX9qDrqj9 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sJX9qDrqj9 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
  justify-content: center;
}
.cid-sJX9qDrqj9 .navbar.collapsed .icons-menu {
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-sJX9qDrqj9 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sJX9qDrqj9 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sJX9qDrqj9 .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-sJX9qDrqj9 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sJX9qDrqj9 .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-sJX9qDrqj9 .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-sJX9qDrqj9 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sJX9qDrqj9 .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
    justify-content: center;
  }
  .cid-sJX9qDrqj9 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-sJX9qDrqj9 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sJX9qDrqj9 .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-sJX9qDrqj9 .navbar.navbar-short {
  background: #f4eddd !important;
  min-height: 60px;
}
.cid-sJX9qDrqj9 .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-sJX9qDrqj9 .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-sJX9qDrqj9 .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sJX9qDrqj9 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sJX9qDrqj9 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sJX9qDrqj9 .dropdown-item.active,
.cid-sJX9qDrqj9 .dropdown-item:active {
  background-color: transparent;
}
.cid-sJX9qDrqj9 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sJX9qDrqj9 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sJX9qDrqj9 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #f4eddd;
}
.cid-sJX9qDrqj9 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sJX9qDrqj9 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sJX9qDrqj9 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sJX9qDrqj9 .navbar-buttons {
  text-align: center;
}
.cid-sJX9qDrqj9 .navbar-buttons .btn.btn-sm {
  padding: 6px 24px !important;
  min-width: 140px;
  line-height: 1.5;
}
.cid-sJX9qDrqj9 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-sJX9qDrqj9 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-sJX9qDrqj9 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-sJX9qDrqj9 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-sJX9qDrqj9 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-sJX9qDrqj9 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-sJX9qDrqj9 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sJX9qDrqj9 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-sJX9qDrqj9 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-sJX9qDrqj9 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sJX9qDrqj9 .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-sJX9qDrqj9 a.nav-link {
  justify-content: center;
  display: flex;
  align-items: center;
}
.cid-sJX9qDrqj9 .mbr-iconfont {
  font-size: 1rem;
  color: #ffffff;
  display: inline-flex;
}
.cid-sJX9qDrqj9 .soc-item {
  margin: .5rem .3rem;
}
.cid-sJX9qDrqj9 .icons-menu {
  flex-wrap: wrap;
  display: flex;
  justify-content: center;
  padding-right: 1rem;
  text-align: center;
  align-items: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sJX9qDrqj9 .navbar {
    height: 77px;
  }
  .cid-sJX9qDrqj9 .navbar.opened {
    height: auto;
  }
  .cid-sJX9qDrqj9 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sJX9qEYLTk {
  padding-top: 135px;
  padding-bottom: 135px;
  background-image: url("../../../assets/images/mbr-1920x1543.jpg");
}
.cid-sJX9qEYLTk .card {
  border-radius: 0;
  margin: auto 0;
}
.cid-sJX9qEYLTk .card .wrapper .mbr-section-title {
  color: #ffffff;
  font-weight: 700;
}
.cid-sJX9qEYLTk .card .wrapper .mbr-section-title span:nth-child(2) {
  line-height: 1;
  color: #ffffff;
  padding: 0 6px 1px 5px;
  transform: skew(-14deg);
  background: #25970f;
  display: inline-block;
  font-weight: 500;
  letter-spacing: 0;
  position: relative;
}
.cid-sJX9qEYLTk .card .wrapper .mbr-section-subtitle {
  color: #ffffff;
}
.cid-sJX9qEYLTk .card .wrapper .mbr-section-subtitle.display-7 {
  letter-spacing: 0;
}
.cid-sJX9qEYLTk .card .wrapper .mbr-text {
  color: #ffffff;
  font-weight: 300;
}
.cid-sJX9qEYLTk .card .wrapper .buttons-wrap .mbr-section-btn .btn.display-4 {
  padding: 7px 39px;
  line-height: 1.5;
  letter-spacing: 0;
}
.cid-sJX9qEYLTk .card .wrapper .buttons-wrap .mbr-section-btn .btn.btn-success-outline {
  color: #ffffff;
}
.cid-sJX9qEYLTk .card .wrapper .buttons-wrap .mbr-section-btn .btn.btn-success-outline:hover {
  color: #000000;
}
.cid-sJX9qEYLTk .card .wrapper .mbr-section-title,
.cid-sJX9qEYLTk .mbr-section-btn {
  color: #ffffff;
}
.cid-sJX9qFpnML {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-sJX9qFpnML .row {
  flex-direction: row-reverse;
}
.cid-sJX9qFpnML .img-wrap img {
  width: 100%;
}
.cid-sJX9qFpnML .card {
  border-radius: 0;
  margin: auto 0;
}
.cid-sJX9qFpnML .card .wrapper {
  overflow: hidden;
}
.cid-sJX9qFpnML .card .wrapper .mbr-section-title {
  color: #06182d;
}
.cid-sJX9qFpnML .card .wrapper .mbr-section-title span {
  line-height: 1;
  color: #ffffff;
  padding: 0 6px 1px 5px;
  transform: skew(-14deg);
  background: #000000;
  background: linear-gradient(#000000 0%, #333333 69%, #333333 100%);
  display: inline-block;
  font-weight: 500;
  letter-spacing: 0;
  position: relative;
}
.cid-sJX9qFpnML .card .wrapper .mbr-section-subtitle {
  color: #06182d;
}
.cid-sJX9qFpnML .card .wrapper .mbr-section-subtitle.display-7 {
  letter-spacing: 0;
}
.cid-sJX9qFpnML .card .wrapper .mbr-text {
  color: #f4eddd;
  font-weight: 300;
}
.cid-sJX9qFpnML .card .wrapper .sign-wrap {
  text-align: center;
  overflow: hidden;
  position: relative;
}
.cid-sJX9qFpnML .card .wrapper .sign-wrap::before {
  right: 65.8%;
  height: 2px;
  transform: translateY(-50%);
  width: 250px;
  top: 50%;
  position: absolute;
  display: inline-block;
  content: "";
  background-color: #dfe3e8;
}
.cid-sJX9qFpnML .card .wrapper .sign-wrap img {
  width: 140px;
}
.cid-sJX9qFpnML .card .wrapper .sign-wrap::after {
  left: 65.9%;
  height: 2px;
  transform: translateY(-50%);
  width: 250px;
  top: 50%;
  position: absolute;
  display: inline-block;
  content: "";
  background-color: #dfe3e8;
}
.cid-sJX9qFpnML .card .wrapper .mbr-section-title {
  text-align: left;
  color: #333333;
}
.cid-sJX9qFpnML .card .wrapper .mbr-text {
  color: #000000;
}
.cid-sJX9qFSZfN {
  padding-top: 90px;
  padding-bottom: 90px;
  position: relative;
  background-color: #f3f3f3;
}
.cid-sJX9qFSZfN p {
  color: #767676;
  padding: 0;
  letter-spacing: 0px;
}
.cid-sJX9qFSZfN .panel-title {
  border-bottom: 2px solid #ffffff;
  display: flex!important;
  justify-content: space-between;
  align-items: center;
  padding-right: 2rem;
}
.cid-sJX9qFSZfN .collapsed {
  border: none;
}
.cid-sJX9qFSZfN .collapsed span {
  transform: rotate(0deg);
}
.cid-sJX9qFSZfN span {
  font-size: 1.4rem;
  transition: all 0.3s;
  transform: rotate(45deg);
  background: linear-gradient(to left, #333333, #999999);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 900;
}
.cid-sJX9qFSZfN .panel-body {
  padding-top: 0.5rem;
}
.cid-sJX9qFSZfN .card {
  border-radius: 0px;
  margin-bottom: -1px;
}
.cid-sJX9qFSZfN .card .card-header {
  border-radius: 0px;
  margin: 0.5rem 0;
  border: 0px;
  background: #25970f;
  padding: 0;
}
.cid-sJX9qFSZfN .card .card-header a.panel-title {
  margin-bottom: 0;
  margin-top: -1px;
  font-style: normal;
  text-decoration: none !important;
  line-height: normal;
}
.cid-sJX9qFSZfN .card .card-header a.panel-title:focus {
  text-decoration: none !important;
}
.cid-sJX9qFSZfN .card .card-header a.panel-title h4 {
  padding: 1.3rem 2rem;
  margin-bottom: 0;
}
.cid-sJX9qFSZfN .card .card-header a.panel-title h4 .sign {
  padding-right: 1rem;
}
.cid-sJX9qFSZfN .panel-text {
  color: #767676;
}
.cid-sJX9qFSZfN H4 {
  color: #ffffff;
}
.cid-sJX9qFSZfN H2 {
  color: #000000;
}
.cid-sJX9qFSZfN .mbr-section-text {
  color: #999999;
}
.cid-sJX9qGz807 {
  padding-top: 60px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sJX9qGz807 img {
  width: 100%;
  border-radius: 50px;
  margin-bottom: 20px;
  max-height: ;
}
.cid-sJX9qGz807 .card {
  margin-bottom: 130px !important;
}
.cid-sJX9qGz807 .card .img-wrapper {
  overflow: hidden;
}
.cid-sJX9qGz807 .card:hover {
  cursor: pointer;
}
.cid-sJX9qGz807 .card:hover img {
  transform: scale(1.05);
}
.cid-sJX9qGz807 .card:hover .img-wrapper {
  box-shadow: 0 30px 30px -20px rgba(50, 50, 50, 0.3);
}
@media (max-width: 1200px) {
  .cid-sJX9qGz807 .card {
    margin-bottom: 50px !important;
  }
}
.cid-sJX9qGz807 .card .card-wrapper {
  text-align: left;
}
.cid-sJX9qGz807 .card .card-wrapper .mbr-iconfont {
  font-size: 41px;
  color: #ff513c;
  display: block;
  justify-content: center;
  align-items: center;
  transition: all 0.3s ease-in-out;
  padding-bottom: 14px;
  margin-right: 14px;
}
.cid-sJX9qGz807 .card .card-wrapper .card-box .card-title {
  cursor: pointer;
  color: #06182d;
}
.cid-sJX9qGz807 .card .card-wrapper .card-box .card-title.display-7 {
  line-height: 1.2;
}
.cid-sJX9qGz807 .card .card-wrapper .card-box .card-text {
  color: #f4eddd;
}
@media (min-width: 1400px) {
  .cid-sJX9qGz807 .card.left-box {
    right: 105px !important;
  }
  .cid-sJX9qGz807 .card.right-box {
    left: 97px !important;
  }
}
.cid-sJX9qGz807 .mbr-section-title {
  color: #06182d;
}
.cid-sJX9qGz807 .mbr-section-title span {
  line-height: 1;
  color: #ffffff;
  padding: 0 6px 1px 5px;
  transform: skew(-14deg);
  background: #25970f;
  display: inline-block;
  font-weight: 500;
  letter-spacing: 0;
  position: relative;
}
.cid-sJX9qGz807 .mbr-section-subtitle {
  color: #06182d;
}
.cid-sJX9qGz807 .mbr-section-subtitle.display-7 {
  letter-spacing: 0;
}
.cid-sJX9qGz807 .mbr-section-text {
  color: #999999;
}
.cid-tluva0evnR {
  padding-top: 75px;
  padding-bottom: 75px;
  background-color: #f3f3f3;
}
.cid-tluva0evnR .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.8;
}
.cid-tluva0evnR input,
.cid-tluva0evnR textarea {
  font-size: 14px;
}
.cid-tluva0evnR input {
  padding: 1.5rem 1.8rem !important;
  border-radius: 50px;
}
.cid-tluva0evnR textarea {
  padding: 1rem 1.8rem !important;
  border-radius: 30px;
  min-height: 160px !important;
}
.cid-tluva0evnR .form-group {
  margin-bottom: 1.3rem;
}
.cid-tluva0evnR .block-title {
  margin-bottom: 0.7rem;
}
.cid-tluva0evnR .form-control:hover,
.cid-tluva0evnR .form-control:focus {
  color: #000000 !important;
}
.cid-tluva0evnR .mbr-section-subtitle {
  font-weight: 700;
}
.cid-tluva0evnR img {
  width: 90%;
  border-radius: 8px;
}
.cid-tluva0evnR .btn {
  border-radius: 30px;
}
.cid-tluva0evnR .form-control,
.cid-tluva0evnR .field-input {
  padding: 0.5rem;
  background-color: #f3f3f3;
  border-color: #181818;
  color: #000000;
  transition: 0.4s;
  box-shadow: none;
  outline: none;
}
.cid-tluva0evnR .form-control:hover,
.cid-tluva0evnR .field-input:hover {
  background-color: #f3f3f3;
  border-color: #181818 !important;
  color: #000000;
  box-shadow: none;
  outline: none;
}
.cid-tluva0evnR .form-control:focus,
.cid-tluva0evnR .field-input:focus {
  background-color: #ffffff;
  border-color: #181818 !important;
  color: #000000;
  box-shadow: none;
  outline: none;
}
.cid-tluva0evnR input::-webkit-input-placeholder,
.cid-tluva0evnR textarea::-webkit-input-placeholder {
  color: #000000;
}
.cid-tluva0evnR input:-moz-placeholder,
.cid-tluva0evnR textarea:-moz-placeholder {
  color: #000000;
}
.cid-tluva0evnR .jq-selectbox li,
.cid-tluva0evnR .jq-selectbox li {
  background-color: #f3f3f3;
  color: #000000;
}
.cid-tluva0evnR .jq-selectbox li:hover,
.cid-tluva0evnR .jq-selectbox li.selected {
  background-color: #f3f3f3;
  color: #000000;
}
.cid-tluva0evnR .jq-selectbox:hover .jq-selectbox__trigger-arrow {
  border-top-color: #f3f3f3;
}
.cid-tluva0evnR .jq-selectbox .jq-selectbox__trigger-arrow {
  border-top-color: #f3f3f3;
}
@media (max-width: 992px) {
  .cid-tluva0evnR img {
    width: 100%;
  }
  .cid-tluva0evnR .google-map {
    margin-bottom: 2rem;
  }
}
.cid-tluva0evnR .google-map {
  height: 100%;
  min-height: 30rem;
  position: relative;
  filter: grayscale(1);
  padding-right: 0.5rem;
}
.cid-tluva0evnR .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-tluva0evnR .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-tluva0evnR .google-map[data-state] {
  background: #e9e5dc;
}
.cid-tluva0evnR .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
@media (max-width: 576px) {
  .cid-tluva0evnR .col-auto {
    width: 100%;
    text-align: center;
  }
}
@media (max-width: 767px) {
  .cid-tluva0evnR .mbr-form {
    margin-top: 2rem;
  }
  .cid-tluva0evnR .btn {
    width: 100%;
  }
}
@media (min-width: 776px) and (max-width: 992px) {
  .cid-tluva0evnR .mbr-form {
    margin-top: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tluva0evnR .form-row > [class*="col-"] {
    padding: 0 1rem;
  }
}
.cid-sJX9qIYCYZ {
  padding-top: 45px;
  padding-bottom: 30px;
  background-color: #25970f;
}
.cid-sJX9qIYCYZ .copyright {
  display: flex;
}
@media (max-width: 992px) {
  .cid-sJX9qIYCYZ .copyright {
    margin-bottom: 1rem;
  }
}
.cid-sJX9qIYCYZ .text-wrap {
  transition: all 0.3s;
  padding: 23px;
  bottom: 0;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: flex-end;
  width: 100%;
  overflow: hidden;
  position: relative;
}
.cid-sJX9qIYCYZ .text-wrap .icons-wrap .icon-wrapper {
  background: #ffffff;
  display: flex;
  width: 31px;
  height: 31px;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  border: 2px solid #ffffff;
  transition: all 0.3s;
  z-index: 4;
  cursor: pointer;
  margin: 0 0.2rem;
}
.cid-sJX9qIYCYZ .text-wrap .icons-wrap .icon-wrapper:hover {
  background: #25970f;
  border-color: #25970f;
}
.cid-sJX9qIYCYZ .text-wrap .icons-wrap .icon-wrapper:hover .link-icon {
  color: #ffffde;
}
.cid-sJX9qIYCYZ .text-wrap .icons-wrap .icon-wrapper .link-icon {
  display: inline-block;
  color: #ffffde;
  transition: all 0.3s;
  font-size: 14px;
  justify-content: center;
}
.cid-sJX9qIYCYZ .text-wrap .icons-wrap::before {
  height: 2px;
  width: 100%;
  top: 50%;
  right: 58%;
  position: absolute;
  display: inline-block;
  content: "";
  background-color: #ffffff;
}
@media (max-width: 992px) {
  .cid-sJX9qIYCYZ .text-wrap .icons-wrap::before {
    display: none;
  }
}
.cid-sJX9qIYCYZ .text-wrap .icons-wrap::after {
  height: 2px;
  width: 100%;
  top: 50%;
  left: 58%;
  position: absolute;
  display: inline-block;
  content: "";
  background-color: #ffffff;
}
@media (max-width: 992px) {
  .cid-sJX9qIYCYZ .text-wrap .icons-wrap::after {
    display: none;
  }
}
.cid-sJX9uVutiX .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 16px;
  position: absolute;
  right: 1rem;
  top: 30%;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sJX9uVutiX .nav-item,
.cid-sJX9uVutiX .nav-link,
.cid-sJX9uVutiX .navbar-caption {
  font-weight: normal;
}
.cid-sJX9uVutiX .nav-item:focus,
.cid-sJX9uVutiX .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-sJX9uVutiX .dropdown-item:hover:before {
    transform: scale(1, 1);
  }
}
.cid-sJX9uVutiX .dropdown .dropdown-menu .dropdown-item {
  display: flex;
  align-items: center;
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sJX9uVutiX .dropdown .dropdown-menu .dropdown-item::after {
  right: 1rem;
}
.cid-sJX9uVutiX .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  transform: scale(0, 1);
}
.cid-sJX9uVutiX .dropdown .dropdown-menu .dropdown-item.dropdown-toggle:before {
  display: none;
}
.cid-sJX9uVutiX .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-sJX9uVutiX .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sJX9uVutiX .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sJX9uVutiX .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sJX9uVutiX .collapsed .icons-menu {
  padding-left: 16px;
}
.cid-sJX9uVutiX .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #f4eddd;
}
.cid-sJX9uVutiX .navbar.opened {
  transition: all .3s;
  background: #f4eddd !important;
}
.cid-sJX9uVutiX .navbar .dropdown-item {
  padding: .235rem 2.5rem .235rem 1.5rem;
}
.cid-sJX9uVutiX .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sJX9uVutiX .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sJX9uVutiX .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sJX9uVutiX .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(100vh - 5.2rem - 1rem);
  }
}
.cid-sJX9uVutiX .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-sJX9uVutiX .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sJX9uVutiX .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-sJX9uVutiX .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sJX9uVutiX .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
  justify-content: center;
}
.cid-sJX9uVutiX .navbar.collapsed .icons-menu {
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-sJX9uVutiX .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sJX9uVutiX .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sJX9uVutiX .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-sJX9uVutiX .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sJX9uVutiX .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-sJX9uVutiX .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-sJX9uVutiX .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sJX9uVutiX .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
    justify-content: center;
  }
  .cid-sJX9uVutiX .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-sJX9uVutiX .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sJX9uVutiX .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-sJX9uVutiX .navbar.navbar-short {
  background: #f4eddd !important;
  min-height: 60px;
}
.cid-sJX9uVutiX .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-sJX9uVutiX .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-sJX9uVutiX .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sJX9uVutiX .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sJX9uVutiX .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sJX9uVutiX .dropdown-item.active,
.cid-sJX9uVutiX .dropdown-item:active {
  background-color: transparent;
}
.cid-sJX9uVutiX .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sJX9uVutiX .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sJX9uVutiX .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #f4eddd;
}
.cid-sJX9uVutiX .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sJX9uVutiX .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sJX9uVutiX ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sJX9uVutiX .navbar-buttons {
  text-align: center;
}
.cid-sJX9uVutiX .navbar-buttons .btn.btn-sm {
  padding: 6px 24px !important;
  min-width: 140px;
  line-height: 1.5;
}
.cid-sJX9uVutiX button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-sJX9uVutiX button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-sJX9uVutiX button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-sJX9uVutiX button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-sJX9uVutiX button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-sJX9uVutiX button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-sJX9uVutiX nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sJX9uVutiX nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-sJX9uVutiX nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-sJX9uVutiX nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sJX9uVutiX .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-sJX9uVutiX a.nav-link {
  justify-content: center;
  display: flex;
  align-items: center;
}
.cid-sJX9uVutiX .mbr-iconfont {
  font-size: 1rem;
  color: #ffffff;
  display: inline-flex;
}
.cid-sJX9uVutiX .soc-item {
  margin: .5rem .3rem;
}
.cid-sJX9uVutiX .icons-menu {
  flex-wrap: wrap;
  display: flex;
  justify-content: center;
  padding-right: 1rem;
  text-align: center;
  align-items: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sJX9uVutiX .navbar {
    height: 77px;
  }
  .cid-sJX9uVutiX .navbar.opened {
    height: auto;
  }
  .cid-sJX9uVutiX .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sJX9uWyeGY {
  padding-top: 135px;
  padding-bottom: 135px;
  background-image: url("../../../assets/images/mbr-15-1920x1280.jpg");
}
.cid-sJX9uWyeGY .card {
  border-radius: 0;
  margin: auto 0;
}
.cid-sJX9uWyeGY .card .wrapper .mbr-section-title {
  color: #ffffff;
  font-weight: 700;
}
.cid-sJX9uWyeGY .card .wrapper .mbr-section-title span:nth-child(2) {
  line-height: 1;
  color: #ffffff;
  padding: 0 6px 1px 5px;
  transform: skew(-14deg);
  background: #25970f;
  display: inline-block;
  font-weight: 500;
  letter-spacing: 0;
  position: relative;
}
.cid-sJX9uWyeGY .card .wrapper .mbr-section-subtitle {
  color: #ffffff;
}
.cid-sJX9uWyeGY .card .wrapper .mbr-section-subtitle.display-7 {
  letter-spacing: 0;
}
.cid-sJX9uWyeGY .card .wrapper .mbr-text {
  color: #ffffff;
  font-weight: 300;
}
.cid-sJX9uWyeGY .card .wrapper .buttons-wrap .mbr-section-btn .btn.display-4 {
  padding: 7px 39px;
  line-height: 1.5;
  letter-spacing: 0;
}
.cid-sJX9uWyeGY .card .wrapper .buttons-wrap .mbr-section-btn .btn.btn-success-outline {
  color: #ffffff;
}
.cid-sJX9uWyeGY .card .wrapper .buttons-wrap .mbr-section-btn .btn.btn-success-outline:hover {
  color: #000000;
}
.cid-sJX9uWyeGY .card .wrapper .mbr-section-title,
.cid-sJX9uWyeGY .mbr-section-btn {
  color: #ffffff;
}
.cid-sJX9uWWmKm {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-sJX9uWWmKm .row {
  flex-direction: row-reverse;
}
.cid-sJX9uWWmKm .img-wrap img {
  width: 100%;
}
.cid-sJX9uWWmKm .card {
  border-radius: 0;
  margin: auto 0;
}
.cid-sJX9uWWmKm .card .wrapper {
  overflow: hidden;
}
.cid-sJX9uWWmKm .card .wrapper .mbr-section-title {
  color: #06182d;
}
.cid-sJX9uWWmKm .card .wrapper .mbr-section-title span {
  line-height: 1;
  color: #ffffff;
  padding: 0 6px 1px 5px;
  transform: skew(-14deg);
  background: #000000;
  background: linear-gradient(#000000 0%, #333333 69%, #333333 100%);
  display: inline-block;
  font-weight: 500;
  letter-spacing: 0;
  position: relative;
}
.cid-sJX9uWWmKm .card .wrapper .mbr-section-subtitle {
  color: #06182d;
}
.cid-sJX9uWWmKm .card .wrapper .mbr-section-subtitle.display-7 {
  letter-spacing: 0;
}
.cid-sJX9uWWmKm .card .wrapper .mbr-text {
  color: #f4eddd;
  font-weight: 300;
}
.cid-sJX9uWWmKm .card .wrapper .sign-wrap {
  text-align: center;
  overflow: hidden;
  position: relative;
}
.cid-sJX9uWWmKm .card .wrapper .sign-wrap::before {
  right: 65.8%;
  height: 2px;
  transform: translateY(-50%);
  width: 250px;
  top: 50%;
  position: absolute;
  display: inline-block;
  content: "";
  background-color: #dfe3e8;
}
.cid-sJX9uWWmKm .card .wrapper .sign-wrap img {
  width: 140px;
}
.cid-sJX9uWWmKm .card .wrapper .sign-wrap::after {
  left: 65.9%;
  height: 2px;
  transform: translateY(-50%);
  width: 250px;
  top: 50%;
  position: absolute;
  display: inline-block;
  content: "";
  background-color: #dfe3e8;
}
.cid-sJX9uWWmKm .card .wrapper .mbr-section-title {
  text-align: left;
  color: #333333;
}
.cid-sJX9uWWmKm .card .wrapper .mbr-text {
  color: #000000;
}
.cid-sJX9uXl0EG {
  padding-top: 90px;
  padding-bottom: 90px;
  position: relative;
  background-color: #f3f3f3;
}
.cid-sJX9uXl0EG p {
  color: #767676;
  padding: 0;
  letter-spacing: 0px;
}
.cid-sJX9uXl0EG .panel-title {
  border-bottom: 2px solid #ffffff;
  display: flex!important;
  justify-content: space-between;
  align-items: center;
  padding-right: 2rem;
}
.cid-sJX9uXl0EG .collapsed {
  border: none;
}
.cid-sJX9uXl0EG .collapsed span {
  transform: rotate(0deg);
}
.cid-sJX9uXl0EG span {
  font-size: 1.4rem;
  transition: all 0.3s;
  transform: rotate(45deg);
  background: linear-gradient(to left, #333333, #999999);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 900;
}
.cid-sJX9uXl0EG .panel-body {
  padding-top: 0.5rem;
}
.cid-sJX9uXl0EG .card {
  border-radius: 0px;
  margin-bottom: -1px;
}
.cid-sJX9uXl0EG .card .card-header {
  border-radius: 0px;
  margin: 0.5rem 0;
  border: 0px;
  background: #25970f;
  padding: 0;
}
.cid-sJX9uXl0EG .card .card-header a.panel-title {
  margin-bottom: 0;
  margin-top: -1px;
  font-style: normal;
  text-decoration: none !important;
  line-height: normal;
}
.cid-sJX9uXl0EG .card .card-header a.panel-title:focus {
  text-decoration: none !important;
}
.cid-sJX9uXl0EG .card .card-header a.panel-title h4 {
  padding: 1.3rem 2rem;
  margin-bottom: 0;
}
.cid-sJX9uXl0EG .card .card-header a.panel-title h4 .sign {
  padding-right: 1rem;
}
.cid-sJX9uXl0EG .panel-text {
  color: #767676;
}
.cid-sJX9uXl0EG H4 {
  color: #ffffff;
}
.cid-sJX9uXl0EG H2 {
  color: #000000;
}
.cid-sJX9uXl0EG .mbr-section-text {
  color: #999999;
}
.cid-sJX9uXSN36 {
  padding-top: 60px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sJX9uXSN36 img {
  width: 100%;
  border-radius: 50px;
  margin-bottom: 20px;
  max-height: ;
}
.cid-sJX9uXSN36 .card {
  margin-bottom: 130px !important;
}
.cid-sJX9uXSN36 .card .img-wrapper {
  overflow: hidden;
}
.cid-sJX9uXSN36 .card:hover {
  cursor: pointer;
}
.cid-sJX9uXSN36 .card:hover img {
  transform: scale(1.05);
}
.cid-sJX9uXSN36 .card:hover .img-wrapper {
  box-shadow: 0 30px 30px -20px rgba(50, 50, 50, 0.3);
}
@media (max-width: 1200px) {
  .cid-sJX9uXSN36 .card {
    margin-bottom: 50px !important;
  }
}
.cid-sJX9uXSN36 .card .card-wrapper {
  text-align: left;
}
.cid-sJX9uXSN36 .card .card-wrapper .mbr-iconfont {
  font-size: 41px;
  color: #ff513c;
  display: block;
  justify-content: center;
  align-items: center;
  transition: all 0.3s ease-in-out;
  padding-bottom: 14px;
  margin-right: 14px;
}
.cid-sJX9uXSN36 .card .card-wrapper .card-box .card-title {
  cursor: pointer;
  color: #06182d;
}
.cid-sJX9uXSN36 .card .card-wrapper .card-box .card-title.display-7 {
  line-height: 1.2;
}
.cid-sJX9uXSN36 .card .card-wrapper .card-box .card-text {
  color: #f4eddd;
}
@media (min-width: 1400px) {
  .cid-sJX9uXSN36 .card.left-box {
    right: 105px !important;
  }
  .cid-sJX9uXSN36 .card.right-box {
    left: 97px !important;
  }
}
.cid-sJX9uXSN36 .mbr-section-title {
  color: #06182d;
}
.cid-sJX9uXSN36 .mbr-section-title span {
  line-height: 1;
  color: #ffffff;
  padding: 0 6px 1px 5px;
  transform: skew(-14deg);
  background: #25970f;
  display: inline-block;
  font-weight: 500;
  letter-spacing: 0;
  position: relative;
}
.cid-sJX9uXSN36 .mbr-section-subtitle {
  color: #06182d;
}
.cid-sJX9uXSN36 .mbr-section-subtitle.display-7 {
  letter-spacing: 0;
}
.cid-sJX9uXSN36 .mbr-section-text {
  color: #999999;
}
.cid-tluvdgZgcm {
  padding-top: 75px;
  padding-bottom: 75px;
  background-color: #f3f3f3;
}
.cid-tluvdgZgcm .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.8;
}
.cid-tluvdgZgcm input,
.cid-tluvdgZgcm textarea {
  font-size: 14px;
}
.cid-tluvdgZgcm input {
  padding: 1.5rem 1.8rem !important;
  border-radius: 50px;
}
.cid-tluvdgZgcm textarea {
  padding: 1rem 1.8rem !important;
  border-radius: 30px;
  min-height: 160px !important;
}
.cid-tluvdgZgcm .form-group {
  margin-bottom: 1.3rem;
}
.cid-tluvdgZgcm .block-title {
  margin-bottom: 0.7rem;
}
.cid-tluvdgZgcm .form-control:hover,
.cid-tluvdgZgcm .form-control:focus {
  color: #000000 !important;
}
.cid-tluvdgZgcm .mbr-section-subtitle {
  font-weight: 700;
}
.cid-tluvdgZgcm img {
  width: 90%;
  border-radius: 8px;
}
.cid-tluvdgZgcm .btn {
  border-radius: 30px;
}
.cid-tluvdgZgcm .form-control,
.cid-tluvdgZgcm .field-input {
  padding: 0.5rem;
  background-color: #f3f3f3;
  border-color: #181818;
  color: #000000;
  transition: 0.4s;
  box-shadow: none;
  outline: none;
}
.cid-tluvdgZgcm .form-control:hover,
.cid-tluvdgZgcm .field-input:hover {
  background-color: #f3f3f3;
  border-color: #181818 !important;
  color: #000000;
  box-shadow: none;
  outline: none;
}
.cid-tluvdgZgcm .form-control:focus,
.cid-tluvdgZgcm .field-input:focus {
  background-color: #ffffff;
  border-color: #181818 !important;
  color: #000000;
  box-shadow: none;
  outline: none;
}
.cid-tluvdgZgcm input::-webkit-input-placeholder,
.cid-tluvdgZgcm textarea::-webkit-input-placeholder {
  color: #000000;
}
.cid-tluvdgZgcm input:-moz-placeholder,
.cid-tluvdgZgcm textarea:-moz-placeholder {
  color: #000000;
}
.cid-tluvdgZgcm .jq-selectbox li,
.cid-tluvdgZgcm .jq-selectbox li {
  background-color: #f3f3f3;
  color: #000000;
}
.cid-tluvdgZgcm .jq-selectbox li:hover,
.cid-tluvdgZgcm .jq-selectbox li.selected {
  background-color: #f3f3f3;
  color: #000000;
}
.cid-tluvdgZgcm .jq-selectbox:hover .jq-selectbox__trigger-arrow {
  border-top-color: #f3f3f3;
}
.cid-tluvdgZgcm .jq-selectbox .jq-selectbox__trigger-arrow {
  border-top-color: #f3f3f3;
}
@media (max-width: 992px) {
  .cid-tluvdgZgcm img {
    width: 100%;
  }
  .cid-tluvdgZgcm .google-map {
    margin-bottom: 2rem;
  }
}
.cid-tluvdgZgcm .google-map {
  height: 100%;
  min-height: 30rem;
  position: relative;
  filter: grayscale(1);
  padding-right: 0.5rem;
}
.cid-tluvdgZgcm .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-tluvdgZgcm .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-tluvdgZgcm .google-map[data-state] {
  background: #e9e5dc;
}
.cid-tluvdgZgcm .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
@media (max-width: 576px) {
  .cid-tluvdgZgcm .col-auto {
    width: 100%;
    text-align: center;
  }
}
@media (max-width: 767px) {
  .cid-tluvdgZgcm .mbr-form {
    margin-top: 2rem;
  }
  .cid-tluvdgZgcm .btn {
    width: 100%;
  }
}
@media (min-width: 776px) and (max-width: 992px) {
  .cid-tluvdgZgcm .mbr-form {
    margin-top: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tluvdgZgcm .form-row > [class*="col-"] {
    padding: 0 1rem;
  }
}
.cid-sJX9uZyglq {
  padding-top: 45px;
  padding-bottom: 30px;
  background-color: #25970f;
}
.cid-sJX9uZyglq .copyright {
  display: flex;
}
@media (max-width: 992px) {
  .cid-sJX9uZyglq .copyright {
    margin-bottom: 1rem;
  }
}
.cid-sJX9uZyglq .text-wrap {
  transition: all 0.3s;
  padding: 23px;
  bottom: 0;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: flex-end;
  width: 100%;
  overflow: hidden;
  position: relative;
}
.cid-sJX9uZyglq .text-wrap .icons-wrap .icon-wrapper {
  background: #ffffff;
  display: flex;
  width: 31px;
  height: 31px;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  border: 2px solid #ffffff;
  transition: all 0.3s;
  z-index: 4;
  cursor: pointer;
  margin: 0 0.2rem;
}
.cid-sJX9uZyglq .text-wrap .icons-wrap .icon-wrapper:hover {
  background: #25970f;
  border-color: #25970f;
}
.cid-sJX9uZyglq .text-wrap .icons-wrap .icon-wrapper:hover .link-icon {
  color: #ffffde;
}
.cid-sJX9uZyglq .text-wrap .icons-wrap .icon-wrapper .link-icon {
  display: inline-block;
  color: #ffffde;
  transition: all 0.3s;
  font-size: 14px;
  justify-content: center;
}
.cid-sJX9uZyglq .text-wrap .icons-wrap::before {
  height: 2px;
  width: 100%;
  top: 50%;
  right: 58%;
  position: absolute;
  display: inline-block;
  content: "";
  background-color: #ffffff;
}
@media (max-width: 992px) {
  .cid-sJX9uZyglq .text-wrap .icons-wrap::before {
    display: none;
  }
}
.cid-sJX9uZyglq .text-wrap .icons-wrap::after {
  height: 2px;
  width: 100%;
  top: 50%;
  left: 58%;
  position: absolute;
  display: inline-block;
  content: "";
  background-color: #ffffff;
}
@media (max-width: 992px) {
  .cid-sJX9uZyglq .text-wrap .icons-wrap::after {
    display: none;
  }
}
.cid-tiKU99dsk2 .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 16px;
  position: absolute;
  right: 1rem;
  top: 30%;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tiKU99dsk2 .nav-item,
.cid-tiKU99dsk2 .nav-link,
.cid-tiKU99dsk2 .navbar-caption {
  font-weight: normal;
}
.cid-tiKU99dsk2 .nav-item:focus,
.cid-tiKU99dsk2 .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-tiKU99dsk2 .dropdown-item:hover:before {
    transform: scale(1, 1);
  }
}
.cid-tiKU99dsk2 .dropdown .dropdown-menu .dropdown-item {
  display: flex;
  align-items: center;
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tiKU99dsk2 .dropdown .dropdown-menu .dropdown-item::after {
  right: 1rem;
}
.cid-tiKU99dsk2 .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  transform: scale(0, 1);
}
.cid-tiKU99dsk2 .dropdown .dropdown-menu .dropdown-item.dropdown-toggle:before {
  display: none;
}
.cid-tiKU99dsk2 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-tiKU99dsk2 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tiKU99dsk2 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tiKU99dsk2 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tiKU99dsk2 .collapsed .icons-menu {
  padding-left: 16px;
}
.cid-tiKU99dsk2 .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #f4eddd;
}
.cid-tiKU99dsk2 .navbar.opened {
  transition: all .3s;
  background: #f4eddd !important;
}
.cid-tiKU99dsk2 .navbar .dropdown-item {
  padding: .235rem 2.5rem .235rem 1.5rem;
}
.cid-tiKU99dsk2 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tiKU99dsk2 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tiKU99dsk2 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tiKU99dsk2 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(100vh - 5.2rem - 1rem);
  }
}
.cid-tiKU99dsk2 .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-tiKU99dsk2 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tiKU99dsk2 .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-tiKU99dsk2 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tiKU99dsk2 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
  justify-content: center;
}
.cid-tiKU99dsk2 .navbar.collapsed .icons-menu {
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-tiKU99dsk2 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tiKU99dsk2 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tiKU99dsk2 .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-tiKU99dsk2 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tiKU99dsk2 .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-tiKU99dsk2 .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-tiKU99dsk2 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tiKU99dsk2 .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
    justify-content: center;
  }
  .cid-tiKU99dsk2 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-tiKU99dsk2 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tiKU99dsk2 .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-tiKU99dsk2 .navbar.navbar-short {
  background: #f4eddd !important;
  min-height: 60px;
}
.cid-tiKU99dsk2 .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-tiKU99dsk2 .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-tiKU99dsk2 .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tiKU99dsk2 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tiKU99dsk2 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tiKU99dsk2 .dropdown-item.active,
.cid-tiKU99dsk2 .dropdown-item:active {
  background-color: transparent;
}
.cid-tiKU99dsk2 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tiKU99dsk2 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tiKU99dsk2 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #f4eddd;
}
.cid-tiKU99dsk2 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tiKU99dsk2 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tiKU99dsk2 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tiKU99dsk2 .navbar-buttons {
  text-align: center;
}
.cid-tiKU99dsk2 .navbar-buttons .btn.btn-sm {
  padding: 6px 24px !important;
  min-width: 140px;
  line-height: 1.5;
}
.cid-tiKU99dsk2 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-tiKU99dsk2 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-tiKU99dsk2 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-tiKU99dsk2 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-tiKU99dsk2 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-tiKU99dsk2 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-tiKU99dsk2 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tiKU99dsk2 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-tiKU99dsk2 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-tiKU99dsk2 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tiKU99dsk2 .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-tiKU99dsk2 a.nav-link {
  justify-content: center;
  display: flex;
  align-items: center;
}
.cid-tiKU99dsk2 .mbr-iconfont {
  font-size: 1rem;
  color: #ffffff;
  display: inline-flex;
}
.cid-tiKU99dsk2 .soc-item {
  margin: .5rem .3rem;
}
.cid-tiKU99dsk2 .icons-menu {
  flex-wrap: wrap;
  display: flex;
  justify-content: center;
  padding-right: 1rem;
  text-align: center;
  align-items: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tiKU99dsk2 .navbar {
    height: 77px;
  }
  .cid-tiKU99dsk2 .navbar.opened {
    height: auto;
  }
  .cid-tiKU99dsk2 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tiKU9a1tfy {
  padding-top: 135px;
  padding-bottom: 135px;
  background-image: url("../../../assets/images/mbr-1920x1280.jpg");
}
.cid-tiKU9a1tfy .card {
  border-radius: 0;
  margin: auto 0;
}
.cid-tiKU9a1tfy .card .wrapper .mbr-section-title {
  color: #ffffff;
  font-weight: 700;
}
.cid-tiKU9a1tfy .card .wrapper .mbr-section-title span:nth-child(2) {
  line-height: 1;
  color: #ffffff;
  padding: 0 6px 1px 5px;
  transform: skew(-14deg);
  background: #25970f;
  display: inline-block;
  font-weight: 500;
  letter-spacing: 0;
  position: relative;
}
.cid-tiKU9a1tfy .card .wrapper .mbr-section-subtitle {
  color: #ffffff;
}
.cid-tiKU9a1tfy .card .wrapper .mbr-section-subtitle.display-7 {
  letter-spacing: 0;
}
.cid-tiKU9a1tfy .card .wrapper .mbr-text {
  color: #ffffff;
  font-weight: 300;
}
.cid-tiKU9a1tfy .card .wrapper .buttons-wrap .mbr-section-btn .btn.display-4 {
  padding: 7px 39px;
  line-height: 1.5;
  letter-spacing: 0;
}
.cid-tiKU9a1tfy .card .wrapper .buttons-wrap .mbr-section-btn .btn.btn-success-outline {
  color: #ffffff;
}
.cid-tiKU9a1tfy .card .wrapper .buttons-wrap .mbr-section-btn .btn.btn-success-outline:hover {
  color: #000000;
}
.cid-tiKU9a1tfy .card .wrapper .mbr-section-title,
.cid-tiKU9a1tfy .mbr-section-btn {
  color: #ffffff;
}
.cid-tiKU9an782 {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-tiKU9an782 .row {
  flex-direction: row-reverse;
}
.cid-tiKU9an782 .img-wrap img {
  width: 100%;
}
.cid-tiKU9an782 .card {
  border-radius: 0;
  margin: auto 0;
}
.cid-tiKU9an782 .card .wrapper {
  overflow: hidden;
}
.cid-tiKU9an782 .card .wrapper .mbr-section-title {
  color: #06182d;
}
.cid-tiKU9an782 .card .wrapper .mbr-section-title span {
  line-height: 1;
  color: #ffffff;
  padding: 0 6px 1px 5px;
  transform: skew(-14deg);
  background: #000000;
  background: linear-gradient(#000000 0%, #333333 69%, #333333 100%);
  display: inline-block;
  font-weight: 500;
  letter-spacing: 0;
  position: relative;
}
.cid-tiKU9an782 .card .wrapper .mbr-section-subtitle {
  color: #06182d;
}
.cid-tiKU9an782 .card .wrapper .mbr-section-subtitle.display-7 {
  letter-spacing: 0;
}
.cid-tiKU9an782 .card .wrapper .mbr-text {
  color: #f4eddd;
  font-weight: 300;
}
.cid-tiKU9an782 .card .wrapper .sign-wrap {
  text-align: center;
  overflow: hidden;
  position: relative;
}
.cid-tiKU9an782 .card .wrapper .sign-wrap::before {
  right: 65.8%;
  height: 2px;
  transform: translateY(-50%);
  width: 250px;
  top: 50%;
  position: absolute;
  display: inline-block;
  content: "";
  background-color: #dfe3e8;
}
.cid-tiKU9an782 .card .wrapper .sign-wrap img {
  width: 140px;
}
.cid-tiKU9an782 .card .wrapper .sign-wrap::after {
  left: 65.9%;
  height: 2px;
  transform: translateY(-50%);
  width: 250px;
  top: 50%;
  position: absolute;
  display: inline-block;
  content: "";
  background-color: #dfe3e8;
}
.cid-tiKU9an782 .card .wrapper .mbr-section-title {
  text-align: left;
  color: #333333;
}
.cid-tiKU9an782 .card .wrapper .mbr-text {
  color: #000000;
}
.cid-tiKU9aNVVV {
  padding-top: 90px;
  padding-bottom: 90px;
  position: relative;
  background-color: #f3f3f3;
}
.cid-tiKU9aNVVV p {
  color: #767676;
  padding: 0;
  letter-spacing: 0px;
}
.cid-tiKU9aNVVV .panel-title {
  border-bottom: 2px solid #ffffff;
  display: flex!important;
  justify-content: space-between;
  align-items: center;
  padding-right: 2rem;
}
.cid-tiKU9aNVVV .collapsed {
  border: none;
}
.cid-tiKU9aNVVV .collapsed span {
  transform: rotate(0deg);
}
.cid-tiKU9aNVVV span {
  font-size: 1.4rem;
  transition: all 0.3s;
  transform: rotate(45deg);
  background: linear-gradient(to left, #333333, #999999);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 900;
}
.cid-tiKU9aNVVV .panel-body {
  padding-top: 0.5rem;
}
.cid-tiKU9aNVVV .card {
  border-radius: 0px;
  margin-bottom: -1px;
}
.cid-tiKU9aNVVV .card .card-header {
  border-radius: 0px;
  margin: 0.5rem 0;
  border: 0px;
  background: #25970f;
  padding: 0;
}
.cid-tiKU9aNVVV .card .card-header a.panel-title {
  margin-bottom: 0;
  margin-top: -1px;
  font-style: normal;
  text-decoration: none !important;
  line-height: normal;
}
.cid-tiKU9aNVVV .card .card-header a.panel-title:focus {
  text-decoration: none !important;
}
.cid-tiKU9aNVVV .card .card-header a.panel-title h4 {
  padding: 1.3rem 2rem;
  margin-bottom: 0;
}
.cid-tiKU9aNVVV .card .card-header a.panel-title h4 .sign {
  padding-right: 1rem;
}
.cid-tiKU9aNVVV .panel-text {
  color: #767676;
}
.cid-tiKU9aNVVV H4 {
  color: #ffffff;
}
.cid-tiKU9aNVVV H2 {
  color: #000000;
}
.cid-tiKU9aNVVV .mbr-section-text {
  color: #999999;
}
.cid-tiKU9b6ivZ {
  padding-top: 60px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tiKU9b6ivZ img {
  width: 100%;
  border-radius: 50px;
  margin-bottom: 20px;
  max-height: ;
}
.cid-tiKU9b6ivZ .card {
  margin-bottom: 130px !important;
}
.cid-tiKU9b6ivZ .card .img-wrapper {
  overflow: hidden;
}
.cid-tiKU9b6ivZ .card:hover {
  cursor: pointer;
}
.cid-tiKU9b6ivZ .card:hover img {
  transform: scale(1.05);
}
.cid-tiKU9b6ivZ .card:hover .img-wrapper {
  box-shadow: 0 30px 30px -20px rgba(50, 50, 50, 0.3);
}
@media (max-width: 1200px) {
  .cid-tiKU9b6ivZ .card {
    margin-bottom: 50px !important;
  }
}
.cid-tiKU9b6ivZ .card .card-wrapper {
  text-align: left;
}
.cid-tiKU9b6ivZ .card .card-wrapper .mbr-iconfont {
  font-size: 41px;
  color: #ff513c;
  display: block;
  justify-content: center;
  align-items: center;
  transition: all 0.3s ease-in-out;
  padding-bottom: 14px;
  margin-right: 14px;
}
.cid-tiKU9b6ivZ .card .card-wrapper .card-box .card-title {
  cursor: pointer;
  color: #06182d;
}
.cid-tiKU9b6ivZ .card .card-wrapper .card-box .card-title.display-7 {
  line-height: 1.2;
}
.cid-tiKU9b6ivZ .card .card-wrapper .card-box .card-text {
  color: #f4eddd;
}
@media (min-width: 1400px) {
  .cid-tiKU9b6ivZ .card.left-box {
    right: 105px !important;
  }
  .cid-tiKU9b6ivZ .card.right-box {
    left: 97px !important;
  }
}
.cid-tiKU9b6ivZ .mbr-section-title {
  color: #06182d;
}
.cid-tiKU9b6ivZ .mbr-section-title span {
  line-height: 1;
  color: #ffffff;
  padding: 0 6px 1px 5px;
  transform: skew(-14deg);
  background: #25970f;
  display: inline-block;
  font-weight: 500;
  letter-spacing: 0;
  position: relative;
}
.cid-tiKU9b6ivZ .mbr-section-subtitle {
  color: #06182d;
}
.cid-tiKU9b6ivZ .mbr-section-subtitle.display-7 {
  letter-spacing: 0;
}
.cid-tiKU9b6ivZ .mbr-section-text {
  color: #999999;
}
.cid-tluv8rkXnj {
  padding-top: 75px;
  padding-bottom: 75px;
  background-color: #f3f3f3;
}
.cid-tluv8rkXnj .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.8;
}
.cid-tluv8rkXnj input,
.cid-tluv8rkXnj textarea {
  font-size: 14px;
}
.cid-tluv8rkXnj input {
  padding: 1.5rem 1.8rem !important;
  border-radius: 50px;
}
.cid-tluv8rkXnj textarea {
  padding: 1rem 1.8rem !important;
  border-radius: 30px;
  min-height: 160px !important;
}
.cid-tluv8rkXnj .form-group {
  margin-bottom: 1.3rem;
}
.cid-tluv8rkXnj .block-title {
  margin-bottom: 0.7rem;
}
.cid-tluv8rkXnj .form-control:hover,
.cid-tluv8rkXnj .form-control:focus {
  color: #000000 !important;
}
.cid-tluv8rkXnj .mbr-section-subtitle {
  font-weight: 700;
}
.cid-tluv8rkXnj img {
  width: 90%;
  border-radius: 8px;
}
.cid-tluv8rkXnj .btn {
  border-radius: 30px;
}
.cid-tluv8rkXnj .form-control,
.cid-tluv8rkXnj .field-input {
  padding: 0.5rem;
  background-color: #f3f3f3;
  border-color: #181818;
  color: #000000;
  transition: 0.4s;
  box-shadow: none;
  outline: none;
}
.cid-tluv8rkXnj .form-control:hover,
.cid-tluv8rkXnj .field-input:hover {
  background-color: #f3f3f3;
  border-color: #181818 !important;
  color: #000000;
  box-shadow: none;
  outline: none;
}
.cid-tluv8rkXnj .form-control:focus,
.cid-tluv8rkXnj .field-input:focus {
  background-color: #ffffff;
  border-color: #181818 !important;
  color: #000000;
  box-shadow: none;
  outline: none;
}
.cid-tluv8rkXnj input::-webkit-input-placeholder,
.cid-tluv8rkXnj textarea::-webkit-input-placeholder {
  color: #000000;
}
.cid-tluv8rkXnj input:-moz-placeholder,
.cid-tluv8rkXnj textarea:-moz-placeholder {
  color: #000000;
}
.cid-tluv8rkXnj .jq-selectbox li,
.cid-tluv8rkXnj .jq-selectbox li {
  background-color: #f3f3f3;
  color: #000000;
}
.cid-tluv8rkXnj .jq-selectbox li:hover,
.cid-tluv8rkXnj .jq-selectbox li.selected {
  background-color: #f3f3f3;
  color: #000000;
}
.cid-tluv8rkXnj .jq-selectbox:hover .jq-selectbox__trigger-arrow {
  border-top-color: #f3f3f3;
}
.cid-tluv8rkXnj .jq-selectbox .jq-selectbox__trigger-arrow {
  border-top-color: #f3f3f3;
}
@media (max-width: 992px) {
  .cid-tluv8rkXnj img {
    width: 100%;
  }
  .cid-tluv8rkXnj .google-map {
    margin-bottom: 2rem;
  }
}
.cid-tluv8rkXnj .google-map {
  height: 100%;
  min-height: 30rem;
  position: relative;
  filter: grayscale(1);
  padding-right: 0.5rem;
}
.cid-tluv8rkXnj .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-tluv8rkXnj .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-tluv8rkXnj .google-map[data-state] {
  background: #e9e5dc;
}
.cid-tluv8rkXnj .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
@media (max-width: 576px) {
  .cid-tluv8rkXnj .col-auto {
    width: 100%;
    text-align: center;
  }
}
@media (max-width: 767px) {
  .cid-tluv8rkXnj .mbr-form {
    margin-top: 2rem;
  }
  .cid-tluv8rkXnj .btn {
    width: 100%;
  }
}
@media (min-width: 776px) and (max-width: 992px) {
  .cid-tluv8rkXnj .mbr-form {
    margin-top: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tluv8rkXnj .form-row > [class*="col-"] {
    padding: 0 1rem;
  }
}
.cid-tiKU9c0ICB {
  padding-top: 45px;
  padding-bottom: 30px;
  background-color: #25970f;
}
.cid-tiKU9c0ICB .copyright {
  display: flex;
}
@media (max-width: 992px) {
  .cid-tiKU9c0ICB .copyright {
    margin-bottom: 1rem;
  }
}
.cid-tiKU9c0ICB .text-wrap {
  transition: all 0.3s;
  padding: 23px;
  bottom: 0;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: flex-end;
  width: 100%;
  overflow: hidden;
  position: relative;
}
.cid-tiKU9c0ICB .text-wrap .icons-wrap .icon-wrapper {
  background: #ffffff;
  display: flex;
  width: 31px;
  height: 31px;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  border: 2px solid #ffffff;
  transition: all 0.3s;
  z-index: 4;
  cursor: pointer;
  margin: 0 0.2rem;
}
.cid-tiKU9c0ICB .text-wrap .icons-wrap .icon-wrapper:hover {
  background: #25970f;
  border-color: #25970f;
}
.cid-tiKU9c0ICB .text-wrap .icons-wrap .icon-wrapper:hover .link-icon {
  color: #ffffde;
}
.cid-tiKU9c0ICB .text-wrap .icons-wrap .icon-wrapper .link-icon {
  display: inline-block;
  color: #ffffde;
  transition: all 0.3s;
  font-size: 14px;
  justify-content: center;
}
.cid-tiKU9c0ICB .text-wrap .icons-wrap::before {
  height: 2px;
  width: 100%;
  top: 50%;
  right: 58%;
  position: absolute;
  display: inline-block;
  content: "";
  background-color: #ffffff;
}
@media (max-width: 992px) {
  .cid-tiKU9c0ICB .text-wrap .icons-wrap::before {
    display: none;
  }
}
.cid-tiKU9c0ICB .text-wrap .icons-wrap::after {
  height: 2px;
  width: 100%;
  top: 50%;
  left: 58%;
  position: absolute;
  display: inline-block;
  content: "";
  background-color: #ffffff;
}
@media (max-width: 992px) {
  .cid-tiKU9c0ICB .text-wrap .icons-wrap::after {
    display: none;
  }
}
