body {
  font-family: 'Merriweather', serif;
}
.display-1 {
  font-family: 'Merriweather', serif;
  font-size: 4rem;
  line-height: 1.1;
}
.display-1 > .mbr-iconfont {
  font-size: 5rem;
}
.display-2 {
  font-family: 'Merriweather', serif;
  font-size: 3rem;
  line-height: 1.1;
}
.display-2 > .mbr-iconfont {
  font-size: 3.75rem;
}
.display-4 {
  font-family: 'Merriweather', serif;
  font-size: 1.2rem;
  line-height: 1.5;
}
.display-4 > .mbr-iconfont {
  font-size: 1.5rem;
}
.display-5 {
  font-family: 'Merriweather', serif;
  font-size: 2rem;
  line-height: 1.5;
}
.display-5 > .mbr-iconfont {
  font-size: 2.5rem;
}
.display-7 {
  font-family: 'Merriweather', serif;
  font-size: 1.2rem;
  line-height: 1.5;
}
.display-7 > .mbr-iconfont {
  font-size: 1.5rem;
}
/* ---- Fluid typography for mobile devices ---- */
/* 1.4 - font scale ratio ( bootstrap == 1.42857 ) */
/* 100vw - current viewport width */
/* (48 - 20)  48 == 48rem == 768px, 20 == 20rem == 320px(minimal supported viewport) */
/* 0.65 - min scale variable, may vary */
@media (max-width: 992px) {
  .display-1 {
    font-size: 3.2rem;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 2.8rem;
    font-size: calc( 2.05rem + (4 - 2.05) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (2.05rem + (4 - 2.05) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 2.4rem;
    font-size: calc( 1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.3 * (1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 0.96rem;
    font-size: calc( 1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 1.6rem;
    font-size: calc( 1.35rem + (2 - 1.35) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.35rem + (2 - 1.35) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-7 {
    font-size: 0.96rem;
    font-size: calc( 1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* Buttons */
.btn {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-sm {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-md {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-lg {
  padding: 1rem 2.6rem;
  border-radius: 4px;
}
.bg-primary {
  background-color: #fa4529 !important;
}
.bg-success {
  background-color: #40b0bf !important;
}
.bg-info {
  background-color: #47b5ed !important;
}
.bg-warning {
  background-color: #ffe161 !important;
}
.bg-danger {
  background-color: #ff9966 !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #fa4529 !important;
  border-color: #fa4529 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus,
.btn-primary.active {
  color: #ffffff !important;
  background-color: #c81f05 !important;
  border-color: #c81f05 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #c81f05 !important;
  border-color: #c81f05 !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #ff8a8a !important;
  border-color: #ff8a8a !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus,
.btn-secondary.active {
  color: #ffffff !important;
  background-color: #ff3333 !important;
  border-color: #ff3333 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #ff3333 !important;
  border-color: #ff3333 !important;
}
.btn-info,
.btn-info:active {
  background-color: #47b5ed !important;
  border-color: #47b5ed !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus,
.btn-info.active {
  color: #ffffff !important;
  background-color: #148cca !important;
  border-color: #148cca !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #148cca !important;
  border-color: #148cca !important;
}
.btn-success,
.btn-success:active {
  background-color: #40b0bf !important;
  border-color: #40b0bf !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus,
.btn-success.active {
  color: #ffffff !important;
  background-color: #2a747e !important;
  border-color: #2a747e !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #2a747e !important;
  border-color: #2a747e !important;
}
.btn-warning,
.btn-warning:active {
  background-color: #ffe161 !important;
  border-color: #ffe161 !important;
  color: #614f00 !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus,
.btn-warning.active {
  color: #0a0800 !important;
  background-color: #ffd10a !important;
  border-color: #ffd10a !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #614f00 !important;
  background-color: #ffd10a !important;
  border-color: #ffd10a !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #ff9966 !important;
  border-color: #ff9966 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus,
.btn-danger.active {
  color: #ffffff !important;
  background-color: #ff5f0f !important;
  border-color: #ff5f0f !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #ff5f0f !important;
  border-color: #ff5f0f !important;
}
.btn-white,
.btn-white:active {
  background-color: #fafafa !important;
  border-color: #fafafa !important;
  color: #7a7a7a !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus,
.btn-white.active {
  color: #4f4f4f !important;
  background-color: #cfcfcf !important;
  border-color: #cfcfcf !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-white.disabled,
.btn-white:disabled {
  color: #7a7a7a !important;
  background-color: #cfcfcf !important;
  border-color: #cfcfcf !important;
}
.btn-black,
.btn-black:active {
  background-color: #232323 !important;
  border-color: #232323 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-black:hover,
.btn-black:focus,
.btn-black.focus,
.btn-black.active {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-black.disabled,
.btn-black:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-primary-outline,
.btn-primary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #fa4529;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #c81f05 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #fa4529 !important;
  border-color: #fa4529 !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ff8a8a;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #ff3333 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #ff8a8a !important;
  border-color: #ff8a8a !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #47b5ed;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #148cca !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #47b5ed !important;
  border-color: #47b5ed !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #40b0bf;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #2a747e !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #ffffff !important;
  background-color: #40b0bf !important;
  border-color: #40b0bf !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ffe161;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #ffd10a !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #614f00 !important;
  background-color: #ffe161 !important;
  border-color: #ffe161 !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ff9966;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #ff5f0f !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #ff9966 !important;
  border-color: #ff9966 !important;
}
.btn-black-outline,
.btn-black-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #232323;
}
.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.focus,
.btn-black-outline.active {
  color: #000000 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-black-outline.disabled,
.btn-black-outline:disabled {
  color: #ffffff !important;
  background-color: #232323 !important;
  border-color: #232323 !important;
}
.btn-white-outline,
.btn-white-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #fafafa;
}
.btn-white-outline:hover,
.btn-white-outline:focus,
.btn-white-outline.focus,
.btn-white-outline.active {
  color: #cfcfcf !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-white-outline.disabled,
.btn-white-outline:disabled {
  color: #7a7a7a !important;
  background-color: #fafafa !important;
  border-color: #fafafa !important;
}
.text-primary {
  color: #fa4529 !important;
}
.text-secondary {
  color: #ff8a8a !important;
}
.text-success {
  color: #40b0bf !important;
}
.text-info {
  color: #47b5ed !important;
}
.text-warning {
  color: #ffe161 !important;
}
.text-danger {
  color: #ff9966 !important;
}
.text-white {
  color: #fafafa !important;
}
.text-black {
  color: #232323 !important;
}
a.text-primary:hover,
a.text-primary:focus,
a.text-primary.active {
  color: #b91c04 !important;
}
a.text-secondary:hover,
a.text-secondary:focus,
a.text-secondary.active {
  color: #ff2424 !important;
}
a.text-success:hover,
a.text-success:focus,
a.text-success.active {
  color: #266a73 !important;
}
a.text-info:hover,
a.text-info:focus,
a.text-info.active {
  color: #1283bc !important;
}
a.text-warning:hover,
a.text-warning:focus,
a.text-warning.active {
  color: #facb00 !important;
}
a.text-danger:hover,
a.text-danger:focus,
a.text-danger.active {
  color: #ff5500 !important;
}
a.text-white:hover,
a.text-white:focus,
a.text-white.active {
  color: #c7c7c7 !important;
}
a.text-black:hover,
a.text-black:focus,
a.text-black.active {
  color: #000000 !important;
}
a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption) {
  position: relative;
  background-image: transparent;
  background-size: 10000px 2px;
  background-repeat: no-repeat;
  background-position: 0px 1.2em;
  background-position: -10000px 1.2em;
}
a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  transition: background-position 2s ease-in-out;
  background-image: linear-gradient(currentColor 50%, currentColor 50%);
  background-position: 0px 1.2em;
}
.nav-tabs .nav-link.active {
  color: #fa4529;
}
.nav-tabs .nav-link:not(.active) {
  color: #232323;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #47b5ed;
}
.alert-warning {
  background-color: #ffe161;
}
.alert-danger {
  background-color: #ff9966;
}
.mbr-gallery-filter li.active .btn {
  background-color: #fa4529;
  border-color: #fa4529;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
a,
a:hover {
  color: #fa4529;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #fff2f0;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #a0d8df;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #ffffff;
}
/* Scroll to top button*/
.scrollToTop_wraper {
  display: none;
}
.form-control {
  font-family: 'Merriweather', serif;
  font-size: 1.2rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control > .mbr-iconfont {
  font-size: 1.5rem;
}
.form-control:hover,
.form-control:focus {
  box-shadow: rgba(0, 0, 0, 0.07) 0px 1px 1px 0px, rgba(0, 0, 0, 0.07) 0px 1px 3px 0px, rgba(0, 0, 0, 0.03) 0px 0px 0px 1px;
  border-color: #fa4529 !important;
}
.form-control:-webkit-input-placeholder {
  font-family: 'Merriweather', serif;
  font-size: 1.2rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control:-webkit-input-placeholder > .mbr-iconfont {
  font-size: 1.5rem;
}
blockquote {
  border-color: #fa4529;
}
/* Forms */
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #fa4529;
  color: #ffffff;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #fa4529;
}
.jq-selectbox .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:after,
.jq-number__spin.plus:after {
  transition: 0.4s;
  border-top-color: #353535;
  border-bottom-color: #353535;
}
.jq-selectbox:hover .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:hover:after,
.jq-number__spin.plus:hover:after {
  border-top-color: #fa4529;
  border-bottom-color: #fa4529;
}
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_default,
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_current,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div.xdsoft_current {
  color: #ffffff !important;
  background-color: #fa4529 !important;
  box-shadow: none !important;
}
.xdsoft_datetimepicker .xdsoft_calendar td:hover,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div:hover {
  color: #000000 !important;
  background: #ff8a8a !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='%23fa4529' %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-uMjk1xmppV {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uMjk1xmppV nav.navbar {
  position: fixed;
}
.cid-uMjk1xmppV .container-fluid {
  padding-left: 20px;
  padding-right: 20px;
}
@media (max-width: 992px) {
  .cid-uMjk1xmppV .container-fluid {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.cid-uMjk1xmppV .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uMjk1xmppV .dropdown-menu {
  padding: 0;
  border-radius: 0;
  box-shadow: none;
}
.cid-uMjk1xmppV .dropdown-item {
  border: none !important;
  background: #f4f4f4 !important;
  font-weight: 400 !important;
}
.cid-uMjk1xmppV .dropdown-item:hover,
.cid-uMjk1xmppV .dropdown-item:focus {
  background: #f4f4f4 !important;
  color: #093388 !important;
}
.cid-uMjk1xmppV .dropdown-item:hover span {
  color: white;
}
.cid-uMjk1xmppV .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uMjk1xmppV .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uMjk1xmppV .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uMjk1xmppV .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uMjk1xmppV .nav-link {
  position: relative;
}
.cid-uMjk1xmppV .container {
  display: flex;
  margin: 0 auto;
  max-width: 1600px;
}
@media (min-width: 992px) {
  .cid-uMjk1xmppV .container {
    flex-wrap: nowrap;
  }
}
.cid-uMjk1xmppV .iconfont-wrapper {
  color: #093388 !important;
  font-size: 1.5rem;
  transition: all 0.3s ease-in-out;
}
.cid-uMjk1xmppV .iconfont-wrapper:hover {
  opacity: .7;
}
.cid-uMjk1xmppV .dropdown-menu,
.cid-uMjk1xmppV .navbar.opened {
  background: #f4f4f4 !important;
}
.cid-uMjk1xmppV .nav-item:focus,
.cid-uMjk1xmppV .nav-link:focus {
  outline: none;
}
.cid-uMjk1xmppV .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uMjk1xmppV .dropdown .dropdown-menu .dropdown-item::after {
  right: 1.6rem;
}
.cid-uMjk1xmppV .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uMjk1xmppV .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uMjk1xmppV .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uMjk1xmppV .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uMjk1xmppV .navbar {
  min-height: 60px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #f4f4f4;
  padding: 0 !important;
  border-radius: 0 !important;
  border: none !important;
  box-shadow: none !important;
}
.cid-uMjk1xmppV .navbar.opened {
  transition: all 0.3s;
}
.cid-uMjk1xmppV .navbar .dropdown-item {
  padding: 8px 3.2rem 8px 22px;
  line-height: 1.5;
  border-radius: 0;
  margin-left: 4px;
  margin-bottom: 4px;
}
.cid-uMjk1xmppV .navbar .navbar-logo img {
  width: auto;
}
.cid-uMjk1xmppV .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uMjk1xmppV .navbar.collapsed {
  justify-content: center;
}
.cid-uMjk1xmppV .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uMjk1xmppV .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uMjk1xmppV .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-uMjk1xmppV .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uMjk1xmppV .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uMjk1xmppV .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-uMjk1xmppV .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uMjk1xmppV .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uMjk1xmppV .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uMjk1xmppV .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uMjk1xmppV .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uMjk1xmppV .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uMjk1xmppV .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uMjk1xmppV .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-uMjk1xmppV .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uMjk1xmppV .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uMjk1xmppV .navbar .dropdown-menu .dropdown-item {
    padding: 14px !important;
    text-align: center;
    margin-left: 0;
  }
  .cid-uMjk1xmppV .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 0.5rem;
    max-width: 80%;
  }
  .cid-uMjk1xmppV .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uMjk1xmppV .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uMjk1xmppV .navbar.navbar-short {
  min-height: 60px;
}
.cid-uMjk1xmppV .navbar.navbar-short .navbar-brand {
  min-height: 60px;
}
.cid-uMjk1xmppV .navbar-brand {
  min-height: 60px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word !important;
  z-index: 1;
  word-wrap: break-word !important;
  white-space: normal;
}
.cid-uMjk1xmppV .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: 400;
}
.cid-uMjk1xmppV .navbar-brand .navbar-caption:hover,
.cid-uMjk1xmppV .navbar-brand .navbar-caption:focus {
  color: #093388 !important;
}
.cid-uMjk1xmppV .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uMjk1xmppV .navbar.opened .navbar-brand .navbar-caption:hover,
.cid-uMjk1xmppV .navbar.opened .navbar-brand .navbar-caption:focus {
  color: #093388 !important;
}
.cid-uMjk1xmppV .dropdown-item.active,
.cid-uMjk1xmppV .dropdown-item:active {
  background-color: transparent;
}
.cid-uMjk1xmppV .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uMjk1xmppV .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uMjk1xmppV .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uMjk1xmppV .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #f4f4f4;
  top: 3.2rem;
  border-radius: 30px;
}
@media (max-width: 992px) {
  .cid-uMjk1xmppV .navbar.navbar-expand-lg .dropdown .dropdown-menu {
    top: 0;
  }
}
.cid-uMjk1xmppV .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
  top: 0;
  border-left: 1px solid transparent;
}
.cid-uMjk1xmppV .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uMjk1xmppV ul.navbar-nav {
  flex-wrap: wrap;
}
@media (min-width: 991px) {
  .cid-uMjk1xmppV ul.navbar-nav {
    padding: 0;
    background-color: transparent;
    border: 2px solid transparent;
  }
}
.cid-uMjk1xmppV .navbar-buttons {
  text-align: center;
  width: auto;
}
.cid-uMjk1xmppV .navbar-buttons .btn {
  white-space: nowrap;
  margin-right: 0;
  min-height: auto;
  width: auto;
  padding: 11px 26px;
}
@media (max-width: 575px) {
  .cid-uMjk1xmppV .navbar-buttons .btn {
    width: auto !important;
  }
}
.cid-uMjk1xmppV button.navbar-toggler {
  outline: none;
  width: 50px;
  height: 50px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  border-radius: 100%;
  background-color: #f4f4f4 !important;
  border: none !important;
  box-shadow: none !important;
}
.cid-uMjk1xmppV button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 20px;
  height: 2px;
  border-right: 5px;
  background-color: #093388;
}
.cid-uMjk1xmppV button.navbar-toggler .hamburger span:nth-child(1) {
  top: 18px;
  left: 15px;
  transition: all 0.2s;
}
.cid-uMjk1xmppV button.navbar-toggler .hamburger span:nth-child(2) {
  left: 15px;
  top: 24px;
  transition: all 0.15s;
}
.cid-uMjk1xmppV button.navbar-toggler .hamburger span:nth-child(3) {
  left: 15px;
  top: 24px;
  transition: all 0.15s;
}
.cid-uMjk1xmppV button.navbar-toggler .hamburger span:nth-child(4) {
  left: 15px;
  top: 30px;
  transition: all 0.2s;
}
.cid-uMjk1xmppV nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uMjk1xmppV nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uMjk1xmppV nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uMjk1xmppV nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uMjk1xmppV .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uMjk1xmppV a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uMjk1xmppV .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uMjk1xmppV .navbar {
    height: 70px;
  }
  .cid-uMjk1xmppV .navbar.opened {
    height: auto;
  }
  .cid-uMjk1xmppV .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uMjk1xmppV .navbar-nav {
  margin: 0 auto;
}
.cid-uMjk1xmppV .nav-item {
  padding: 0;
  margin: 0;
}
.cid-uMjk1xmppV .nav-item .nav-link {
  padding: 8px 22px !important;
  margin: 0 !important;
  transition: all 0.3s ease-in-out;
  font-weight: 400;
  border-radius: 3rem;
}
.cid-uMjk1xmppV .nav-item .nav-link::after {
  color: inherit !important;
  transform: rotate(0);
  transition: .3s;
}
.cid-uMjk1xmppV .nav-item .nav-link:hover,
.cid-uMjk1xmppV .nav-item .nav-link:focus {
  background-color: transparent;
  color: #093388 !important;
  opacity: .7;
}
.cid-uMjk1xmppV .nav-item .nav-link:hover::after,
.cid-uMjk1xmppV .nav-item .nav-link:focus::after {
  color: inherit !important;
}
.cid-uMjk1xmppV .nav-item .nav-link.show::after {
  transform: rotate(180deg);
}
.cid-uMjk1xmppV .nav-item .dropdown-menu {
  background-color: transparent !important;
}
.cid-uMjk1xmppV .nav-item .dropdown-menu:hover {
  background-color: transparent !important;
}
@media (max-width: 991px) {
  .cid-uMjk1xmppV .navbar {
    justify-content: flex-start !important;
  }
  .cid-uMjk1xmppV .navbar.opened {
    min-height: 100vh !important;
    flex-direction: column !important;
    justify-content: flex-start !important;
  }
  .cid-uMjk1xmppV .navbar-collapse {
    padding: 20px 0 3rem;
  }
  .cid-uMjk1xmppV .navbar-collapse .navbar-nav {
    width: 100%;
    margin-bottom: 24px;
  }
  .cid-uMjk1xmppV .navbar-collapse .nav-item {
    width: 100%;
    margin: 0;
  }
  .cid-uMjk1xmppV .navbar-collapse .nav-item:not(:first-child) {
    border-top: 1px solid transparent;
  }
  .cid-uMjk1xmppV .navbar-collapse .nav-item .nav-link {
    padding: 14px !important;
    justify-content: center;
    margin: 0 !important;
    margin-bottom: 4px !important;
  }
}
.cid-uMjk1xmppV .content-wrap {
  min-height: 60px;
}
.cid-uLUI6DLG3k {
  padding-top: 9rem;
  padding-bottom: 7rem;
  background-color: #ffffff;
}
.cid-uLUI6DLG3k .row {
  flex-direction: row-reverse;
}
.cid-uLUI6DLG3k .mbr-text {
  max-width: 550px;
}
.cid-uLUI6DLG3k .row {
  align-items: center;
}
.cid-uLUI6DLG3k .mbr-section-subtitle {
  line-height: 1.6;
}
.cid-uLUI6DLG3k .mbr-text,
.cid-uLUI6DLG3k .mbr-section-btn {
  color: #000000;
}
.cid-uLUI6DLG3k .mbr-section-title {
  color: #000000;
}
.cid-uLUI6FY8Vb {
  padding-top: 0rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uLUI6FY8Vb .content_wrapper {
  position: relative;
  padding: 50px 0;
  border-top: 1px solid #000000;
  border-bottom: 1px solid #000000;
  z-index: 1;
}
.cid-uLUI6FY8Vb .content_wrapper:hover .mbr-section-title a {
  color: #ff8a8a !important;
}
.cid-uLUI6FY8Vb .mbr-section-title {
  margin-bottom: 12px;
}
.cid-uLUI6FY8Vb .icon_wrapper .mbr-iconfont {
  font-size: 140px;
  width: 140px;
  height: 140px;
  position: absolute;
  z-index: -1;
  color: #fef2ed;
  top: 2%;
  right: 13%;
}
.cid-uLUI6FY8Vb .mbr-section-btn .btn-secondary-outline {
  padding: 3px 0;
  border: none !important;
  background-color: transparent !important;
}
.cid-uLUI6FY8Vb .mbr-section-btn .btn-secondary-outline:hover,
.cid-uLUI6FY8Vb .mbr-section-btn .btn-secondary-outline .active,
.cid-uLUI6FY8Vb .mbr-section-btn .btn-secondary-outline:focus {
  color: #fa4529 !important;
}
.cid-uLUI6FY8Vb .card_post {
  display: inline-flex;
  align-items: center;
  margin-top: 30px;
}
.cid-uLUI6FY8Vb .image_post {
  display: inline-block;
}
.cid-uLUI6FY8Vb .image_post img {
  object-fit: cover;
  height: 50px;
  width: 50px;
  min-width: 50px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.07);
  border-radius: 50%;
}
.cid-uLUI6FY8Vb .author_post {
  display: inline-block;
  margin-left: 15px;
}
.cid-uLUI6FY8Vb .mbr-fallback-image.disabled {
  display: none;
}
.cid-uLUI6FY8Vb .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uLUI71oq4q {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background: #ffffff;
}
.cid-uLUI71oq4q .google-map {
  height: 30rem;
  position: relative;
}
.cid-uLUI71oq4q .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-uLUI71oq4q .google-map [data-state-details] {
  color: #6b6763;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-uLUI71oq4q .google-map[data-state] {
  background: #e9e5dc;
}
.cid-uLUI71oq4q .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-uLUI72IPwq {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f6f6f6;
}
.cid-uLUI72IPwq .mbr-fallback-image.disabled {
  display: none;
}
.cid-uLUI72IPwq .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uLUI72IPwq .content-wrap {
  padding: 60px;
  background-color: #f7f7f7;
}
@media (max-width: 992px) {
  .cid-uLUI72IPwq .content-wrap {
    padding: 30px 20px;
  }
}
.cid-uLUI72IPwq .content-wrap .row {
  justify-content: center;
}
.cid-uLUI72IPwq .title-wrapper {
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .cid-uLUI72IPwq .title-wrapper {
    margin-bottom: 40px;
  }
}
.cid-uLUI72IPwq .title-wrapper .title-wrap {
  display: inline-flex;
  align-items: center;
}
.cid-uLUI72IPwq .title-wrapper .title-wrap .logo-wrapper {
  margin-right: 8px;
}
.cid-uLUI72IPwq .title-wrapper .title-wrap .logo-wrapper img {
  width: 50px;
  height: 50px;
  object-fit: contain;
  border-radius: 8px !important;
}
.cid-uLUI72IPwq .title-wrapper .title-wrap .mbr-section-title {
  margin-bottom: 0;
}
.cid-uLUI72IPwq .nav-wrapper {
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .cid-uLUI72IPwq .nav-wrapper {
    margin-bottom: 40px;
  }
}
.cid-uLUI72IPwq .nav-wrapper .mbr-section-subtitle {
  margin-bottom: 20px;
}
.cid-uLUI72IPwq .nav-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-uLUI72IPwq .nav-wrapper .list .item-wrap {
  margin-bottom: 12px;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}
.cid-uLUI72IPwq .nav-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-uLUI72IPwq .nav-wrapper .list .item-wrap:hover,
.cid-uLUI72IPwq .nav-wrapper .list .item-wrap:focus {
  color: #ed463f;
}
.cid-uLUI72IPwq .contacts-wrapper {
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .cid-uLUI72IPwq .contacts-wrapper {
    margin-bottom: 40px;
  }
}
.cid-uLUI72IPwq .contacts-wrapper .mbr-section-subtitle {
  margin-bottom: 20px;
}
.cid-uLUI72IPwq .contacts-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-uLUI72IPwq .contacts-wrapper .list .item-wrap {
  margin-bottom: 10px;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}
.cid-uLUI72IPwq .contacts-wrapper .list .item-wrap:hover,
.cid-uLUI72IPwq .contacts-wrapper .list .item-wrap:focus {
  color: #ed463f;
}
.cid-uLUI72IPwq .contacts-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-uLUI72IPwq .social-wrapper {
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .cid-uLUI72IPwq .social-wrapper {
    margin-bottom: 40px;
  }
}
.cid-uLUI72IPwq .social-wrapper .mbr-section-subtitle {
  margin-bottom: 20px;
}
.cid-uLUI72IPwq .social-wrapper .social-wrap {
  display: inline-flex;
  flex-wrap: wrap;
}
.cid-uLUI72IPwq .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-uLUI72IPwq .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-uLUI72IPwq .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont {
  transform: scale(1.1);
}
.cid-uLUI72IPwq .social-wrapper .social-wrap .soc-item a .mbr-iconfont {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  min-width: 40px;
  color: #ffffff;
  background-color: #ed463f;
  font-size: 16px;
  border-radius: 100%;
  transition: all 0.3s ease-in-out;
  margin: 0 10px 10px 0;
}
.cid-uLUI72IPwq .mbr-copy {
  margin-bottom: 0;
  opacity: .6;
  color: #000000;
  text-align: center;
}
.cid-uLUI72IPwq .mbr-section-title {
  color: #ed463f;
}
.cid-uLUI72IPwq .mbr-section-subtitle {
  color: #000000;
}
.cid-uLUI72IPwq .list {
  color: #404349;
}
.cid-uMjk1xmppV {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uMjk1xmppV nav.navbar {
  position: fixed;
}
.cid-uMjk1xmppV .container-fluid {
  padding-left: 20px;
  padding-right: 20px;
}
@media (max-width: 992px) {
  .cid-uMjk1xmppV .container-fluid {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.cid-uMjk1xmppV .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uMjk1xmppV .dropdown-menu {
  padding: 0;
  border-radius: 0;
  box-shadow: none;
}
.cid-uMjk1xmppV .dropdown-item {
  border: none !important;
  background: #f4f4f4 !important;
  font-weight: 400 !important;
}
.cid-uMjk1xmppV .dropdown-item:hover,
.cid-uMjk1xmppV .dropdown-item:focus {
  background: #f4f4f4 !important;
  color: #093388 !important;
}
.cid-uMjk1xmppV .dropdown-item:hover span {
  color: white;
}
.cid-uMjk1xmppV .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uMjk1xmppV .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uMjk1xmppV .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uMjk1xmppV .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uMjk1xmppV .nav-link {
  position: relative;
}
.cid-uMjk1xmppV .container {
  display: flex;
  margin: 0 auto;
  max-width: 1600px;
}
@media (min-width: 992px) {
  .cid-uMjk1xmppV .container {
    flex-wrap: nowrap;
  }
}
.cid-uMjk1xmppV .iconfont-wrapper {
  color: #093388 !important;
  font-size: 1.5rem;
  transition: all 0.3s ease-in-out;
}
.cid-uMjk1xmppV .iconfont-wrapper:hover {
  opacity: .7;
}
.cid-uMjk1xmppV .dropdown-menu,
.cid-uMjk1xmppV .navbar.opened {
  background: #f4f4f4 !important;
}
.cid-uMjk1xmppV .nav-item:focus,
.cid-uMjk1xmppV .nav-link:focus {
  outline: none;
}
.cid-uMjk1xmppV .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uMjk1xmppV .dropdown .dropdown-menu .dropdown-item::after {
  right: 1.6rem;
}
.cid-uMjk1xmppV .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uMjk1xmppV .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uMjk1xmppV .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uMjk1xmppV .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uMjk1xmppV .navbar {
  min-height: 60px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #f4f4f4;
  padding: 0 !important;
  border-radius: 0 !important;
  border: none !important;
  box-shadow: none !important;
}
.cid-uMjk1xmppV .navbar.opened {
  transition: all 0.3s;
}
.cid-uMjk1xmppV .navbar .dropdown-item {
  padding: 8px 3.2rem 8px 22px;
  line-height: 1.5;
  border-radius: 0;
  margin-left: 4px;
  margin-bottom: 4px;
}
.cid-uMjk1xmppV .navbar .navbar-logo img {
  width: auto;
}
.cid-uMjk1xmppV .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uMjk1xmppV .navbar.collapsed {
  justify-content: center;
}
.cid-uMjk1xmppV .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uMjk1xmppV .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uMjk1xmppV .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-uMjk1xmppV .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uMjk1xmppV .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uMjk1xmppV .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-uMjk1xmppV .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uMjk1xmppV .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uMjk1xmppV .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uMjk1xmppV .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uMjk1xmppV .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uMjk1xmppV .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uMjk1xmppV .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uMjk1xmppV .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-uMjk1xmppV .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uMjk1xmppV .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uMjk1xmppV .navbar .dropdown-menu .dropdown-item {
    padding: 14px !important;
    text-align: center;
    margin-left: 0;
  }
  .cid-uMjk1xmppV .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 0.5rem;
    max-width: 80%;
  }
  .cid-uMjk1xmppV .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uMjk1xmppV .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uMjk1xmppV .navbar.navbar-short {
  min-height: 60px;
}
.cid-uMjk1xmppV .navbar.navbar-short .navbar-brand {
  min-height: 60px;
}
.cid-uMjk1xmppV .navbar-brand {
  min-height: 60px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word !important;
  z-index: 1;
  word-wrap: break-word !important;
  white-space: normal;
}
.cid-uMjk1xmppV .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: 400;
}
.cid-uMjk1xmppV .navbar-brand .navbar-caption:hover,
.cid-uMjk1xmppV .navbar-brand .navbar-caption:focus {
  color: #093388 !important;
}
.cid-uMjk1xmppV .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uMjk1xmppV .navbar.opened .navbar-brand .navbar-caption:hover,
.cid-uMjk1xmppV .navbar.opened .navbar-brand .navbar-caption:focus {
  color: #093388 !important;
}
.cid-uMjk1xmppV .dropdown-item.active,
.cid-uMjk1xmppV .dropdown-item:active {
  background-color: transparent;
}
.cid-uMjk1xmppV .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uMjk1xmppV .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uMjk1xmppV .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uMjk1xmppV .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #f4f4f4;
  top: 3.2rem;
  border-radius: 30px;
}
@media (max-width: 992px) {
  .cid-uMjk1xmppV .navbar.navbar-expand-lg .dropdown .dropdown-menu {
    top: 0;
  }
}
.cid-uMjk1xmppV .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
  top: 0;
  border-left: 1px solid transparent;
}
.cid-uMjk1xmppV .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uMjk1xmppV ul.navbar-nav {
  flex-wrap: wrap;
}
@media (min-width: 991px) {
  .cid-uMjk1xmppV ul.navbar-nav {
    padding: 0;
    background-color: transparent;
    border: 2px solid transparent;
  }
}
.cid-uMjk1xmppV .navbar-buttons {
  text-align: center;
  width: auto;
}
.cid-uMjk1xmppV .navbar-buttons .btn {
  white-space: nowrap;
  margin-right: 0;
  min-height: auto;
  width: auto;
  padding: 11px 26px;
}
@media (max-width: 575px) {
  .cid-uMjk1xmppV .navbar-buttons .btn {
    width: auto !important;
  }
}
.cid-uMjk1xmppV button.navbar-toggler {
  outline: none;
  width: 50px;
  height: 50px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  border-radius: 100%;
  background-color: #f4f4f4 !important;
  border: none !important;
  box-shadow: none !important;
}
.cid-uMjk1xmppV button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 20px;
  height: 2px;
  border-right: 5px;
  background-color: #093388;
}
.cid-uMjk1xmppV button.navbar-toggler .hamburger span:nth-child(1) {
  top: 18px;
  left: 15px;
  transition: all 0.2s;
}
.cid-uMjk1xmppV button.navbar-toggler .hamburger span:nth-child(2) {
  left: 15px;
  top: 24px;
  transition: all 0.15s;
}
.cid-uMjk1xmppV button.navbar-toggler .hamburger span:nth-child(3) {
  left: 15px;
  top: 24px;
  transition: all 0.15s;
}
.cid-uMjk1xmppV button.navbar-toggler .hamburger span:nth-child(4) {
  left: 15px;
  top: 30px;
  transition: all 0.2s;
}
.cid-uMjk1xmppV nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uMjk1xmppV nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uMjk1xmppV nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uMjk1xmppV nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uMjk1xmppV .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uMjk1xmppV a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uMjk1xmppV .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uMjk1xmppV .navbar {
    height: 70px;
  }
  .cid-uMjk1xmppV .navbar.opened {
    height: auto;
  }
  .cid-uMjk1xmppV .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uMjk1xmppV .navbar-nav {
  margin: 0 auto;
}
.cid-uMjk1xmppV .nav-item {
  padding: 0;
  margin: 0;
}
.cid-uMjk1xmppV .nav-item .nav-link {
  padding: 8px 22px !important;
  margin: 0 !important;
  transition: all 0.3s ease-in-out;
  font-weight: 400;
  border-radius: 3rem;
}
.cid-uMjk1xmppV .nav-item .nav-link::after {
  color: inherit !important;
  transform: rotate(0);
  transition: .3s;
}
.cid-uMjk1xmppV .nav-item .nav-link:hover,
.cid-uMjk1xmppV .nav-item .nav-link:focus {
  background-color: transparent;
  color: #093388 !important;
  opacity: .7;
}
.cid-uMjk1xmppV .nav-item .nav-link:hover::after,
.cid-uMjk1xmppV .nav-item .nav-link:focus::after {
  color: inherit !important;
}
.cid-uMjk1xmppV .nav-item .nav-link.show::after {
  transform: rotate(180deg);
}
.cid-uMjk1xmppV .nav-item .dropdown-menu {
  background-color: transparent !important;
}
.cid-uMjk1xmppV .nav-item .dropdown-menu:hover {
  background-color: transparent !important;
}
@media (max-width: 991px) {
  .cid-uMjk1xmppV .navbar {
    justify-content: flex-start !important;
  }
  .cid-uMjk1xmppV .navbar.opened {
    min-height: 100vh !important;
    flex-direction: column !important;
    justify-content: flex-start !important;
  }
  .cid-uMjk1xmppV .navbar-collapse {
    padding: 20px 0 3rem;
  }
  .cid-uMjk1xmppV .navbar-collapse .navbar-nav {
    width: 100%;
    margin-bottom: 24px;
  }
  .cid-uMjk1xmppV .navbar-collapse .nav-item {
    width: 100%;
    margin: 0;
  }
  .cid-uMjk1xmppV .navbar-collapse .nav-item:not(:first-child) {
    border-top: 1px solid transparent;
  }
  .cid-uMjk1xmppV .navbar-collapse .nav-item .nav-link {
    padding: 14px !important;
    justify-content: center;
    margin: 0 !important;
    margin-bottom: 4px !important;
  }
}
.cid-uMjk1xmppV .content-wrap {
  min-height: 60px;
}
.cid-uLUIIsVirS {
  padding-top: 9rem;
  padding-bottom: 7rem;
  background-color: #ffffff;
}
.cid-uLUIIsVirS .row {
  flex-direction: row-reverse;
}
.cid-uLUIIsVirS .mbr-text {
  max-width: 550px;
}
.cid-uLUIIsVirS .row {
  align-items: center;
}
.cid-uLUIIsVirS .mbr-section-subtitle {
  line-height: 1.6;
}
.cid-uLUIIsVirS .mbr-text,
.cid-uLUIIsVirS .mbr-section-btn {
  color: #000000;
}
.cid-uLUIIsVirS .mbr-section-title {
  color: #000000;
}
.cid-uLUIItUwLl {
  padding-top: 0rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uLUIItUwLl .content_wrapper {
  position: relative;
  padding: 50px 0;
  border-top: 1px solid #000000;
  border-bottom: 1px solid #000000;
  z-index: 1;
}
.cid-uLUIItUwLl .content_wrapper:hover .mbr-section-title a {
  color: #ff8a8a !important;
}
.cid-uLUIItUwLl .mbr-section-title {
  margin-bottom: 12px;
}
.cid-uLUIItUwLl .icon_wrapper .mbr-iconfont {
  font-size: 140px;
  width: 140px;
  height: 140px;
  position: absolute;
  z-index: -1;
  color: #fef2ed;
  top: 2%;
  right: 13%;
}
.cid-uLUIItUwLl .mbr-section-btn .btn-secondary-outline {
  padding: 3px 0;
  border: none !important;
  background-color: transparent !important;
}
.cid-uLUIItUwLl .mbr-section-btn .btn-secondary-outline:hover,
.cid-uLUIItUwLl .mbr-section-btn .btn-secondary-outline .active,
.cid-uLUIItUwLl .mbr-section-btn .btn-secondary-outline:focus {
  color: #fa4529 !important;
}
.cid-uLUIItUwLl .card_post {
  display: inline-flex;
  align-items: center;
  margin-top: 30px;
}
.cid-uLUIItUwLl .image_post {
  display: inline-block;
}
.cid-uLUIItUwLl .image_post img {
  object-fit: cover;
  height: 50px;
  width: 50px;
  min-width: 50px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.07);
  border-radius: 50%;
}
.cid-uLUIItUwLl .author_post {
  display: inline-block;
  margin-left: 15px;
}
.cid-uLUIItUwLl .mbr-fallback-image.disabled {
  display: none;
}
.cid-uLUIItUwLl .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uLUIIuWyvL {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background: #ffffff;
}
.cid-uLUIIuWyvL .google-map {
  height: 30rem;
  position: relative;
}
.cid-uLUIIuWyvL .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-uLUIIuWyvL .google-map [data-state-details] {
  color: #6b6763;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-uLUIIuWyvL .google-map[data-state] {
  background: #e9e5dc;
}
.cid-uLUIIuWyvL .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-uLUIIvYDpk {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f6f6f6;
}
.cid-uLUIIvYDpk .mbr-fallback-image.disabled {
  display: none;
}
.cid-uLUIIvYDpk .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uLUIIvYDpk .content-wrap {
  padding: 60px;
  background-color: #f7f7f7;
}
@media (max-width: 992px) {
  .cid-uLUIIvYDpk .content-wrap {
    padding: 30px 20px;
  }
}
.cid-uLUIIvYDpk .content-wrap .row {
  justify-content: center;
}
.cid-uLUIIvYDpk .title-wrapper {
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .cid-uLUIIvYDpk .title-wrapper {
    margin-bottom: 40px;
  }
}
.cid-uLUIIvYDpk .title-wrapper .title-wrap {
  display: inline-flex;
  align-items: center;
}
.cid-uLUIIvYDpk .title-wrapper .title-wrap .logo-wrapper {
  margin-right: 8px;
}
.cid-uLUIIvYDpk .title-wrapper .title-wrap .logo-wrapper img {
  width: 50px;
  height: 50px;
  object-fit: contain;
  border-radius: 8px !important;
}
.cid-uLUIIvYDpk .title-wrapper .title-wrap .mbr-section-title {
  margin-bottom: 0;
}
.cid-uLUIIvYDpk .nav-wrapper {
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .cid-uLUIIvYDpk .nav-wrapper {
    margin-bottom: 40px;
  }
}
.cid-uLUIIvYDpk .nav-wrapper .mbr-section-subtitle {
  margin-bottom: 20px;
}
.cid-uLUIIvYDpk .nav-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-uLUIIvYDpk .nav-wrapper .list .item-wrap {
  margin-bottom: 12px;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}
.cid-uLUIIvYDpk .nav-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-uLUIIvYDpk .nav-wrapper .list .item-wrap:hover,
.cid-uLUIIvYDpk .nav-wrapper .list .item-wrap:focus {
  color: #ed463f;
}
.cid-uLUIIvYDpk .contacts-wrapper {
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .cid-uLUIIvYDpk .contacts-wrapper {
    margin-bottom: 40px;
  }
}
.cid-uLUIIvYDpk .contacts-wrapper .mbr-section-subtitle {
  margin-bottom: 20px;
}
.cid-uLUIIvYDpk .contacts-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-uLUIIvYDpk .contacts-wrapper .list .item-wrap {
  margin-bottom: 10px;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}
.cid-uLUIIvYDpk .contacts-wrapper .list .item-wrap:hover,
.cid-uLUIIvYDpk .contacts-wrapper .list .item-wrap:focus {
  color: #ed463f;
}
.cid-uLUIIvYDpk .contacts-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-uLUIIvYDpk .social-wrapper {
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .cid-uLUIIvYDpk .social-wrapper {
    margin-bottom: 40px;
  }
}
.cid-uLUIIvYDpk .social-wrapper .mbr-section-subtitle {
  margin-bottom: 20px;
}
.cid-uLUIIvYDpk .social-wrapper .social-wrap {
  display: inline-flex;
  flex-wrap: wrap;
}
.cid-uLUIIvYDpk .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-uLUIIvYDpk .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-uLUIIvYDpk .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont {
  transform: scale(1.1);
}
.cid-uLUIIvYDpk .social-wrapper .social-wrap .soc-item a .mbr-iconfont {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  min-width: 40px;
  color: #ffffff;
  background-color: #ed463f;
  font-size: 16px;
  border-radius: 100%;
  transition: all 0.3s ease-in-out;
  margin: 0 10px 10px 0;
}
.cid-uLUIIvYDpk .mbr-copy {
  margin-bottom: 0;
  opacity: .6;
  color: #000000;
  text-align: center;
}
.cid-uLUIIvYDpk .mbr-section-title {
  color: #ed463f;
}
.cid-uLUIIvYDpk .mbr-section-subtitle {
  color: #000000;
}
.cid-uLUIIvYDpk .list {
  color: #404349;
}
.cid-uMjk1xmppV {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uMjk1xmppV nav.navbar {
  position: fixed;
}
.cid-uMjk1xmppV .container-fluid {
  padding-left: 20px;
  padding-right: 20px;
}
@media (max-width: 992px) {
  .cid-uMjk1xmppV .container-fluid {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.cid-uMjk1xmppV .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uMjk1xmppV .dropdown-menu {
  padding: 0;
  border-radius: 0;
  box-shadow: none;
}
.cid-uMjk1xmppV .dropdown-item {
  border: none !important;
  background: #f4f4f4 !important;
  font-weight: 400 !important;
}
.cid-uMjk1xmppV .dropdown-item:hover,
.cid-uMjk1xmppV .dropdown-item:focus {
  background: #f4f4f4 !important;
  color: #093388 !important;
}
.cid-uMjk1xmppV .dropdown-item:hover span {
  color: white;
}
.cid-uMjk1xmppV .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uMjk1xmppV .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uMjk1xmppV .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uMjk1xmppV .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uMjk1xmppV .nav-link {
  position: relative;
}
.cid-uMjk1xmppV .container {
  display: flex;
  margin: 0 auto;
  max-width: 1600px;
}
@media (min-width: 992px) {
  .cid-uMjk1xmppV .container {
    flex-wrap: nowrap;
  }
}
.cid-uMjk1xmppV .iconfont-wrapper {
  color: #093388 !important;
  font-size: 1.5rem;
  transition: all 0.3s ease-in-out;
}
.cid-uMjk1xmppV .iconfont-wrapper:hover {
  opacity: .7;
}
.cid-uMjk1xmppV .dropdown-menu,
.cid-uMjk1xmppV .navbar.opened {
  background: #f4f4f4 !important;
}
.cid-uMjk1xmppV .nav-item:focus,
.cid-uMjk1xmppV .nav-link:focus {
  outline: none;
}
.cid-uMjk1xmppV .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uMjk1xmppV .dropdown .dropdown-menu .dropdown-item::after {
  right: 1.6rem;
}
.cid-uMjk1xmppV .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uMjk1xmppV .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uMjk1xmppV .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uMjk1xmppV .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uMjk1xmppV .navbar {
  min-height: 60px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #f4f4f4;
  padding: 0 !important;
  border-radius: 0 !important;
  border: none !important;
  box-shadow: none !important;
}
.cid-uMjk1xmppV .navbar.opened {
  transition: all 0.3s;
}
.cid-uMjk1xmppV .navbar .dropdown-item {
  padding: 8px 3.2rem 8px 22px;
  line-height: 1.5;
  border-radius: 0;
  margin-left: 4px;
  margin-bottom: 4px;
}
.cid-uMjk1xmppV .navbar .navbar-logo img {
  width: auto;
}
.cid-uMjk1xmppV .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uMjk1xmppV .navbar.collapsed {
  justify-content: center;
}
.cid-uMjk1xmppV .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uMjk1xmppV .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uMjk1xmppV .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-uMjk1xmppV .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uMjk1xmppV .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uMjk1xmppV .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-uMjk1xmppV .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uMjk1xmppV .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uMjk1xmppV .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uMjk1xmppV .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uMjk1xmppV .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uMjk1xmppV .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uMjk1xmppV .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uMjk1xmppV .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-uMjk1xmppV .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uMjk1xmppV .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uMjk1xmppV .navbar .dropdown-menu .dropdown-item {
    padding: 14px !important;
    text-align: center;
    margin-left: 0;
  }
  .cid-uMjk1xmppV .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 0.5rem;
    max-width: 80%;
  }
  .cid-uMjk1xmppV .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uMjk1xmppV .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uMjk1xmppV .navbar.navbar-short {
  min-height: 60px;
}
.cid-uMjk1xmppV .navbar.navbar-short .navbar-brand {
  min-height: 60px;
}
.cid-uMjk1xmppV .navbar-brand {
  min-height: 60px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word !important;
  z-index: 1;
  word-wrap: break-word !important;
  white-space: normal;
}
.cid-uMjk1xmppV .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: 400;
}
.cid-uMjk1xmppV .navbar-brand .navbar-caption:hover,
.cid-uMjk1xmppV .navbar-brand .navbar-caption:focus {
  color: #093388 !important;
}
.cid-uMjk1xmppV .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uMjk1xmppV .navbar.opened .navbar-brand .navbar-caption:hover,
.cid-uMjk1xmppV .navbar.opened .navbar-brand .navbar-caption:focus {
  color: #093388 !important;
}
.cid-uMjk1xmppV .dropdown-item.active,
.cid-uMjk1xmppV .dropdown-item:active {
  background-color: transparent;
}
.cid-uMjk1xmppV .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uMjk1xmppV .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uMjk1xmppV .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uMjk1xmppV .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #f4f4f4;
  top: 3.2rem;
  border-radius: 30px;
}
@media (max-width: 992px) {
  .cid-uMjk1xmppV .navbar.navbar-expand-lg .dropdown .dropdown-menu {
    top: 0;
  }
}
.cid-uMjk1xmppV .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
  top: 0;
  border-left: 1px solid transparent;
}
.cid-uMjk1xmppV .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uMjk1xmppV ul.navbar-nav {
  flex-wrap: wrap;
}
@media (min-width: 991px) {
  .cid-uMjk1xmppV ul.navbar-nav {
    padding: 0;
    background-color: transparent;
    border: 2px solid transparent;
  }
}
.cid-uMjk1xmppV .navbar-buttons {
  text-align: center;
  width: auto;
}
.cid-uMjk1xmppV .navbar-buttons .btn {
  white-space: nowrap;
  margin-right: 0;
  min-height: auto;
  width: auto;
  padding: 11px 26px;
}
@media (max-width: 575px) {
  .cid-uMjk1xmppV .navbar-buttons .btn {
    width: auto !important;
  }
}
.cid-uMjk1xmppV button.navbar-toggler {
  outline: none;
  width: 50px;
  height: 50px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  border-radius: 100%;
  background-color: #f4f4f4 !important;
  border: none !important;
  box-shadow: none !important;
}
.cid-uMjk1xmppV button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 20px;
  height: 2px;
  border-right: 5px;
  background-color: #093388;
}
.cid-uMjk1xmppV button.navbar-toggler .hamburger span:nth-child(1) {
  top: 18px;
  left: 15px;
  transition: all 0.2s;
}
.cid-uMjk1xmppV button.navbar-toggler .hamburger span:nth-child(2) {
  left: 15px;
  top: 24px;
  transition: all 0.15s;
}
.cid-uMjk1xmppV button.navbar-toggler .hamburger span:nth-child(3) {
  left: 15px;
  top: 24px;
  transition: all 0.15s;
}
.cid-uMjk1xmppV button.navbar-toggler .hamburger span:nth-child(4) {
  left: 15px;
  top: 30px;
  transition: all 0.2s;
}
.cid-uMjk1xmppV nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uMjk1xmppV nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uMjk1xmppV nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uMjk1xmppV nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uMjk1xmppV .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uMjk1xmppV a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uMjk1xmppV .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uMjk1xmppV .navbar {
    height: 70px;
  }
  .cid-uMjk1xmppV .navbar.opened {
    height: auto;
  }
  .cid-uMjk1xmppV .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uMjk1xmppV .navbar-nav {
  margin: 0 auto;
}
.cid-uMjk1xmppV .nav-item {
  padding: 0;
  margin: 0;
}
.cid-uMjk1xmppV .nav-item .nav-link {
  padding: 8px 22px !important;
  margin: 0 !important;
  transition: all 0.3s ease-in-out;
  font-weight: 400;
  border-radius: 3rem;
}
.cid-uMjk1xmppV .nav-item .nav-link::after {
  color: inherit !important;
  transform: rotate(0);
  transition: .3s;
}
.cid-uMjk1xmppV .nav-item .nav-link:hover,
.cid-uMjk1xmppV .nav-item .nav-link:focus {
  background-color: transparent;
  color: #093388 !important;
  opacity: .7;
}
.cid-uMjk1xmppV .nav-item .nav-link:hover::after,
.cid-uMjk1xmppV .nav-item .nav-link:focus::after {
  color: inherit !important;
}
.cid-uMjk1xmppV .nav-item .nav-link.show::after {
  transform: rotate(180deg);
}
.cid-uMjk1xmppV .nav-item .dropdown-menu {
  background-color: transparent !important;
}
.cid-uMjk1xmppV .nav-item .dropdown-menu:hover {
  background-color: transparent !important;
}
@media (max-width: 991px) {
  .cid-uMjk1xmppV .navbar {
    justify-content: flex-start !important;
  }
  .cid-uMjk1xmppV .navbar.opened {
    min-height: 100vh !important;
    flex-direction: column !important;
    justify-content: flex-start !important;
  }
  .cid-uMjk1xmppV .navbar-collapse {
    padding: 20px 0 3rem;
  }
  .cid-uMjk1xmppV .navbar-collapse .navbar-nav {
    width: 100%;
    margin-bottom: 24px;
  }
  .cid-uMjk1xmppV .navbar-collapse .nav-item {
    width: 100%;
    margin: 0;
  }
  .cid-uMjk1xmppV .navbar-collapse .nav-item:not(:first-child) {
    border-top: 1px solid transparent;
  }
  .cid-uMjk1xmppV .navbar-collapse .nav-item .nav-link {
    padding: 14px !important;
    justify-content: center;
    margin: 0 !important;
    margin-bottom: 4px !important;
  }
}
.cid-uMjk1xmppV .content-wrap {
  min-height: 60px;
}
.cid-uLUJkGyqnV {
  padding-top: 9rem;
  padding-bottom: 7rem;
  background-color: #ffffff;
}
.cid-uLUJkGyqnV .row {
  flex-direction: row-reverse;
}
.cid-uLUJkGyqnV .mbr-text {
  max-width: 550px;
}
.cid-uLUJkGyqnV .row {
  align-items: center;
}
.cid-uLUJkGyqnV .mbr-section-subtitle {
  line-height: 1.6;
}
.cid-uLUJkGyqnV .mbr-text,
.cid-uLUJkGyqnV .mbr-section-btn {
  color: #000000;
}
.cid-uLUJkHxUjJ {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #ffffff;
}
.cid-uLUJkHxUjJ .counter-container ul {
  margin-bottom: 0;
}
.cid-uLUJkHxUjJ .counter-container ul li {
  padding-left: 0rem;
  margin-bottom: 1rem;
  list-style: none;
  position: relative;
}
.cid-uLUJkHxUjJ .counter-container ul li:before {
  position: absolute;
  font-family: 'Moririse2' !important;
  left: -40px;
  content: "\e96b";
  top: -2px;
  display: flex;
  transform: rotate(30deg);
  justify-content: center;
  align-items: center;
  color: #ffb18a;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  margin-top: 5px;
}
.cid-uLUJkIyflX {
  padding-top: 0rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uLUJkIyflX .content_wrapper {
  position: relative;
  padding: 50px 0;
  border-top: 1px solid #000000;
  border-bottom: 1px solid #000000;
  z-index: 1;
}
.cid-uLUJkIyflX .content_wrapper:hover .mbr-section-title a {
  color: #ff8a8a !important;
}
.cid-uLUJkIyflX .mbr-section-title {
  margin-bottom: 12px;
}
.cid-uLUJkIyflX .icon_wrapper .mbr-iconfont {
  font-size: 140px;
  width: 140px;
  height: 140px;
  position: absolute;
  z-index: -1;
  color: #fef2ed;
  top: 2%;
  right: 13%;
}
.cid-uLUJkIyflX .mbr-section-btn .btn-secondary-outline {
  padding: 3px 0;
  border: none !important;
  background-color: transparent !important;
}
.cid-uLUJkIyflX .mbr-section-btn .btn-secondary-outline:hover,
.cid-uLUJkIyflX .mbr-section-btn .btn-secondary-outline .active,
.cid-uLUJkIyflX .mbr-section-btn .btn-secondary-outline:focus {
  color: #fa4529 !important;
}
.cid-uLUJkIyflX .card_post {
  display: inline-flex;
  align-items: center;
  margin-top: 30px;
}
.cid-uLUJkIyflX .image_post {
  display: inline-block;
}
.cid-uLUJkIyflX .image_post img {
  object-fit: cover;
  height: 50px;
  width: 50px;
  min-width: 50px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.07);
  border-radius: 50%;
}
.cid-uLUJkIyflX .author_post {
  display: inline-block;
  margin-left: 15px;
}
.cid-uLUJkIyflX .mbr-fallback-image.disabled {
  display: none;
}
.cid-uLUJkIyflX .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uLUJkJHXOo {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
  overflow: hidden;
}
.cid-uLUJkJHXOo .mbr-fallback-image.disabled {
  display: none;
}
.cid-uLUJkJHXOo .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-uLUJkJHXOo .container {
    padding: 0 22px;
  }
}
.cid-uLUJkJHXOo .card {
  justify-content: center;
}
.cid-uLUJkJHXOo .content-wrapper {
  padding-right: 32px;
}
@media (max-width: 992px) {
  .cid-uLUJkJHXOo .content-wrapper {
    padding: 0;
    margin-bottom: 40px;
  }
}
.cid-uLUJkJHXOo .content-wrapper .mbr-section-title {
  margin-bottom: 10px;
}
.cid-uLUJkJHXOo .content-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-uLUJkJHXOo .image-wrapper {
  display: flex;
  justify-content: center;
}
.cid-uLUJkJHXOo .image-wrapper img {
  height: 600px;
  width: 600px;
  border-radius: 100% !important;
  object-fit: cover;
  box-shadow: 10px 10px 60px #ff8a8a;
}
@media (max-width: 1440px) {
  .cid-uLUJkJHXOo .image-wrapper img {
    height: 500px;
    width: 500px;
  }
}
@media (max-width: 1200px) {
  .cid-uLUJkJHXOo .image-wrapper img {
    height: 400px;
    width: 400px;
  }
}
@media (max-width: 992px) {
  .cid-uLUJkJHXOo .image-wrapper img {
    height: 400px;
    width: 400px;
  }
}
@media (max-width: 768px) {
  .cid-uLUJkJHXOo .image-wrapper img {
    height: 260px;
    width: 260px;
  }
}
.cid-uLUJkJHXOo .mbr-section-title {
  color: #000000;
}
.cid-uLUJkJHXOo .mbr-text {
  color: #000000;
}
.cid-uLUJkKLpWW {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uLUJkKLpWW .mbr-title {
  color: #000000;
}
.cid-uLUJkKLpWW .card-wrapper {
  border-top: 2px solid currentColor;
}
.cid-uLUJkKLpWW .card-wrapper {
  padding-top: 4rem;
}
.cid-uLUJkKLpWW .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uLUJkKLpWW .mbr-text,
.cid-uLUJkKLpWW .mbr-section-btn {
  color: #000000;
}
.cid-uLUJkKLpWW .mbr-section-title,
.cid-uLUJkKLpWW .item {
  color: #000000;
}
.cid-uLUJkKLpWW .mbr-section-title,
.cid-uLUJkKLpWW .card-wrapper {
  color: #000000;
  text-align: center;
}
.cid-uLUJkM71rj {
  display: flex;
  padding-top: 8rem;
  padding-bottom: 8rem;
  background-color: #f6f6f6;
}
.cid-uLUJkM71rj .mbr-fallback-image.disabled {
  display: none;
}
.cid-uLUJkM71rj .line {
  width: 100%;
  height: 1px;
  background: currentColor;
  margin-bottom: 2rem;
}
.cid-uLUJkM71rj .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uLUJkM71rj h1 {
  max-width: 800px;
}
.cid-uLUJkM71rj p {
  max-width: 600px;
  margin-right: 0;
  margin-left: auto;
}
@media (min-width: 768px) {
  .cid-uLUJkM71rj {
    align-items: center;
  }
  .cid-uLUJkM71rj .row {
    justify-content: center;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-uLUJkM71rj .content-wrap {
    min-width: 50%;
  }
}
@media (max-width: 767px) {
  .cid-uLUJkM71rj {
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-uLUJkM71rj .mbr-row {
    -webkit-justify-content: center;
    justify-content: center;
  }
  .cid-uLUJkM71rj .content-wrap {
    width: 100%;
  }
}
.cid-uLUJkM71rj .mbr-section-subtitle,
.cid-uLUJkM71rj .line {
  color: #291f1e;
}
.cid-uLUJkM71rj .mbr-text,
.cid-uLUJkM71rj .mbr-section-btn {
  text-align: left;
  color: #000000;
}
.cid-uLUJkM71rj .mbr-section-title {
  color: #291f1e;
}
.cid-uLUJkNgmSR {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-uLUJkNgmSR .text-wrapper {
  padding: 2rem;
  max-width: 650px;
}
@media (max-width: 991px) {
  .cid-uLUJkNgmSR .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uLUJkNgmSR img {
  width: 130%;
}
@media (max-width: 1400px) {
  .cid-uLUJkNgmSR img {
    width: 150%;
  }
}
@media (max-width: 992px) {
  .cid-uLUJkNgmSR img {
    width: 100%;
  }
}
@media (min-width: 992px) {
  .cid-uLUJkNgmSR .text-wrapper {
    padding: 2rem;
  }
}
.cid-uLUJkNgmSR .mbr-section-subtitle {
  color: #ff8a8a;
}
.cid-uLUJkNgmSR .mbr-text {
  color: #000000;
}
.cid-uLUJkNgmSR .mbr-section-title {
  color: #000000;
}
.cid-uLUJkOCqh0 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f6f6f6;
}
.cid-uLUJkOCqh0 .wrapper {
  border-radius: 30px;
}
@media (max-width: 991px) {
  .cid-uLUJkOCqh0 .wrapper {
    padding: 0;
  }
}
@media (min-width: 992px) {
  .cid-uLUJkOCqh0 .wrapper {
    padding: 4rem 6rem;
  }
}
.cid-uLUJkOCqh0 .social-row .soc-item {
  display: inline-block;
  text-align: center;
  margin-bottom: 1rem;
  margin-right: 2rem;
}
@media (max-width: 991px) {
  .cid-uLUJkOCqh0 .social-row .soc-item {
    margin-right: .7rem;
  }
}
.cid-uLUJkOCqh0 .social-row .soc-item .mbr-iconfont {
  font-size: 32px;
  border-radius: 50%;
  padding: 0.6rem;
  border: 2px solid #ffa29d;
  transition: all 0.3s;
  color: #ffa29d;
}
.cid-uLUJkOCqh0 .social-row .soc-item .mbr-iconfont:hover {
  background-color: #ffa29d;
  color: #000000;
}
.cid-uLUJkOCqh0 .border {
  padding: 2.5rem 2rem;
  border-radius: 30px;
}
@media (max-width: 991px) {
  .cid-uLUJkOCqh0 .border {
    padding: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uLUJkOCqh0 .wrapp {
    padding: 1rem;
  }
}
.cid-uLVc5f8Drh {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
  flex-direction: column;
  justify-content: center;
}
.cid-uLVc5f8Drh .mbr-fallback-image.disabled {
  display: none;
}
.cid-uLVc5f8Drh .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-uLVc5f8Drh .container {
    padding: 0 16px;
  }
}
.cid-uLVc5f8Drh .row {
  justify-content: space-between;
}
.cid-uLVc5f8Drh .content-wrapper .mbr-desc {
  margin-bottom: 32px;
}
.cid-uLVc5f8Drh .panel-group {
  border: 1px solid #000000;
  background-color: #ffffff;
}
.cid-uLVc5f8Drh .panel-group .card {
  position: relative;
  border-top: 1px solid #000000;
  border-radius: 0 !important;
  transition: all 0.3s ease-in-out;
  padding: 48px;
}
@media (max-width: 992px) {
  .cid-uLVc5f8Drh .panel-group .card {
    padding: 32px 16px;
  }
}
.cid-uLVc5f8Drh .panel-group .card:first-child {
  border-top: none;
}
.cid-uLVc5f8Drh .panel-group .card .card-header {
  background-color: transparent;
  border: none;
  border-radius: 0;
  padding: 0;
}
.cid-uLVc5f8Drh .panel-group .card .card-header .panel-title {
  display: inline-flex;
  padding: 0;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
.cid-uLVc5f8Drh .panel-group .card .card-header .panel-title::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  background-color: #ffffff;
  pointer-events: none;
  opacity: 0;
  width: 100%;
  height: 100%;
}
.cid-uLVc5f8Drh .panel-group .card .card-header .panel-title .panel-title-edit {
  position: relative;
  z-index: 1;
  margin-bottom: 0;
}
.cid-uLVc5f8Drh .panel-group .card .card-header .panel-title .mbr-iconfont {
  position: relative;
  z-index: 1;
  font-size: 16px;
  width: 30px;
  min-width: 30px;
  height: 30px;
  margin-bottom: 0;
  transition: all 0.3s ease-in-out;
  color: #000000;
  margin-left: 30px;
  background-color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uLVc5f8Drh .panel-group .card .card-header .panel-title:hover .mbr-iconfont {
  box-shadow: inset 0 -31px 0 #29372d;
  color: #ffffff;
}
.cid-uLVc5f8Drh .panel-group .card .card-header .panel-title:not(.collapsed) .mbr-iconfont {
  transform: rotate(180deg);
  background-color: #ffffff;
}
.cid-uLVc5f8Drh .panel-group .card .card-header .panel-title:not(.collapsed)::before {
  opacity: 1;
}
.cid-uLVc5f8Drh .panel-group .card .panel-collapse .panel-body {
  position: relative;
  z-index: 1;
  padding-top: 48px;
}
@media (max-width: 992px) {
  .cid-uLVc5f8Drh .panel-group .card .panel-collapse .panel-body {
    padding-top: 24px;
  }
}
.cid-uLVc5f8Drh .panel-group .card .panel-collapse .panel-body .panel-text {
  margin-bottom: 0;
}
.cid-uLVc5f8Drh .panel-group .card .panel-collapse .panel-body .mbr-section-btn {
  margin-top: 22px;
}
.cid-uLVc5f8Drh .mbr-desc {
  color: #000000;
}
.cid-uLVc5f8Drh .panel-title-edit {
  color: #000000;
}
.cid-uLVc5f8Drh .panel-text {
  color: #000000;
}
.cid-uLUJkQZK5V {
  padding-top: 7rem;
  padding-bottom: 7rem;
  background-color: #f6f6f6;
}
.cid-uLUJkQZK5V .mbr-text {
  color: #000000;
}
.cid-uLUJkQZK5V .mbr-section-subtitle {
  color: #f3f6f9;
}
.cid-uLUJkQZK5V .mbr-section-title {
  color: #000000;
}
.cid-uLV7ZGTYMX {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uLV7ZGTYMX .mbr-fallback-image.disabled {
  display: none;
}
.cid-uLV7ZGTYMX .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-uLV7ZGTYMX .container {
    padding: 0 20px;
  }
}
.cid-uLV7ZGTYMX .row {
  margin: 0;
}
.cid-uLV7ZGTYMX .title-wrapper .mbr-section-title {
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .cid-uLV7ZGTYMX .title-wrapper .mbr-section-title {
    margin-bottom: 32px;
  }
}
.cid-uLV7ZGTYMX .video-block .video-wrapper .app-video-wrapper::before {
  color: #f5fd7b;
  text-shadow: none;
}
.cid-uLV7ZGTYMX .video-block .video-wrapper .app-video-wrapper img {
  object-fit: cover;
  height: 500px;
  border-radius: 50px;
}
@media (max-width: 768px) {
  .cid-uLV7ZGTYMX .video-block .video-wrapper .app-video-wrapper img {
    height: 300px;
  }
}
.cid-uLV7ZGTYMX .video-block .video-wrapper iframe {
  border-radius: 50px;
}
.cid-uLV7ZGTYMX .mbr-section-title {
  color: #000000;
}
.cid-uLUJkTDjMG {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f6f6f6;
}
.cid-uLUJkTDjMG .row {
  justify-content: space-between;
}
.cid-uLUJkTDjMG .icon-wrapper {
  width: 100%;
  text-align: right;
}
.cid-uLUJkTDjMG .mbr-iconfont {
  color: #47b5ed;
  font-size: 3rem;
}
.cid-uLUJkTDjMG .text-wrapper {
  min-width: 50%;
}
.cid-uLUJkTDjMG .image-wrapper {
  width: 70px;
  height: 70px;
  min-width: 70px;
  border-radius: 50%;
  margin-top: 5px;
  margin-right: 1rem;
  overflow: hidden;
}
.cid-uLUJkTDjMG .image-wrapper img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.cid-uLUJkTDjMG .d-flex {
  border-top: 2px solid currentColor;
  padding-top: 4rem;
  align-items: center;
}
.cid-uLUJkTDjMG .mbr-section-title {
  color: #000000;
}
.cid-uLUJkTDjMG .position {
  color: #666666;
}
.cid-uLUJkTDjMG .name,
.cid-uLUJkTDjMG .d-flex {
  color: #000000;
}
.cid-uLUJkVvzUj {
  display: flex;
  padding-top: 8rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uLUJkVvzUj .mbr-fallback-image.disabled {
  display: none;
}
.cid-uLUJkVvzUj .line {
  width: 100%;
  height: 1px;
  background: currentColor;
  margin-bottom: 2rem;
}
.cid-uLUJkVvzUj .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uLUJkVvzUj h1 {
  max-width: 800px;
}
.cid-uLUJkVvzUj p {
  max-width: 600px;
  margin-right: 0;
  margin-left: auto;
}
@media (min-width: 768px) {
  .cid-uLUJkVvzUj {
    align-items: center;
  }
  .cid-uLUJkVvzUj .row {
    justify-content: center;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-uLUJkVvzUj .content-wrap {
    min-width: 50%;
  }
}
@media (max-width: 767px) {
  .cid-uLUJkVvzUj {
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-uLUJkVvzUj .mbr-row {
    -webkit-justify-content: center;
    justify-content: center;
  }
  .cid-uLUJkVvzUj .content-wrap {
    width: 100%;
  }
}
.cid-uLUJkVvzUj .mbr-section-subtitle,
.cid-uLUJkVvzUj .line {
  color: #291f1e;
}
.cid-uLUJkVvzUj .mbr-text,
.cid-uLUJkVvzUj .mbr-section-btn {
  text-align: left;
  color: #000000;
}
.cid-uLUJkVvzUj .mbr-section-title {
  color: #291f1e;
}
.cid-uLUJkXIJ5F {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uLUJkXIJ5F ul {
  margin: 0;
  list-style: none;
  padding-left: 0rem;
}
.cid-uLUJkXIJ5F ul li {
  transition: all 0.3s;
  padding-bottom: 0.5rem;
}
.cid-uLUJkXIJ5F ul li:hover {
  transform: translateX(10px);
}
.cid-uLUJkXIJ5F ul li:hover a {
  color: #fa4529 !important;
  background: none !important;
}
.cid-uLUJkXIJ5F h4 {
  border-bottom: 2px solid currentColor;
  padding-bottom: 1rem;
  margin-bottom: 3rem;
}
.cid-uLUJkXIJ5F .mbr-title {
  color: #ff8a8a;
}
.cid-uLUJkZjd5X {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f6f6f6;
}
.cid-uLUJkZjd5X .mbr-fallback-image.disabled {
  display: none;
}
.cid-uLUJkZjd5X .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uLUJkZjd5X .content-wrapper {
  padding: 0 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 992px) {
  .cid-uLUJkZjd5X .content-wrapper {
    display: block;
    padding: 0;
  }
}
.cid-uLUJkZjd5X .content-wrapper .title-wrapper {
  width: 50%;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-uLUJkZjd5X .content-wrapper .title-wrapper {
    width: 100%;
    margin-bottom: 24px;
  }
}
.cid-uLUJkZjd5X .content-wrapper .title-wrapper .mbr-section-title {
  margin-bottom: 32px;
}
@media (max-width: 992px) {
  .cid-uLUJkZjd5X .content-wrapper .title-wrapper .mbr-section-title {
    width: 100%;
    margin-bottom: 24px;
  }
}
.cid-uLUJkZjd5X .content-wrapper .title-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-uLUJkZjd5X .content-wrapper .title-wrapper .mbr-section-btn {
  margin-top: 22px;
}
@media (max-width: 992px) {
  .cid-uLUJkZjd5X .content-wrapper .title-wrapper .mbr-section-btn {
    margin-top: 16px;
  }
}
.cid-uLUJkZjd5X .content-wrapper .image-wrap {
  width: 40%;
  border: 3px solid #050f0f;
  box-shadow: 4px 4px 0 0 #050f0f;
  background-color: #ffffff;
  padding: 60px 20px;
  transform: rotate(3deg);
}
@media (max-width: 992px) {
  .cid-uLUJkZjd5X .content-wrapper .image-wrap {
    padding: 32px 16px;
    width: 100%;
    transform: rotate(0);
  }
}
.cid-uLUJkZjd5X .content-wrapper .image-wrap img {
  height: 550px;
  width: 100%;
  object-fit: cover;
}
.cid-uLUJkZjd5X .mbr-section-title {
  color: #050f0f;
}
.cid-uLUJkZjd5X .mbr-text {
  color: #050f0f;
}
.cid-uLUJkZjd5X .mbr-text,
.cid-uLUJkZjd5X .text-wrapper,
.cid-uLUJkZjd5X .rating-wrapper {
  color: #000000;
}
.cid-uLURpZndmm {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
@media (max-width: 992px) {
  .cid-uLURpZndmm .container {
    padding: 0 25px;
  }
}
.cid-uLURpZndmm .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-uLURpZndmm .title-wrapper .mbr-section-title {
    margin-bottom: 50px;
  }
}
.cid-uLURpZndmm .panel-group {
  border-bottom: 2px solid #000000;
}
.cid-uLURpZndmm .panel-group .card {
  border-top: 2px solid #000000;
  border-radius: 0 !important;
  padding: 0;
}
.cid-uLURpZndmm .panel-group .card .card-header {
  padding: 16px 0;
  border: none;
  background-color: transparent;
}
.cid-uLURpZndmm .panel-group .card .card-header .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-uLURpZndmm .panel-group .card .card-header .panel-title:not(.collapsed) .mbr-iconfont {
  color: #f0f0f0;
  box-shadow: inset 52px 0 0 0 #000000;
}
.cid-uLURpZndmm .panel-group .card .card-header .panel-title:hover .mbr-iconfont {
  color: #f0f0f0;
  box-shadow: inset 52px 0 0 0 #000000;
}
.cid-uLURpZndmm .panel-group .card .card-header .panel-title .panel-title-edit {
  margin-bottom: 0;
}
.cid-uLURpZndmm .panel-group .card .card-header .panel-title .mbr-iconfont {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  min-width: 52px;
  height: 52px;
  font-size: 20px;
  color: #000000;
  background-color: #f0f0f0;
  margin-left: 10px;
  transition: all 0.3s ease-in-out;
}
.cid-uLURpZndmm .panel-group .card .panel-collapse .panel-body {
  padding-bottom: 25px;
}
.cid-uLURpZndmm .panel-group .card .panel-collapse .panel-body .panel-text {
  margin-bottom: 0;
}
.cid-uLURpZndmm .mbr-section-title {
  color: #000000;
}
.cid-uLURpZndmm .panel-title-edit {
  color: #000000;
}
.cid-uLURpZndmm .panel-text {
  color: #000000;
}
.cid-uLUJl0SCGA {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background: #ffffff;
}
.cid-uLUJl0SCGA .google-map {
  height: 30rem;
  position: relative;
}
.cid-uLUJl0SCGA .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-uLUJl0SCGA .google-map [data-state-details] {
  color: #6b6763;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-uLUJl0SCGA .google-map[data-state] {
  background: #e9e5dc;
}
.cid-uLUJl0SCGA .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-uLUJl2Wagn {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f6f6f6;
}
.cid-uLUJl2Wagn .mbr-fallback-image.disabled {
  display: none;
}
.cid-uLUJl2Wagn .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uLUJl2Wagn .content-wrap {
  padding: 60px;
  background-color: #f7f7f7;
}
@media (max-width: 992px) {
  .cid-uLUJl2Wagn .content-wrap {
    padding: 30px 20px;
  }
}
.cid-uLUJl2Wagn .content-wrap .row {
  justify-content: center;
}
.cid-uLUJl2Wagn .title-wrapper {
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .cid-uLUJl2Wagn .title-wrapper {
    margin-bottom: 40px;
  }
}
.cid-uLUJl2Wagn .title-wrapper .title-wrap {
  display: inline-flex;
  align-items: center;
}
.cid-uLUJl2Wagn .title-wrapper .title-wrap .logo-wrapper {
  margin-right: 8px;
}
.cid-uLUJl2Wagn .title-wrapper .title-wrap .logo-wrapper img {
  width: 50px;
  height: 50px;
  object-fit: contain;
  border-radius: 8px !important;
}
.cid-uLUJl2Wagn .title-wrapper .title-wrap .mbr-section-title {
  margin-bottom: 0;
}
.cid-uLUJl2Wagn .nav-wrapper {
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .cid-uLUJl2Wagn .nav-wrapper {
    margin-bottom: 40px;
  }
}
.cid-uLUJl2Wagn .nav-wrapper .mbr-section-subtitle {
  margin-bottom: 20px;
}
.cid-uLUJl2Wagn .nav-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-uLUJl2Wagn .nav-wrapper .list .item-wrap {
  margin-bottom: 12px;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}
.cid-uLUJl2Wagn .nav-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-uLUJl2Wagn .nav-wrapper .list .item-wrap:hover,
.cid-uLUJl2Wagn .nav-wrapper .list .item-wrap:focus {
  color: #ed463f;
}
.cid-uLUJl2Wagn .contacts-wrapper {
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .cid-uLUJl2Wagn .contacts-wrapper {
    margin-bottom: 40px;
  }
}
.cid-uLUJl2Wagn .contacts-wrapper .mbr-section-subtitle {
  margin-bottom: 20px;
}
.cid-uLUJl2Wagn .contacts-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-uLUJl2Wagn .contacts-wrapper .list .item-wrap {
  margin-bottom: 10px;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}
.cid-uLUJl2Wagn .contacts-wrapper .list .item-wrap:hover,
.cid-uLUJl2Wagn .contacts-wrapper .list .item-wrap:focus {
  color: #ed463f;
}
.cid-uLUJl2Wagn .contacts-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-uLUJl2Wagn .social-wrapper {
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .cid-uLUJl2Wagn .social-wrapper {
    margin-bottom: 40px;
  }
}
.cid-uLUJl2Wagn .social-wrapper .mbr-section-subtitle {
  margin-bottom: 20px;
}
.cid-uLUJl2Wagn .social-wrapper .social-wrap {
  display: inline-flex;
  flex-wrap: wrap;
}
.cid-uLUJl2Wagn .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-uLUJl2Wagn .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-uLUJl2Wagn .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont {
  transform: scale(1.1);
}
.cid-uLUJl2Wagn .social-wrapper .social-wrap .soc-item a .mbr-iconfont {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  min-width: 40px;
  color: #ffffff;
  background-color: #ed463f;
  font-size: 16px;
  border-radius: 100%;
  transition: all 0.3s ease-in-out;
  margin: 0 10px 10px 0;
}
.cid-uLUJl2Wagn .mbr-copy {
  margin-bottom: 0;
  opacity: .6;
  color: #000000;
  text-align: center;
}
.cid-uLUJl2Wagn .mbr-section-title {
  color: #ed463f;
}
.cid-uLUJl2Wagn .mbr-section-subtitle {
  color: #000000;
}
.cid-uLUJl2Wagn .list {
  color: #404349;
}
.cid-uMjk1xmppV {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uMjk1xmppV nav.navbar {
  position: fixed;
}
.cid-uMjk1xmppV .container-fluid {
  padding-left: 20px;
  padding-right: 20px;
}
@media (max-width: 992px) {
  .cid-uMjk1xmppV .container-fluid {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.cid-uMjk1xmppV .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uMjk1xmppV .dropdown-menu {
  padding: 0;
  border-radius: 0;
  box-shadow: none;
}
.cid-uMjk1xmppV .dropdown-item {
  border: none !important;
  background: #f4f4f4 !important;
  font-weight: 400 !important;
}
.cid-uMjk1xmppV .dropdown-item:hover,
.cid-uMjk1xmppV .dropdown-item:focus {
  background: #f4f4f4 !important;
  color: #093388 !important;
}
.cid-uMjk1xmppV .dropdown-item:hover span {
  color: white;
}
.cid-uMjk1xmppV .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uMjk1xmppV .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uMjk1xmppV .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uMjk1xmppV .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uMjk1xmppV .nav-link {
  position: relative;
}
.cid-uMjk1xmppV .container {
  display: flex;
  margin: 0 auto;
  max-width: 1600px;
}
@media (min-width: 992px) {
  .cid-uMjk1xmppV .container {
    flex-wrap: nowrap;
  }
}
.cid-uMjk1xmppV .iconfont-wrapper {
  color: #093388 !important;
  font-size: 1.5rem;
  transition: all 0.3s ease-in-out;
}
.cid-uMjk1xmppV .iconfont-wrapper:hover {
  opacity: .7;
}
.cid-uMjk1xmppV .dropdown-menu,
.cid-uMjk1xmppV .navbar.opened {
  background: #f4f4f4 !important;
}
.cid-uMjk1xmppV .nav-item:focus,
.cid-uMjk1xmppV .nav-link:focus {
  outline: none;
}
.cid-uMjk1xmppV .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uMjk1xmppV .dropdown .dropdown-menu .dropdown-item::after {
  right: 1.6rem;
}
.cid-uMjk1xmppV .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uMjk1xmppV .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uMjk1xmppV .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uMjk1xmppV .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uMjk1xmppV .navbar {
  min-height: 60px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #f4f4f4;
  padding: 0 !important;
  border-radius: 0 !important;
  border: none !important;
  box-shadow: none !important;
}
.cid-uMjk1xmppV .navbar.opened {
  transition: all 0.3s;
}
.cid-uMjk1xmppV .navbar .dropdown-item {
  padding: 8px 3.2rem 8px 22px;
  line-height: 1.5;
  border-radius: 0;
  margin-left: 4px;
  margin-bottom: 4px;
}
.cid-uMjk1xmppV .navbar .navbar-logo img {
  width: auto;
}
.cid-uMjk1xmppV .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uMjk1xmppV .navbar.collapsed {
  justify-content: center;
}
.cid-uMjk1xmppV .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uMjk1xmppV .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uMjk1xmppV .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-uMjk1xmppV .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uMjk1xmppV .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uMjk1xmppV .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-uMjk1xmppV .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uMjk1xmppV .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uMjk1xmppV .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uMjk1xmppV .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uMjk1xmppV .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uMjk1xmppV .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uMjk1xmppV .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uMjk1xmppV .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-uMjk1xmppV .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uMjk1xmppV .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uMjk1xmppV .navbar .dropdown-menu .dropdown-item {
    padding: 14px !important;
    text-align: center;
    margin-left: 0;
  }
  .cid-uMjk1xmppV .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 0.5rem;
    max-width: 80%;
  }
  .cid-uMjk1xmppV .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uMjk1xmppV .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uMjk1xmppV .navbar.navbar-short {
  min-height: 60px;
}
.cid-uMjk1xmppV .navbar.navbar-short .navbar-brand {
  min-height: 60px;
}
.cid-uMjk1xmppV .navbar-brand {
  min-height: 60px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word !important;
  z-index: 1;
  word-wrap: break-word !important;
  white-space: normal;
}
.cid-uMjk1xmppV .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: 400;
}
.cid-uMjk1xmppV .navbar-brand .navbar-caption:hover,
.cid-uMjk1xmppV .navbar-brand .navbar-caption:focus {
  color: #093388 !important;
}
.cid-uMjk1xmppV .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uMjk1xmppV .navbar.opened .navbar-brand .navbar-caption:hover,
.cid-uMjk1xmppV .navbar.opened .navbar-brand .navbar-caption:focus {
  color: #093388 !important;
}
.cid-uMjk1xmppV .dropdown-item.active,
.cid-uMjk1xmppV .dropdown-item:active {
  background-color: transparent;
}
.cid-uMjk1xmppV .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uMjk1xmppV .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uMjk1xmppV .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uMjk1xmppV .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #f4f4f4;
  top: 3.2rem;
  border-radius: 30px;
}
@media (max-width: 992px) {
  .cid-uMjk1xmppV .navbar.navbar-expand-lg .dropdown .dropdown-menu {
    top: 0;
  }
}
.cid-uMjk1xmppV .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
  top: 0;
  border-left: 1px solid transparent;
}
.cid-uMjk1xmppV .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uMjk1xmppV ul.navbar-nav {
  flex-wrap: wrap;
}
@media (min-width: 991px) {
  .cid-uMjk1xmppV ul.navbar-nav {
    padding: 0;
    background-color: transparent;
    border: 2px solid transparent;
  }
}
.cid-uMjk1xmppV .navbar-buttons {
  text-align: center;
  width: auto;
}
.cid-uMjk1xmppV .navbar-buttons .btn {
  white-space: nowrap;
  margin-right: 0;
  min-height: auto;
  width: auto;
  padding: 11px 26px;
}
@media (max-width: 575px) {
  .cid-uMjk1xmppV .navbar-buttons .btn {
    width: auto !important;
  }
}
.cid-uMjk1xmppV button.navbar-toggler {
  outline: none;
  width: 50px;
  height: 50px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  border-radius: 100%;
  background-color: #f4f4f4 !important;
  border: none !important;
  box-shadow: none !important;
}
.cid-uMjk1xmppV button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 20px;
  height: 2px;
  border-right: 5px;
  background-color: #093388;
}
.cid-uMjk1xmppV button.navbar-toggler .hamburger span:nth-child(1) {
  top: 18px;
  left: 15px;
  transition: all 0.2s;
}
.cid-uMjk1xmppV button.navbar-toggler .hamburger span:nth-child(2) {
  left: 15px;
  top: 24px;
  transition: all 0.15s;
}
.cid-uMjk1xmppV button.navbar-toggler .hamburger span:nth-child(3) {
  left: 15px;
  top: 24px;
  transition: all 0.15s;
}
.cid-uMjk1xmppV button.navbar-toggler .hamburger span:nth-child(4) {
  left: 15px;
  top: 30px;
  transition: all 0.2s;
}
.cid-uMjk1xmppV nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uMjk1xmppV nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uMjk1xmppV nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uMjk1xmppV nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uMjk1xmppV .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uMjk1xmppV a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uMjk1xmppV .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uMjk1xmppV .navbar {
    height: 70px;
  }
  .cid-uMjk1xmppV .navbar.opened {
    height: auto;
  }
  .cid-uMjk1xmppV .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uMjk1xmppV .navbar-nav {
  margin: 0 auto;
}
.cid-uMjk1xmppV .nav-item {
  padding: 0;
  margin: 0;
}
.cid-uMjk1xmppV .nav-item .nav-link {
  padding: 8px 22px !important;
  margin: 0 !important;
  transition: all 0.3s ease-in-out;
  font-weight: 400;
  border-radius: 3rem;
}
.cid-uMjk1xmppV .nav-item .nav-link::after {
  color: inherit !important;
  transform: rotate(0);
  transition: .3s;
}
.cid-uMjk1xmppV .nav-item .nav-link:hover,
.cid-uMjk1xmppV .nav-item .nav-link:focus {
  background-color: transparent;
  color: #093388 !important;
  opacity: .7;
}
.cid-uMjk1xmppV .nav-item .nav-link:hover::after,
.cid-uMjk1xmppV .nav-item .nav-link:focus::after {
  color: inherit !important;
}
.cid-uMjk1xmppV .nav-item .nav-link.show::after {
  transform: rotate(180deg);
}
.cid-uMjk1xmppV .nav-item .dropdown-menu {
  background-color: transparent !important;
}
.cid-uMjk1xmppV .nav-item .dropdown-menu:hover {
  background-color: transparent !important;
}
@media (max-width: 991px) {
  .cid-uMjk1xmppV .navbar {
    justify-content: flex-start !important;
  }
  .cid-uMjk1xmppV .navbar.opened {
    min-height: 100vh !important;
    flex-direction: column !important;
    justify-content: flex-start !important;
  }
  .cid-uMjk1xmppV .navbar-collapse {
    padding: 20px 0 3rem;
  }
  .cid-uMjk1xmppV .navbar-collapse .navbar-nav {
    width: 100%;
    margin-bottom: 24px;
  }
  .cid-uMjk1xmppV .navbar-collapse .nav-item {
    width: 100%;
    margin: 0;
  }
  .cid-uMjk1xmppV .navbar-collapse .nav-item:not(:first-child) {
    border-top: 1px solid transparent;
  }
  .cid-uMjk1xmppV .navbar-collapse .nav-item .nav-link {
    padding: 14px !important;
    justify-content: center;
    margin: 0 !important;
    margin-bottom: 4px !important;
  }
}
.cid-uMjk1xmppV .content-wrap {
  min-height: 60px;
}
.cid-uLURHP8783 {
  padding-top: 9rem;
  padding-bottom: 7rem;
  background-color: #ffffff;
}
.cid-uLURHP8783 .row {
  flex-direction: row-reverse;
}
.cid-uLURHP8783 .mbr-text {
  max-width: 550px;
}
.cid-uLURHP8783 .row {
  align-items: center;
}
.cid-uLURHP8783 .mbr-section-subtitle {
  line-height: 1.6;
}
.cid-uLURHP8783 .mbr-text,
.cid-uLURHP8783 .mbr-section-btn {
  color: #000000;
}
.cid-uLURHQli6u {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #ffffff;
}
.cid-uLURHQli6u .counter-container ul {
  margin-bottom: 0;
}
.cid-uLURHQli6u .counter-container ul li {
  padding-left: 0rem;
  margin-bottom: 1rem;
  list-style: none;
  position: relative;
}
.cid-uLURHQli6u .counter-container ul li:before {
  position: absolute;
  font-family: 'Moririse2' !important;
  left: -40px;
  content: "\e96b";
  top: -2px;
  display: flex;
  transform: rotate(30deg);
  justify-content: center;
  align-items: center;
  color: #ffb18a;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  margin-top: 5px;
}
.cid-uLURHRg70X {
  padding-top: 0rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uLURHRg70X .content_wrapper {
  position: relative;
  padding: 50px 0;
  border-top: 1px solid #000000;
  border-bottom: 1px solid #000000;
  z-index: 1;
}
.cid-uLURHRg70X .content_wrapper:hover .mbr-section-title a {
  color: #ff8a8a !important;
}
.cid-uLURHRg70X .mbr-section-title {
  margin-bottom: 12px;
}
.cid-uLURHRg70X .icon_wrapper .mbr-iconfont {
  font-size: 140px;
  width: 140px;
  height: 140px;
  position: absolute;
  z-index: -1;
  color: #fef2ed;
  top: 2%;
  right: 13%;
}
.cid-uLURHRg70X .mbr-section-btn .btn-secondary-outline {
  padding: 3px 0;
  border: none !important;
  background-color: transparent !important;
}
.cid-uLURHRg70X .mbr-section-btn .btn-secondary-outline:hover,
.cid-uLURHRg70X .mbr-section-btn .btn-secondary-outline .active,
.cid-uLURHRg70X .mbr-section-btn .btn-secondary-outline:focus {
  color: #fa4529 !important;
}
.cid-uLURHRg70X .card_post {
  display: inline-flex;
  align-items: center;
  margin-top: 30px;
}
.cid-uLURHRg70X .image_post {
  display: inline-block;
}
.cid-uLURHRg70X .image_post img {
  object-fit: cover;
  height: 50px;
  width: 50px;
  min-width: 50px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.07);
  border-radius: 50%;
}
.cid-uLURHRg70X .author_post {
  display: inline-block;
  margin-left: 15px;
}
.cid-uLURHRg70X .mbr-fallback-image.disabled {
  display: none;
}
.cid-uLURHRg70X .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uLURHShE5C {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
  overflow: hidden;
}
.cid-uLURHShE5C .mbr-fallback-image.disabled {
  display: none;
}
.cid-uLURHShE5C .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-uLURHShE5C .container {
    padding: 0 22px;
  }
}
.cid-uLURHShE5C .card {
  justify-content: center;
}
.cid-uLURHShE5C .content-wrapper {
  padding-right: 32px;
}
@media (max-width: 992px) {
  .cid-uLURHShE5C .content-wrapper {
    padding: 0;
    margin-bottom: 40px;
  }
}
.cid-uLURHShE5C .content-wrapper .mbr-section-title {
  margin-bottom: 10px;
}
.cid-uLURHShE5C .content-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-uLURHShE5C .image-wrapper {
  display: flex;
  justify-content: center;
}
.cid-uLURHShE5C .image-wrapper img {
  height: 600px;
  width: 600px;
  border-radius: 100% !important;
  object-fit: cover;
  box-shadow: 10px 10px 60px #ff8a8a;
}
@media (max-width: 1440px) {
  .cid-uLURHShE5C .image-wrapper img {
    height: 500px;
    width: 500px;
  }
}
@media (max-width: 1200px) {
  .cid-uLURHShE5C .image-wrapper img {
    height: 400px;
    width: 400px;
  }
}
@media (max-width: 992px) {
  .cid-uLURHShE5C .image-wrapper img {
    height: 400px;
    width: 400px;
  }
}
@media (max-width: 768px) {
  .cid-uLURHShE5C .image-wrapper img {
    height: 260px;
    width: 260px;
  }
}
.cid-uLURHShE5C .mbr-section-title {
  color: #000000;
}
.cid-uLURHShE5C .mbr-text {
  color: #000000;
}
.cid-uLURHTj2HR {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uLURHTj2HR .mbr-title {
  color: #000000;
}
.cid-uLURHTj2HR .card-wrapper {
  border-top: 2px solid currentColor;
}
.cid-uLURHTj2HR .card-wrapper {
  padding-top: 4rem;
}
.cid-uLURHTj2HR .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uLURHTj2HR .mbr-text,
.cid-uLURHTj2HR .mbr-section-btn {
  color: #000000;
}
.cid-uLURHTj2HR .mbr-section-title,
.cid-uLURHTj2HR .item {
  color: #000000;
}
.cid-uLURHTj2HR .mbr-section-title,
.cid-uLURHTj2HR .card-wrapper {
  color: #000000;
  text-align: center;
}
.cid-uLURHUt6E0 {
  display: flex;
  padding-top: 8rem;
  padding-bottom: 8rem;
  background-color: #f6f6f6;
}
.cid-uLURHUt6E0 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uLURHUt6E0 .line {
  width: 100%;
  height: 1px;
  background: currentColor;
  margin-bottom: 2rem;
}
.cid-uLURHUt6E0 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uLURHUt6E0 h1 {
  max-width: 800px;
}
.cid-uLURHUt6E0 p {
  max-width: 600px;
  margin-right: 0;
  margin-left: auto;
}
@media (min-width: 768px) {
  .cid-uLURHUt6E0 {
    align-items: center;
  }
  .cid-uLURHUt6E0 .row {
    justify-content: center;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-uLURHUt6E0 .content-wrap {
    min-width: 50%;
  }
}
@media (max-width: 767px) {
  .cid-uLURHUt6E0 {
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-uLURHUt6E0 .mbr-row {
    -webkit-justify-content: center;
    justify-content: center;
  }
  .cid-uLURHUt6E0 .content-wrap {
    width: 100%;
  }
}
.cid-uLURHUt6E0 .mbr-section-subtitle,
.cid-uLURHUt6E0 .line {
  color: #291f1e;
}
.cid-uLURHUt6E0 .mbr-text,
.cid-uLURHUt6E0 .mbr-section-btn {
  text-align: left;
  color: #000000;
}
.cid-uLURHUt6E0 .mbr-section-title {
  color: #291f1e;
}
.cid-uLURHVvpcR {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-uLURHVvpcR .text-wrapper {
  padding: 2rem;
  max-width: 650px;
}
@media (max-width: 991px) {
  .cid-uLURHVvpcR .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uLURHVvpcR img {
  width: 130%;
}
@media (max-width: 1400px) {
  .cid-uLURHVvpcR img {
    width: 150%;
  }
}
@media (max-width: 992px) {
  .cid-uLURHVvpcR img {
    width: 100%;
  }
}
@media (min-width: 992px) {
  .cid-uLURHVvpcR .text-wrapper {
    padding: 2rem;
  }
}
.cid-uLURHVvpcR .mbr-section-subtitle {
  color: #ff8a8a;
}
.cid-uLURHVvpcR .mbr-text {
  color: #000000;
}
.cid-uLURHVvpcR .mbr-section-title {
  color: #000000;
}
.cid-uLURHWHvZd {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f6f6f6;
}
.cid-uLURHWHvZd .wrapper {
  border-radius: 30px;
}
@media (max-width: 991px) {
  .cid-uLURHWHvZd .wrapper {
    padding: 0;
  }
}
@media (min-width: 992px) {
  .cid-uLURHWHvZd .wrapper {
    padding: 4rem 6rem;
  }
}
.cid-uLURHWHvZd .social-row .soc-item {
  display: inline-block;
  text-align: center;
  margin-bottom: 1rem;
  margin-right: 2rem;
}
@media (max-width: 991px) {
  .cid-uLURHWHvZd .social-row .soc-item {
    margin-right: .7rem;
  }
}
.cid-uLURHWHvZd .social-row .soc-item .mbr-iconfont {
  font-size: 32px;
  border-radius: 50%;
  padding: 0.6rem;
  border: 2px solid #ffa29d;
  transition: all 0.3s;
  color: #ffa29d;
}
.cid-uLURHWHvZd .social-row .soc-item .mbr-iconfont:hover {
  background-color: #ffa29d;
  color: #000000;
}
.cid-uLURHWHvZd .border {
  padding: 2.5rem 2rem;
  border-radius: 30px;
}
@media (max-width: 991px) {
  .cid-uLURHWHvZd .border {
    padding: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uLURHWHvZd .wrapp {
    padding: 1rem;
  }
}
.cid-uLVbZgxGhf {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
  flex-direction: column;
  justify-content: center;
}
.cid-uLVbZgxGhf .mbr-fallback-image.disabled {
  display: none;
}
.cid-uLVbZgxGhf .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-uLVbZgxGhf .container {
    padding: 0 16px;
  }
}
.cid-uLVbZgxGhf .row {
  justify-content: space-between;
}
.cid-uLVbZgxGhf .content-wrapper .mbr-desc {
  margin-bottom: 32px;
}
.cid-uLVbZgxGhf .panel-group {
  border: 1px solid #000000;
  background-color: #ffffff;
}
.cid-uLVbZgxGhf .panel-group .card {
  position: relative;
  border-top: 1px solid #000000;
  border-radius: 0 !important;
  transition: all 0.3s ease-in-out;
  padding: 48px;
}
@media (max-width: 992px) {
  .cid-uLVbZgxGhf .panel-group .card {
    padding: 32px 16px;
  }
}
.cid-uLVbZgxGhf .panel-group .card:first-child {
  border-top: none;
}
.cid-uLVbZgxGhf .panel-group .card .card-header {
  background-color: transparent;
  border: none;
  border-radius: 0;
  padding: 0;
}
.cid-uLVbZgxGhf .panel-group .card .card-header .panel-title {
  display: inline-flex;
  padding: 0;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
.cid-uLVbZgxGhf .panel-group .card .card-header .panel-title::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  background-color: #ffffff;
  pointer-events: none;
  opacity: 0;
  width: 100%;
  height: 100%;
}
.cid-uLVbZgxGhf .panel-group .card .card-header .panel-title .panel-title-edit {
  position: relative;
  z-index: 1;
  margin-bottom: 0;
}
.cid-uLVbZgxGhf .panel-group .card .card-header .panel-title .mbr-iconfont {
  position: relative;
  z-index: 1;
  font-size: 16px;
  width: 30px;
  min-width: 30px;
  height: 30px;
  margin-bottom: 0;
  transition: all 0.3s ease-in-out;
  color: #000000;
  margin-left: 30px;
  background-color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uLVbZgxGhf .panel-group .card .card-header .panel-title:hover .mbr-iconfont {
  box-shadow: inset 0 -31px 0 #29372d;
  color: #ffffff;
}
.cid-uLVbZgxGhf .panel-group .card .card-header .panel-title:not(.collapsed) .mbr-iconfont {
  transform: rotate(180deg);
  background-color: #ffffff;
}
.cid-uLVbZgxGhf .panel-group .card .card-header .panel-title:not(.collapsed)::before {
  opacity: 1;
}
.cid-uLVbZgxGhf .panel-group .card .panel-collapse .panel-body {
  position: relative;
  z-index: 1;
  padding-top: 48px;
}
@media (max-width: 992px) {
  .cid-uLVbZgxGhf .panel-group .card .panel-collapse .panel-body {
    padding-top: 24px;
  }
}
.cid-uLVbZgxGhf .panel-group .card .panel-collapse .panel-body .panel-text {
  margin-bottom: 0;
}
.cid-uLVbZgxGhf .panel-group .card .panel-collapse .panel-body .mbr-section-btn {
  margin-top: 22px;
}
.cid-uLVbZgxGhf .mbr-desc {
  color: #000000;
}
.cid-uLVbZgxGhf .panel-title-edit {
  color: #000000;
}
.cid-uLVbZgxGhf .panel-text {
  color: #000000;
}
.cid-uLURHZb0dP {
  padding-top: 7rem;
  padding-bottom: 7rem;
  background-color: #f6f6f6;
}
.cid-uLURHZb0dP .mbr-text {
  color: #000000;
}
.cid-uLURHZb0dP .mbr-section-subtitle {
  color: #f3f6f9;
}
.cid-uLURHZb0dP .mbr-section-title {
  color: #000000;
}
.cid-uLV7FLgFeU {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #e6e8f6;
}
.cid-uLV7FLgFeU .mbr-fallback-image.disabled {
  display: none;
}
.cid-uLV7FLgFeU .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-uLV7FLgFeU .container {
    padding: 0 20px;
  }
}
.cid-uLV7FLgFeU .row {
  margin: 0;
}
.cid-uLV7FLgFeU .title-wrapper .mbr-section-title {
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .cid-uLV7FLgFeU .title-wrapper .mbr-section-title {
    margin-bottom: 32px;
  }
}
.cid-uLV7FLgFeU .video-block .video-wrapper .app-video-wrapper::before {
  color: #f5fd7b;
  text-shadow: none;
}
.cid-uLV7FLgFeU .video-block .video-wrapper .app-video-wrapper img {
  object-fit: cover;
  height: 500px;
  border-radius: 50px;
}
@media (max-width: 768px) {
  .cid-uLV7FLgFeU .video-block .video-wrapper .app-video-wrapper img {
    height: 300px;
  }
}
.cid-uLV7FLgFeU .video-block .video-wrapper iframe {
  border-radius: 50px;
}
.cid-uLV7FLgFeU .mbr-section-title {
  color: #000000;
}
.cid-uLURI1M042 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f6f6f6;
}
.cid-uLURI1M042 .row {
  justify-content: space-between;
}
.cid-uLURI1M042 .icon-wrapper {
  width: 100%;
  text-align: right;
}
.cid-uLURI1M042 .mbr-iconfont {
  color: #47b5ed;
  font-size: 3rem;
}
.cid-uLURI1M042 .text-wrapper {
  min-width: 50%;
}
.cid-uLURI1M042 .image-wrapper {
  width: 70px;
  height: 70px;
  min-width: 70px;
  border-radius: 50%;
  margin-top: 5px;
  margin-right: 1rem;
  overflow: hidden;
}
.cid-uLURI1M042 .image-wrapper img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.cid-uLURI1M042 .d-flex {
  border-top: 2px solid currentColor;
  padding-top: 4rem;
  align-items: center;
}
.cid-uLURI1M042 .mbr-section-title {
  color: #000000;
}
.cid-uLURI1M042 .position {
  color: #666666;
}
.cid-uLURI1M042 .name,
.cid-uLURI1M042 .d-flex {
  color: #000000;
}
.cid-uLURI36pvu {
  display: flex;
  padding-top: 8rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uLURI36pvu .mbr-fallback-image.disabled {
  display: none;
}
.cid-uLURI36pvu .line {
  width: 100%;
  height: 1px;
  background: currentColor;
  margin-bottom: 2rem;
}
.cid-uLURI36pvu .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uLURI36pvu h1 {
  max-width: 800px;
}
.cid-uLURI36pvu p {
  max-width: 600px;
  margin-right: 0;
  margin-left: auto;
}
@media (min-width: 768px) {
  .cid-uLURI36pvu {
    align-items: center;
  }
  .cid-uLURI36pvu .row {
    justify-content: center;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-uLURI36pvu .content-wrap {
    min-width: 50%;
  }
}
@media (max-width: 767px) {
  .cid-uLURI36pvu {
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-uLURI36pvu .mbr-row {
    -webkit-justify-content: center;
    justify-content: center;
  }
  .cid-uLURI36pvu .content-wrap {
    width: 100%;
  }
}
.cid-uLURI36pvu .mbr-section-subtitle,
.cid-uLURI36pvu .line {
  color: #291f1e;
}
.cid-uLURI36pvu .mbr-text,
.cid-uLURI36pvu .mbr-section-btn {
  text-align: left;
  color: #000000;
}
.cid-uLURI36pvu .mbr-section-title {
  color: #291f1e;
}
.cid-uLURI4iBQG {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uLURI4iBQG ul {
  margin: 0;
  list-style: none;
  padding-left: 0rem;
}
.cid-uLURI4iBQG ul li {
  transition: all 0.3s;
  padding-bottom: 0.5rem;
}
.cid-uLURI4iBQG ul li:hover {
  transform: translateX(10px);
}
.cid-uLURI4iBQG ul li:hover a {
  color: #fa4529 !important;
  background: none !important;
}
.cid-uLURI4iBQG h4 {
  border-bottom: 2px solid currentColor;
  padding-bottom: 1rem;
  margin-bottom: 3rem;
}
.cid-uLURI4iBQG .mbr-title {
  color: #ff8a8a;
}
.cid-uLURI5uUIa {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f6f6f6;
}
.cid-uLURI5uUIa .mbr-fallback-image.disabled {
  display: none;
}
.cid-uLURI5uUIa .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uLURI5uUIa .content-wrapper {
  padding: 0 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 992px) {
  .cid-uLURI5uUIa .content-wrapper {
    display: block;
    padding: 0;
  }
}
.cid-uLURI5uUIa .content-wrapper .title-wrapper {
  width: 50%;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-uLURI5uUIa .content-wrapper .title-wrapper {
    width: 100%;
    margin-bottom: 24px;
  }
}
.cid-uLURI5uUIa .content-wrapper .title-wrapper .mbr-section-title {
  margin-bottom: 32px;
}
@media (max-width: 992px) {
  .cid-uLURI5uUIa .content-wrapper .title-wrapper .mbr-section-title {
    width: 100%;
    margin-bottom: 24px;
  }
}
.cid-uLURI5uUIa .content-wrapper .title-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-uLURI5uUIa .content-wrapper .title-wrapper .mbr-section-btn {
  margin-top: 22px;
}
@media (max-width: 992px) {
  .cid-uLURI5uUIa .content-wrapper .title-wrapper .mbr-section-btn {
    margin-top: 16px;
  }
}
.cid-uLURI5uUIa .content-wrapper .image-wrap {
  width: 40%;
  border: 3px solid #050f0f;
  box-shadow: 4px 4px 0 0 #050f0f;
  background-color: #ffffff;
  padding: 60px 20px;
  transform: rotate(3deg);
}
@media (max-width: 992px) {
  .cid-uLURI5uUIa .content-wrapper .image-wrap {
    padding: 32px 16px;
    width: 100%;
    transform: rotate(0);
  }
}
.cid-uLURI5uUIa .content-wrapper .image-wrap img {
  height: 550px;
  width: 100%;
  object-fit: cover;
}
.cid-uLURI5uUIa .mbr-section-title {
  color: #050f0f;
}
.cid-uLURI5uUIa .mbr-text {
  color: #050f0f;
}
.cid-uLURI5uUIa .mbr-text,
.cid-uLURI5uUIa .text-wrapper,
.cid-uLURI5uUIa .rating-wrapper {
  color: #000000;
}
.cid-uLURI6JpQs {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
@media (max-width: 992px) {
  .cid-uLURI6JpQs .container {
    padding: 0 25px;
  }
}
.cid-uLURI6JpQs .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-uLURI6JpQs .title-wrapper .mbr-section-title {
    margin-bottom: 50px;
  }
}
.cid-uLURI6JpQs .panel-group {
  border-bottom: 2px solid #000000;
}
.cid-uLURI6JpQs .panel-group .card {
  border-top: 2px solid #000000;
  border-radius: 0 !important;
  padding: 0;
}
.cid-uLURI6JpQs .panel-group .card .card-header {
  padding: 16px 0;
  border: none;
  background-color: transparent;
}
.cid-uLURI6JpQs .panel-group .card .card-header .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-uLURI6JpQs .panel-group .card .card-header .panel-title:not(.collapsed) .mbr-iconfont {
  color: #f0f0f0;
  box-shadow: inset 52px 0 0 0 #000000;
}
.cid-uLURI6JpQs .panel-group .card .card-header .panel-title:hover .mbr-iconfont {
  color: #f0f0f0;
  box-shadow: inset 52px 0 0 0 #000000;
}
.cid-uLURI6JpQs .panel-group .card .card-header .panel-title .panel-title-edit {
  margin-bottom: 0;
}
.cid-uLURI6JpQs .panel-group .card .card-header .panel-title .mbr-iconfont {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  min-width: 52px;
  height: 52px;
  font-size: 20px;
  color: #000000;
  background-color: #f0f0f0;
  margin-left: 10px;
  transition: all 0.3s ease-in-out;
}
.cid-uLURI6JpQs .panel-group .card .panel-collapse .panel-body {
  padding-bottom: 25px;
}
.cid-uLURI6JpQs .panel-group .card .panel-collapse .panel-body .panel-text {
  margin-bottom: 0;
}
.cid-uLURI6JpQs .mbr-section-title {
  color: #000000;
}
.cid-uLURI6JpQs .panel-title-edit {
  color: #000000;
}
.cid-uLURI6JpQs .panel-text {
  color: #000000;
}
.cid-uLURI84acT {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background: #ffffff;
}
.cid-uLURI84acT .google-map {
  height: 30rem;
  position: relative;
}
.cid-uLURI84acT .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-uLURI84acT .google-map [data-state-details] {
  color: #6b6763;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-uLURI84acT .google-map[data-state] {
  background: #e9e5dc;
}
.cid-uLURI84acT .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-uLURI9nQuc {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f6f6f6;
}
.cid-uLURI9nQuc .mbr-fallback-image.disabled {
  display: none;
}
.cid-uLURI9nQuc .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uLURI9nQuc .content-wrap {
  padding: 60px;
  background-color: #f7f7f7;
}
@media (max-width: 992px) {
  .cid-uLURI9nQuc .content-wrap {
    padding: 30px 20px;
  }
}
.cid-uLURI9nQuc .content-wrap .row {
  justify-content: center;
}
.cid-uLURI9nQuc .title-wrapper {
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .cid-uLURI9nQuc .title-wrapper {
    margin-bottom: 40px;
  }
}
.cid-uLURI9nQuc .title-wrapper .title-wrap {
  display: inline-flex;
  align-items: center;
}
.cid-uLURI9nQuc .title-wrapper .title-wrap .logo-wrapper {
  margin-right: 8px;
}
.cid-uLURI9nQuc .title-wrapper .title-wrap .logo-wrapper img {
  width: 50px;
  height: 50px;
  object-fit: contain;
  border-radius: 8px !important;
}
.cid-uLURI9nQuc .title-wrapper .title-wrap .mbr-section-title {
  margin-bottom: 0;
}
.cid-uLURI9nQuc .nav-wrapper {
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .cid-uLURI9nQuc .nav-wrapper {
    margin-bottom: 40px;
  }
}
.cid-uLURI9nQuc .nav-wrapper .mbr-section-subtitle {
  margin-bottom: 20px;
}
.cid-uLURI9nQuc .nav-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-uLURI9nQuc .nav-wrapper .list .item-wrap {
  margin-bottom: 12px;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}
.cid-uLURI9nQuc .nav-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-uLURI9nQuc .nav-wrapper .list .item-wrap:hover,
.cid-uLURI9nQuc .nav-wrapper .list .item-wrap:focus {
  color: #ed463f;
}
.cid-uLURI9nQuc .contacts-wrapper {
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .cid-uLURI9nQuc .contacts-wrapper {
    margin-bottom: 40px;
  }
}
.cid-uLURI9nQuc .contacts-wrapper .mbr-section-subtitle {
  margin-bottom: 20px;
}
.cid-uLURI9nQuc .contacts-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-uLURI9nQuc .contacts-wrapper .list .item-wrap {
  margin-bottom: 10px;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}
.cid-uLURI9nQuc .contacts-wrapper .list .item-wrap:hover,
.cid-uLURI9nQuc .contacts-wrapper .list .item-wrap:focus {
  color: #ed463f;
}
.cid-uLURI9nQuc .contacts-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-uLURI9nQuc .social-wrapper {
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .cid-uLURI9nQuc .social-wrapper {
    margin-bottom: 40px;
  }
}
.cid-uLURI9nQuc .social-wrapper .mbr-section-subtitle {
  margin-bottom: 20px;
}
.cid-uLURI9nQuc .social-wrapper .social-wrap {
  display: inline-flex;
  flex-wrap: wrap;
}
.cid-uLURI9nQuc .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-uLURI9nQuc .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-uLURI9nQuc .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont {
  transform: scale(1.1);
}
.cid-uLURI9nQuc .social-wrapper .social-wrap .soc-item a .mbr-iconfont {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  min-width: 40px;
  color: #ffffff;
  background-color: #ed463f;
  font-size: 16px;
  border-radius: 100%;
  transition: all 0.3s ease-in-out;
  margin: 0 10px 10px 0;
}
.cid-uLURI9nQuc .mbr-copy {
  margin-bottom: 0;
  opacity: .6;
  color: #000000;
  text-align: center;
}
.cid-uLURI9nQuc .mbr-section-title {
  color: #ed463f;
}
.cid-uLURI9nQuc .mbr-section-subtitle {
  color: #000000;
}
.cid-uLURI9nQuc .list {
  color: #404349;
}
.cid-uMjk1xmppV {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uMjk1xmppV nav.navbar {
  position: fixed;
}
.cid-uMjk1xmppV .container-fluid {
  padding-left: 20px;
  padding-right: 20px;
}
@media (max-width: 992px) {
  .cid-uMjk1xmppV .container-fluid {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.cid-uMjk1xmppV .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uMjk1xmppV .dropdown-menu {
  padding: 0;
  border-radius: 0;
  box-shadow: none;
}
.cid-uMjk1xmppV .dropdown-item {
  border: none !important;
  background: #f4f4f4 !important;
  font-weight: 400 !important;
}
.cid-uMjk1xmppV .dropdown-item:hover,
.cid-uMjk1xmppV .dropdown-item:focus {
  background: #f4f4f4 !important;
  color: #093388 !important;
}
.cid-uMjk1xmppV .dropdown-item:hover span {
  color: white;
}
.cid-uMjk1xmppV .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uMjk1xmppV .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uMjk1xmppV .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uMjk1xmppV .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uMjk1xmppV .nav-link {
  position: relative;
}
.cid-uMjk1xmppV .container {
  display: flex;
  margin: 0 auto;
  max-width: 1600px;
}
@media (min-width: 992px) {
  .cid-uMjk1xmppV .container {
    flex-wrap: nowrap;
  }
}
.cid-uMjk1xmppV .iconfont-wrapper {
  color: #093388 !important;
  font-size: 1.5rem;
  transition: all 0.3s ease-in-out;
}
.cid-uMjk1xmppV .iconfont-wrapper:hover {
  opacity: .7;
}
.cid-uMjk1xmppV .dropdown-menu,
.cid-uMjk1xmppV .navbar.opened {
  background: #f4f4f4 !important;
}
.cid-uMjk1xmppV .nav-item:focus,
.cid-uMjk1xmppV .nav-link:focus {
  outline: none;
}
.cid-uMjk1xmppV .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uMjk1xmppV .dropdown .dropdown-menu .dropdown-item::after {
  right: 1.6rem;
}
.cid-uMjk1xmppV .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uMjk1xmppV .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uMjk1xmppV .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uMjk1xmppV .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uMjk1xmppV .navbar {
  min-height: 60px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #f4f4f4;
  padding: 0 !important;
  border-radius: 0 !important;
  border: none !important;
  box-shadow: none !important;
}
.cid-uMjk1xmppV .navbar.opened {
  transition: all 0.3s;
}
.cid-uMjk1xmppV .navbar .dropdown-item {
  padding: 8px 3.2rem 8px 22px;
  line-height: 1.5;
  border-radius: 0;
  margin-left: 4px;
  margin-bottom: 4px;
}
.cid-uMjk1xmppV .navbar .navbar-logo img {
  width: auto;
}
.cid-uMjk1xmppV .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uMjk1xmppV .navbar.collapsed {
  justify-content: center;
}
.cid-uMjk1xmppV .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uMjk1xmppV .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uMjk1xmppV .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-uMjk1xmppV .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uMjk1xmppV .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uMjk1xmppV .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-uMjk1xmppV .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uMjk1xmppV .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uMjk1xmppV .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uMjk1xmppV .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uMjk1xmppV .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uMjk1xmppV .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uMjk1xmppV .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uMjk1xmppV .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-uMjk1xmppV .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uMjk1xmppV .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uMjk1xmppV .navbar .dropdown-menu .dropdown-item {
    padding: 14px !important;
    text-align: center;
    margin-left: 0;
  }
  .cid-uMjk1xmppV .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 0.5rem;
    max-width: 80%;
  }
  .cid-uMjk1xmppV .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uMjk1xmppV .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uMjk1xmppV .navbar.navbar-short {
  min-height: 60px;
}
.cid-uMjk1xmppV .navbar.navbar-short .navbar-brand {
  min-height: 60px;
}
.cid-uMjk1xmppV .navbar-brand {
  min-height: 60px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word !important;
  z-index: 1;
  word-wrap: break-word !important;
  white-space: normal;
}
.cid-uMjk1xmppV .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: 400;
}
.cid-uMjk1xmppV .navbar-brand .navbar-caption:hover,
.cid-uMjk1xmppV .navbar-brand .navbar-caption:focus {
  color: #093388 !important;
}
.cid-uMjk1xmppV .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uMjk1xmppV .navbar.opened .navbar-brand .navbar-caption:hover,
.cid-uMjk1xmppV .navbar.opened .navbar-brand .navbar-caption:focus {
  color: #093388 !important;
}
.cid-uMjk1xmppV .dropdown-item.active,
.cid-uMjk1xmppV .dropdown-item:active {
  background-color: transparent;
}
.cid-uMjk1xmppV .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uMjk1xmppV .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uMjk1xmppV .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uMjk1xmppV .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #f4f4f4;
  top: 3.2rem;
  border-radius: 30px;
}
@media (max-width: 992px) {
  .cid-uMjk1xmppV .navbar.navbar-expand-lg .dropdown .dropdown-menu {
    top: 0;
  }
}
.cid-uMjk1xmppV .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
  top: 0;
  border-left: 1px solid transparent;
}
.cid-uMjk1xmppV .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uMjk1xmppV ul.navbar-nav {
  flex-wrap: wrap;
}
@media (min-width: 991px) {
  .cid-uMjk1xmppV ul.navbar-nav {
    padding: 0;
    background-color: transparent;
    border: 2px solid transparent;
  }
}
.cid-uMjk1xmppV .navbar-buttons {
  text-align: center;
  width: auto;
}
.cid-uMjk1xmppV .navbar-buttons .btn {
  white-space: nowrap;
  margin-right: 0;
  min-height: auto;
  width: auto;
  padding: 11px 26px;
}
@media (max-width: 575px) {
  .cid-uMjk1xmppV .navbar-buttons .btn {
    width: auto !important;
  }
}
.cid-uMjk1xmppV button.navbar-toggler {
  outline: none;
  width: 50px;
  height: 50px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  border-radius: 100%;
  background-color: #f4f4f4 !important;
  border: none !important;
  box-shadow: none !important;
}
.cid-uMjk1xmppV button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 20px;
  height: 2px;
  border-right: 5px;
  background-color: #093388;
}
.cid-uMjk1xmppV button.navbar-toggler .hamburger span:nth-child(1) {
  top: 18px;
  left: 15px;
  transition: all 0.2s;
}
.cid-uMjk1xmppV button.navbar-toggler .hamburger span:nth-child(2) {
  left: 15px;
  top: 24px;
  transition: all 0.15s;
}
.cid-uMjk1xmppV button.navbar-toggler .hamburger span:nth-child(3) {
  left: 15px;
  top: 24px;
  transition: all 0.15s;
}
.cid-uMjk1xmppV button.navbar-toggler .hamburger span:nth-child(4) {
  left: 15px;
  top: 30px;
  transition: all 0.2s;
}
.cid-uMjk1xmppV nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uMjk1xmppV nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uMjk1xmppV nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uMjk1xmppV nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uMjk1xmppV .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uMjk1xmppV a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uMjk1xmppV .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uMjk1xmppV .navbar {
    height: 70px;
  }
  .cid-uMjk1xmppV .navbar.opened {
    height: auto;
  }
  .cid-uMjk1xmppV .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uMjk1xmppV .navbar-nav {
  margin: 0 auto;
}
.cid-uMjk1xmppV .nav-item {
  padding: 0;
  margin: 0;
}
.cid-uMjk1xmppV .nav-item .nav-link {
  padding: 8px 22px !important;
  margin: 0 !important;
  transition: all 0.3s ease-in-out;
  font-weight: 400;
  border-radius: 3rem;
}
.cid-uMjk1xmppV .nav-item .nav-link::after {
  color: inherit !important;
  transform: rotate(0);
  transition: .3s;
}
.cid-uMjk1xmppV .nav-item .nav-link:hover,
.cid-uMjk1xmppV .nav-item .nav-link:focus {
  background-color: transparent;
  color: #093388 !important;
  opacity: .7;
}
.cid-uMjk1xmppV .nav-item .nav-link:hover::after,
.cid-uMjk1xmppV .nav-item .nav-link:focus::after {
  color: inherit !important;
}
.cid-uMjk1xmppV .nav-item .nav-link.show::after {
  transform: rotate(180deg);
}
.cid-uMjk1xmppV .nav-item .dropdown-menu {
  background-color: transparent !important;
}
.cid-uMjk1xmppV .nav-item .dropdown-menu:hover {
  background-color: transparent !important;
}
@media (max-width: 991px) {
  .cid-uMjk1xmppV .navbar {
    justify-content: flex-start !important;
  }
  .cid-uMjk1xmppV .navbar.opened {
    min-height: 100vh !important;
    flex-direction: column !important;
    justify-content: flex-start !important;
  }
  .cid-uMjk1xmppV .navbar-collapse {
    padding: 20px 0 3rem;
  }
  .cid-uMjk1xmppV .navbar-collapse .navbar-nav {
    width: 100%;
    margin-bottom: 24px;
  }
  .cid-uMjk1xmppV .navbar-collapse .nav-item {
    width: 100%;
    margin: 0;
  }
  .cid-uMjk1xmppV .navbar-collapse .nav-item:not(:first-child) {
    border-top: 1px solid transparent;
  }
  .cid-uMjk1xmppV .navbar-collapse .nav-item .nav-link {
    padding: 14px !important;
    justify-content: center;
    margin: 0 !important;
    margin-bottom: 4px !important;
  }
}
.cid-uMjk1xmppV .content-wrap {
  min-height: 60px;
}
.cid-uLUTlMo4I1 {
  padding-top: 9rem;
  padding-bottom: 7rem;
  background-color: #ffffff;
}
.cid-uLUTlMo4I1 .row {
  flex-direction: row-reverse;
}
.cid-uLUTlMo4I1 .mbr-text {
  max-width: 550px;
}
.cid-uLUTlMo4I1 .row {
  align-items: center;
}
.cid-uLUTlMo4I1 .mbr-section-subtitle {
  line-height: 1.6;
}
.cid-uLUTlMo4I1 .mbr-text,
.cid-uLUTlMo4I1 .mbr-section-btn {
  color: #000000;
}
.cid-uLUTlNuUYy {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #ffffff;
}
.cid-uLUTlNuUYy .counter-container ul {
  margin-bottom: 0;
}
.cid-uLUTlNuUYy .counter-container ul li {
  padding-left: 0rem;
  margin-bottom: 1rem;
  list-style: none;
  position: relative;
}
.cid-uLUTlNuUYy .counter-container ul li:before {
  position: absolute;
  font-family: 'Moririse2' !important;
  left: -40px;
  content: "\e96b";
  top: -2px;
  display: flex;
  transform: rotate(30deg);
  justify-content: center;
  align-items: center;
  color: #ffb18a;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  margin-top: 5px;
}
.cid-uLUTlOtoWk {
  padding-top: 0rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uLUTlOtoWk .content_wrapper {
  position: relative;
  padding: 50px 0;
  border-top: 1px solid #000000;
  border-bottom: 1px solid #000000;
  z-index: 1;
}
.cid-uLUTlOtoWk .content_wrapper:hover .mbr-section-title a {
  color: #ff8a8a !important;
}
.cid-uLUTlOtoWk .mbr-section-title {
  margin-bottom: 12px;
}
.cid-uLUTlOtoWk .icon_wrapper .mbr-iconfont {
  font-size: 140px;
  width: 140px;
  height: 140px;
  position: absolute;
  z-index: -1;
  color: #fef2ed;
  top: 2%;
  right: 13%;
}
.cid-uLUTlOtoWk .mbr-section-btn .btn-secondary-outline {
  padding: 3px 0;
  border: none !important;
  background-color: transparent !important;
}
.cid-uLUTlOtoWk .mbr-section-btn .btn-secondary-outline:hover,
.cid-uLUTlOtoWk .mbr-section-btn .btn-secondary-outline .active,
.cid-uLUTlOtoWk .mbr-section-btn .btn-secondary-outline:focus {
  color: #fa4529 !important;
}
.cid-uLUTlOtoWk .card_post {
  display: inline-flex;
  align-items: center;
  margin-top: 30px;
}
.cid-uLUTlOtoWk .image_post {
  display: inline-block;
}
.cid-uLUTlOtoWk .image_post img {
  object-fit: cover;
  height: 50px;
  width: 50px;
  min-width: 50px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.07);
  border-radius: 50%;
}
.cid-uLUTlOtoWk .author_post {
  display: inline-block;
  margin-left: 15px;
}
.cid-uLUTlOtoWk .mbr-fallback-image.disabled {
  display: none;
}
.cid-uLUTlOtoWk .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uLUTlPvfjS {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
  overflow: hidden;
}
.cid-uLUTlPvfjS .mbr-fallback-image.disabled {
  display: none;
}
.cid-uLUTlPvfjS .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-uLUTlPvfjS .container {
    padding: 0 22px;
  }
}
.cid-uLUTlPvfjS .card {
  justify-content: center;
}
.cid-uLUTlPvfjS .content-wrapper {
  padding-right: 32px;
}
@media (max-width: 992px) {
  .cid-uLUTlPvfjS .content-wrapper {
    padding: 0;
    margin-bottom: 40px;
  }
}
.cid-uLUTlPvfjS .content-wrapper .mbr-section-title {
  margin-bottom: 10px;
}
.cid-uLUTlPvfjS .content-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-uLUTlPvfjS .image-wrapper {
  display: flex;
  justify-content: center;
}
.cid-uLUTlPvfjS .image-wrapper img {
  height: 600px;
  width: 600px;
  border-radius: 100% !important;
  object-fit: cover;
  box-shadow: 10px 10px 60px #ff8a8a;
}
@media (max-width: 1440px) {
  .cid-uLUTlPvfjS .image-wrapper img {
    height: 500px;
    width: 500px;
  }
}
@media (max-width: 1200px) {
  .cid-uLUTlPvfjS .image-wrapper img {
    height: 400px;
    width: 400px;
  }
}
@media (max-width: 992px) {
  .cid-uLUTlPvfjS .image-wrapper img {
    height: 400px;
    width: 400px;
  }
}
@media (max-width: 768px) {
  .cid-uLUTlPvfjS .image-wrapper img {
    height: 260px;
    width: 260px;
  }
}
.cid-uLUTlPvfjS .mbr-section-title {
  color: #000000;
}
.cid-uLUTlPvfjS .mbr-text {
  color: #000000;
}
.cid-uLUTlQv5qr {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uLUTlQv5qr .mbr-title {
  color: #000000;
}
.cid-uLUTlQv5qr .card-wrapper {
  border-top: 2px solid currentColor;
}
.cid-uLUTlQv5qr .card-wrapper {
  padding-top: 4rem;
}
.cid-uLUTlQv5qr .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uLUTlQv5qr .mbr-text,
.cid-uLUTlQv5qr .mbr-section-btn {
  color: #000000;
}
.cid-uLUTlQv5qr .mbr-section-title,
.cid-uLUTlQv5qr .item {
  color: #000000;
}
.cid-uLUTlQv5qr .mbr-section-title,
.cid-uLUTlQv5qr .card-wrapper {
  color: #000000;
  text-align: center;
}
.cid-uLUTlRP5Vy {
  display: flex;
  padding-top: 8rem;
  padding-bottom: 8rem;
  background-color: #f6f6f6;
}
.cid-uLUTlRP5Vy .mbr-fallback-image.disabled {
  display: none;
}
.cid-uLUTlRP5Vy .line {
  width: 100%;
  height: 1px;
  background: currentColor;
  margin-bottom: 2rem;
}
.cid-uLUTlRP5Vy .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uLUTlRP5Vy h1 {
  max-width: 800px;
}
.cid-uLUTlRP5Vy p {
  max-width: 600px;
  margin-right: 0;
  margin-left: auto;
}
@media (min-width: 768px) {
  .cid-uLUTlRP5Vy {
    align-items: center;
  }
  .cid-uLUTlRP5Vy .row {
    justify-content: center;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-uLUTlRP5Vy .content-wrap {
    min-width: 50%;
  }
}
@media (max-width: 767px) {
  .cid-uLUTlRP5Vy {
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-uLUTlRP5Vy .mbr-row {
    -webkit-justify-content: center;
    justify-content: center;
  }
  .cid-uLUTlRP5Vy .content-wrap {
    width: 100%;
  }
}
.cid-uLUTlRP5Vy .mbr-section-subtitle,
.cid-uLUTlRP5Vy .line {
  color: #291f1e;
}
.cid-uLUTlRP5Vy .mbr-text,
.cid-uLUTlRP5Vy .mbr-section-btn {
  text-align: left;
  color: #000000;
}
.cid-uLUTlRP5Vy .mbr-section-title {
  color: #291f1e;
}
.cid-uLUTlSSszl {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-uLUTlSSszl .text-wrapper {
  padding: 2rem;
  max-width: 650px;
}
@media (max-width: 991px) {
  .cid-uLUTlSSszl .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uLUTlSSszl img {
  width: 130%;
}
@media (max-width: 1400px) {
  .cid-uLUTlSSszl img {
    width: 150%;
  }
}
@media (max-width: 992px) {
  .cid-uLUTlSSszl img {
    width: 100%;
  }
}
@media (min-width: 992px) {
  .cid-uLUTlSSszl .text-wrapper {
    padding: 2rem;
  }
}
.cid-uLUTlSSszl .mbr-section-subtitle {
  color: #ff8a8a;
}
.cid-uLUTlSSszl .mbr-text {
  color: #000000;
}
.cid-uLUTlSSszl .mbr-section-title {
  color: #000000;
}
.cid-uLUTlU3Lde {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f6f6f6;
}
.cid-uLUTlU3Lde .wrapper {
  border-radius: 30px;
}
@media (max-width: 991px) {
  .cid-uLUTlU3Lde .wrapper {
    padding: 0;
  }
}
@media (min-width: 992px) {
  .cid-uLUTlU3Lde .wrapper {
    padding: 4rem 6rem;
  }
}
.cid-uLUTlU3Lde .social-row .soc-item {
  display: inline-block;
  text-align: center;
  margin-bottom: 1rem;
  margin-right: 2rem;
}
@media (max-width: 991px) {
  .cid-uLUTlU3Lde .social-row .soc-item {
    margin-right: .7rem;
  }
}
.cid-uLUTlU3Lde .social-row .soc-item .mbr-iconfont {
  font-size: 32px;
  border-radius: 50%;
  padding: 0.6rem;
  border: 2px solid #ffa29d;
  transition: all 0.3s;
  color: #ffa29d;
}
.cid-uLUTlU3Lde .social-row .soc-item .mbr-iconfont:hover {
  background-color: #ffa29d;
  color: #000000;
}
.cid-uLUTlU3Lde .border {
  padding: 2.5rem 2rem;
  border-radius: 30px;
}
@media (max-width: 991px) {
  .cid-uLUTlU3Lde .border {
    padding: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uLUTlU3Lde .wrapp {
    padding: 1rem;
  }
}
.cid-uLUTlVkEpS {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
  flex-direction: column;
  justify-content: center;
}
.cid-uLUTlVkEpS .mbr-fallback-image.disabled {
  display: none;
}
.cid-uLUTlVkEpS .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-uLUTlVkEpS .container {
    padding: 0 16px;
  }
}
.cid-uLUTlVkEpS .row {
  justify-content: space-between;
}
.cid-uLUTlVkEpS .content-wrapper .mbr-desc {
  margin-bottom: 32px;
}
.cid-uLUTlVkEpS .panel-group {
  border: 1px solid #000000;
  background-color: #ffffff;
}
.cid-uLUTlVkEpS .panel-group .card {
  position: relative;
  border-top: 1px solid #000000;
  border-radius: 0 !important;
  transition: all 0.3s ease-in-out;
  padding: 48px;
}
@media (max-width: 992px) {
  .cid-uLUTlVkEpS .panel-group .card {
    padding: 32px 16px;
  }
}
.cid-uLUTlVkEpS .panel-group .card:first-child {
  border-top: none;
}
.cid-uLUTlVkEpS .panel-group .card .card-header {
  background-color: transparent;
  border: none;
  border-radius: 0;
  padding: 0;
}
.cid-uLUTlVkEpS .panel-group .card .card-header .panel-title {
  display: inline-flex;
  padding: 0;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
.cid-uLUTlVkEpS .panel-group .card .card-header .panel-title::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  background-color: #ffffff;
  pointer-events: none;
  opacity: 0;
  width: 100%;
  height: 100%;
}
.cid-uLUTlVkEpS .panel-group .card .card-header .panel-title .panel-title-edit {
  position: relative;
  z-index: 1;
  margin-bottom: 0;
}
.cid-uLUTlVkEpS .panel-group .card .card-header .panel-title .mbr-iconfont {
  position: relative;
  z-index: 1;
  font-size: 16px;
  width: 30px;
  min-width: 30px;
  height: 30px;
  margin-bottom: 0;
  transition: all 0.3s ease-in-out;
  color: #000000;
  margin-left: 30px;
  background-color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uLUTlVkEpS .panel-group .card .card-header .panel-title:hover .mbr-iconfont {
  box-shadow: inset 0 -31px 0 #29372d;
  color: #ffffff;
}
.cid-uLUTlVkEpS .panel-group .card .card-header .panel-title:not(.collapsed) .mbr-iconfont {
  transform: rotate(180deg);
  background-color: #ffffff;
}
.cid-uLUTlVkEpS .panel-group .card .card-header .panel-title:not(.collapsed)::before {
  opacity: 1;
}
.cid-uLUTlVkEpS .panel-group .card .panel-collapse .panel-body {
  position: relative;
  z-index: 1;
  padding-top: 48px;
}
@media (max-width: 992px) {
  .cid-uLUTlVkEpS .panel-group .card .panel-collapse .panel-body {
    padding-top: 24px;
  }
}
.cid-uLUTlVkEpS .panel-group .card .panel-collapse .panel-body .panel-text {
  margin-bottom: 0;
}
.cid-uLUTlVkEpS .panel-group .card .panel-collapse .panel-body .mbr-section-btn {
  margin-top: 22px;
}
.cid-uLUTlVkEpS .mbr-desc {
  color: #000000;
}
.cid-uLUTlVkEpS .panel-title-edit {
  color: #000000;
}
.cid-uLUTlVkEpS .panel-text {
  color: #000000;
}
.cid-uLUTlWxwgj {
  padding-top: 7rem;
  padding-bottom: 7rem;
  background-color: #f6f6f6;
}
.cid-uLUTlWxwgj .mbr-text {
  color: #000000;
}
.cid-uLUTlWxwgj .mbr-section-subtitle {
  color: #f3f6f9;
}
.cid-uLUTlWxwgj .mbr-section-title {
  color: #000000;
}
.cid-uLV7ospZdZ {
  padding-top: 5rem;
  padding-bottom: 8rem;
  background-color: #f7f7f7;
}
.cid-uLV7ospZdZ .mbr-fallback-image.disabled {
  display: none;
}
.cid-uLV7ospZdZ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-uLV7ospZdZ .container {
    padding: 0 20px;
  }
}
.cid-uLV7ospZdZ .row {
  margin: 0;
}
.cid-uLV7ospZdZ .title-wrapper .mbr-section-title {
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .cid-uLV7ospZdZ .title-wrapper .mbr-section-title {
    margin-bottom: 32px;
  }
}
.cid-uLV7ospZdZ .video-block .video-wrapper .app-video-wrapper::before {
  color: #f5fd7b;
  text-shadow: none;
}
.cid-uLV7ospZdZ .video-block .video-wrapper .app-video-wrapper img {
  object-fit: cover;
  height: 500px;
  border-radius: 50px;
}
@media (max-width: 768px) {
  .cid-uLV7ospZdZ .video-block .video-wrapper .app-video-wrapper img {
    height: 300px;
  }
}
.cid-uLV7ospZdZ .video-block .video-wrapper iframe {
  border-radius: 50px;
}
.cid-uLV7ospZdZ .mbr-section-title {
  color: #000000;
}
.cid-uLUTlZ193p {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f6f6f6;
}
.cid-uLUTlZ193p .row {
  justify-content: space-between;
}
.cid-uLUTlZ193p .icon-wrapper {
  width: 100%;
  text-align: right;
}
.cid-uLUTlZ193p .mbr-iconfont {
  color: #47b5ed;
  font-size: 3rem;
}
.cid-uLUTlZ193p .text-wrapper {
  min-width: 50%;
}
.cid-uLUTlZ193p .image-wrapper {
  width: 70px;
  height: 70px;
  min-width: 70px;
  border-radius: 50%;
  margin-top: 5px;
  margin-right: 1rem;
  overflow: hidden;
}
.cid-uLUTlZ193p .image-wrapper img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.cid-uLUTlZ193p .d-flex {
  border-top: 2px solid currentColor;
  padding-top: 4rem;
  align-items: center;
}
.cid-uLUTlZ193p .mbr-section-title {
  color: #000000;
}
.cid-uLUTlZ193p .position {
  color: #666666;
}
.cid-uLUTlZ193p .name,
.cid-uLUTlZ193p .d-flex {
  color: #000000;
}
.cid-uLUTm0layE {
  display: flex;
  padding-top: 8rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uLUTm0layE .mbr-fallback-image.disabled {
  display: none;
}
.cid-uLUTm0layE .line {
  width: 100%;
  height: 1px;
  background: currentColor;
  margin-bottom: 2rem;
}
.cid-uLUTm0layE .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uLUTm0layE h1 {
  max-width: 800px;
}
.cid-uLUTm0layE p {
  max-width: 600px;
  margin-right: 0;
  margin-left: auto;
}
@media (min-width: 768px) {
  .cid-uLUTm0layE {
    align-items: center;
  }
  .cid-uLUTm0layE .row {
    justify-content: center;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-uLUTm0layE .content-wrap {
    min-width: 50%;
  }
}
@media (max-width: 767px) {
  .cid-uLUTm0layE {
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-uLUTm0layE .mbr-row {
    -webkit-justify-content: center;
    justify-content: center;
  }
  .cid-uLUTm0layE .content-wrap {
    width: 100%;
  }
}
.cid-uLUTm0layE .mbr-section-subtitle,
.cid-uLUTm0layE .line {
  color: #291f1e;
}
.cid-uLUTm0layE .mbr-text,
.cid-uLUTm0layE .mbr-section-btn {
  text-align: left;
  color: #000000;
}
.cid-uLUTm0layE .mbr-section-title {
  color: #291f1e;
}
.cid-uLUTm1D4Er {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uLUTm1D4Er ul {
  margin: 0;
  list-style: none;
  padding-left: 0rem;
}
.cid-uLUTm1D4Er ul li {
  transition: all 0.3s;
  padding-bottom: 0.5rem;
}
.cid-uLUTm1D4Er ul li:hover {
  transform: translateX(10px);
}
.cid-uLUTm1D4Er ul li:hover a {
  color: #fa4529 !important;
  background: none !important;
}
.cid-uLUTm1D4Er h4 {
  border-bottom: 2px solid currentColor;
  padding-bottom: 1rem;
  margin-bottom: 3rem;
}
.cid-uLUTm1D4Er .mbr-title {
  color: #ff8a8a;
}
.cid-uLUTm2U7xe {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f6f6f6;
}
.cid-uLUTm2U7xe .mbr-fallback-image.disabled {
  display: none;
}
.cid-uLUTm2U7xe .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uLUTm2U7xe .content-wrapper {
  padding: 0 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 992px) {
  .cid-uLUTm2U7xe .content-wrapper {
    display: block;
    padding: 0;
  }
}
.cid-uLUTm2U7xe .content-wrapper .title-wrapper {
  width: 50%;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-uLUTm2U7xe .content-wrapper .title-wrapper {
    width: 100%;
    margin-bottom: 24px;
  }
}
.cid-uLUTm2U7xe .content-wrapper .title-wrapper .mbr-section-title {
  margin-bottom: 32px;
}
@media (max-width: 992px) {
  .cid-uLUTm2U7xe .content-wrapper .title-wrapper .mbr-section-title {
    width: 100%;
    margin-bottom: 24px;
  }
}
.cid-uLUTm2U7xe .content-wrapper .title-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-uLUTm2U7xe .content-wrapper .title-wrapper .mbr-section-btn {
  margin-top: 22px;
}
@media (max-width: 992px) {
  .cid-uLUTm2U7xe .content-wrapper .title-wrapper .mbr-section-btn {
    margin-top: 16px;
  }
}
.cid-uLUTm2U7xe .content-wrapper .image-wrap {
  width: 40%;
  border: 3px solid #050f0f;
  box-shadow: 4px 4px 0 0 #050f0f;
  background-color: #ffffff;
  padding: 60px 20px;
  transform: rotate(3deg);
}
@media (max-width: 992px) {
  .cid-uLUTm2U7xe .content-wrapper .image-wrap {
    padding: 32px 16px;
    width: 100%;
    transform: rotate(0);
  }
}
.cid-uLUTm2U7xe .content-wrapper .image-wrap img {
  height: 550px;
  width: 100%;
  object-fit: cover;
}
.cid-uLUTm2U7xe .mbr-section-title {
  color: #050f0f;
}
.cid-uLUTm2U7xe .mbr-text {
  color: #050f0f;
}
.cid-uLUTm2U7xe .mbr-text,
.cid-uLUTm2U7xe .text-wrapper,
.cid-uLUTm2U7xe .rating-wrapper {
  color: #000000;
}
.cid-uLUTm3XMjc {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
@media (max-width: 992px) {
  .cid-uLUTm3XMjc .container {
    padding: 0 25px;
  }
}
.cid-uLUTm3XMjc .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-uLUTm3XMjc .title-wrapper .mbr-section-title {
    margin-bottom: 50px;
  }
}
.cid-uLUTm3XMjc .panel-group {
  border-bottom: 2px solid #000000;
}
.cid-uLUTm3XMjc .panel-group .card {
  border-top: 2px solid #000000;
  border-radius: 0 !important;
  padding: 0;
}
.cid-uLUTm3XMjc .panel-group .card .card-header {
  padding: 16px 0;
  border: none;
  background-color: transparent;
}
.cid-uLUTm3XMjc .panel-group .card .card-header .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-uLUTm3XMjc .panel-group .card .card-header .panel-title:not(.collapsed) .mbr-iconfont {
  color: #f0f0f0;
  box-shadow: inset 52px 0 0 0 #000000;
}
.cid-uLUTm3XMjc .panel-group .card .card-header .panel-title:hover .mbr-iconfont {
  color: #f0f0f0;
  box-shadow: inset 52px 0 0 0 #000000;
}
.cid-uLUTm3XMjc .panel-group .card .card-header .panel-title .panel-title-edit {
  margin-bottom: 0;
}
.cid-uLUTm3XMjc .panel-group .card .card-header .panel-title .mbr-iconfont {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  min-width: 52px;
  height: 52px;
  font-size: 20px;
  color: #000000;
  background-color: #f0f0f0;
  margin-left: 10px;
  transition: all 0.3s ease-in-out;
}
.cid-uLUTm3XMjc .panel-group .card .panel-collapse .panel-body {
  padding-bottom: 25px;
}
.cid-uLUTm3XMjc .panel-group .card .panel-collapse .panel-body .panel-text {
  margin-bottom: 0;
}
.cid-uLUTm3XMjc .mbr-section-title {
  color: #000000;
}
.cid-uLUTm3XMjc .panel-title-edit {
  color: #000000;
}
.cid-uLUTm3XMjc .panel-text {
  color: #000000;
}
.cid-uLUTm5sC36 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background: #ffffff;
}
.cid-uLUTm5sC36 .google-map {
  height: 30rem;
  position: relative;
}
.cid-uLUTm5sC36 .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-uLUTm5sC36 .google-map [data-state-details] {
  color: #6b6763;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-uLUTm5sC36 .google-map[data-state] {
  background: #e9e5dc;
}
.cid-uLUTm5sC36 .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-uLUTm77s0e {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f6f6f6;
}
.cid-uLUTm77s0e .mbr-fallback-image.disabled {
  display: none;
}
.cid-uLUTm77s0e .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uLUTm77s0e .content-wrap {
  padding: 60px;
  background-color: #f7f7f7;
}
@media (max-width: 992px) {
  .cid-uLUTm77s0e .content-wrap {
    padding: 30px 20px;
  }
}
.cid-uLUTm77s0e .content-wrap .row {
  justify-content: center;
}
.cid-uLUTm77s0e .title-wrapper {
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .cid-uLUTm77s0e .title-wrapper {
    margin-bottom: 40px;
  }
}
.cid-uLUTm77s0e .title-wrapper .title-wrap {
  display: inline-flex;
  align-items: center;
}
.cid-uLUTm77s0e .title-wrapper .title-wrap .logo-wrapper {
  margin-right: 8px;
}
.cid-uLUTm77s0e .title-wrapper .title-wrap .logo-wrapper img {
  width: 50px;
  height: 50px;
  object-fit: contain;
  border-radius: 8px !important;
}
.cid-uLUTm77s0e .title-wrapper .title-wrap .mbr-section-title {
  margin-bottom: 0;
}
.cid-uLUTm77s0e .nav-wrapper {
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .cid-uLUTm77s0e .nav-wrapper {
    margin-bottom: 40px;
  }
}
.cid-uLUTm77s0e .nav-wrapper .mbr-section-subtitle {
  margin-bottom: 20px;
}
.cid-uLUTm77s0e .nav-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-uLUTm77s0e .nav-wrapper .list .item-wrap {
  margin-bottom: 12px;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}
.cid-uLUTm77s0e .nav-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-uLUTm77s0e .nav-wrapper .list .item-wrap:hover,
.cid-uLUTm77s0e .nav-wrapper .list .item-wrap:focus {
  color: #ed463f;
}
.cid-uLUTm77s0e .contacts-wrapper {
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .cid-uLUTm77s0e .contacts-wrapper {
    margin-bottom: 40px;
  }
}
.cid-uLUTm77s0e .contacts-wrapper .mbr-section-subtitle {
  margin-bottom: 20px;
}
.cid-uLUTm77s0e .contacts-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-uLUTm77s0e .contacts-wrapper .list .item-wrap {
  margin-bottom: 10px;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}
.cid-uLUTm77s0e .contacts-wrapper .list .item-wrap:hover,
.cid-uLUTm77s0e .contacts-wrapper .list .item-wrap:focus {
  color: #ed463f;
}
.cid-uLUTm77s0e .contacts-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-uLUTm77s0e .social-wrapper {
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .cid-uLUTm77s0e .social-wrapper {
    margin-bottom: 40px;
  }
}
.cid-uLUTm77s0e .social-wrapper .mbr-section-subtitle {
  margin-bottom: 20px;
}
.cid-uLUTm77s0e .social-wrapper .social-wrap {
  display: inline-flex;
  flex-wrap: wrap;
}
.cid-uLUTm77s0e .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-uLUTm77s0e .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-uLUTm77s0e .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont {
  transform: scale(1.1);
}
.cid-uLUTm77s0e .social-wrapper .social-wrap .soc-item a .mbr-iconfont {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  min-width: 40px;
  color: #ffffff;
  background-color: #ed463f;
  font-size: 16px;
  border-radius: 100%;
  transition: all 0.3s ease-in-out;
  margin: 0 10px 10px 0;
}
.cid-uLUTm77s0e .mbr-copy {
  margin-bottom: 0;
  opacity: .6;
  color: #000000;
  text-align: center;
}
.cid-uLUTm77s0e .mbr-section-title {
  color: #ed463f;
}
.cid-uLUTm77s0e .mbr-section-subtitle {
  color: #000000;
}
.cid-uLUTm77s0e .list {
  color: #404349;
}
.cid-uMjk1xmppV {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uMjk1xmppV nav.navbar {
  position: fixed;
}
.cid-uMjk1xmppV .container-fluid {
  padding-left: 20px;
  padding-right: 20px;
}
@media (max-width: 992px) {
  .cid-uMjk1xmppV .container-fluid {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.cid-uMjk1xmppV .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uMjk1xmppV .dropdown-menu {
  padding: 0;
  border-radius: 0;
  box-shadow: none;
}
.cid-uMjk1xmppV .dropdown-item {
  border: none !important;
  background: #f4f4f4 !important;
  font-weight: 400 !important;
}
.cid-uMjk1xmppV .dropdown-item:hover,
.cid-uMjk1xmppV .dropdown-item:focus {
  background: #f4f4f4 !important;
  color: #093388 !important;
}
.cid-uMjk1xmppV .dropdown-item:hover span {
  color: white;
}
.cid-uMjk1xmppV .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uMjk1xmppV .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uMjk1xmppV .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uMjk1xmppV .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uMjk1xmppV .nav-link {
  position: relative;
}
.cid-uMjk1xmppV .container {
  display: flex;
  margin: 0 auto;
  max-width: 1600px;
}
@media (min-width: 992px) {
  .cid-uMjk1xmppV .container {
    flex-wrap: nowrap;
  }
}
.cid-uMjk1xmppV .iconfont-wrapper {
  color: #093388 !important;
  font-size: 1.5rem;
  transition: all 0.3s ease-in-out;
}
.cid-uMjk1xmppV .iconfont-wrapper:hover {
  opacity: .7;
}
.cid-uMjk1xmppV .dropdown-menu,
.cid-uMjk1xmppV .navbar.opened {
  background: #f4f4f4 !important;
}
.cid-uMjk1xmppV .nav-item:focus,
.cid-uMjk1xmppV .nav-link:focus {
  outline: none;
}
.cid-uMjk1xmppV .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uMjk1xmppV .dropdown .dropdown-menu .dropdown-item::after {
  right: 1.6rem;
}
.cid-uMjk1xmppV .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uMjk1xmppV .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uMjk1xmppV .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uMjk1xmppV .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uMjk1xmppV .navbar {
  min-height: 60px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #f4f4f4;
  padding: 0 !important;
  border-radius: 0 !important;
  border: none !important;
  box-shadow: none !important;
}
.cid-uMjk1xmppV .navbar.opened {
  transition: all 0.3s;
}
.cid-uMjk1xmppV .navbar .dropdown-item {
  padding: 8px 3.2rem 8px 22px;
  line-height: 1.5;
  border-radius: 0;
  margin-left: 4px;
  margin-bottom: 4px;
}
.cid-uMjk1xmppV .navbar .navbar-logo img {
  width: auto;
}
.cid-uMjk1xmppV .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uMjk1xmppV .navbar.collapsed {
  justify-content: center;
}
.cid-uMjk1xmppV .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uMjk1xmppV .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uMjk1xmppV .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-uMjk1xmppV .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uMjk1xmppV .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uMjk1xmppV .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-uMjk1xmppV .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uMjk1xmppV .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uMjk1xmppV .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uMjk1xmppV .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uMjk1xmppV .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uMjk1xmppV .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uMjk1xmppV .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uMjk1xmppV .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-uMjk1xmppV .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uMjk1xmppV .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uMjk1xmppV .navbar .dropdown-menu .dropdown-item {
    padding: 14px !important;
    text-align: center;
    margin-left: 0;
  }
  .cid-uMjk1xmppV .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 0.5rem;
    max-width: 80%;
  }
  .cid-uMjk1xmppV .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uMjk1xmppV .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uMjk1xmppV .navbar.navbar-short {
  min-height: 60px;
}
.cid-uMjk1xmppV .navbar.navbar-short .navbar-brand {
  min-height: 60px;
}
.cid-uMjk1xmppV .navbar-brand {
  min-height: 60px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word !important;
  z-index: 1;
  word-wrap: break-word !important;
  white-space: normal;
}
.cid-uMjk1xmppV .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: 400;
}
.cid-uMjk1xmppV .navbar-brand .navbar-caption:hover,
.cid-uMjk1xmppV .navbar-brand .navbar-caption:focus {
  color: #093388 !important;
}
.cid-uMjk1xmppV .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uMjk1xmppV .navbar.opened .navbar-brand .navbar-caption:hover,
.cid-uMjk1xmppV .navbar.opened .navbar-brand .navbar-caption:focus {
  color: #093388 !important;
}
.cid-uMjk1xmppV .dropdown-item.active,
.cid-uMjk1xmppV .dropdown-item:active {
  background-color: transparent;
}
.cid-uMjk1xmppV .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uMjk1xmppV .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uMjk1xmppV .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uMjk1xmppV .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #f4f4f4;
  top: 3.2rem;
  border-radius: 30px;
}
@media (max-width: 992px) {
  .cid-uMjk1xmppV .navbar.navbar-expand-lg .dropdown .dropdown-menu {
    top: 0;
  }
}
.cid-uMjk1xmppV .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
  top: 0;
  border-left: 1px solid transparent;
}
.cid-uMjk1xmppV .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uMjk1xmppV ul.navbar-nav {
  flex-wrap: wrap;
}
@media (min-width: 991px) {
  .cid-uMjk1xmppV ul.navbar-nav {
    padding: 0;
    background-color: transparent;
    border: 2px solid transparent;
  }
}
.cid-uMjk1xmppV .navbar-buttons {
  text-align: center;
  width: auto;
}
.cid-uMjk1xmppV .navbar-buttons .btn {
  white-space: nowrap;
  margin-right: 0;
  min-height: auto;
  width: auto;
  padding: 11px 26px;
}
@media (max-width: 575px) {
  .cid-uMjk1xmppV .navbar-buttons .btn {
    width: auto !important;
  }
}
.cid-uMjk1xmppV button.navbar-toggler {
  outline: none;
  width: 50px;
  height: 50px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  border-radius: 100%;
  background-color: #f4f4f4 !important;
  border: none !important;
  box-shadow: none !important;
}
.cid-uMjk1xmppV button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 20px;
  height: 2px;
  border-right: 5px;
  background-color: #093388;
}
.cid-uMjk1xmppV button.navbar-toggler .hamburger span:nth-child(1) {
  top: 18px;
  left: 15px;
  transition: all 0.2s;
}
.cid-uMjk1xmppV button.navbar-toggler .hamburger span:nth-child(2) {
  left: 15px;
  top: 24px;
  transition: all 0.15s;
}
.cid-uMjk1xmppV button.navbar-toggler .hamburger span:nth-child(3) {
  left: 15px;
  top: 24px;
  transition: all 0.15s;
}
.cid-uMjk1xmppV button.navbar-toggler .hamburger span:nth-child(4) {
  left: 15px;
  top: 30px;
  transition: all 0.2s;
}
.cid-uMjk1xmppV nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uMjk1xmppV nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uMjk1xmppV nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uMjk1xmppV nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uMjk1xmppV .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uMjk1xmppV a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uMjk1xmppV .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uMjk1xmppV .navbar {
    height: 70px;
  }
  .cid-uMjk1xmppV .navbar.opened {
    height: auto;
  }
  .cid-uMjk1xmppV .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uMjk1xmppV .navbar-nav {
  margin: 0 auto;
}
.cid-uMjk1xmppV .nav-item {
  padding: 0;
  margin: 0;
}
.cid-uMjk1xmppV .nav-item .nav-link {
  padding: 8px 22px !important;
  margin: 0 !important;
  transition: all 0.3s ease-in-out;
  font-weight: 400;
  border-radius: 3rem;
}
.cid-uMjk1xmppV .nav-item .nav-link::after {
  color: inherit !important;
  transform: rotate(0);
  transition: .3s;
}
.cid-uMjk1xmppV .nav-item .nav-link:hover,
.cid-uMjk1xmppV .nav-item .nav-link:focus {
  background-color: transparent;
  color: #093388 !important;
  opacity: .7;
}
.cid-uMjk1xmppV .nav-item .nav-link:hover::after,
.cid-uMjk1xmppV .nav-item .nav-link:focus::after {
  color: inherit !important;
}
.cid-uMjk1xmppV .nav-item .nav-link.show::after {
  transform: rotate(180deg);
}
.cid-uMjk1xmppV .nav-item .dropdown-menu {
  background-color: transparent !important;
}
.cid-uMjk1xmppV .nav-item .dropdown-menu:hover {
  background-color: transparent !important;
}
@media (max-width: 991px) {
  .cid-uMjk1xmppV .navbar {
    justify-content: flex-start !important;
  }
  .cid-uMjk1xmppV .navbar.opened {
    min-height: 100vh !important;
    flex-direction: column !important;
    justify-content: flex-start !important;
  }
  .cid-uMjk1xmppV .navbar-collapse {
    padding: 20px 0 3rem;
  }
  .cid-uMjk1xmppV .navbar-collapse .navbar-nav {
    width: 100%;
    margin-bottom: 24px;
  }
  .cid-uMjk1xmppV .navbar-collapse .nav-item {
    width: 100%;
    margin: 0;
  }
  .cid-uMjk1xmppV .navbar-collapse .nav-item:not(:first-child) {
    border-top: 1px solid transparent;
  }
  .cid-uMjk1xmppV .navbar-collapse .nav-item .nav-link {
    padding: 14px !important;
    justify-content: center;
    margin: 0 !important;
    margin-bottom: 4px !important;
  }
}
.cid-uMjk1xmppV .content-wrap {
  min-height: 60px;
}
.cid-sLNCYpfobR {
  padding-top: 9rem;
  padding-bottom: 7rem;
  background-color: #ffffff;
}
.cid-sLNCYpfobR .row {
  flex-direction: row-reverse;
}
.cid-sLNCYpfobR .mbr-text {
  max-width: 550px;
}
.cid-sLNCYpfobR .row {
  align-items: center;
}
.cid-sLNCYpfobR .mbr-section-subtitle {
  line-height: 1.6;
}
.cid-sLNCYpfobR .mbr-text,
.cid-sLNCYpfobR .mbr-section-btn {
  color: #000000;
}
.cid-uLUBWCkOKt {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #ffffff;
}
.cid-uLUBWCkOKt .counter-container ul {
  margin-bottom: 0;
}
.cid-uLUBWCkOKt .counter-container ul li {
  padding-left: 0rem;
  margin-bottom: 1rem;
  list-style: none;
  position: relative;
}
.cid-uLUBWCkOKt .counter-container ul li:before {
  position: absolute;
  font-family: 'Moririse2' !important;
  left: -40px;
  content: "\e96b";
  top: -2px;
  display: flex;
  transform: rotate(30deg);
  justify-content: center;
  align-items: center;
  color: #ffb18a;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  margin-top: 5px;
}
.cid-uLUBRokect {
  padding-top: 0rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uLUBRokect .content_wrapper {
  position: relative;
  padding: 50px 0;
  border-top: 1px solid #000000;
  border-bottom: 1px solid #000000;
  z-index: 1;
}
.cid-uLUBRokect .content_wrapper:hover .mbr-section-title a {
  color: #ff8a8a !important;
}
.cid-uLUBRokect .mbr-section-title {
  margin-bottom: 12px;
}
.cid-uLUBRokect .icon_wrapper .mbr-iconfont {
  font-size: 140px;
  width: 140px;
  height: 140px;
  position: absolute;
  z-index: -1;
  color: #fef2ed;
  top: 2%;
  right: 13%;
}
.cid-uLUBRokect .mbr-section-btn .btn-secondary-outline {
  padding: 3px 0;
  border: none !important;
  background-color: transparent !important;
}
.cid-uLUBRokect .mbr-section-btn .btn-secondary-outline:hover,
.cid-uLUBRokect .mbr-section-btn .btn-secondary-outline .active,
.cid-uLUBRokect .mbr-section-btn .btn-secondary-outline:focus {
  color: #fa4529 !important;
}
.cid-uLUBRokect .card_post {
  display: inline-flex;
  align-items: center;
  margin-top: 30px;
}
.cid-uLUBRokect .image_post {
  display: inline-block;
}
.cid-uLUBRokect .image_post img {
  object-fit: cover;
  height: 50px;
  width: 50px;
  min-width: 50px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.07);
  border-radius: 50%;
}
.cid-uLUBRokect .author_post {
  display: inline-block;
  margin-left: 15px;
}
.cid-uLUBRokect .mbr-fallback-image.disabled {
  display: none;
}
.cid-uLUBRokect .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uLUCM1iso2 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
  overflow: hidden;
}
.cid-uLUCM1iso2 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uLUCM1iso2 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-uLUCM1iso2 .container {
    padding: 0 22px;
  }
}
.cid-uLUCM1iso2 .card {
  justify-content: center;
}
.cid-uLUCM1iso2 .content-wrapper {
  padding-right: 32px;
}
@media (max-width: 992px) {
  .cid-uLUCM1iso2 .content-wrapper {
    padding: 0;
    margin-bottom: 40px;
  }
}
.cid-uLUCM1iso2 .content-wrapper .mbr-section-title {
  margin-bottom: 10px;
}
.cid-uLUCM1iso2 .content-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-uLUCM1iso2 .image-wrapper {
  display: flex;
  justify-content: center;
}
.cid-uLUCM1iso2 .image-wrapper img {
  height: 600px;
  width: 600px;
  border-radius: 100% !important;
  object-fit: cover;
  box-shadow: 10px 10px 60px #ff8a8a;
}
@media (max-width: 1440px) {
  .cid-uLUCM1iso2 .image-wrapper img {
    height: 500px;
    width: 500px;
  }
}
@media (max-width: 1200px) {
  .cid-uLUCM1iso2 .image-wrapper img {
    height: 400px;
    width: 400px;
  }
}
@media (max-width: 992px) {
  .cid-uLUCM1iso2 .image-wrapper img {
    height: 400px;
    width: 400px;
  }
}
@media (max-width: 768px) {
  .cid-uLUCM1iso2 .image-wrapper img {
    height: 260px;
    width: 260px;
  }
}
.cid-uLUCM1iso2 .mbr-section-title {
  color: #000000;
}
.cid-uLUCM1iso2 .mbr-text {
  color: #000000;
}
.cid-uLUDSb7qsL {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uLUDSb7qsL .mbr-title {
  color: #000000;
}
.cid-uLUDSb7qsL .card-wrapper {
  border-top: 2px solid currentColor;
}
.cid-uLUDSb7qsL .card-wrapper {
  padding-top: 4rem;
}
.cid-uLUDSb7qsL .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uLUDSb7qsL .mbr-text,
.cid-uLUDSb7qsL .mbr-section-btn {
  color: #000000;
}
.cid-uLUDSb7qsL .mbr-section-title,
.cid-uLUDSb7qsL .item {
  color: #000000;
}
.cid-uLUDSb7qsL .mbr-section-title,
.cid-uLUDSb7qsL .card-wrapper {
  color: #000000;
  text-align: center;
}
.cid-uLUBImByXm {
  display: flex;
  padding-top: 8rem;
  padding-bottom: 8rem;
  background-color: #f6f6f6;
}
.cid-uLUBImByXm .mbr-fallback-image.disabled {
  display: none;
}
.cid-uLUBImByXm .line {
  width: 100%;
  height: 1px;
  background: currentColor;
  margin-bottom: 2rem;
}
.cid-uLUBImByXm .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uLUBImByXm h1 {
  max-width: 800px;
}
.cid-uLUBImByXm p {
  max-width: 600px;
  margin-right: 0;
  margin-left: auto;
}
@media (min-width: 768px) {
  .cid-uLUBImByXm {
    align-items: center;
  }
  .cid-uLUBImByXm .row {
    justify-content: center;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-uLUBImByXm .content-wrap {
    min-width: 50%;
  }
}
@media (max-width: 767px) {
  .cid-uLUBImByXm {
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-uLUBImByXm .mbr-row {
    -webkit-justify-content: center;
    justify-content: center;
  }
  .cid-uLUBImByXm .content-wrap {
    width: 100%;
  }
}
.cid-uLUBImByXm .mbr-section-subtitle,
.cid-uLUBImByXm .line {
  color: #291f1e;
}
.cid-uLUBImByXm .mbr-text,
.cid-uLUBImByXm .mbr-section-btn {
  text-align: left;
  color: #000000;
}
.cid-uLUBImByXm .mbr-section-title {
  color: #291f1e;
}
.cid-sLNIfvvY0I {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-sLNIfvvY0I .text-wrapper {
  padding: 2rem;
  max-width: 650px;
}
@media (max-width: 991px) {
  .cid-sLNIfvvY0I .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-sLNIfvvY0I img {
  width: 130%;
}
@media (max-width: 1400px) {
  .cid-sLNIfvvY0I img {
    width: 150%;
  }
}
@media (max-width: 992px) {
  .cid-sLNIfvvY0I img {
    width: 100%;
  }
}
@media (min-width: 992px) {
  .cid-sLNIfvvY0I .text-wrapper {
    padding: 2rem;
  }
}
.cid-sLNIfvvY0I .mbr-section-subtitle {
  color: #ff8a8a;
}
.cid-sLNIfvvY0I .mbr-text {
  color: #000000;
}
.cid-sLNIfvvY0I .mbr-section-title {
  color: #000000;
}
.cid-uLUBLHj2s1 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f6f6f6;
}
.cid-uLUBLHj2s1 .wrapper {
  border-radius: 30px;
}
@media (max-width: 991px) {
  .cid-uLUBLHj2s1 .wrapper {
    padding: 0;
  }
}
@media (min-width: 992px) {
  .cid-uLUBLHj2s1 .wrapper {
    padding: 4rem 6rem;
  }
}
.cid-uLUBLHj2s1 .social-row .soc-item {
  display: inline-block;
  text-align: center;
  margin-bottom: 1rem;
  margin-right: 2rem;
}
@media (max-width: 991px) {
  .cid-uLUBLHj2s1 .social-row .soc-item {
    margin-right: .7rem;
  }
}
.cid-uLUBLHj2s1 .social-row .soc-item .mbr-iconfont {
  font-size: 32px;
  border-radius: 50%;
  padding: 0.6rem;
  border: 2px solid #ffa29d;
  transition: all 0.3s;
  color: #ffa29d;
}
.cid-uLUBLHj2s1 .social-row .soc-item .mbr-iconfont:hover {
  background-color: #ffa29d;
  color: #000000;
}
.cid-uLUBLHj2s1 .border {
  padding: 2.5rem 2rem;
  border-radius: 30px;
}
@media (max-width: 991px) {
  .cid-uLUBLHj2s1 .border {
    padding: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uLUBLHj2s1 .wrapp {
    padding: 1rem;
  }
}
.cid-uLVcbQEgxk {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
  flex-direction: column;
  justify-content: center;
}
.cid-uLVcbQEgxk .mbr-fallback-image.disabled {
  display: none;
}
.cid-uLVcbQEgxk .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-uLVcbQEgxk .container {
    padding: 0 16px;
  }
}
.cid-uLVcbQEgxk .row {
  justify-content: space-between;
}
.cid-uLVcbQEgxk .content-wrapper .mbr-desc {
  margin-bottom: 32px;
}
.cid-uLVcbQEgxk .panel-group {
  border: 1px solid #000000;
  background-color: #ffffff;
}
.cid-uLVcbQEgxk .panel-group .card {
  position: relative;
  border-top: 1px solid #000000;
  border-radius: 0 !important;
  transition: all 0.3s ease-in-out;
  padding: 48px;
}
@media (max-width: 992px) {
  .cid-uLVcbQEgxk .panel-group .card {
    padding: 32px 16px;
  }
}
.cid-uLVcbQEgxk .panel-group .card:first-child {
  border-top: none;
}
.cid-uLVcbQEgxk .panel-group .card .card-header {
  background-color: transparent;
  border: none;
  border-radius: 0;
  padding: 0;
}
.cid-uLVcbQEgxk .panel-group .card .card-header .panel-title {
  display: inline-flex;
  padding: 0;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
.cid-uLVcbQEgxk .panel-group .card .card-header .panel-title::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  background-color: #ffffff;
  pointer-events: none;
  opacity: 0;
  width: 100%;
  height: 100%;
}
.cid-uLVcbQEgxk .panel-group .card .card-header .panel-title .panel-title-edit {
  position: relative;
  z-index: 1;
  margin-bottom: 0;
}
.cid-uLVcbQEgxk .panel-group .card .card-header .panel-title .mbr-iconfont {
  position: relative;
  z-index: 1;
  font-size: 16px;
  width: 30px;
  min-width: 30px;
  height: 30px;
  margin-bottom: 0;
  transition: all 0.3s ease-in-out;
  color: #000000;
  margin-left: 30px;
  background-color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uLVcbQEgxk .panel-group .card .card-header .panel-title:hover .mbr-iconfont {
  box-shadow: inset 0 -31px 0 #29372d;
  color: #ffffff;
}
.cid-uLVcbQEgxk .panel-group .card .card-header .panel-title:not(.collapsed) .mbr-iconfont {
  transform: rotate(180deg);
  background-color: #ffffff;
}
.cid-uLVcbQEgxk .panel-group .card .card-header .panel-title:not(.collapsed)::before {
  opacity: 1;
}
.cid-uLVcbQEgxk .panel-group .card .panel-collapse .panel-body {
  position: relative;
  z-index: 1;
  padding-top: 48px;
}
@media (max-width: 992px) {
  .cid-uLVcbQEgxk .panel-group .card .panel-collapse .panel-body {
    padding-top: 24px;
  }
}
.cid-uLVcbQEgxk .panel-group .card .panel-collapse .panel-body .panel-text {
  margin-bottom: 0;
}
.cid-uLVcbQEgxk .panel-group .card .panel-collapse .panel-body .mbr-section-btn {
  margin-top: 22px;
}
.cid-uLVcbQEgxk .mbr-desc {
  color: #000000;
}
.cid-uLVcbQEgxk .panel-title-edit {
  color: #000000;
}
.cid-uLVcbQEgxk .panel-text {
  color: #000000;
}
.cid-uLUD5sBbd1 {
  padding-top: 7rem;
  padding-bottom: 7rem;
  background-color: #f6f6f6;
}
.cid-uLUD5sBbd1 .mbr-text {
  color: #000000;
}
.cid-uLUD5sBbd1 .mbr-section-subtitle {
  color: #f3f6f9;
}
.cid-uLUD5sBbd1 .mbr-section-title {
  color: #000000;
}
.cid-uLV87UY3tr {
  padding-top: 5rem;
  padding-bottom: 9rem;
  background-color: #f7f7f7;
}
.cid-uLV87UY3tr .mbr-fallback-image.disabled {
  display: none;
}
.cid-uLV87UY3tr .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-uLV87UY3tr .container {
    padding: 0 20px;
  }
}
.cid-uLV87UY3tr .row {
  margin: 0;
}
.cid-uLV87UY3tr .title-wrapper .mbr-section-title {
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .cid-uLV87UY3tr .title-wrapper .mbr-section-title {
    margin-bottom: 32px;
  }
}
.cid-uLV87UY3tr .video-block .video-wrapper .app-video-wrapper::before {
  color: #f5fd7b;
  text-shadow: none;
}
.cid-uLV87UY3tr .video-block .video-wrapper .app-video-wrapper img {
  object-fit: cover;
  height: 500px;
  border-radius: 50px;
}
@media (max-width: 768px) {
  .cid-uLV87UY3tr .video-block .video-wrapper .app-video-wrapper img {
    height: 300px;
  }
}
.cid-uLV87UY3tr .video-block .video-wrapper iframe {
  border-radius: 50px;
}
.cid-uLV87UY3tr .mbr-section-title {
  color: #000000;
}
.cid-sLNHAm9KbW {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f6f6f6;
}
.cid-sLNHAm9KbW .row {
  justify-content: space-between;
}
.cid-sLNHAm9KbW .icon-wrapper {
  width: 100%;
  text-align: right;
}
.cid-sLNHAm9KbW .mbr-iconfont {
  color: #47b5ed;
  font-size: 3rem;
}
.cid-sLNHAm9KbW .text-wrapper {
  min-width: 50%;
}
.cid-sLNHAm9KbW .image-wrapper {
  width: 70px;
  height: 70px;
  min-width: 70px;
  border-radius: 50%;
  margin-top: 5px;
  margin-right: 1rem;
  overflow: hidden;
}
.cid-sLNHAm9KbW .image-wrapper img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.cid-sLNHAm9KbW .d-flex {
  border-top: 2px solid currentColor;
  padding-top: 4rem;
  align-items: center;
}
.cid-sLNHAm9KbW .mbr-section-title {
  color: #000000;
}
.cid-sLNHAm9KbW .position {
  color: #666666;
}
.cid-sLNHAm9KbW .name,
.cid-sLNHAm9KbW .d-flex {
  color: #000000;
}
.cid-uLUBDqEIdn {
  display: flex;
  padding-top: 8rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uLUBDqEIdn .mbr-fallback-image.disabled {
  display: none;
}
.cid-uLUBDqEIdn .line {
  width: 100%;
  height: 1px;
  background: currentColor;
  margin-bottom: 2rem;
}
.cid-uLUBDqEIdn .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uLUBDqEIdn h1 {
  max-width: 800px;
}
.cid-uLUBDqEIdn p {
  max-width: 600px;
  margin-right: 0;
  margin-left: auto;
}
@media (min-width: 768px) {
  .cid-uLUBDqEIdn {
    align-items: center;
  }
  .cid-uLUBDqEIdn .row {
    justify-content: center;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-uLUBDqEIdn .content-wrap {
    min-width: 50%;
  }
}
@media (max-width: 767px) {
  .cid-uLUBDqEIdn {
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-uLUBDqEIdn .mbr-row {
    -webkit-justify-content: center;
    justify-content: center;
  }
  .cid-uLUBDqEIdn .content-wrap {
    width: 100%;
  }
}
.cid-uLUBDqEIdn .mbr-section-subtitle,
.cid-uLUBDqEIdn .line {
  color: #291f1e;
}
.cid-uLUBDqEIdn .mbr-text,
.cid-uLUBDqEIdn .mbr-section-btn {
  text-align: left;
  color: #000000;
}
.cid-uLUBDqEIdn .mbr-section-title {
  color: #291f1e;
}
.cid-sLNG2MyBoP {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-sLNG2MyBoP ul {
  margin: 0;
  list-style: none;
  padding-left: 0rem;
}
.cid-sLNG2MyBoP ul li {
  transition: all 0.3s;
  padding-bottom: 0.5rem;
}
.cid-sLNG2MyBoP ul li:hover {
  transform: translateX(10px);
}
.cid-sLNG2MyBoP ul li:hover a {
  color: #fa4529 !important;
  background: none !important;
}
.cid-sLNG2MyBoP h4 {
  border-bottom: 2px solid currentColor;
  padding-bottom: 1rem;
  margin-bottom: 3rem;
}
.cid-sLNG2MyBoP .mbr-title {
  color: #ff8a8a;
}
.cid-uLUGJWLDiN {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f6f6f6;
}
.cid-uLUGJWLDiN .mbr-fallback-image.disabled {
  display: none;
}
.cid-uLUGJWLDiN .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uLUGJWLDiN .content-wrapper {
  padding: 0 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 992px) {
  .cid-uLUGJWLDiN .content-wrapper {
    display: block;
    padding: 0;
  }
}
.cid-uLUGJWLDiN .content-wrapper .title-wrapper {
  width: 50%;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-uLUGJWLDiN .content-wrapper .title-wrapper {
    width: 100%;
    margin-bottom: 24px;
  }
}
.cid-uLUGJWLDiN .content-wrapper .title-wrapper .mbr-section-title {
  margin-bottom: 32px;
}
@media (max-width: 992px) {
  .cid-uLUGJWLDiN .content-wrapper .title-wrapper .mbr-section-title {
    width: 100%;
    margin-bottom: 24px;
  }
}
.cid-uLUGJWLDiN .content-wrapper .title-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-uLUGJWLDiN .content-wrapper .title-wrapper .mbr-section-btn {
  margin-top: 22px;
}
@media (max-width: 992px) {
  .cid-uLUGJWLDiN .content-wrapper .title-wrapper .mbr-section-btn {
    margin-top: 16px;
  }
}
.cid-uLUGJWLDiN .content-wrapper .image-wrap {
  width: 40%;
  border: 3px solid #050f0f;
  box-shadow: 4px 4px 0 0 #050f0f;
  background-color: #ffffff;
  padding: 60px 20px;
  transform: rotate(3deg);
}
@media (max-width: 992px) {
  .cid-uLUGJWLDiN .content-wrapper .image-wrap {
    padding: 32px 16px;
    width: 100%;
    transform: rotate(0);
  }
}
.cid-uLUGJWLDiN .content-wrapper .image-wrap img {
  height: 550px;
  width: 100%;
  object-fit: cover;
}
.cid-uLUGJWLDiN .mbr-section-title {
  color: #050f0f;
}
.cid-uLUGJWLDiN .mbr-text {
  color: #050f0f;
}
.cid-uLUGJWLDiN .mbr-text,
.cid-uLUGJWLDiN .text-wrapper,
.cid-uLUGJWLDiN .rating-wrapper {
  color: #000000;
}
.cid-sLNHyAxh6n {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background: #ffffff;
}
.cid-sLNHyAxh6n .google-map {
  height: 30rem;
  position: relative;
}
.cid-sLNHyAxh6n .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-sLNHyAxh6n .google-map [data-state-details] {
  color: #6b6763;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-sLNHyAxh6n .google-map[data-state] {
  background: #e9e5dc;
}
.cid-sLNHyAxh6n .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-uLUxF71h48 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f6f6f6;
}
.cid-uLUxF71h48 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uLUxF71h48 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uLUxF71h48 .content-wrap {
  padding: 60px;
  background-color: #f7f7f7;
}
@media (max-width: 992px) {
  .cid-uLUxF71h48 .content-wrap {
    padding: 30px 20px;
  }
}
.cid-uLUxF71h48 .content-wrap .row {
  justify-content: center;
}
.cid-uLUxF71h48 .title-wrapper {
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .cid-uLUxF71h48 .title-wrapper {
    margin-bottom: 40px;
  }
}
.cid-uLUxF71h48 .title-wrapper .title-wrap {
  display: inline-flex;
  align-items: center;
}
.cid-uLUxF71h48 .title-wrapper .title-wrap .logo-wrapper {
  margin-right: 8px;
}
.cid-uLUxF71h48 .title-wrapper .title-wrap .logo-wrapper img {
  width: 50px;
  height: 50px;
  object-fit: contain;
  border-radius: 8px !important;
}
.cid-uLUxF71h48 .title-wrapper .title-wrap .mbr-section-title {
  margin-bottom: 0;
}
.cid-uLUxF71h48 .nav-wrapper {
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .cid-uLUxF71h48 .nav-wrapper {
    margin-bottom: 40px;
  }
}
.cid-uLUxF71h48 .nav-wrapper .mbr-section-subtitle {
  margin-bottom: 20px;
}
.cid-uLUxF71h48 .nav-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-uLUxF71h48 .nav-wrapper .list .item-wrap {
  margin-bottom: 12px;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}
.cid-uLUxF71h48 .nav-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-uLUxF71h48 .nav-wrapper .list .item-wrap:hover,
.cid-uLUxF71h48 .nav-wrapper .list .item-wrap:focus {
  color: #ed463f;
}
.cid-uLUxF71h48 .contacts-wrapper {
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .cid-uLUxF71h48 .contacts-wrapper {
    margin-bottom: 40px;
  }
}
.cid-uLUxF71h48 .contacts-wrapper .mbr-section-subtitle {
  margin-bottom: 20px;
}
.cid-uLUxF71h48 .contacts-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-uLUxF71h48 .contacts-wrapper .list .item-wrap {
  margin-bottom: 10px;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}
.cid-uLUxF71h48 .contacts-wrapper .list .item-wrap:hover,
.cid-uLUxF71h48 .contacts-wrapper .list .item-wrap:focus {
  color: #ed463f;
}
.cid-uLUxF71h48 .contacts-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-uLUxF71h48 .social-wrapper {
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .cid-uLUxF71h48 .social-wrapper {
    margin-bottom: 40px;
  }
}
.cid-uLUxF71h48 .social-wrapper .mbr-section-subtitle {
  margin-bottom: 20px;
}
.cid-uLUxF71h48 .social-wrapper .social-wrap {
  display: inline-flex;
  flex-wrap: wrap;
}
.cid-uLUxF71h48 .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-uLUxF71h48 .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-uLUxF71h48 .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont {
  transform: scale(1.1);
}
.cid-uLUxF71h48 .social-wrapper .social-wrap .soc-item a .mbr-iconfont {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  min-width: 40px;
  color: #ffffff;
  background-color: #ed463f;
  font-size: 16px;
  border-radius: 100%;
  transition: all 0.3s ease-in-out;
  margin: 0 10px 10px 0;
}
.cid-uLUxF71h48 .mbr-copy {
  margin-bottom: 0;
  opacity: .6;
  color: #000000;
  text-align: center;
}
.cid-uLUxF71h48 .mbr-section-title {
  color: #ed463f;
}
.cid-uLUxF71h48 .mbr-section-subtitle {
  color: #000000;
}
.cid-uLUxF71h48 .list {
  color: #404349;
}
