body {
  font-family: Poppins;
}
.display-1 {
  font-family: 'Lato', sans-serif;
  font-size: 4.25rem;
}
.display-2 {
  font-family: 'Lato', sans-serif;
  font-size: 3rem;
}
.display-4 {
  font-family: 'Lato', sans-serif;
  font-size: 0.875rem;
}
.display-5 {
  font-family: 'Lato', sans-serif;
  font-size: 1.8rem;
}
.display-7 {
  font-family: 'Lato', sans-serif;
  font-size: 1.2rem;
}
/* ---- Fluid typography for mobile devices ---- */
/* 1.4 - font scale ratio ( bootstrap == 1.42857 ) */
/* 100vw - current viewport width */
/* (48 - 20)  48 == 48rem == 768px, 20 == 20rem == 320px(minimal supported viewport) */
/* 0.65 - min scale variable, may vary */
@media (max-width: 768px) {
  .display-1 {
    font-size: 3.4rem;
    font-size: calc( 2.1374999999999997rem + (4.25 - 2.1374999999999997) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (2.1374999999999997rem + (4.25 - 2.1374999999999997) * ((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.4 * (1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 0.7rem;
    font-size: calc( 0.95625rem + (0.875 - 0.95625) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (0.95625rem + (0.875 - 0.95625) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 1.44rem;
    font-size: calc( 1.28rem + (1.8 - 1.28) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.28rem + (1.8 - 1.28) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* Buttons */
.btn {
  padding: 1rem 3rem;
  border-radius: 3px;
}
.btn-sm {
  padding: 0.6rem 1.5rem;
  border-radius: 3px;
}
.btn-md {
  padding: 1rem 3rem;
  border-radius: 3px;
}
.btn-lg {
  padding: 1.2rem 3.2rem;
  border-radius: 3px;
}
.bg-primary {
  background-color: #e5524e !important;
}
.bg-success {
  background-color: #9473d2 !important;
}
.bg-info {
  background-color: #7237a2 !important;
}
.bg-warning {
  background-color: #f8f9c4 !important;
}
.bg-danger {
  background-color: #efefef !important;
}
.btn-primary,
.btn-primary:active,
.btn-primary.active {
  background-color: #e5524e !important;
  border-color: #e5524e !important;
  color: #ffffff !important;
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus {
  color: #ffffff !important;
  background-color: #e5524e !important;
  border-color: #e5524e !important;
}
.btn-primary:before {
  background-color: #c9221e !important;
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #c9221e !important;
  border-color: #c9221e !important;
}
.btn-secondary,
.btn-secondary:active,
.btn-secondary.active {
  background-color: #f27d7a !important;
  border-color: #f27d7a !important;
  color: #ffffff !important;
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus {
  color: #ffffff !important;
  background-color: #f27d7a !important;
  border-color: #f27d7a !important;
}
.btn-secondary:before {
  background-color: #eb3934 !important;
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #eb3934 !important;
  border-color: #eb3934 !important;
}
.btn-info,
.btn-info:active,
.btn-info.active {
  background-color: #7237a2 !important;
  border-color: #7237a2 !important;
  color: #ffffff !important;
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus {
  color: #ffffff !important;
  background-color: #7237a2 !important;
  border-color: #7237a2 !important;
}
.btn-info:before {
  background-color: #4a2469 !important;
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #4a2469 !important;
  border-color: #4a2469 !important;
}
.btn-success,
.btn-success:active,
.btn-success.active {
  background-color: #9473d2 !important;
  border-color: #9473d2 !important;
  color: #ffffff !important;
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus {
  color: #ffffff !important;
  background-color: #9473d2 !important;
  border-color: #9473d2 !important;
}
.btn-success:before {
  background-color: #693cbc !important;
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #693cbc !important;
  border-color: #693cbc !important;
}
.btn-warning,
.btn-warning:active,
.btn-warning.active {
  background-color: #f8f9c4 !important;
  border-color: #f8f9c4 !important;
  color: #aaac12 !important;
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus {
  color: #aaac12 !important;
  background-color: #f8f9c4 !important;
  border-color: #f8f9c4 !important;
}
.btn-warning:before {
  background-color: #f0f27f !important;
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #aaac12 !important;
  background-color: #f0f27f !important;
  border-color: #f0f27f !important;
}
.btn-danger,
.btn-danger:active,
.btn-danger.active {
  background-color: #efefef !important;
  border-color: #efefef !important;
  color: #707070 !important;
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus {
  color: #707070 !important;
  background-color: #efefef !important;
  border-color: #efefef !important;
}
.btn-danger:before {
  background-color: #c9c9c9 !important;
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #707070 !important;
  background-color: #c9c9c9 !important;
  border-color: #c9c9c9 !important;
}
.btn-white {
  color: #333333 !important;
}
.btn-white,
.btn-white:active,
.btn-white.active {
  background-color: #ffffff !important;
  border-color: #ffffff !important;
  color: #808080 !important;
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus {
  color: #808080 !important;
  background-color: #ffffff !important;
  border-color: #ffffff !important;
}
.btn-white:before {
  background-color: #d9d9d9 !important;
}
.btn-white.disabled,
.btn-white:disabled {
  color: #808080 !important;
  background-color: #d9d9d9 !important;
  border-color: #d9d9d9 !important;
}
.btn-black,
.btn-black:active,
.btn-black.active {
  background-color: #333333 !important;
  border-color: #333333 !important;
  color: #ffffff !important;
}
.btn-black:hover,
.btn-black:focus,
.btn-black.focus {
  color: #ffffff !important;
  background-color: #333333 !important;
  border-color: #333333 !important;
}
.btn-black:before {
  background-color: #0d0d0d !important;
}
.btn-black.disabled,
.btn-black:disabled {
  color: #ffffff !important;
  background-color: #0d0d0d !important;
  border-color: #0d0d0d !important;
}
.btn-primary-outline,
.btn-primary-outline:active,
.btn-primary-outline.active {
  background: none;
  border-color: #b31e1a;
  color: #b31e1a;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus {
  color: #ffffff;
  border-color: #e5524e;
}
.btn-primary-outline:before {
  background-color: #e5524e;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #e5524e !important;
  border-color: #e5524e !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active,
.btn-secondary-outline.active {
  background: none;
  border-color: #e9221d;
  color: #e9221d;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus {
  color: #ffffff;
  border-color: #f27d7a;
}
.btn-secondary-outline:before {
  background-color: #f27d7a;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #f27d7a !important;
  border-color: #f27d7a !important;
}
.btn-info-outline,
.btn-info-outline:active,
.btn-info-outline.active {
  background: none;
  border-color: #3c1d56;
  color: #3c1d56;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus {
  color: #ffffff;
  border-color: #7237a2;
}
.btn-info-outline:before {
  background-color: #7237a2;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #7237a2 !important;
  border-color: #7237a2 !important;
}
.btn-success-outline,
.btn-success-outline:active,
.btn-success-outline.active {
  background: none;
  border-color: #5e36a9;
  color: #5e36a9;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus {
  color: #ffffff;
  border-color: #9473d2;
}
.btn-success-outline:before {
  background-color: #9473d2;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #ffffff !important;
  background-color: #9473d2 !important;
  border-color: #9473d2 !important;
}
.btn-warning-outline,
.btn-warning-outline:active,
.btn-warning-outline.active {
  background: none;
  border-color: #edf067;
  color: #edf067;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus {
  color: #aaac12;
  border-color: #f8f9c4;
}
.btn-warning-outline:before {
  background-color: #f8f9c4;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #ffffff !important;
  background-color: #f8f9c4 !important;
  border-color: #f8f9c4 !important;
}
.btn-danger-outline,
.btn-danger-outline:active,
.btn-danger-outline.active {
  background: none;
  border-color: #bcbcbc;
  color: #bcbcbc;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus {
  color: #707070;
  border-color: #efefef;
}
.btn-danger-outline:before {
  background-color: #efefef;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #efefef !important;
  border-color: #efefef !important;
}
.btn-black-outline,
.btn-black-outline:active,
.btn-black-outline.active {
  background: none;
  border-color: #000000;
  color: #000000;
}
.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.focus {
  color: #ffffff;
  border-color: #333333;
}
.btn-black-outline:before {
  background-color: #333333;
}
.btn-black-outline.disabled,
.btn-black-outline:disabled {
  color: #ffffff !important;
  background-color: #333333 !important;
  border-color: #333333 !important;
}
.btn-white-outline,
.btn-white-outline:active,
.btn-white-outline.active {
  background: none;
  border-color: #ffffff;
  color: #ffffff;
}
.btn-white-outline:hover,
.btn-white-outline:focus,
.btn-white-outline.focus {
  color: #333333;
  border-color: #ffffff;
}
.btn-white-outline:before {
  background-color: #ffffff;
}
.btn-bgr {
  position: relative;
  transition: border 0.3s ease-in-out, color 0.5s;
  -webkit-mask-image: -webkit-radial-gradient(circle, white, black);
}
.btn-bgr span {
  position: relative;
  z-index: 12;
}
.btn-bgr:before {
  content: ' ';
  position: absolute;
  top: -2px;
  left: -2px;
  right: 105%;
  bottom: -2px;
  transition: right 0.3s ease-in-out;
  z-index: -1;
}
.btn-bgr:hover:before {
  right: -2px;
}
.btn-underline {
  cursor: pointer;
  display: inline-block;
  position: relative;
  transition: color 0.2s ease-out;
}
.btn-underline:before {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #e5524e;
  -webkit-transition: width 0.2s ease-out;
  -moz-transition: width 0.2s ease-out;
  transition: width 0.2s ease-out;
}
.btn-underline:hover:before {
  width: 100%;
}
.text-primary {
  color: #e5524e !important;
}
.text-secondary {
  color: #f27d7a !important;
}
.text-success {
  color: #9473d2 !important;
}
.text-info {
  color: #7237a2 !important;
}
.text-warning {
  color: #f8f9c4 !important;
}
.text-danger {
  color: #efefef !important;
}
.text-white {
  color: #ffffff !important;
}
.text-black {
  color: #000000 !important;
}
a.text-primary:hover,
a.text-primary:focus {
  color: #b31e1a !important;
}
a.text-secondary:hover,
a.text-secondary:focus {
  color: #e9221d !important;
}
a.text-success:hover,
a.text-success:focus {
  color: #5e36a9 !important;
}
a.text-info:hover,
a.text-info:focus {
  color: #3c1d56 !important;
}
a.text-warning:hover,
a.text-warning:focus {
  color: #edf067 !important;
}
a.text-danger:hover,
a.text-danger:focus {
  color: #bcbcbc !important;
}
a.text-white:hover,
a.text-white:focus {
  color: #b3b3b3 !important;
}
a.text-black:hover,
a.text-black:focus {
  color: #4d4d4d !important;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #7237a2;
}
.alert-warning {
  background-color: #f8f9c4;
}
.alert-danger {
  background-color: #efefef;
}
.mbr-gallery-filter li.active .btn {
  background-color: #e5524e;
  border-color: #e5524e;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
a,
a:hover {
  color: #e5524e;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #b083d5;
}
.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;
}
blockquote {
  border-color: #e5524e;
}
/* Forms */
.mbr-form .btn {
  margin: .4rem 0;
}
@media (max-width: 767px) {
  .btn {
    font-size: .75rem !important;
  }
  .btn .mbr-iconfont {
    font-size: 1rem !important;
  }
}
/* Footer */
.mbr-footer-content li::before,
.mbr-footer .mbr-contacts li::before {
  background: #e5524e;
}
.mbr-footer-content li a:hover,
.mbr-footer .mbr-contacts li a:hover {
  color: #e5524e;
}
/*Menu*/
.display-1 > .mbr-iconfont {
  font-size: 6.8rem;
}
.display-2 > .mbr-iconfont {
  font-size: 4.8rem;
}
.display-4 > .mbr-iconfont {
  font-size: 1.4rem;
}
.display-5 > .mbr-iconfont {
  font-size: 2.88rem;
}
.display-7 > .mbr-iconfont {
  font-size: 1.92rem;
}
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #e5524e;
  color: #ffffff;
}
.jq-selectbox .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:after,
.jq-number__spin.plus:after {
  transition: 0.4s;
  border-top-color: currentColor;
  border-bottom-color: currentColor;
}
.jq-selectbox:hover .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:hover:after,
.jq-number__spin.plus:hover:after {
  border-top-color: #e5524e;
  border-bottom-color: #e5524e;
}
.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: #e5524e !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: #f27d7a !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%;
}
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='%23e5524e' %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;
}
.cid-uhr5Oj4goi {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uhr5Oj4goi .mbr-iconfont {
  transition: all 0.3s;
  display: block;
}
@keyframes icons {
  from {
    transform: translateY(-100%);
  }
  to {
    transform: translateY(0px);
  }
}
.cid-uhr5Oj4goi .iconfont-wrapper {
  overflow: hidden;
  color: #000000 !important;
  font-size: 1.2rem;
  padding: 0;
  margin: 0 0.2rem;
  display: block;
  position: relative;
}
.cid-uhr5Oj4goi .iconfont-wrapper:hover .mbr-iconfont {
  animation: icons;
  animation-duration: 0.3s;
}
.cid-uhr5Oj4goi .iconfont-wrapper:hover:before {
  height: 100%;
}
.cid-uhr5Oj4goi .iconfont-wrapper:before {
  position: absolute;
  content: '';
  bottom: 0;
  left: 0;
  transition: all 0.3s;
  width: 100%;
  height: 0%;
  background: #e5524e;
  z-index: -1;
}
.cid-uhr5Oj4goi nav.navbar {
  position: fixed;
}
.cid-uhr5Oj4goi .navbar-caption-wrap {
  z-index: 10;
  transition: all 0.3s;
}
.cid-uhr5Oj4goi .nav-item {
  border-left: 1px solid #efefef;
  border-right: 1px solid #efefef;
  margin-right: -1px;
}
@media (max-width: 992px) {
  .cid-uhr5Oj4goi .nav-item {
    border: 0;
  }
}
.cid-uhr5Oj4goi .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media (max-width: 992px) {
  .cid-uhr5Oj4goi .icons-menu {
    margin-bottom: 1rem;
  }
}
.cid-uhr5Oj4goi .title-wrap {
  cursor: pointer;
  border: 2px solid currentColor;
  padding: 6px 12px 3px 12px;
  position: relative;
}
.cid-uhr5Oj4goi .title-wrap:before {
  position: absolute;
  content: '';
  bottom: 0;
  left: 0;
  transition: all 0.3s;
  width: 100%;
  height: 0%;
  background: currentColor;
  z-index: -1;
}
.cid-uhr5Oj4goi .title-wrap:hover span {
  color: white;
}
.cid-uhr5Oj4goi .title-wrap:hover:before {
  height: 100%;
}
.cid-uhr5Oj4goi .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-uhr5Oj4goi .dropdown-menu {
  padding: 0;
  border-top: 4px solid #e5524e;
}
.cid-uhr5Oj4goi .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uhr5Oj4goi .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uhr5Oj4goi .nav-dropdown .link {
  padding: 0 0.3rem !important;
  margin: 1.4rem 2rem !important;
}
@media (max-width: 992px) {
  .cid-uhr5Oj4goi .nav-dropdown .link {
    margin: 0.5rem 1rem !important;
  }
}
.cid-uhr5Oj4goi .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uhr5Oj4goi .nav-link {
  position: relative;
}
.cid-uhr5Oj4goi .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-uhr5Oj4goi .container {
    flex-wrap: nowrap;
  }
}
.cid-uhr5Oj4goi .dropdown-menu,
.cid-uhr5Oj4goi .navbar.opened {
  background: #ffffff !important;
}
.cid-uhr5Oj4goi .nav-item:focus,
.cid-uhr5Oj4goi .nav-link:focus {
  outline: none;
}
.cid-uhr5Oj4goi .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uhr5Oj4goi .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uhr5Oj4goi .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uhr5Oj4goi .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uhr5Oj4goi .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uhr5Oj4goi .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uhr5Oj4goi .navbar {
  min-height: 70px;
  transition: all 0.3s;
  background: #ffffff;
}
.cid-uhr5Oj4goi .navbar.opened {
  transition: all 0.3s;
}
.cid-uhr5Oj4goi .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uhr5Oj4goi .navbar .navbar-logo img {
  width: auto;
}
.cid-uhr5Oj4goi .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uhr5Oj4goi .navbar.collapsed {
  justify-content: center;
}
.cid-uhr5Oj4goi .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uhr5Oj4goi .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uhr5Oj4goi .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 6.2rem);
  }
}
.cid-uhr5Oj4goi .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uhr5Oj4goi .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uhr5Oj4goi .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-uhr5Oj4goi .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uhr5Oj4goi .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uhr5Oj4goi .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uhr5Oj4goi .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uhr5Oj4goi .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uhr5Oj4goi .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uhr5Oj4goi .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uhr5Oj4goi .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-uhr5Oj4goi .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uhr5Oj4goi .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uhr5Oj4goi .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uhr5Oj4goi .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uhr5Oj4goi .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uhr5Oj4goi .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uhr5Oj4goi .navbar.navbar-short {
  min-height: 60px;
}
.cid-uhr5Oj4goi .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uhr5Oj4goi .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uhr5Oj4goi .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uhr5Oj4goi .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uhr5Oj4goi .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uhr5Oj4goi .dropdown-item.active,
.cid-uhr5Oj4goi .dropdown-item:active {
  background-color: transparent;
}
.cid-uhr5Oj4goi .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uhr5Oj4goi .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uhr5Oj4goi .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uhr5Oj4goi .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-uhr5Oj4goi .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uhr5Oj4goi .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uhr5Oj4goi ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uhr5Oj4goi .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uhr5Oj4goi button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uhr5Oj4goi button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uhr5Oj4goi button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uhr5Oj4goi button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uhr5Oj4goi button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uhr5Oj4goi button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uhr5Oj4goi nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uhr5Oj4goi nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uhr5Oj4goi nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uhr5Oj4goi nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uhr5Oj4goi .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uhr5Oj4goi a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uhr5Oj4goi .navbar {
    height: 70px;
  }
  .cid-uhr5Oj4goi .navbar.opened {
    height: auto;
  }
  .cid-uhr5Oj4goi .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uhr5Oj4goi .navbar-caption-wrap,
.cid-uhr5Oj4goi .title-wrap {
  color: #272727;
}
.cid-uhr80rLMs4 {
  display: flex;
  padding-top: 15rem;
  padding-bottom: 9rem;
  background-image: url("../../../assets/images/1-1024x768.jpg");
}
.cid-uhr80rLMs4 .mbr-overlay {
  background-color: #000000;
  opacity: 0.7;
}
.cid-uhr80rLMs4 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uhr80rLMs4 .line {
  width: 100%;
  height: 1px;
  background: currentColor;
  margin-bottom: 2rem;
}
.cid-uhr80rLMs4 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uhr80rLMs4 p {
  max-width: 600px;
  margin-right: 0;
  margin-left: auto;
}
@media (min-width: 768px) {
  .cid-uhr80rLMs4 {
    align-items: center;
  }
  .cid-uhr80rLMs4 .row {
    justify-content: center;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-uhr80rLMs4 .content-wrap {
    min-width: 50%;
  }
}
@media (max-width: 767px) {
  .cid-uhr80rLMs4 {
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-uhr80rLMs4 .mbr-row {
    -webkit-justify-content: center;
    justify-content: center;
  }
  .cid-uhr80rLMs4 .content-wrap {
    width: 100%;
  }
}
.cid-uhr80rLMs4 .mbr-section-subtitle,
.cid-uhr80rLMs4 .line {
  color: #ffffff;
  text-align: center;
}
.cid-uhr80rLMs4 .mbr-text,
.cid-uhr80rLMs4 .mbr-section-btn {
  text-align: right;
}
.cid-uhr80rLMs4 .mbr-section-title {
  text-align: center;
}
.cid-uhr8EBrkjr {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #c1c1c1;
}
.cid-uhr8EBrkjr .mbr-fallback-image.disabled {
  display: none;
}
.cid-uhr8EBrkjr .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-uhr8EBrkjr .container {
    padding: 0 15px;
  }
}
.cid-uhr8EBrkjr .row {
  justify-content: center;
}
.cid-uhr8EBrkjr .title-wrapper .mbr-section-title {
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .cid-uhr8EBrkjr .title-wrapper .mbr-section-title {
    margin-bottom: 40px;
  }
}
.cid-uhr8EBrkjr .subtitle-wrapper {
  padding-right: 28px;
}
@media (max-width: 992px) {
  .cid-uhr8EBrkjr .subtitle-wrapper {
    padding: 0;
  }
}
.cid-uhr8EBrkjr .subtitle-wrapper .mbr-section-subtitle {
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-uhr8EBrkjr .subtitle-wrapper .mbr-section-subtitle {
    margin-bottom: 20px;
  }
}
.cid-uhr8EBrkjr .lists-wrapper .list {
  margin-bottom: 0;
  list-style-type: none;
  padding-left: 0;
  padding-left: 50px;
}
@media (max-width: 992px) {
  .cid-uhr8EBrkjr .lists-wrapper .list {
    padding-left: 36px;
  }
}
.cid-uhr8EBrkjr .lists-wrapper .list .item-wrap {
  margin-bottom: 20px;
  position: relative;
}
.cid-uhr8EBrkjr .lists-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-uhr8EBrkjr .lists-wrapper .list .item-wrap::before {
  content: '✓';
  position: absolute;
  top: 5px;
  margin-left: -50px;
  width: 22px;
  height: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: #34156b;
  color: #ffffff;
  font-size: 16px;
}
@media (max-width: 992px) {
  .cid-uhr8EBrkjr .lists-wrapper .list .item-wrap::before {
    margin-left: -36px;
  }
}
.cid-uhr8EBrkjr .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-uhr8EBrkjr .mbr-section-subtitle {
  color: #ffffff;
  text-align: center;
}
.cid-uhr8EBrkjr .list {
  color: #ffffff;
}
.cid-uhr8EBrkjr .list,
.cid-uhr8EBrkjr .item-wrap {
  color: #000000;
}
.cid-uhfIs8o0Zf {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-uhfIs8o0Zf .mbr-overlay {
  background: linear-gradient(90deg, #efefef, #1ec5bf);
}
.cid-uhfIs8o0Zf h4,
.cid-uhfIs8o0Zf h5 {
  text-align: center;
}
.cid-uhfIs8o0Zf p {
  text-align: center;
}
.cid-uhfIs8o0Zf .card-box {
  padding: 1.5rem;
  background-color: rgba(255, 255, 255, 0.2);
  text-align: center;
}
.cid-uhfIs8o0Zf .card-img {
  font-size: 3rem;
}
.cid-uhfIs8o0Zf .date span {
  display: inline-block;
  background-color: #f27d7a;
  padding: 0.5rem 1rem;
  white-space: nowrap;
  text-overflow: ellipsis;
  max-width: 90%;
  overflow: hidden;
}
.cid-uhfIs8o0Zf .mbr-fallback-image.disabled {
  display: none;
}
.cid-uhfIs8o0Zf .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uhfIs8o0Zf .mbr-text {
  color: #000000;
}
.cid-uhr9Nf2ZBN {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #c1c1c1;
}
.cid-uhra50AAlG {
  background-image: url("../../../assets/images/2-2000x1335.jpg");
}
.cid-uhra50AAlG .text-content {
  padding-top: 90px;
  padding-bottom: 90px;
}
.cid-uhra50AAlG .text-content .btn-bgr {
  z-index: 0;
}
.cid-uhra50AAlG .mbr-overlay {
  background: linear-gradient(90deg, #d6173f, #4284df);
}
.cid-uhra50AAlG h3 {
  color: #000000;
  font-weight: 300;
}
.cid-uhra50AAlG p {
  color: #464646;
}
.cid-uhra50AAlG h2 {
  color: #000000;
}
.cid-uhra50AAlG .media-container-row {
  padding-left: 3rem;
  padding-right: 3rem;
}
@media (max-width: 767px) {
  .cid-uhra50AAlG .media-container-row {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
}
.cid-uhra50AAlG .text-content {
  padding-left: 1rem;
  padding-right: 1rem;
  width: 50%;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-uhra50AAlG .text-content {
    width: 80%;
  }
}
@media (max-width: 599px) {
  .cid-uhra50AAlG .text-content {
    width: 100%;
  }
}
.cid-uhra50AAlG .media-content {
  padding-right: 1.5rem;
  padding-left: 0;
}
.cid-uhra50AAlG .mbr-section-btn {
  margin-left: -0.8rem;
}
@media (max-width: 767px) {
  .cid-uhra50AAlG .mbr-text {
    text-align: center;
  }
}
.cid-uhra50AAlG .mbr-fallback-image.disabled {
  display: none;
}
.cid-uhra50AAlG .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uhra50AAlG P {
  color: #000000;
}
.cid-uhmfni4ymc {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #c1c1c1;
}
.cid-uhmfni4ymc .mbr-fallback-image.disabled {
  display: none;
}
.cid-uhmfni4ymc .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uhmfni4ymc .container-fluid {
  padding: 0 50px;
}
@media (max-width: 992px) {
  .cid-uhmfni4ymc .container-fluid {
    padding: 0 30px;
  }
}
@media (max-width: 992px) {
  .cid-uhmfni4ymc .container {
    padding: 0 30px;
  }
}
.cid-uhmfni4ymc .title-wrapper .mbr-section-title {
  margin-bottom: 70px;
}
@media (max-width: 992px) {
  .cid-uhmfni4ymc .title-wrapper .mbr-section-title {
    margin-bottom: 30px;
  }
}
.cid-uhmfni4ymc .card-wrapper {
  display: flex;
  justify-content: space-between;
  padding: 70px 70px 70px 230px;
  background-color: #ffffff;
  border-radius: 16em 3em;
  padding: 70px 230px 70px 70px;
  border-radius: 3em 16em;
}
@media (max-width: 992px) {
  .cid-uhmfni4ymc .card-wrapper {
    border-radius: 0 3em 0 3em;
    padding: 30px 20px;
  }
}
@media (max-width: 992px) {
  .cid-uhmfni4ymc .card-wrapper {
    border-radius: 3em 0 3em 0;
    padding: 30px 20px;
    display: block;
  }
}
.cid-uhmfni4ymc .card-wrapper .mbr-number {
  margin: 0 0 0 50px;
  width: 100%;
  white-space: nowrap;
  margin: 0 50px 0 0;
}
@media (max-width: 992px) {
  .cid-uhmfni4ymc .card-wrapper .mbr-number {
    margin: 0 0 16px 0;
  }
}
@media (max-width: 992px) {
  .cid-uhmfni4ymc .card-wrapper .mbr-number {
    margin: 0 0 16px 0;
  }
}
.cid-uhmfni4ymc .card-wrapper .content-wrap .mbr-card-title {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uhmfni4ymc .card-wrapper .content-wrap .mbr-card-title {
    margin-bottom: 20px;
  }
}
.cid-uhmfni4ymc .card-wrapper .content-wrap .mbr-text {
  margin-bottom: 0;
}
.cid-uhmfni4ymc .mbr-section-title {
  color: #000000;
  text-align: center;
}
.cid-uhmfni4ymc .mbr-card-title {
  color: #2b2b2b;
  text-align: center;
}
.cid-uhmfni4ymc .mbr-text {
  color: #000000;
}
.cid-uhmfni4ymc .mbr-number {
  color: #FE5115;
}
.cid-uhfKDPqtco {
  padding-top: 80px;
  padding-bottom: 60px;
  background-color: #ffffff;
  background: linear-gradient(90deg, #ffffff, #ffffff);
}
.cid-uhfKDPqtco .media-content .btn-bgr {
  z-index: 0;
}
.cid-uhfKDPqtco .mbr-overlay {
  background: linear-gradient(90deg, #21b968, #1ec5bf);
}
.cid-uhfKDPqtco h3 {
  color: #000000;
  font-weight: 300;
}
.cid-uhfKDPqtco p {
  color: #464646;
}
.cid-uhfKDPqtco h2 {
  color: #000000;
}
.cid-uhfKDPqtco .media-content {
  padding-right: 1.5rem;
  padding-left: 0;
}
.cid-uhfKDPqtco .mbr-section-btn {
  margin-left: -0.8rem;
}
.cid-uhfKDPqtco .mbr-figure {
  padding-right: 1rem;
}
@media (min-width: 500px) {
  .cid-uhfKDPqtco .mbr-figure {
    padding-left: 2rem;
  }
}
@media (max-width: 499px) {
  .cid-uhfKDPqtco .mbr-figure {
    padding-top: 1rem;
    padding-left: 2rem;
    padding-right: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uhfKDPqtco .mbr-figure {
    padding-left: 0;
    padding-right: 0;
  }
}
@media (max-width: 767px) {
  .cid-uhfKDPqtco .mbr-text {
    text-align: center;
  }
}
.cid-uhfKDPqtco .mbr-fallback-image.disabled {
  display: none;
}
.cid-uhfKDPqtco .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uhfKDPqtco .mbr-section-title,
.cid-uhfKDPqtco .mbr-section-btn {
  color: #000000;
  text-align: center;
}
.cid-uhfKDPqtco .mbr-section-subtitle {
  color: #000000;
  text-align: center;
}
.cid-uhraRKNV4F {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #c1c1c1;
}
.cid-uhraRKNV4F h4 {
  font-weight: 600;
  color: #e2e2e2;
}
.cid-uhraRKNV4F .mbr-section-subtitle {
  color: #767676;
}
.cid-uhraRKNV4F .article {
  padding-right: 2rem;
  padding-left: 2rem;
}
.cid-uhmcYT1ojd {
  background-color: #ffffff;
}
.cid-uhmcYT1ojd .media-content .btn-bgr {
  z-index: 0;
}
.cid-uhmcYT1ojd .mbr-section-text {
  word-break: break-word;
}
.cid-uhmcYT1ojd .mbr-overlay {
  background: linear-gradient(90deg, #21b968, #1ec5bf);
}
@media (min-width: 992px) {
  .cid-uhmcYT1ojd .mbr-figure {
    padding-left: 4rem;
    padding-right: 4rem;
    padding-left: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uhmcYT1ojd .mbr-figure {
    padding-top: 3rem;
  }
}
@media (max-width: 767px) {
  .cid-uhmcYT1ojd .mbr-text {
    text-align: center;
  }
}
.cid-uhmcYT1ojd .media-container-row {
  -webkit-flex-direction: row-reverse;
  -ms-flex-direction: row-reverse;
}
.cid-uhmcYT1ojd .mbr-fallback-image.disabled {
  display: none;
}
.cid-uhmcYT1ojd .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uhmcYT1ojd H1 {
  text-align: center;
  color: #000000;
}
.cid-uhmdKrCdDa {
  display: flex;
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #c1c1c1;
}
@media (min-width: 768px) {
  .cid-uhmdKrCdDa {
    align-items: center;
  }
  .cid-uhmdKrCdDa .row {
    justify-content: center;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-uhmdKrCdDa .content-wrap {
    min-width: 50%;
  }
}
@media (max-width: 767px) {
  .cid-uhmdKrCdDa {
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-uhmdKrCdDa .mbr-row {
    -webkit-justify-content: center;
    justify-content: center;
  }
  .cid-uhmdKrCdDa .content-wrap {
    width: 100%;
  }
}
.cid-uhmdKrCdDa .mbr-section-title {
  text-align: center;
  color: #000000;
}
.cid-uhmdKrCdDa .mbr-text,
.cid-uhmdKrCdDa .mbr-section-btn {
  text-align: center;
  color: #000000;
}
.cid-uhlphkPAFX {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uhlphkPAFX .mbr-fallback-image.disabled {
  display: none;
}
.cid-uhlphkPAFX .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uhlphkPAFX .container-fluid {
  padding: 0 56px;
}
@media (max-width: 992px) {
  .cid-uhlphkPAFX .container-fluid {
    padding: 0 22px;
  }
}
@media (max-width: 992px) {
  .cid-uhlphkPAFX .container {
    padding: 0 22px;
  }
}
.cid-uhlphkPAFX .row {
  justify-content: space-between;
}
@media (max-width: 992px) {
  .cid-uhlphkPAFX .image-wrapper {
    margin-bottom: 32px;
  }
}
.cid-uhlphkPAFX .image-wrapper img {
  height: 415px;
  border-radius: 0 6rem 0 0 !important;
}
@media (max-width: 992px) {
  .cid-uhlphkPAFX .image-wrapper img {
    height: 350px;
  }
}
.cid-uhlphkPAFX .mbr-section-title {
  margin-bottom: 16px;
  color: #000000;
  text-align: center;
}
.cid-uhlphkPAFX .panel-group {
  border-bottom: 1px solid #f29c9a;
}
.cid-uhlphkPAFX .panel-group .card {
  border-top: 1px solid #f29c9a;
  border-radius: 0 !important;
  transition: all 0.3s ease-in-out;
}
.cid-uhlphkPAFX .panel-group .card:hover,
.cid-uhlphkPAFX .panel-group .card:focus {
  border-top: 1px solid #000000;
}
.cid-uhlphkPAFX .panel-group .card .card-header {
  background-color: transparent;
  border: none;
  border-radius: 0;
  padding: 0;
}
.cid-uhlphkPAFX .panel-group .card .card-header .panel-title {
  display: inline-flex;
  padding: 40px 0;
  justify-content: space-between;
  width: 100%;
}
.cid-uhlphkPAFX .panel-group .card .card-header .panel-title .panel-title-edit {
  margin-bottom: 0;
}
.cid-uhlphkPAFX .panel-group .card .card-header .panel-title .mbr-iconfont {
  font-size: 25px;
  width: 25px;
  height: 25px;
  margin-bottom: 0;
  transition: all 0.3s ease-in-out;
  color: #000000;
  margin-left: 16px;
}
.cid-uhlphkPAFX .panel-group .card .card-header .panel-title:not(.collapsed) .mbr-iconfont {
  transform: rotate(45deg);
  color: #ff5753;
}
.cid-uhlphkPAFX .panel-group .card .panel-collapse .panel-body {
  padding: 16px 0 80px;
}
@media (max-width: 992px) {
  .cid-uhlphkPAFX .panel-group .card .panel-collapse .panel-body {
    padding: 16px 0 55px;
  }
}
.cid-uhlphkPAFX .panel-group .card .panel-collapse .panel-body .panel-text {
  margin-bottom: 0;
}
.cid-uhlphkPAFX .panel-title-edit {
  color: #000000;
}
.cid-uhlphkPAFX .panel-text {
  color: #8a8588;
}
.cid-uhrdGxHBJG {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #c1c1c1;
}
.cid-uhrdGxHBJG .mbr-fallback-image.disabled {
  display: none;
}
.cid-uhrdGxHBJG .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-uhrdGxHBJG .container {
    padding: 0 16px;
  }
}
.cid-uhrdGxHBJG .row {
  position: relative;
  z-index: 1;
}
.cid-uhrdGxHBJG .title-wrapper .mbr-section-title {
  margin-bottom: 56px;
}
@media (max-width: 992px) {
  .cid-uhrdGxHBJG .title-wrapper .mbr-section-title {
    margin-bottom: 32px;
  }
}
.cid-uhrdGxHBJG .title-wrapper .subtitle-wrapper .mbr-section-subtitle {
  display: inline-flex;
  margin-bottom: 56px;
  padding: 18px 24px;
  border-radius: 16px !important;
  box-shadow: 6px 8px 0 0 #000000;
  background-color: #c6f15c;
  transform: rotate(-4deg);
}
@media (max-width: 992px) {
  .cid-uhrdGxHBJG .title-wrapper .subtitle-wrapper .mbr-section-subtitle {
    margin-bottom: 32px;
  }
}
.cid-uhrdGxHBJG .title-wrapper .buttons-wrap {
  text-align: right;
}
@media (max-width: 992px) {
  .cid-uhrdGxHBJG .title-wrapper .buttons-wrap {
    text-align: left;
  }
}
.cid-uhrdGxHBJG .title-wrapper .buttons-wrap .mbr-section-btn {
  display: inline-flex;
  width: 40%;
  margin-bottom: 24px;
  justify-content: flex-end;
}
@media (max-width: 992px) {
  .cid-uhrdGxHBJG .title-wrapper .buttons-wrap .mbr-section-btn {
    justify-content: flex-start;
  }
}
@media (max-width: 992px) {
  .cid-uhrdGxHBJG .title-wrapper .buttons-wrap .mbr-section-btn {
    display: block;
    width: 100%;
  }
}
.cid-uhrdGxHBJG .items-wrapper .item {
  margin-top: 64px;
  padding-top: 104px;
  position: relative;
}
.cid-uhrdGxHBJG .items-wrapper .item:nth-child(2n)::before {
  background-color: #f0a2fd;
}
.cid-uhrdGxHBJG .items-wrapper .item:nth-child(2n)::after {
  background-color: #f0a2fd;
}
.cid-uhrdGxHBJG .items-wrapper .item:nth-child(2n) .item-wrapper {
  background-color: #f0a2fd;
}
.cid-uhrdGxHBJG .items-wrapper .item:nth-child(3n)::before {
  background-color: #feb591;
}
.cid-uhrdGxHBJG .items-wrapper .item:nth-child(3n)::after {
  background-color: #feb591;
}
.cid-uhrdGxHBJG .items-wrapper .item:nth-child(3n) .item-wrapper {
  background-color: #feb591;
}
.cid-uhrdGxHBJG .items-wrapper .item:nth-child(4n)::before {
  background-color: #c6f15c;
}
.cid-uhrdGxHBJG .items-wrapper .item:nth-child(4n)::after {
  background-color: #c6f15c;
}
.cid-uhrdGxHBJG .items-wrapper .item:nth-child(4n) .item-wrapper {
  background-color: #c6f15c;
}
@media (max-width: 992px) {
  .cid-uhrdGxHBJG .items-wrapper .item {
    margin-top: 32px;
    padding-top: 0;
  }
}
.cid-uhrdGxHBJG .items-wrapper .item:first-child {
  margin-top: -96px;
  margin-top: 0;
}
@media (max-width: 992px) {
  .cid-uhrdGxHBJG .items-wrapper .item:first-child {
    margin-top: 0;
  }
}
.cid-uhrdGxHBJG .items-wrapper .item::before {
  content: '';
  position: absolute;
  width: 50%;
  height: 140px;
  top: 0;
  right: 0;
  border-top-right-radius: 24px;
  background-color: #feffe3;
  right: auto;
  left: 0;
  border-top-right-radius: 0;
  border-top-left-radius: 24px;
}
@media (max-width: 992px) {
  .cid-uhrdGxHBJG .items-wrapper .item::before {
    display: none;
  }
}
.cid-uhrdGxHBJG .items-wrapper .item::after {
  content: '';
  position: absolute;
  top: 0;
  right: 15%;
  width: 43%;
  height: 110px;
  transform: skew(-45deg);
  background-color: #feffe3;
  right: auto;
  left: 15%;
  transform: skew(45deg);
}
@media (max-width: 992px) {
  .cid-uhrdGxHBJG .items-wrapper .item::after {
    display: none;
  }
}
.cid-uhrdGxHBJG .items-wrapper .item .item-wrapper {
  display: flex;
  position: relative;
  border-radius: 24px !important;
  background-color: #feffe3;
  z-index: 1;
}
@media (max-width: 992px) {
  .cid-uhrdGxHBJG .items-wrapper .item .item-wrapper {
    display: block;
  }
}
.cid-uhrdGxHBJG .items-wrapper .item .item-wrapper .item-img {
  width: 50%;
  padding: 96px;
}
@media (max-width: 992px) {
  .cid-uhrdGxHBJG .items-wrapper .item .item-wrapper .item-img {
    width: 100%;
    padding: 24px;
  }
}
.cid-uhrdGxHBJG .items-wrapper .item .item-wrapper .item-img img {
  height: 300px;
  box-shadow: 6px 8px 0 0 #000000;
  object-fit: cover;
}
.cid-uhrdGxHBJG .items-wrapper .item .item-wrapper .item-content {
  width: 50%;
  padding-right: 96px;
  padding-bottom: 96px;
  padding-right: 0;
  padding-left: 96px;
}
@media (max-width: 992px) {
  .cid-uhrdGxHBJG .items-wrapper .item .item-wrapper .item-content {
    padding-left: 0;
  }
}
@media (max-width: 992px) {
  .cid-uhrdGxHBJG .items-wrapper .item .item-wrapper .item-content {
    width: 100%;
    padding: 24px;
  }
}
.cid-uhrdGxHBJG .items-wrapper .item .item-wrapper .item-content .item-title {
  margin-bottom: 36px;
}
@media (max-width: 992px) {
  .cid-uhrdGxHBJG .items-wrapper .item .item-wrapper .item-content .item-title {
    text-align: left;
    margin-bottom: 24px;
  }
}
.cid-uhrdGxHBJG .items-wrapper .item .item-wrapper .item-content .item-number {
  margin-bottom: 36px;
}
@media (max-width: 992px) {
  .cid-uhrdGxHBJG .items-wrapper .item .item-wrapper .item-content .item-number {
    margin-bottom: 24px;
  }
}
.cid-uhrdGxHBJG .items-wrapper .item .item-wrapper .item-content .item-text {
  margin-bottom: 0;
}
.cid-uhrdGxHBJG .mbr-section-title {
  color: #000000;
}
.cid-uhrdGxHBJG .mbr-section-subtitle {
  color: #000000;
}
.cid-uhrdGxHBJG .item-title {
  color: #000000;
  text-align: left;
}
.cid-uhrdGxHBJG .item-number {
  color: #000000;
}
.cid-uhrdGxHBJG .item-text {
  color: #000000;
}
.cid-uhmeHXR4MD {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uhmeHXR4MD .mbr-fallback-image.disabled {
  display: none;
}
.cid-uhmeHXR4MD .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uhmeHXR4MD .container-fluid {
  padding: 0 50px;
}
@media (max-width: 992px) {
  .cid-uhmeHXR4MD .container-fluid {
    padding: 0 30px;
  }
}
@media (max-width: 992px) {
  .cid-uhmeHXR4MD .container {
    padding: 0 30px;
  }
}
.cid-uhmeHXR4MD .title-wrapper .mbr-section-title {
  margin-bottom: 70px;
}
@media (max-width: 992px) {
  .cid-uhmeHXR4MD .title-wrapper .mbr-section-title {
    margin-bottom: 30px;
  }
}
.cid-uhmeHXR4MD .card-wrapper {
  display: flex;
  justify-content: space-between;
  padding: 70px 70px 70px 230px;
  background-color: #c1c1c1;
  border-radius: 16em 3em;
  padding: 70px 230px 70px 70px;
  border-radius: 3em 16em;
}
@media (max-width: 992px) {
  .cid-uhmeHXR4MD .card-wrapper {
    border-radius: 0 3em 0 3em;
    padding: 30px 20px;
  }
}
@media (max-width: 992px) {
  .cid-uhmeHXR4MD .card-wrapper {
    border-radius: 3em 0 3em 0;
    padding: 30px 20px;
    display: block;
  }
}
.cid-uhmeHXR4MD .card-wrapper .mbr-number {
  margin: 0 0 0 50px;
  width: 100%;
  white-space: nowrap;
  margin: 0 50px 0 0;
}
@media (max-width: 992px) {
  .cid-uhmeHXR4MD .card-wrapper .mbr-number {
    margin: 0 0 16px 0;
  }
}
@media (max-width: 992px) {
  .cid-uhmeHXR4MD .card-wrapper .mbr-number {
    margin: 0 0 16px 0;
  }
}
.cid-uhmeHXR4MD .card-wrapper .content-wrap .mbr-card-title {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uhmeHXR4MD .card-wrapper .content-wrap .mbr-card-title {
    margin-bottom: 20px;
  }
}
.cid-uhmeHXR4MD .card-wrapper .content-wrap .mbr-text {
  margin-bottom: 0;
}
.cid-uhmeHXR4MD .mbr-section-title {
  color: #000000;
  text-align: center;
}
.cid-uhmeHXR4MD .mbr-card-title {
  color: #2b2b2b;
  text-align: center;
}
.cid-uhmeHXR4MD .mbr-text {
  color: #000000;
}
.cid-uhmeHXR4MD .mbr-number {
  color: #FE5115;
}
.cid-uhli6AZycC {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background: #000000;
}
.cid-uhli6AZycC .mbr-fallback-image.disabled {
  display: none;
}
.cid-uhli6AZycC .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uhli6AZycC .google-map {
  height: 35rem;
  position: relative;
  border-radius: 2rem;
}
.cid-uhli6AZycC .google-map iframe {
  height: 100%;
  width: 100%;
  border-radius: 2rem;
}
.cid-uhli6AZycC .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-uhli6AZycC .google-map[data-state] {
  background: #e9e5dc;
}
.cid-uhli6AZycC .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-uhli6AZycC .mbr-section-title {
  color: #2c1616;
  text-align: center;
}
.cid-uhli6AZycC .mbr-section-subtitle {
  color: #ffffff;
  text-align: left;
}
.cid-uhreQVICHG {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #c1c1c1;
  overflow: hidden;
}
.cid-uhreQVICHG::before {
  content: '';
  position: absolute;
  bottom: 0;
  width: 200vh;
  height: 85%;
  background-image: linear-gradient(transparent, #000000 50%);
  z-index: 1;
}
.cid-uhreQVICHG .mbr-fallback-image.disabled {
  display: none;
}
.cid-uhreQVICHG .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uhreQVICHG .container-fluid {
  padding: 0 80px;
}
@media (max-width: 1200px) {
  .cid-uhreQVICHG .container-fluid {
    padding: 0 40px;
  }
}
@media (max-width: 992px) {
  .cid-uhreQVICHG .container-fluid {
    padding: 0 22px;
  }
}
@media (max-width: 992px) {
  .cid-uhreQVICHG .container {
    padding: 0 22px;
  }
}
.cid-uhreQVICHG .row {
  position: relative;
  z-index: 1;
}
.cid-uhreQVICHG .row-main {
  position: relative;
  justify-content: center;
  padding: 40px 0;
}
.cid-uhreQVICHG .row-main::before {
  content: '';
  position: absolute;
  top: 0;
  width: 200vh;
  height: 1px;
  background-color: #b0b0b0;
}
.cid-uhreQVICHG .row-main::after {
  content: '';
  position: absolute;
  bottom: 0;
  width: 200vh;
  height: 1px;
  background-color: #b0b0b0;
}
.cid-uhreQVICHG .row-main .card {
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-uhreQVICHG .title-wrapper {
    margin-bottom: 20px;
  }
}
.cid-uhreQVICHG .title-wrapper .mbr-section-title {
  margin-bottom: 10px;
}
.cid-uhreQVICHG .title-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-uhreQVICHG .nav-wrapper {
  text-align: center;
}
@media (max-width: 992px) {
  .cid-uhreQVICHG .nav-wrapper {
    margin-bottom: 20px;
    text-align: left;
  }
}
.cid-uhreQVICHG .nav-wrapper .mbr-section-subtitle {
  margin-bottom: 10px;
  text-align: center;
}
@media (max-width: 992px) {
  .cid-uhreQVICHG .nav-wrapper .mbr-section-subtitle {
    text-align: left;
  }
}
.cid-uhreQVICHG .nav-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
  display: inline-block;
  text-align: left;
}
.cid-uhreQVICHG .nav-wrapper .list .item-wrap {
  margin-bottom: 5px;
  cursor: pointer;
  position: relative;
  transition: all 0.3s ease-in-out;
}
.cid-uhreQVICHG .nav-wrapper .list .item-wrap:hover,
.cid-uhreQVICHG .nav-wrapper .list .item-wrap:hover {
  color: #00d0f3;
}
.cid-uhreQVICHG .nav-wrapper .list .item-wrap:hover::before,
.cid-uhreQVICHG .nav-wrapper .list .item-wrap:hover::before {
  width: 100%;
}
.cid-uhreQVICHG .nav-wrapper .list .item-wrap::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  height: 1px;
  width: 0;
  background-color: #00d0f3;
  transition: all 0.3s ease-in-out;
}
@media (max-width: 992px) {
  .cid-uhreQVICHG .contacts-wrapper {
    margin-bottom: 20px;
  }
}
.cid-uhreQVICHG .contacts-wrapper .mbr-section-subtitle {
  margin-bottom: 10px;
}
.cid-uhreQVICHG .contacts-wrapper .contacts-wrap .item-contact {
  margin-bottom: 15px;
}
.cid-uhreQVICHG .contacts-wrapper .contacts-wrap .item-contact .item-wrap {
  display: inline-flex;
  align-items: center;
}
.cid-uhreQVICHG .contacts-wrapper .contacts-wrap .item-contact .item-wrap .mbr-iconfont {
  font-size: 30px;
  color: #ffffff;
  display: inline-flex;
  margin-right: 20px;
}
.cid-uhreQVICHG .contacts-wrapper .contacts-wrap .item-contact .item-wrap a {
  display: block;
}
.cid-uhreQVICHG .contacts-wrapper .contacts-wrap .item-contact .item-wrap a:hover .mbr-contact,
.cid-uhreQVICHG .contacts-wrapper .contacts-wrap .item-contact .item-wrap a:hover .mbr-contact {
  color: #00d0f3;
}
.cid-uhreQVICHG .contacts-wrapper .contacts-wrap .item-contact .item-wrap a:hover .mbr-contact::before,
.cid-uhreQVICHG .contacts-wrapper .contacts-wrap .item-contact .item-wrap a:hover .mbr-contact::before {
  width: 100%;
}
.cid-uhreQVICHG .contacts-wrapper .contacts-wrap .item-contact .item-wrap a .mbr-contact {
  margin-bottom: 0;
  position: relative;
  transition: all 0.3s ease-in-out;
}
.cid-uhreQVICHG .contacts-wrapper .contacts-wrap .item-contact .item-wrap a .mbr-contact::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  height: 1px;
  width: 0;
  background-color: #00d0f3;
  transition: all 0.3s ease-in-out;
}
@media (max-width: 992px) {
  .cid-uhreQVICHG .desc-wrapper {
    margin-bottom: 20px;
  }
}
.cid-uhreQVICHG .desc-wrapper .mbr-section-subtitle {
  margin-bottom: 10px;
}
.cid-uhreQVICHG .desc-wrapper .mbr-desc {
  margin-bottom: 5px;
}
.cid-uhreQVICHG .desc-wrapper .social-wrapper {
  margin-top: 10px;
}
.cid-uhreQVICHG .desc-wrapper .social-wrapper .social-wrap {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
}
.cid-uhreQVICHG .desc-wrapper .social-wrapper .social-wrap .soc-item {
  margin-left: 32px;
}
@media (max-width: 992px) {
  .cid-uhreQVICHG .desc-wrapper .social-wrapper .social-wrap .soc-item {
    margin-left: 16px;
  }
  .cid-uhreQVICHG .desc-wrapper .social-wrapper .social-wrap .soc-item:first-child {
    margin-left: 0;
  }
}
.cid-uhreQVICHG .desc-wrapper .social-wrapper .social-wrap .soc-item:first-child {
  margin-left: 0;
}
.cid-uhreQVICHG .desc-wrapper .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-uhreQVICHG .desc-wrapper .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-uhreQVICHG .desc-wrapper .social-wrapper .social-wrap .soc-item a:focus .mbr-iconfont {
  color: #00d0f3;
}
.cid-uhreQVICHG .desc-wrapper .social-wrapper .social-wrap .soc-item a .mbr-iconfont {
  font-size: 36px;
  color: #ffffff;
  transition: all 0.3s ease-in-out;
}
.cid-uhreQVICHG .mbr-copy {
  margin-bottom: 0;
  padding: 25px 0;
  color: #ffffff;
  text-align: center;
}
.cid-uhreQVICHG .mbr-section-title {
  color: #00d0f3;
}
.cid-uhreQVICHG .mbr-text {
  color: #ffffff;
}
.cid-uhreQVICHG .mbr-section-subtitle {
  color: #ffffff;
  text-align: center;
}
.cid-uhreQVICHG .list {
  color: #ffffff;
}
.cid-uhreQVICHG .mbr-contact {
  color: #ffffff;
}
.cid-uhreQVICHG .mbr-desc {
  color: #ffffff;
}
.cid-uhm8XoCH0p {
  padding-top: 180px;
  padding-bottom: 135px;
  background-image: url("../../../assets/images/5-1440x1080.jpg");
}
.cid-uhm8XoCH0p .media-container-column .btn-bgr {
  z-index: 0;
}
.cid-uhm8XoCH0p .mbr-overlay {
  background: linear-gradient(#2c1616 -10%, #000000 75%);
}
.cid-uhm8XoCH0p .mbr-fallback-image.disabled {
  display: none;
}
.cid-uhm8XoCH0p .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uhlBAnlHll {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #c1c1c1;
}
.cid-uhlBAnlHll .block-text {
  color: #2c1616;
}
.cid-uhlBAyAJxU {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background: #2c1616;
}
.cid-uhlBAyAJxU .mbr-fallback-image.disabled {
  display: none;
}
.cid-uhlBAyAJxU .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uhlBAyAJxU .google-map {
  height: 35rem;
  position: relative;
  border-radius: 2rem;
}
.cid-uhlBAyAJxU .google-map iframe {
  height: 100%;
  width: 100%;
  border-radius: 2rem;
}
.cid-uhlBAyAJxU .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-uhlBAyAJxU .google-map[data-state] {
  background: #e9e5dc;
}
.cid-uhlBAyAJxU .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-uhlBAyAJxU .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-uhlBAyAJxU .mbr-section-subtitle {
  color: #ffffff;
  text-align: left;
}
.cid-uhr5Oj4goi {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uhr5Oj4goi .mbr-iconfont {
  transition: all 0.3s;
  display: block;
}
@keyframes icons {
  from {
    transform: translateY(-100%);
  }
  to {
    transform: translateY(0px);
  }
}
.cid-uhr5Oj4goi .iconfont-wrapper {
  overflow: hidden;
  color: #000000 !important;
  font-size: 1.2rem;
  padding: 0;
  margin: 0 0.2rem;
  display: block;
  position: relative;
}
.cid-uhr5Oj4goi .iconfont-wrapper:hover .mbr-iconfont {
  animation: icons;
  animation-duration: 0.3s;
}
.cid-uhr5Oj4goi .iconfont-wrapper:hover:before {
  height: 100%;
}
.cid-uhr5Oj4goi .iconfont-wrapper:before {
  position: absolute;
  content: '';
  bottom: 0;
  left: 0;
  transition: all 0.3s;
  width: 100%;
  height: 0%;
  background: #e5524e;
  z-index: -1;
}
.cid-uhr5Oj4goi nav.navbar {
  position: fixed;
}
.cid-uhr5Oj4goi .navbar-caption-wrap {
  z-index: 10;
  transition: all 0.3s;
}
.cid-uhr5Oj4goi .nav-item {
  border-left: 1px solid #efefef;
  border-right: 1px solid #efefef;
  margin-right: -1px;
}
@media (max-width: 992px) {
  .cid-uhr5Oj4goi .nav-item {
    border: 0;
  }
}
.cid-uhr5Oj4goi .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media (max-width: 992px) {
  .cid-uhr5Oj4goi .icons-menu {
    margin-bottom: 1rem;
  }
}
.cid-uhr5Oj4goi .title-wrap {
  cursor: pointer;
  border: 2px solid currentColor;
  padding: 6px 12px 3px 12px;
  position: relative;
}
.cid-uhr5Oj4goi .title-wrap:before {
  position: absolute;
  content: '';
  bottom: 0;
  left: 0;
  transition: all 0.3s;
  width: 100%;
  height: 0%;
  background: currentColor;
  z-index: -1;
}
.cid-uhr5Oj4goi .title-wrap:hover span {
  color: white;
}
.cid-uhr5Oj4goi .title-wrap:hover:before {
  height: 100%;
}
.cid-uhr5Oj4goi .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-uhr5Oj4goi .dropdown-menu {
  padding: 0;
  border-top: 4px solid #e5524e;
}
.cid-uhr5Oj4goi .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uhr5Oj4goi .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uhr5Oj4goi .nav-dropdown .link {
  padding: 0 0.3rem !important;
  margin: 1.4rem 2rem !important;
}
@media (max-width: 992px) {
  .cid-uhr5Oj4goi .nav-dropdown .link {
    margin: 0.5rem 1rem !important;
  }
}
.cid-uhr5Oj4goi .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uhr5Oj4goi .nav-link {
  position: relative;
}
.cid-uhr5Oj4goi .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-uhr5Oj4goi .container {
    flex-wrap: nowrap;
  }
}
.cid-uhr5Oj4goi .dropdown-menu,
.cid-uhr5Oj4goi .navbar.opened {
  background: #ffffff !important;
}
.cid-uhr5Oj4goi .nav-item:focus,
.cid-uhr5Oj4goi .nav-link:focus {
  outline: none;
}
.cid-uhr5Oj4goi .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uhr5Oj4goi .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uhr5Oj4goi .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uhr5Oj4goi .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uhr5Oj4goi .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uhr5Oj4goi .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uhr5Oj4goi .navbar {
  min-height: 70px;
  transition: all 0.3s;
  background: #ffffff;
}
.cid-uhr5Oj4goi .navbar.opened {
  transition: all 0.3s;
}
.cid-uhr5Oj4goi .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uhr5Oj4goi .navbar .navbar-logo img {
  width: auto;
}
.cid-uhr5Oj4goi .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uhr5Oj4goi .navbar.collapsed {
  justify-content: center;
}
.cid-uhr5Oj4goi .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uhr5Oj4goi .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uhr5Oj4goi .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 6.2rem);
  }
}
.cid-uhr5Oj4goi .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uhr5Oj4goi .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uhr5Oj4goi .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-uhr5Oj4goi .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uhr5Oj4goi .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uhr5Oj4goi .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uhr5Oj4goi .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uhr5Oj4goi .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uhr5Oj4goi .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uhr5Oj4goi .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uhr5Oj4goi .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-uhr5Oj4goi .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uhr5Oj4goi .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uhr5Oj4goi .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uhr5Oj4goi .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uhr5Oj4goi .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uhr5Oj4goi .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uhr5Oj4goi .navbar.navbar-short {
  min-height: 60px;
}
.cid-uhr5Oj4goi .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uhr5Oj4goi .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uhr5Oj4goi .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uhr5Oj4goi .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uhr5Oj4goi .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uhr5Oj4goi .dropdown-item.active,
.cid-uhr5Oj4goi .dropdown-item:active {
  background-color: transparent;
}
.cid-uhr5Oj4goi .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uhr5Oj4goi .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uhr5Oj4goi .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uhr5Oj4goi .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-uhr5Oj4goi .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uhr5Oj4goi .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uhr5Oj4goi ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uhr5Oj4goi .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uhr5Oj4goi button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uhr5Oj4goi button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uhr5Oj4goi button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uhr5Oj4goi button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uhr5Oj4goi button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uhr5Oj4goi button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uhr5Oj4goi nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uhr5Oj4goi nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uhr5Oj4goi nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uhr5Oj4goi nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uhr5Oj4goi .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uhr5Oj4goi a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uhr5Oj4goi .navbar {
    height: 70px;
  }
  .cid-uhr5Oj4goi .navbar.opened {
    height: auto;
  }
  .cid-uhr5Oj4goi .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uhr5Oj4goi .navbar-caption-wrap,
.cid-uhr5Oj4goi .title-wrap {
  color: #272727;
}
.cid-uhreQVICHG {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #c1c1c1;
  overflow: hidden;
}
.cid-uhreQVICHG::before {
  content: '';
  position: absolute;
  bottom: 0;
  width: 200vh;
  height: 85%;
  background-image: linear-gradient(transparent, #000000 50%);
  z-index: 1;
}
.cid-uhreQVICHG .mbr-fallback-image.disabled {
  display: none;
}
.cid-uhreQVICHG .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uhreQVICHG .container-fluid {
  padding: 0 80px;
}
@media (max-width: 1200px) {
  .cid-uhreQVICHG .container-fluid {
    padding: 0 40px;
  }
}
@media (max-width: 992px) {
  .cid-uhreQVICHG .container-fluid {
    padding: 0 22px;
  }
}
@media (max-width: 992px) {
  .cid-uhreQVICHG .container {
    padding: 0 22px;
  }
}
.cid-uhreQVICHG .row {
  position: relative;
  z-index: 1;
}
.cid-uhreQVICHG .row-main {
  position: relative;
  justify-content: center;
  padding: 40px 0;
}
.cid-uhreQVICHG .row-main::before {
  content: '';
  position: absolute;
  top: 0;
  width: 200vh;
  height: 1px;
  background-color: #b0b0b0;
}
.cid-uhreQVICHG .row-main::after {
  content: '';
  position: absolute;
  bottom: 0;
  width: 200vh;
  height: 1px;
  background-color: #b0b0b0;
}
.cid-uhreQVICHG .row-main .card {
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-uhreQVICHG .title-wrapper {
    margin-bottom: 20px;
  }
}
.cid-uhreQVICHG .title-wrapper .mbr-section-title {
  margin-bottom: 10px;
}
.cid-uhreQVICHG .title-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-uhreQVICHG .nav-wrapper {
  text-align: center;
}
@media (max-width: 992px) {
  .cid-uhreQVICHG .nav-wrapper {
    margin-bottom: 20px;
    text-align: left;
  }
}
.cid-uhreQVICHG .nav-wrapper .mbr-section-subtitle {
  margin-bottom: 10px;
  text-align: center;
}
@media (max-width: 992px) {
  .cid-uhreQVICHG .nav-wrapper .mbr-section-subtitle {
    text-align: left;
  }
}
.cid-uhreQVICHG .nav-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
  display: inline-block;
  text-align: left;
}
.cid-uhreQVICHG .nav-wrapper .list .item-wrap {
  margin-bottom: 5px;
  cursor: pointer;
  position: relative;
  transition: all 0.3s ease-in-out;
}
.cid-uhreQVICHG .nav-wrapper .list .item-wrap:hover,
.cid-uhreQVICHG .nav-wrapper .list .item-wrap:hover {
  color: #00d0f3;
}
.cid-uhreQVICHG .nav-wrapper .list .item-wrap:hover::before,
.cid-uhreQVICHG .nav-wrapper .list .item-wrap:hover::before {
  width: 100%;
}
.cid-uhreQVICHG .nav-wrapper .list .item-wrap::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  height: 1px;
  width: 0;
  background-color: #00d0f3;
  transition: all 0.3s ease-in-out;
}
@media (max-width: 992px) {
  .cid-uhreQVICHG .contacts-wrapper {
    margin-bottom: 20px;
  }
}
.cid-uhreQVICHG .contacts-wrapper .mbr-section-subtitle {
  margin-bottom: 10px;
}
.cid-uhreQVICHG .contacts-wrapper .contacts-wrap .item-contact {
  margin-bottom: 15px;
}
.cid-uhreQVICHG .contacts-wrapper .contacts-wrap .item-contact .item-wrap {
  display: inline-flex;
  align-items: center;
}
.cid-uhreQVICHG .contacts-wrapper .contacts-wrap .item-contact .item-wrap .mbr-iconfont {
  font-size: 30px;
  color: #ffffff;
  display: inline-flex;
  margin-right: 20px;
}
.cid-uhreQVICHG .contacts-wrapper .contacts-wrap .item-contact .item-wrap a {
  display: block;
}
.cid-uhreQVICHG .contacts-wrapper .contacts-wrap .item-contact .item-wrap a:hover .mbr-contact,
.cid-uhreQVICHG .contacts-wrapper .contacts-wrap .item-contact .item-wrap a:hover .mbr-contact {
  color: #00d0f3;
}
.cid-uhreQVICHG .contacts-wrapper .contacts-wrap .item-contact .item-wrap a:hover .mbr-contact::before,
.cid-uhreQVICHG .contacts-wrapper .contacts-wrap .item-contact .item-wrap a:hover .mbr-contact::before {
  width: 100%;
}
.cid-uhreQVICHG .contacts-wrapper .contacts-wrap .item-contact .item-wrap a .mbr-contact {
  margin-bottom: 0;
  position: relative;
  transition: all 0.3s ease-in-out;
}
.cid-uhreQVICHG .contacts-wrapper .contacts-wrap .item-contact .item-wrap a .mbr-contact::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  height: 1px;
  width: 0;
  background-color: #00d0f3;
  transition: all 0.3s ease-in-out;
}
@media (max-width: 992px) {
  .cid-uhreQVICHG .desc-wrapper {
    margin-bottom: 20px;
  }
}
.cid-uhreQVICHG .desc-wrapper .mbr-section-subtitle {
  margin-bottom: 10px;
}
.cid-uhreQVICHG .desc-wrapper .mbr-desc {
  margin-bottom: 5px;
}
.cid-uhreQVICHG .desc-wrapper .social-wrapper {
  margin-top: 10px;
}
.cid-uhreQVICHG .desc-wrapper .social-wrapper .social-wrap {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
}
.cid-uhreQVICHG .desc-wrapper .social-wrapper .social-wrap .soc-item {
  margin-left: 32px;
}
@media (max-width: 992px) {
  .cid-uhreQVICHG .desc-wrapper .social-wrapper .social-wrap .soc-item {
    margin-left: 16px;
  }
  .cid-uhreQVICHG .desc-wrapper .social-wrapper .social-wrap .soc-item:first-child {
    margin-left: 0;
  }
}
.cid-uhreQVICHG .desc-wrapper .social-wrapper .social-wrap .soc-item:first-child {
  margin-left: 0;
}
.cid-uhreQVICHG .desc-wrapper .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-uhreQVICHG .desc-wrapper .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-uhreQVICHG .desc-wrapper .social-wrapper .social-wrap .soc-item a:focus .mbr-iconfont {
  color: #00d0f3;
}
.cid-uhreQVICHG .desc-wrapper .social-wrapper .social-wrap .soc-item a .mbr-iconfont {
  font-size: 36px;
  color: #ffffff;
  transition: all 0.3s ease-in-out;
}
.cid-uhreQVICHG .mbr-copy {
  margin-bottom: 0;
  padding: 25px 0;
  color: #ffffff;
  text-align: center;
}
.cid-uhreQVICHG .mbr-section-title {
  color: #00d0f3;
}
.cid-uhreQVICHG .mbr-text {
  color: #ffffff;
}
.cid-uhreQVICHG .mbr-section-subtitle {
  color: #ffffff;
  text-align: center;
}
.cid-uhreQVICHG .list {
  color: #ffffff;
}
.cid-uhreQVICHG .mbr-contact {
  color: #ffffff;
}
.cid-uhreQVICHG .mbr-desc {
  color: #ffffff;
}
.cid-uhlCk61cG3 {
  background: #ffffff;
}
.cid-uhlCk61cG3 .image-block {
  margin: auto;
  width: 100% !important;
}
.cid-uhlCk61cG3 figcaption {
  position: relative;
}
.cid-uhlCk61cG3 figcaption div {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-uhlCk61cG3 .image-block {
    width: 100% !important;
  }
}
.cid-uhlCk6KpwN {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #c1c1c1;
}
.cid-uhlCk6KpwN .block-text {
  color: #000000;
}
.cid-uhlCk7tTJV {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background: #000000;
}
.cid-uhlCk7tTJV .mbr-fallback-image.disabled {
  display: none;
}
.cid-uhlCk7tTJV .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uhlCk7tTJV .google-map {
  height: 35rem;
  position: relative;
  border-radius: 2rem;
}
.cid-uhlCk7tTJV .google-map iframe {
  height: 100%;
  width: 100%;
  border-radius: 2rem;
}
.cid-uhlCk7tTJV .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-uhlCk7tTJV .google-map[data-state] {
  background: #e9e5dc;
}
.cid-uhlCk7tTJV .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-uhlCk7tTJV .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-uhlCk7tTJV .mbr-section-subtitle {
  color: #ffffff;
  text-align: left;
}
.cid-uhr5Oj4goi {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uhr5Oj4goi .mbr-iconfont {
  transition: all 0.3s;
  display: block;
}
@keyframes icons {
  from {
    transform: translateY(-100%);
  }
  to {
    transform: translateY(0px);
  }
}
.cid-uhr5Oj4goi .iconfont-wrapper {
  overflow: hidden;
  color: #000000 !important;
  font-size: 1.2rem;
  padding: 0;
  margin: 0 0.2rem;
  display: block;
  position: relative;
}
.cid-uhr5Oj4goi .iconfont-wrapper:hover .mbr-iconfont {
  animation: icons;
  animation-duration: 0.3s;
}
.cid-uhr5Oj4goi .iconfont-wrapper:hover:before {
  height: 100%;
}
.cid-uhr5Oj4goi .iconfont-wrapper:before {
  position: absolute;
  content: '';
  bottom: 0;
  left: 0;
  transition: all 0.3s;
  width: 100%;
  height: 0%;
  background: #e5524e;
  z-index: -1;
}
.cid-uhr5Oj4goi nav.navbar {
  position: fixed;
}
.cid-uhr5Oj4goi .navbar-caption-wrap {
  z-index: 10;
  transition: all 0.3s;
}
.cid-uhr5Oj4goi .nav-item {
  border-left: 1px solid #efefef;
  border-right: 1px solid #efefef;
  margin-right: -1px;
}
@media (max-width: 992px) {
  .cid-uhr5Oj4goi .nav-item {
    border: 0;
  }
}
.cid-uhr5Oj4goi .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media (max-width: 992px) {
  .cid-uhr5Oj4goi .icons-menu {
    margin-bottom: 1rem;
  }
}
.cid-uhr5Oj4goi .title-wrap {
  cursor: pointer;
  border: 2px solid currentColor;
  padding: 6px 12px 3px 12px;
  position: relative;
}
.cid-uhr5Oj4goi .title-wrap:before {
  position: absolute;
  content: '';
  bottom: 0;
  left: 0;
  transition: all 0.3s;
  width: 100%;
  height: 0%;
  background: currentColor;
  z-index: -1;
}
.cid-uhr5Oj4goi .title-wrap:hover span {
  color: white;
}
.cid-uhr5Oj4goi .title-wrap:hover:before {
  height: 100%;
}
.cid-uhr5Oj4goi .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-uhr5Oj4goi .dropdown-menu {
  padding: 0;
  border-top: 4px solid #e5524e;
}
.cid-uhr5Oj4goi .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uhr5Oj4goi .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uhr5Oj4goi .nav-dropdown .link {
  padding: 0 0.3rem !important;
  margin: 1.4rem 2rem !important;
}
@media (max-width: 992px) {
  .cid-uhr5Oj4goi .nav-dropdown .link {
    margin: 0.5rem 1rem !important;
  }
}
.cid-uhr5Oj4goi .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uhr5Oj4goi .nav-link {
  position: relative;
}
.cid-uhr5Oj4goi .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-uhr5Oj4goi .container {
    flex-wrap: nowrap;
  }
}
.cid-uhr5Oj4goi .dropdown-menu,
.cid-uhr5Oj4goi .navbar.opened {
  background: #ffffff !important;
}
.cid-uhr5Oj4goi .nav-item:focus,
.cid-uhr5Oj4goi .nav-link:focus {
  outline: none;
}
.cid-uhr5Oj4goi .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uhr5Oj4goi .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uhr5Oj4goi .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uhr5Oj4goi .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uhr5Oj4goi .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uhr5Oj4goi .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uhr5Oj4goi .navbar {
  min-height: 70px;
  transition: all 0.3s;
  background: #ffffff;
}
.cid-uhr5Oj4goi .navbar.opened {
  transition: all 0.3s;
}
.cid-uhr5Oj4goi .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uhr5Oj4goi .navbar .navbar-logo img {
  width: auto;
}
.cid-uhr5Oj4goi .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uhr5Oj4goi .navbar.collapsed {
  justify-content: center;
}
.cid-uhr5Oj4goi .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uhr5Oj4goi .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uhr5Oj4goi .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 6.2rem);
  }
}
.cid-uhr5Oj4goi .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uhr5Oj4goi .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uhr5Oj4goi .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-uhr5Oj4goi .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uhr5Oj4goi .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uhr5Oj4goi .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uhr5Oj4goi .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uhr5Oj4goi .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uhr5Oj4goi .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uhr5Oj4goi .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uhr5Oj4goi .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-uhr5Oj4goi .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uhr5Oj4goi .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uhr5Oj4goi .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uhr5Oj4goi .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uhr5Oj4goi .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uhr5Oj4goi .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uhr5Oj4goi .navbar.navbar-short {
  min-height: 60px;
}
.cid-uhr5Oj4goi .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uhr5Oj4goi .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uhr5Oj4goi .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uhr5Oj4goi .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uhr5Oj4goi .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uhr5Oj4goi .dropdown-item.active,
.cid-uhr5Oj4goi .dropdown-item:active {
  background-color: transparent;
}
.cid-uhr5Oj4goi .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uhr5Oj4goi .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uhr5Oj4goi .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uhr5Oj4goi .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-uhr5Oj4goi .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uhr5Oj4goi .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uhr5Oj4goi ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uhr5Oj4goi .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uhr5Oj4goi button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uhr5Oj4goi button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uhr5Oj4goi button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uhr5Oj4goi button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uhr5Oj4goi button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uhr5Oj4goi button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uhr5Oj4goi nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uhr5Oj4goi nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uhr5Oj4goi nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uhr5Oj4goi nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uhr5Oj4goi .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uhr5Oj4goi a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uhr5Oj4goi .navbar {
    height: 70px;
  }
  .cid-uhr5Oj4goi .navbar.opened {
    height: auto;
  }
  .cid-uhr5Oj4goi .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uhr5Oj4goi .navbar-caption-wrap,
.cid-uhr5Oj4goi .title-wrap {
  color: #272727;
}
.cid-uhreQVICHG {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #c1c1c1;
  overflow: hidden;
}
.cid-uhreQVICHG::before {
  content: '';
  position: absolute;
  bottom: 0;
  width: 200vh;
  height: 85%;
  background-image: linear-gradient(transparent, #000000 50%);
  z-index: 1;
}
.cid-uhreQVICHG .mbr-fallback-image.disabled {
  display: none;
}
.cid-uhreQVICHG .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uhreQVICHG .container-fluid {
  padding: 0 80px;
}
@media (max-width: 1200px) {
  .cid-uhreQVICHG .container-fluid {
    padding: 0 40px;
  }
}
@media (max-width: 992px) {
  .cid-uhreQVICHG .container-fluid {
    padding: 0 22px;
  }
}
@media (max-width: 992px) {
  .cid-uhreQVICHG .container {
    padding: 0 22px;
  }
}
.cid-uhreQVICHG .row {
  position: relative;
  z-index: 1;
}
.cid-uhreQVICHG .row-main {
  position: relative;
  justify-content: center;
  padding: 40px 0;
}
.cid-uhreQVICHG .row-main::before {
  content: '';
  position: absolute;
  top: 0;
  width: 200vh;
  height: 1px;
  background-color: #b0b0b0;
}
.cid-uhreQVICHG .row-main::after {
  content: '';
  position: absolute;
  bottom: 0;
  width: 200vh;
  height: 1px;
  background-color: #b0b0b0;
}
.cid-uhreQVICHG .row-main .card {
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-uhreQVICHG .title-wrapper {
    margin-bottom: 20px;
  }
}
.cid-uhreQVICHG .title-wrapper .mbr-section-title {
  margin-bottom: 10px;
}
.cid-uhreQVICHG .title-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-uhreQVICHG .nav-wrapper {
  text-align: center;
}
@media (max-width: 992px) {
  .cid-uhreQVICHG .nav-wrapper {
    margin-bottom: 20px;
    text-align: left;
  }
}
.cid-uhreQVICHG .nav-wrapper .mbr-section-subtitle {
  margin-bottom: 10px;
  text-align: center;
}
@media (max-width: 992px) {
  .cid-uhreQVICHG .nav-wrapper .mbr-section-subtitle {
    text-align: left;
  }
}
.cid-uhreQVICHG .nav-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
  display: inline-block;
  text-align: left;
}
.cid-uhreQVICHG .nav-wrapper .list .item-wrap {
  margin-bottom: 5px;
  cursor: pointer;
  position: relative;
  transition: all 0.3s ease-in-out;
}
.cid-uhreQVICHG .nav-wrapper .list .item-wrap:hover,
.cid-uhreQVICHG .nav-wrapper .list .item-wrap:hover {
  color: #00d0f3;
}
.cid-uhreQVICHG .nav-wrapper .list .item-wrap:hover::before,
.cid-uhreQVICHG .nav-wrapper .list .item-wrap:hover::before {
  width: 100%;
}
.cid-uhreQVICHG .nav-wrapper .list .item-wrap::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  height: 1px;
  width: 0;
  background-color: #00d0f3;
  transition: all 0.3s ease-in-out;
}
@media (max-width: 992px) {
  .cid-uhreQVICHG .contacts-wrapper {
    margin-bottom: 20px;
  }
}
.cid-uhreQVICHG .contacts-wrapper .mbr-section-subtitle {
  margin-bottom: 10px;
}
.cid-uhreQVICHG .contacts-wrapper .contacts-wrap .item-contact {
  margin-bottom: 15px;
}
.cid-uhreQVICHG .contacts-wrapper .contacts-wrap .item-contact .item-wrap {
  display: inline-flex;
  align-items: center;
}
.cid-uhreQVICHG .contacts-wrapper .contacts-wrap .item-contact .item-wrap .mbr-iconfont {
  font-size: 30px;
  color: #ffffff;
  display: inline-flex;
  margin-right: 20px;
}
.cid-uhreQVICHG .contacts-wrapper .contacts-wrap .item-contact .item-wrap a {
  display: block;
}
.cid-uhreQVICHG .contacts-wrapper .contacts-wrap .item-contact .item-wrap a:hover .mbr-contact,
.cid-uhreQVICHG .contacts-wrapper .contacts-wrap .item-contact .item-wrap a:hover .mbr-contact {
  color: #00d0f3;
}
.cid-uhreQVICHG .contacts-wrapper .contacts-wrap .item-contact .item-wrap a:hover .mbr-contact::before,
.cid-uhreQVICHG .contacts-wrapper .contacts-wrap .item-contact .item-wrap a:hover .mbr-contact::before {
  width: 100%;
}
.cid-uhreQVICHG .contacts-wrapper .contacts-wrap .item-contact .item-wrap a .mbr-contact {
  margin-bottom: 0;
  position: relative;
  transition: all 0.3s ease-in-out;
}
.cid-uhreQVICHG .contacts-wrapper .contacts-wrap .item-contact .item-wrap a .mbr-contact::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  height: 1px;
  width: 0;
  background-color: #00d0f3;
  transition: all 0.3s ease-in-out;
}
@media (max-width: 992px) {
  .cid-uhreQVICHG .desc-wrapper {
    margin-bottom: 20px;
  }
}
.cid-uhreQVICHG .desc-wrapper .mbr-section-subtitle {
  margin-bottom: 10px;
}
.cid-uhreQVICHG .desc-wrapper .mbr-desc {
  margin-bottom: 5px;
}
.cid-uhreQVICHG .desc-wrapper .social-wrapper {
  margin-top: 10px;
}
.cid-uhreQVICHG .desc-wrapper .social-wrapper .social-wrap {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
}
.cid-uhreQVICHG .desc-wrapper .social-wrapper .social-wrap .soc-item {
  margin-left: 32px;
}
@media (max-width: 992px) {
  .cid-uhreQVICHG .desc-wrapper .social-wrapper .social-wrap .soc-item {
    margin-left: 16px;
  }
  .cid-uhreQVICHG .desc-wrapper .social-wrapper .social-wrap .soc-item:first-child {
    margin-left: 0;
  }
}
.cid-uhreQVICHG .desc-wrapper .social-wrapper .social-wrap .soc-item:first-child {
  margin-left: 0;
}
.cid-uhreQVICHG .desc-wrapper .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-uhreQVICHG .desc-wrapper .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-uhreQVICHG .desc-wrapper .social-wrapper .social-wrap .soc-item a:focus .mbr-iconfont {
  color: #00d0f3;
}
.cid-uhreQVICHG .desc-wrapper .social-wrapper .social-wrap .soc-item a .mbr-iconfont {
  font-size: 36px;
  color: #ffffff;
  transition: all 0.3s ease-in-out;
}
.cid-uhreQVICHG .mbr-copy {
  margin-bottom: 0;
  padding: 25px 0;
  color: #ffffff;
  text-align: center;
}
.cid-uhreQVICHG .mbr-section-title {
  color: #00d0f3;
}
.cid-uhreQVICHG .mbr-text {
  color: #ffffff;
}
.cid-uhreQVICHG .mbr-section-subtitle {
  color: #ffffff;
  text-align: center;
}
.cid-uhreQVICHG .list {
  color: #ffffff;
}
.cid-uhreQVICHG .mbr-contact {
  color: #ffffff;
}
.cid-uhreQVICHG .mbr-desc {
  color: #ffffff;
}
.cid-uhrmBMkV1I {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uhrmBMkV1I .mbr-iconfont {
  transition: all 0.3s;
  display: block;
}
@keyframes icons {
  from {
    transform: translateY(-100%);
  }
  to {
    transform: translateY(0px);
  }
}
.cid-uhrmBMkV1I .iconfont-wrapper {
  overflow: hidden;
  color: #000000 !important;
  font-size: 1.2rem;
  padding: 0;
  margin: 0 0.2rem;
  display: block;
  position: relative;
}
.cid-uhrmBMkV1I .iconfont-wrapper:hover .mbr-iconfont {
  animation: icons;
  animation-duration: 0.3s;
}
.cid-uhrmBMkV1I .iconfont-wrapper:hover:before {
  height: 100%;
}
.cid-uhrmBMkV1I .iconfont-wrapper:before {
  position: absolute;
  content: '';
  bottom: 0;
  left: 0;
  transition: all 0.3s;
  width: 100%;
  height: 0%;
  background: #e5524e;
  z-index: -1;
}
.cid-uhrmBMkV1I nav.navbar {
  position: fixed;
}
.cid-uhrmBMkV1I .navbar-caption-wrap {
  z-index: 10;
  transition: all 0.3s;
}
.cid-uhrmBMkV1I .nav-item {
  border-left: 1px solid #efefef;
  border-right: 1px solid #efefef;
  margin-right: -1px;
}
@media (max-width: 992px) {
  .cid-uhrmBMkV1I .nav-item {
    border: 0;
  }
}
.cid-uhrmBMkV1I .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media (max-width: 992px) {
  .cid-uhrmBMkV1I .icons-menu {
    margin-bottom: 1rem;
  }
}
.cid-uhrmBMkV1I .title-wrap {
  cursor: pointer;
  border: 2px solid currentColor;
  padding: 6px 12px 3px 12px;
  position: relative;
}
.cid-uhrmBMkV1I .title-wrap:before {
  position: absolute;
  content: '';
  bottom: 0;
  left: 0;
  transition: all 0.3s;
  width: 100%;
  height: 0%;
  background: currentColor;
  z-index: -1;
}
.cid-uhrmBMkV1I .title-wrap:hover span {
  color: white;
}
.cid-uhrmBMkV1I .title-wrap:hover:before {
  height: 100%;
}
.cid-uhrmBMkV1I .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-uhrmBMkV1I .dropdown-menu {
  padding: 0;
  border-top: 4px solid #e5524e;
}
.cid-uhrmBMkV1I .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uhrmBMkV1I .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uhrmBMkV1I .nav-dropdown .link {
  padding: 0 0.3rem !important;
  margin: 1.4rem 2rem !important;
}
@media (max-width: 992px) {
  .cid-uhrmBMkV1I .nav-dropdown .link {
    margin: 0.5rem 1rem !important;
  }
}
.cid-uhrmBMkV1I .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uhrmBMkV1I .nav-link {
  position: relative;
}
.cid-uhrmBMkV1I .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-uhrmBMkV1I .container {
    flex-wrap: nowrap;
  }
}
.cid-uhrmBMkV1I .dropdown-menu,
.cid-uhrmBMkV1I .navbar.opened {
  background: #ffffff !important;
}
.cid-uhrmBMkV1I .nav-item:focus,
.cid-uhrmBMkV1I .nav-link:focus {
  outline: none;
}
.cid-uhrmBMkV1I .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uhrmBMkV1I .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uhrmBMkV1I .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uhrmBMkV1I .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uhrmBMkV1I .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uhrmBMkV1I .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uhrmBMkV1I .navbar {
  min-height: 70px;
  transition: all 0.3s;
  background: #ffffff;
}
.cid-uhrmBMkV1I .navbar.opened {
  transition: all 0.3s;
}
.cid-uhrmBMkV1I .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uhrmBMkV1I .navbar .navbar-logo img {
  width: auto;
}
.cid-uhrmBMkV1I .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uhrmBMkV1I .navbar.collapsed {
  justify-content: center;
}
.cid-uhrmBMkV1I .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uhrmBMkV1I .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uhrmBMkV1I .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 6.2rem);
  }
}
.cid-uhrmBMkV1I .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uhrmBMkV1I .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uhrmBMkV1I .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-uhrmBMkV1I .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uhrmBMkV1I .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uhrmBMkV1I .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uhrmBMkV1I .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uhrmBMkV1I .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uhrmBMkV1I .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uhrmBMkV1I .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uhrmBMkV1I .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-uhrmBMkV1I .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uhrmBMkV1I .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uhrmBMkV1I .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uhrmBMkV1I .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uhrmBMkV1I .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uhrmBMkV1I .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uhrmBMkV1I .navbar.navbar-short {
  min-height: 60px;
}
.cid-uhrmBMkV1I .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uhrmBMkV1I .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uhrmBMkV1I .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uhrmBMkV1I .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uhrmBMkV1I .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uhrmBMkV1I .dropdown-item.active,
.cid-uhrmBMkV1I .dropdown-item:active {
  background-color: transparent;
}
.cid-uhrmBMkV1I .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uhrmBMkV1I .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uhrmBMkV1I .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uhrmBMkV1I .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-uhrmBMkV1I .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uhrmBMkV1I .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uhrmBMkV1I ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uhrmBMkV1I .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uhrmBMkV1I button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uhrmBMkV1I button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uhrmBMkV1I button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uhrmBMkV1I button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uhrmBMkV1I button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uhrmBMkV1I button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uhrmBMkV1I nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uhrmBMkV1I nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uhrmBMkV1I nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uhrmBMkV1I nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uhrmBMkV1I .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uhrmBMkV1I a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uhrmBMkV1I .navbar {
    height: 70px;
  }
  .cid-uhrmBMkV1I .navbar.opened {
    height: auto;
  }
  .cid-uhrmBMkV1I .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uhrmBMkV1I .navbar-caption-wrap,
.cid-uhrmBMkV1I .title-wrap {
  color: #272727;
}
.cid-uhrmBNV183 {
  display: flex;
  padding-top: 15rem;
  padding-bottom: 9rem;
  background-image: url("../../../assets/images/7-1500x1125.jpg");
}
.cid-uhrmBNV183 .mbr-overlay {
  background-color: #000000;
  opacity: 0.4;
}
.cid-uhrmBNV183 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uhrmBNV183 .line {
  width: 100%;
  height: 1px;
  background: currentColor;
  margin-bottom: 2rem;
}
.cid-uhrmBNV183 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uhrmBNV183 p {
  max-width: 600px;
  margin-right: 0;
  margin-left: auto;
}
@media (min-width: 768px) {
  .cid-uhrmBNV183 {
    align-items: center;
  }
  .cid-uhrmBNV183 .row {
    justify-content: center;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-uhrmBNV183 .content-wrap {
    min-width: 50%;
  }
}
@media (max-width: 767px) {
  .cid-uhrmBNV183 {
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-uhrmBNV183 .mbr-row {
    -webkit-justify-content: center;
    justify-content: center;
  }
  .cid-uhrmBNV183 .content-wrap {
    width: 100%;
  }
}
.cid-uhrmBNV183 .mbr-section-subtitle,
.cid-uhrmBNV183 .line {
  color: #ffffff;
  text-align: center;
}
.cid-uhrmBNV183 .mbr-text,
.cid-uhrmBNV183 .mbr-section-btn {
  text-align: right;
}
.cid-uhrmBNV183 .mbr-section-title {
  text-align: center;
}
.cid-uhrmBP0qwV {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #c1c1c1;
}
.cid-uhrmBP0qwV .mbr-fallback-image.disabled {
  display: none;
}
.cid-uhrmBP0qwV .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-uhrmBP0qwV .container {
    padding: 0 15px;
  }
}
.cid-uhrmBP0qwV .row {
  justify-content: center;
}
.cid-uhrmBP0qwV .title-wrapper .mbr-section-title {
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .cid-uhrmBP0qwV .title-wrapper .mbr-section-title {
    margin-bottom: 40px;
  }
}
.cid-uhrmBP0qwV .subtitle-wrapper {
  padding-right: 28px;
}
@media (max-width: 992px) {
  .cid-uhrmBP0qwV .subtitle-wrapper {
    padding: 0;
  }
}
.cid-uhrmBP0qwV .subtitle-wrapper .mbr-section-subtitle {
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-uhrmBP0qwV .subtitle-wrapper .mbr-section-subtitle {
    margin-bottom: 20px;
  }
}
.cid-uhrmBP0qwV .lists-wrapper .list {
  margin-bottom: 0;
  list-style-type: none;
  padding-left: 0;
  padding-left: 50px;
}
@media (max-width: 992px) {
  .cid-uhrmBP0qwV .lists-wrapper .list {
    padding-left: 36px;
  }
}
.cid-uhrmBP0qwV .lists-wrapper .list .item-wrap {
  margin-bottom: 20px;
  position: relative;
}
.cid-uhrmBP0qwV .lists-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-uhrmBP0qwV .lists-wrapper .list .item-wrap::before {
  content: '✓';
  position: absolute;
  top: 5px;
  margin-left: -50px;
  width: 22px;
  height: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: #34156b;
  color: #ffffff;
  font-size: 16px;
}
@media (max-width: 992px) {
  .cid-uhrmBP0qwV .lists-wrapper .list .item-wrap::before {
    margin-left: -36px;
  }
}
.cid-uhrmBP0qwV .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-uhrmBP0qwV .mbr-section-subtitle {
  color: #ffffff;
  text-align: center;
}
.cid-uhrmBP0qwV .list {
  color: #ffffff;
}
.cid-uhrmBP0qwV .list,
.cid-uhrmBP0qwV .item-wrap {
  color: #000000;
}
.cid-uhrmBPVVqc {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-uhrmBPVVqc .mbr-overlay {
  background: linear-gradient(90deg, #efefef, #1ec5bf);
}
.cid-uhrmBPVVqc h4,
.cid-uhrmBPVVqc h5 {
  text-align: center;
}
.cid-uhrmBPVVqc p {
  text-align: center;
}
.cid-uhrmBPVVqc .card-box {
  padding: 1.5rem;
  background-color: rgba(255, 255, 255, 0.2);
  text-align: center;
}
.cid-uhrmBPVVqc .card-img {
  font-size: 3rem;
}
.cid-uhrmBPVVqc .date span {
  display: inline-block;
  background-color: #f27d7a;
  padding: 0.5rem 1rem;
  white-space: nowrap;
  text-overflow: ellipsis;
  max-width: 90%;
  overflow: hidden;
}
.cid-uhrmBPVVqc .mbr-fallback-image.disabled {
  display: none;
}
.cid-uhrmBPVVqc .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uhrmBPVVqc .mbr-text {
  color: #000000;
}
.cid-uhrmBR0QRT {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #c1c1c1;
}
.cid-uhrmBRP1Zs {
  background-image: url("../../../assets/images/8-1920x1080.jpg");
}
.cid-uhrmBRP1Zs .text-content {
  padding-top: 90px;
  padding-bottom: 90px;
}
.cid-uhrmBRP1Zs .text-content .btn-bgr {
  z-index: 0;
}
.cid-uhrmBRP1Zs .mbr-overlay {
  background: linear-gradient(90deg, #d6173f, #4284df);
}
.cid-uhrmBRP1Zs h3 {
  color: #000000;
  font-weight: 300;
}
.cid-uhrmBRP1Zs p {
  color: #464646;
}
.cid-uhrmBRP1Zs h2 {
  color: #000000;
}
.cid-uhrmBRP1Zs .media-container-row {
  padding-left: 3rem;
  padding-right: 3rem;
}
@media (max-width: 767px) {
  .cid-uhrmBRP1Zs .media-container-row {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
}
.cid-uhrmBRP1Zs .text-content {
  padding-left: 1rem;
  padding-right: 1rem;
  width: 50%;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-uhrmBRP1Zs .text-content {
    width: 80%;
  }
}
@media (max-width: 599px) {
  .cid-uhrmBRP1Zs .text-content {
    width: 100%;
  }
}
.cid-uhrmBRP1Zs .media-content {
  padding-right: 1.5rem;
  padding-left: 0;
}
.cid-uhrmBRP1Zs .mbr-section-btn {
  margin-left: -0.8rem;
}
@media (max-width: 767px) {
  .cid-uhrmBRP1Zs .mbr-text {
    text-align: center;
  }
}
.cid-uhrmBRP1Zs .mbr-fallback-image.disabled {
  display: none;
}
.cid-uhrmBRP1Zs .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uhrmBRP1Zs P {
  color: #000000;
}
.cid-uhrmBSOpBV {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #c1c1c1;
}
.cid-uhrmBSOpBV .mbr-fallback-image.disabled {
  display: none;
}
.cid-uhrmBSOpBV .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uhrmBSOpBV .container-fluid {
  padding: 0 50px;
}
@media (max-width: 992px) {
  .cid-uhrmBSOpBV .container-fluid {
    padding: 0 30px;
  }
}
@media (max-width: 992px) {
  .cid-uhrmBSOpBV .container {
    padding: 0 30px;
  }
}
.cid-uhrmBSOpBV .title-wrapper .mbr-section-title {
  margin-bottom: 70px;
}
@media (max-width: 992px) {
  .cid-uhrmBSOpBV .title-wrapper .mbr-section-title {
    margin-bottom: 30px;
  }
}
.cid-uhrmBSOpBV .card-wrapper {
  display: flex;
  justify-content: space-between;
  padding: 70px 70px 70px 230px;
  background-color: #ffffff;
  border-radius: 16em 3em;
  padding: 70px 230px 70px 70px;
  border-radius: 3em 16em;
}
@media (max-width: 992px) {
  .cid-uhrmBSOpBV .card-wrapper {
    border-radius: 0 3em 0 3em;
    padding: 30px 20px;
  }
}
@media (max-width: 992px) {
  .cid-uhrmBSOpBV .card-wrapper {
    border-radius: 3em 0 3em 0;
    padding: 30px 20px;
    display: block;
  }
}
.cid-uhrmBSOpBV .card-wrapper .mbr-number {
  margin: 0 0 0 50px;
  width: 100%;
  white-space: nowrap;
  margin: 0 50px 0 0;
}
@media (max-width: 992px) {
  .cid-uhrmBSOpBV .card-wrapper .mbr-number {
    margin: 0 0 16px 0;
  }
}
@media (max-width: 992px) {
  .cid-uhrmBSOpBV .card-wrapper .mbr-number {
    margin: 0 0 16px 0;
  }
}
.cid-uhrmBSOpBV .card-wrapper .content-wrap .mbr-card-title {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uhrmBSOpBV .card-wrapper .content-wrap .mbr-card-title {
    margin-bottom: 20px;
  }
}
.cid-uhrmBSOpBV .card-wrapper .content-wrap .mbr-text {
  margin-bottom: 0;
}
.cid-uhrmBSOpBV .mbr-section-title {
  color: #000000;
  text-align: center;
}
.cid-uhrmBSOpBV .mbr-card-title {
  color: #2b2b2b;
  text-align: center;
}
.cid-uhrmBSOpBV .mbr-text {
  color: #000000;
}
.cid-uhrmBSOpBV .mbr-number {
  color: #FE5115;
}
.cid-uhrmBTJMXS {
  padding-top: 80px;
  padding-bottom: 60px;
  background-color: #ffffff;
  background: linear-gradient(90deg, #ffffff, #ffffff);
}
.cid-uhrmBTJMXS .media-content .btn-bgr {
  z-index: 0;
}
.cid-uhrmBTJMXS .mbr-overlay {
  background: linear-gradient(90deg, #21b968, #1ec5bf);
}
.cid-uhrmBTJMXS h3 {
  color: #000000;
  font-weight: 300;
}
.cid-uhrmBTJMXS p {
  color: #464646;
}
.cid-uhrmBTJMXS h2 {
  color: #000000;
}
.cid-uhrmBTJMXS .media-content {
  padding-right: 1.5rem;
  padding-left: 0;
}
.cid-uhrmBTJMXS .mbr-section-btn {
  margin-left: -0.8rem;
}
.cid-uhrmBTJMXS .mbr-figure {
  padding-right: 1rem;
}
@media (min-width: 500px) {
  .cid-uhrmBTJMXS .mbr-figure {
    padding-left: 2rem;
  }
}
@media (max-width: 499px) {
  .cid-uhrmBTJMXS .mbr-figure {
    padding-top: 1rem;
    padding-left: 2rem;
    padding-right: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uhrmBTJMXS .mbr-figure {
    padding-left: 0;
    padding-right: 0;
  }
}
@media (max-width: 767px) {
  .cid-uhrmBTJMXS .mbr-text {
    text-align: center;
  }
}
.cid-uhrmBTJMXS .mbr-fallback-image.disabled {
  display: none;
}
.cid-uhrmBTJMXS .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uhrmBTJMXS .mbr-section-title,
.cid-uhrmBTJMXS .mbr-section-btn {
  color: #000000;
  text-align: center;
}
.cid-uhrmBTJMXS .mbr-section-subtitle {
  color: #000000;
  text-align: center;
}
.cid-uhrmBUIiND {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #c1c1c1;
}
.cid-uhrmBUIiND h4 {
  font-weight: 600;
  color: #e2e2e2;
}
.cid-uhrmBUIiND .mbr-section-subtitle {
  color: #767676;
}
.cid-uhrmBUIiND .article {
  padding-right: 2rem;
  padding-left: 2rem;
}
.cid-uhrmBW1nGm {
  background-color: #ffffff;
}
.cid-uhrmBW1nGm .media-content .btn-bgr {
  z-index: 0;
}
.cid-uhrmBW1nGm .mbr-section-text {
  word-break: break-word;
}
.cid-uhrmBW1nGm .mbr-overlay {
  background: linear-gradient(90deg, #21b968, #1ec5bf);
}
@media (min-width: 992px) {
  .cid-uhrmBW1nGm .mbr-figure {
    padding-left: 4rem;
    padding-right: 4rem;
    padding-left: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uhrmBW1nGm .mbr-figure {
    padding-top: 3rem;
  }
}
@media (max-width: 767px) {
  .cid-uhrmBW1nGm .mbr-text {
    text-align: center;
  }
}
.cid-uhrmBW1nGm .media-container-row {
  -webkit-flex-direction: row-reverse;
  -ms-flex-direction: row-reverse;
}
.cid-uhrmBW1nGm .mbr-fallback-image.disabled {
  display: none;
}
.cid-uhrmBW1nGm .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uhrmBW1nGm H1 {
  text-align: center;
  color: #000000;
}
.cid-uhrmBXkGZN {
  display: flex;
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #c1c1c1;
}
@media (min-width: 768px) {
  .cid-uhrmBXkGZN {
    align-items: center;
  }
  .cid-uhrmBXkGZN .row {
    justify-content: center;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-uhrmBXkGZN .content-wrap {
    min-width: 50%;
  }
}
@media (max-width: 767px) {
  .cid-uhrmBXkGZN {
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-uhrmBXkGZN .mbr-row {
    -webkit-justify-content: center;
    justify-content: center;
  }
  .cid-uhrmBXkGZN .content-wrap {
    width: 100%;
  }
}
.cid-uhrmBXkGZN .mbr-section-title {
  text-align: center;
  color: #000000;
}
.cid-uhrmBXkGZN .mbr-text,
.cid-uhrmBXkGZN .mbr-section-btn {
  text-align: center;
  color: #000000;
}
.cid-uhrmBYhVK3 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uhrmBYhVK3 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uhrmBYhVK3 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uhrmBYhVK3 .container-fluid {
  padding: 0 56px;
}
@media (max-width: 992px) {
  .cid-uhrmBYhVK3 .container-fluid {
    padding: 0 22px;
  }
}
@media (max-width: 992px) {
  .cid-uhrmBYhVK3 .container {
    padding: 0 22px;
  }
}
.cid-uhrmBYhVK3 .row {
  justify-content: space-between;
}
@media (max-width: 992px) {
  .cid-uhrmBYhVK3 .image-wrapper {
    margin-bottom: 32px;
  }
}
.cid-uhrmBYhVK3 .image-wrapper img {
  height: 415px;
  border-radius: 0 6rem 0 0 !important;
}
@media (max-width: 992px) {
  .cid-uhrmBYhVK3 .image-wrapper img {
    height: 350px;
  }
}
.cid-uhrmBYhVK3 .mbr-section-title {
  margin-bottom: 16px;
  color: #000000;
  text-align: center;
}
.cid-uhrmBYhVK3 .panel-group {
  border-bottom: 1px solid #f29c9a;
}
.cid-uhrmBYhVK3 .panel-group .card {
  border-top: 1px solid #f29c9a;
  border-radius: 0 !important;
  transition: all 0.3s ease-in-out;
}
.cid-uhrmBYhVK3 .panel-group .card:hover,
.cid-uhrmBYhVK3 .panel-group .card:focus {
  border-top: 1px solid #000000;
}
.cid-uhrmBYhVK3 .panel-group .card .card-header {
  background-color: transparent;
  border: none;
  border-radius: 0;
  padding: 0;
}
.cid-uhrmBYhVK3 .panel-group .card .card-header .panel-title {
  display: inline-flex;
  padding: 40px 0;
  justify-content: space-between;
  width: 100%;
}
.cid-uhrmBYhVK3 .panel-group .card .card-header .panel-title .panel-title-edit {
  margin-bottom: 0;
}
.cid-uhrmBYhVK3 .panel-group .card .card-header .panel-title .mbr-iconfont {
  font-size: 25px;
  width: 25px;
  height: 25px;
  margin-bottom: 0;
  transition: all 0.3s ease-in-out;
  color: #000000;
  margin-left: 16px;
}
.cid-uhrmBYhVK3 .panel-group .card .card-header .panel-title:not(.collapsed) .mbr-iconfont {
  transform: rotate(45deg);
  color: #ff5753;
}
.cid-uhrmBYhVK3 .panel-group .card .panel-collapse .panel-body {
  padding: 16px 0 80px;
}
@media (max-width: 992px) {
  .cid-uhrmBYhVK3 .panel-group .card .panel-collapse .panel-body {
    padding: 16px 0 55px;
  }
}
.cid-uhrmBYhVK3 .panel-group .card .panel-collapse .panel-body .panel-text {
  margin-bottom: 0;
}
.cid-uhrmBYhVK3 .panel-title-edit {
  color: #000000;
}
.cid-uhrmBYhVK3 .panel-text {
  color: #8a8588;
}
.cid-uhrmBZvTQo {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #c1c1c1;
}
.cid-uhrmBZvTQo .mbr-fallback-image.disabled {
  display: none;
}
.cid-uhrmBZvTQo .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-uhrmBZvTQo .container {
    padding: 0 16px;
  }
}
.cid-uhrmBZvTQo .row {
  position: relative;
  z-index: 1;
}
.cid-uhrmBZvTQo .title-wrapper .mbr-section-title {
  margin-bottom: 56px;
}
@media (max-width: 992px) {
  .cid-uhrmBZvTQo .title-wrapper .mbr-section-title {
    margin-bottom: 32px;
  }
}
.cid-uhrmBZvTQo .title-wrapper .subtitle-wrapper .mbr-section-subtitle {
  display: inline-flex;
  margin-bottom: 56px;
  padding: 18px 24px;
  border-radius: 16px !important;
  box-shadow: 6px 8px 0 0 #000000;
  background-color: #c6f15c;
  transform: rotate(-4deg);
}
@media (max-width: 992px) {
  .cid-uhrmBZvTQo .title-wrapper .subtitle-wrapper .mbr-section-subtitle {
    margin-bottom: 32px;
  }
}
.cid-uhrmBZvTQo .title-wrapper .buttons-wrap {
  text-align: right;
}
@media (max-width: 992px) {
  .cid-uhrmBZvTQo .title-wrapper .buttons-wrap {
    text-align: left;
  }
}
.cid-uhrmBZvTQo .title-wrapper .buttons-wrap .mbr-section-btn {
  display: inline-flex;
  width: 40%;
  margin-bottom: 24px;
  justify-content: flex-end;
}
@media (max-width: 992px) {
  .cid-uhrmBZvTQo .title-wrapper .buttons-wrap .mbr-section-btn {
    justify-content: flex-start;
  }
}
@media (max-width: 992px) {
  .cid-uhrmBZvTQo .title-wrapper .buttons-wrap .mbr-section-btn {
    display: block;
    width: 100%;
  }
}
.cid-uhrmBZvTQo .items-wrapper .item {
  margin-top: 64px;
  padding-top: 104px;
  position: relative;
}
.cid-uhrmBZvTQo .items-wrapper .item:nth-child(2n)::before {
  background-color: #f0a2fd;
}
.cid-uhrmBZvTQo .items-wrapper .item:nth-child(2n)::after {
  background-color: #f0a2fd;
}
.cid-uhrmBZvTQo .items-wrapper .item:nth-child(2n) .item-wrapper {
  background-color: #f0a2fd;
}
.cid-uhrmBZvTQo .items-wrapper .item:nth-child(3n)::before {
  background-color: #feb591;
}
.cid-uhrmBZvTQo .items-wrapper .item:nth-child(3n)::after {
  background-color: #feb591;
}
.cid-uhrmBZvTQo .items-wrapper .item:nth-child(3n) .item-wrapper {
  background-color: #feb591;
}
.cid-uhrmBZvTQo .items-wrapper .item:nth-child(4n)::before {
  background-color: #c6f15c;
}
.cid-uhrmBZvTQo .items-wrapper .item:nth-child(4n)::after {
  background-color: #c6f15c;
}
.cid-uhrmBZvTQo .items-wrapper .item:nth-child(4n) .item-wrapper {
  background-color: #c6f15c;
}
@media (max-width: 992px) {
  .cid-uhrmBZvTQo .items-wrapper .item {
    margin-top: 32px;
    padding-top: 0;
  }
}
.cid-uhrmBZvTQo .items-wrapper .item:first-child {
  margin-top: -96px;
  margin-top: 0;
}
@media (max-width: 992px) {
  .cid-uhrmBZvTQo .items-wrapper .item:first-child {
    margin-top: 0;
  }
}
.cid-uhrmBZvTQo .items-wrapper .item::before {
  content: '';
  position: absolute;
  width: 50%;
  height: 140px;
  top: 0;
  right: 0;
  border-top-right-radius: 24px;
  background-color: #feffe3;
  right: auto;
  left: 0;
  border-top-right-radius: 0;
  border-top-left-radius: 24px;
}
@media (max-width: 992px) {
  .cid-uhrmBZvTQo .items-wrapper .item::before {
    display: none;
  }
}
.cid-uhrmBZvTQo .items-wrapper .item::after {
  content: '';
  position: absolute;
  top: 0;
  right: 15%;
  width: 43%;
  height: 110px;
  transform: skew(-45deg);
  background-color: #feffe3;
  right: auto;
  left: 15%;
  transform: skew(45deg);
}
@media (max-width: 992px) {
  .cid-uhrmBZvTQo .items-wrapper .item::after {
    display: none;
  }
}
.cid-uhrmBZvTQo .items-wrapper .item .item-wrapper {
  display: flex;
  position: relative;
  border-radius: 24px !important;
  background-color: #feffe3;
  z-index: 1;
}
@media (max-width: 992px) {
  .cid-uhrmBZvTQo .items-wrapper .item .item-wrapper {
    display: block;
  }
}
.cid-uhrmBZvTQo .items-wrapper .item .item-wrapper .item-img {
  width: 50%;
  padding: 96px;
}
@media (max-width: 992px) {
  .cid-uhrmBZvTQo .items-wrapper .item .item-wrapper .item-img {
    width: 100%;
    padding: 24px;
  }
}
.cid-uhrmBZvTQo .items-wrapper .item .item-wrapper .item-img img {
  height: 300px;
  box-shadow: 6px 8px 0 0 #000000;
  object-fit: cover;
}
.cid-uhrmBZvTQo .items-wrapper .item .item-wrapper .item-content {
  width: 50%;
  padding-right: 96px;
  padding-bottom: 96px;
  padding-right: 0;
  padding-left: 96px;
}
@media (max-width: 992px) {
  .cid-uhrmBZvTQo .items-wrapper .item .item-wrapper .item-content {
    padding-left: 0;
  }
}
@media (max-width: 992px) {
  .cid-uhrmBZvTQo .items-wrapper .item .item-wrapper .item-content {
    width: 100%;
    padding: 24px;
  }
}
.cid-uhrmBZvTQo .items-wrapper .item .item-wrapper .item-content .item-title {
  margin-bottom: 36px;
}
@media (max-width: 992px) {
  .cid-uhrmBZvTQo .items-wrapper .item .item-wrapper .item-content .item-title {
    text-align: left;
    margin-bottom: 24px;
  }
}
.cid-uhrmBZvTQo .items-wrapper .item .item-wrapper .item-content .item-number {
  margin-bottom: 36px;
}
@media (max-width: 992px) {
  .cid-uhrmBZvTQo .items-wrapper .item .item-wrapper .item-content .item-number {
    margin-bottom: 24px;
  }
}
.cid-uhrmBZvTQo .items-wrapper .item .item-wrapper .item-content .item-text {
  margin-bottom: 0;
}
.cid-uhrmBZvTQo .mbr-section-title {
  color: #000000;
}
.cid-uhrmBZvTQo .mbr-section-subtitle {
  color: #000000;
}
.cid-uhrmBZvTQo .item-title {
  color: #000000;
  text-align: left;
}
.cid-uhrmBZvTQo .item-number {
  color: #000000;
}
.cid-uhrmBZvTQo .item-text {
  color: #000000;
}
.cid-uhrmC0s2OP {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uhrmC0s2OP .mbr-fallback-image.disabled {
  display: none;
}
.cid-uhrmC0s2OP .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uhrmC0s2OP .container-fluid {
  padding: 0 50px;
}
@media (max-width: 992px) {
  .cid-uhrmC0s2OP .container-fluid {
    padding: 0 30px;
  }
}
@media (max-width: 992px) {
  .cid-uhrmC0s2OP .container {
    padding: 0 30px;
  }
}
.cid-uhrmC0s2OP .title-wrapper .mbr-section-title {
  margin-bottom: 70px;
}
@media (max-width: 992px) {
  .cid-uhrmC0s2OP .title-wrapper .mbr-section-title {
    margin-bottom: 30px;
  }
}
.cid-uhrmC0s2OP .card-wrapper {
  display: flex;
  justify-content: space-between;
  padding: 70px 70px 70px 230px;
  background-color: #c1c1c1;
  border-radius: 16em 3em;
  padding: 70px 230px 70px 70px;
  border-radius: 3em 16em;
}
@media (max-width: 992px) {
  .cid-uhrmC0s2OP .card-wrapper {
    border-radius: 0 3em 0 3em;
    padding: 30px 20px;
  }
}
@media (max-width: 992px) {
  .cid-uhrmC0s2OP .card-wrapper {
    border-radius: 3em 0 3em 0;
    padding: 30px 20px;
    display: block;
  }
}
.cid-uhrmC0s2OP .card-wrapper .mbr-number {
  margin: 0 0 0 50px;
  width: 100%;
  white-space: nowrap;
  margin: 0 50px 0 0;
}
@media (max-width: 992px) {
  .cid-uhrmC0s2OP .card-wrapper .mbr-number {
    margin: 0 0 16px 0;
  }
}
@media (max-width: 992px) {
  .cid-uhrmC0s2OP .card-wrapper .mbr-number {
    margin: 0 0 16px 0;
  }
}
.cid-uhrmC0s2OP .card-wrapper .content-wrap .mbr-card-title {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uhrmC0s2OP .card-wrapper .content-wrap .mbr-card-title {
    margin-bottom: 20px;
  }
}
.cid-uhrmC0s2OP .card-wrapper .content-wrap .mbr-text {
  margin-bottom: 0;
}
.cid-uhrmC0s2OP .mbr-section-title {
  color: #000000;
  text-align: center;
}
.cid-uhrmC0s2OP .mbr-card-title {
  color: #2b2b2b;
  text-align: center;
}
.cid-uhrmC0s2OP .mbr-text {
  color: #000000;
}
.cid-uhrmC0s2OP .mbr-number {
  color: #FE5115;
}
.cid-uhrsENSMMi {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #c1c1c1;
}
.cid-uhrsENSMMi .panel-group {
  border: none;
}
.cid-uhrsENSMMi .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-uhrsENSMMi .panel-title.collapsed .icon-card::after {
  transform: rotate(90deg);
}
.cid-uhrsENSMMi .panel-title.collapsed .icon-card::before {
  transform: rotate(180deg);
}
.cid-uhrsENSMMi .panel-title:hover .icon-card::after {
  transform: rotate(0deg);
}
.cid-uhrsENSMMi .panel-title:hover .icon-card::before {
  transform: rotate(0deg);
}
.cid-uhrsENSMMi .card-header {
  margin: 0 !important;
  padding: 0.8125rem 0 0.3125rem 0;
  border-bottom: 2px solid #000000;
}
.cid-uhrsENSMMi .panel-body {
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
}
.cid-uhrsENSMMi .card {
  margin-bottom: 0.75rem;
}
.cid-uhrsENSMMi .card .card-header {
  background-color: transparent;
}
.cid-uhrsENSMMi .panel-title-edit {
  width: 100%;
  color: #000000;
}
.cid-uhrsENSMMi .image-wrapper,
.cid-uhrsENSMMi .mbr-img-wrap {
  height: 100%;
}
.cid-uhrsENSMMi .icon-card {
  width: 17px;
  height: 17px;
  position: relative;
}
.cid-uhrsENSMMi .icon-card::before,
.cid-uhrsENSMMi .icon-card::after {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 100%;
  height: 2px;
  background: #e5524e;
  transition: 0.3s;
}
.cid-uhrsENSMMi .panel-text {
  color: #0c57bf;
}
.cid-uhrmC1rOvo {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background: #000000;
}
.cid-uhrmC1rOvo .mbr-fallback-image.disabled {
  display: none;
}
.cid-uhrmC1rOvo .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uhrmC1rOvo .google-map {
  height: 35rem;
  position: relative;
  border-radius: 2rem;
}
.cid-uhrmC1rOvo .google-map iframe {
  height: 100%;
  width: 100%;
  border-radius: 2rem;
}
.cid-uhrmC1rOvo .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-uhrmC1rOvo .google-map[data-state] {
  background: #e9e5dc;
}
.cid-uhrmC1rOvo .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-uhrmC1rOvo .mbr-section-title {
  color: #2c1616;
  text-align: center;
}
.cid-uhrmC1rOvo .mbr-section-subtitle {
  color: #ffffff;
  text-align: left;
}
.cid-uhrmC3ohL8 {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #c1c1c1;
  overflow: hidden;
}
.cid-uhrmC3ohL8::before {
  content: '';
  position: absolute;
  bottom: 0;
  width: 200vh;
  height: 85%;
  background-image: linear-gradient(transparent, #000000 50%);
  z-index: 1;
}
.cid-uhrmC3ohL8 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uhrmC3ohL8 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uhrmC3ohL8 .container-fluid {
  padding: 0 80px;
}
@media (max-width: 1200px) {
  .cid-uhrmC3ohL8 .container-fluid {
    padding: 0 40px;
  }
}
@media (max-width: 992px) {
  .cid-uhrmC3ohL8 .container-fluid {
    padding: 0 22px;
  }
}
@media (max-width: 992px) {
  .cid-uhrmC3ohL8 .container {
    padding: 0 22px;
  }
}
.cid-uhrmC3ohL8 .row {
  position: relative;
  z-index: 1;
}
.cid-uhrmC3ohL8 .row-main {
  position: relative;
  justify-content: center;
  padding: 40px 0;
}
.cid-uhrmC3ohL8 .row-main::before {
  content: '';
  position: absolute;
  top: 0;
  width: 200vh;
  height: 1px;
  background-color: #b0b0b0;
}
.cid-uhrmC3ohL8 .row-main::after {
  content: '';
  position: absolute;
  bottom: 0;
  width: 200vh;
  height: 1px;
  background-color: #b0b0b0;
}
.cid-uhrmC3ohL8 .row-main .card {
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-uhrmC3ohL8 .title-wrapper {
    margin-bottom: 20px;
  }
}
.cid-uhrmC3ohL8 .title-wrapper .mbr-section-title {
  margin-bottom: 10px;
}
.cid-uhrmC3ohL8 .title-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-uhrmC3ohL8 .nav-wrapper {
  text-align: center;
}
@media (max-width: 992px) {
  .cid-uhrmC3ohL8 .nav-wrapper {
    margin-bottom: 20px;
    text-align: left;
  }
}
.cid-uhrmC3ohL8 .nav-wrapper .mbr-section-subtitle {
  margin-bottom: 10px;
  text-align: center;
}
@media (max-width: 992px) {
  .cid-uhrmC3ohL8 .nav-wrapper .mbr-section-subtitle {
    text-align: left;
  }
}
.cid-uhrmC3ohL8 .nav-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
  display: inline-block;
  text-align: left;
}
.cid-uhrmC3ohL8 .nav-wrapper .list .item-wrap {
  margin-bottom: 5px;
  cursor: pointer;
  position: relative;
  transition: all 0.3s ease-in-out;
}
.cid-uhrmC3ohL8 .nav-wrapper .list .item-wrap:hover,
.cid-uhrmC3ohL8 .nav-wrapper .list .item-wrap:hover {
  color: #00d0f3;
}
.cid-uhrmC3ohL8 .nav-wrapper .list .item-wrap:hover::before,
.cid-uhrmC3ohL8 .nav-wrapper .list .item-wrap:hover::before {
  width: 100%;
}
.cid-uhrmC3ohL8 .nav-wrapper .list .item-wrap::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  height: 1px;
  width: 0;
  background-color: #00d0f3;
  transition: all 0.3s ease-in-out;
}
@media (max-width: 992px) {
  .cid-uhrmC3ohL8 .contacts-wrapper {
    margin-bottom: 20px;
  }
}
.cid-uhrmC3ohL8 .contacts-wrapper .mbr-section-subtitle {
  margin-bottom: 10px;
}
.cid-uhrmC3ohL8 .contacts-wrapper .contacts-wrap .item-contact {
  margin-bottom: 15px;
}
.cid-uhrmC3ohL8 .contacts-wrapper .contacts-wrap .item-contact .item-wrap {
  display: inline-flex;
  align-items: center;
}
.cid-uhrmC3ohL8 .contacts-wrapper .contacts-wrap .item-contact .item-wrap .mbr-iconfont {
  font-size: 30px;
  color: #ffffff;
  display: inline-flex;
  margin-right: 20px;
}
.cid-uhrmC3ohL8 .contacts-wrapper .contacts-wrap .item-contact .item-wrap a {
  display: block;
}
.cid-uhrmC3ohL8 .contacts-wrapper .contacts-wrap .item-contact .item-wrap a:hover .mbr-contact,
.cid-uhrmC3ohL8 .contacts-wrapper .contacts-wrap .item-contact .item-wrap a:hover .mbr-contact {
  color: #00d0f3;
}
.cid-uhrmC3ohL8 .contacts-wrapper .contacts-wrap .item-contact .item-wrap a:hover .mbr-contact::before,
.cid-uhrmC3ohL8 .contacts-wrapper .contacts-wrap .item-contact .item-wrap a:hover .mbr-contact::before {
  width: 100%;
}
.cid-uhrmC3ohL8 .contacts-wrapper .contacts-wrap .item-contact .item-wrap a .mbr-contact {
  margin-bottom: 0;
  position: relative;
  transition: all 0.3s ease-in-out;
}
.cid-uhrmC3ohL8 .contacts-wrapper .contacts-wrap .item-contact .item-wrap a .mbr-contact::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  height: 1px;
  width: 0;
  background-color: #00d0f3;
  transition: all 0.3s ease-in-out;
}
@media (max-width: 992px) {
  .cid-uhrmC3ohL8 .desc-wrapper {
    margin-bottom: 20px;
  }
}
.cid-uhrmC3ohL8 .desc-wrapper .mbr-section-subtitle {
  margin-bottom: 10px;
}
.cid-uhrmC3ohL8 .desc-wrapper .mbr-desc {
  margin-bottom: 5px;
}
.cid-uhrmC3ohL8 .desc-wrapper .social-wrapper {
  margin-top: 10px;
}
.cid-uhrmC3ohL8 .desc-wrapper .social-wrapper .social-wrap {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
}
.cid-uhrmC3ohL8 .desc-wrapper .social-wrapper .social-wrap .soc-item {
  margin-left: 32px;
}
@media (max-width: 992px) {
  .cid-uhrmC3ohL8 .desc-wrapper .social-wrapper .social-wrap .soc-item {
    margin-left: 16px;
  }
  .cid-uhrmC3ohL8 .desc-wrapper .social-wrapper .social-wrap .soc-item:first-child {
    margin-left: 0;
  }
}
.cid-uhrmC3ohL8 .desc-wrapper .social-wrapper .social-wrap .soc-item:first-child {
  margin-left: 0;
}
.cid-uhrmC3ohL8 .desc-wrapper .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-uhrmC3ohL8 .desc-wrapper .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-uhrmC3ohL8 .desc-wrapper .social-wrapper .social-wrap .soc-item a:focus .mbr-iconfont {
  color: #00d0f3;
}
.cid-uhrmC3ohL8 .desc-wrapper .social-wrapper .social-wrap .soc-item a .mbr-iconfont {
  font-size: 36px;
  color: #ffffff;
  transition: all 0.3s ease-in-out;
}
.cid-uhrmC3ohL8 .mbr-copy {
  margin-bottom: 0;
  padding: 25px 0;
  color: #ffffff;
  text-align: center;
}
.cid-uhrmC3ohL8 .mbr-section-title {
  color: #00d0f3;
}
.cid-uhrmC3ohL8 .mbr-text {
  color: #ffffff;
}
.cid-uhrmC3ohL8 .mbr-section-subtitle {
  color: #ffffff;
  text-align: center;
}
.cid-uhrmC3ohL8 .list {
  color: #ffffff;
}
.cid-uhrmC3ohL8 .mbr-contact {
  color: #ffffff;
}
.cid-uhrmC3ohL8 .mbr-desc {
  color: #ffffff;
}
.cid-uhrwazZ4aE {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uhrwazZ4aE .mbr-iconfont {
  transition: all 0.3s;
  display: block;
}
@keyframes icons {
  from {
    transform: translateY(-100%);
  }
  to {
    transform: translateY(0px);
  }
}
.cid-uhrwazZ4aE .iconfont-wrapper {
  overflow: hidden;
  color: #000000 !important;
  font-size: 1.2rem;
  padding: 0;
  margin: 0 0.2rem;
  display: block;
  position: relative;
}
.cid-uhrwazZ4aE .iconfont-wrapper:hover .mbr-iconfont {
  animation: icons;
  animation-duration: 0.3s;
}
.cid-uhrwazZ4aE .iconfont-wrapper:hover:before {
  height: 100%;
}
.cid-uhrwazZ4aE .iconfont-wrapper:before {
  position: absolute;
  content: '';
  bottom: 0;
  left: 0;
  transition: all 0.3s;
  width: 100%;
  height: 0%;
  background: #e5524e;
  z-index: -1;
}
.cid-uhrwazZ4aE nav.navbar {
  position: fixed;
}
.cid-uhrwazZ4aE .navbar-caption-wrap {
  z-index: 10;
  transition: all 0.3s;
}
.cid-uhrwazZ4aE .nav-item {
  border-left: 1px solid #efefef;
  border-right: 1px solid #efefef;
  margin-right: -1px;
}
@media (max-width: 992px) {
  .cid-uhrwazZ4aE .nav-item {
    border: 0;
  }
}
.cid-uhrwazZ4aE .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media (max-width: 992px) {
  .cid-uhrwazZ4aE .icons-menu {
    margin-bottom: 1rem;
  }
}
.cid-uhrwazZ4aE .title-wrap {
  cursor: pointer;
  border: 2px solid currentColor;
  padding: 6px 12px 3px 12px;
  position: relative;
}
.cid-uhrwazZ4aE .title-wrap:before {
  position: absolute;
  content: '';
  bottom: 0;
  left: 0;
  transition: all 0.3s;
  width: 100%;
  height: 0%;
  background: currentColor;
  z-index: -1;
}
.cid-uhrwazZ4aE .title-wrap:hover span {
  color: white;
}
.cid-uhrwazZ4aE .title-wrap:hover:before {
  height: 100%;
}
.cid-uhrwazZ4aE .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-uhrwazZ4aE .dropdown-menu {
  padding: 0;
  border-top: 4px solid #e5524e;
}
.cid-uhrwazZ4aE .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uhrwazZ4aE .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uhrwazZ4aE .nav-dropdown .link {
  padding: 0 0.3rem !important;
  margin: 1.4rem 2rem !important;
}
@media (max-width: 992px) {
  .cid-uhrwazZ4aE .nav-dropdown .link {
    margin: 0.5rem 1rem !important;
  }
}
.cid-uhrwazZ4aE .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uhrwazZ4aE .nav-link {
  position: relative;
}
.cid-uhrwazZ4aE .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-uhrwazZ4aE .container {
    flex-wrap: nowrap;
  }
}
.cid-uhrwazZ4aE .dropdown-menu,
.cid-uhrwazZ4aE .navbar.opened {
  background: #ffffff !important;
}
.cid-uhrwazZ4aE .nav-item:focus,
.cid-uhrwazZ4aE .nav-link:focus {
  outline: none;
}
.cid-uhrwazZ4aE .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uhrwazZ4aE .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uhrwazZ4aE .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uhrwazZ4aE .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uhrwazZ4aE .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uhrwazZ4aE .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uhrwazZ4aE .navbar {
  min-height: 70px;
  transition: all 0.3s;
  background: #ffffff;
}
.cid-uhrwazZ4aE .navbar.opened {
  transition: all 0.3s;
}
.cid-uhrwazZ4aE .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uhrwazZ4aE .navbar .navbar-logo img {
  width: auto;
}
.cid-uhrwazZ4aE .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uhrwazZ4aE .navbar.collapsed {
  justify-content: center;
}
.cid-uhrwazZ4aE .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uhrwazZ4aE .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uhrwazZ4aE .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 6.2rem);
  }
}
.cid-uhrwazZ4aE .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uhrwazZ4aE .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uhrwazZ4aE .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-uhrwazZ4aE .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uhrwazZ4aE .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uhrwazZ4aE .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uhrwazZ4aE .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uhrwazZ4aE .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uhrwazZ4aE .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uhrwazZ4aE .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uhrwazZ4aE .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-uhrwazZ4aE .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uhrwazZ4aE .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uhrwazZ4aE .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uhrwazZ4aE .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uhrwazZ4aE .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uhrwazZ4aE .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uhrwazZ4aE .navbar.navbar-short {
  min-height: 60px;
}
.cid-uhrwazZ4aE .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uhrwazZ4aE .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uhrwazZ4aE .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uhrwazZ4aE .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uhrwazZ4aE .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uhrwazZ4aE .dropdown-item.active,
.cid-uhrwazZ4aE .dropdown-item:active {
  background-color: transparent;
}
.cid-uhrwazZ4aE .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uhrwazZ4aE .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uhrwazZ4aE .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uhrwazZ4aE .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-uhrwazZ4aE .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uhrwazZ4aE .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uhrwazZ4aE ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uhrwazZ4aE .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uhrwazZ4aE button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uhrwazZ4aE button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uhrwazZ4aE button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uhrwazZ4aE button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uhrwazZ4aE button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uhrwazZ4aE button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uhrwazZ4aE nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uhrwazZ4aE nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uhrwazZ4aE nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uhrwazZ4aE nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uhrwazZ4aE .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uhrwazZ4aE a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uhrwazZ4aE .navbar {
    height: 70px;
  }
  .cid-uhrwazZ4aE .navbar.opened {
    height: auto;
  }
  .cid-uhrwazZ4aE .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uhrwazZ4aE .navbar-caption-wrap,
.cid-uhrwazZ4aE .title-wrap {
  color: #272727;
}
.cid-uhrwaBsUg7 {
  display: flex;
  padding-top: 15rem;
  padding-bottom: 9rem;
  background-image: url("../../../assets/images/9-2000x1500.jpg");
}
.cid-uhrwaBsUg7 .mbr-overlay {
  background-color: #000000;
  opacity: 0.4;
}
.cid-uhrwaBsUg7 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uhrwaBsUg7 .line {
  width: 100%;
  height: 1px;
  background: currentColor;
  margin-bottom: 2rem;
}
.cid-uhrwaBsUg7 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uhrwaBsUg7 p {
  max-width: 600px;
  margin-right: 0;
  margin-left: auto;
}
@media (min-width: 768px) {
  .cid-uhrwaBsUg7 {
    align-items: center;
  }
  .cid-uhrwaBsUg7 .row {
    justify-content: center;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-uhrwaBsUg7 .content-wrap {
    min-width: 50%;
  }
}
@media (max-width: 767px) {
  .cid-uhrwaBsUg7 {
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-uhrwaBsUg7 .mbr-row {
    -webkit-justify-content: center;
    justify-content: center;
  }
  .cid-uhrwaBsUg7 .content-wrap {
    width: 100%;
  }
}
.cid-uhrwaBsUg7 .mbr-section-subtitle,
.cid-uhrwaBsUg7 .line {
  color: #ffffff;
  text-align: center;
}
.cid-uhrwaBsUg7 .mbr-text,
.cid-uhrwaBsUg7 .mbr-section-btn {
  text-align: right;
}
.cid-uhrwaBsUg7 .mbr-section-title {
  text-align: center;
}
.cid-uhrwaCbnoP {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #c1c1c1;
}
.cid-uhrwaCbnoP .mbr-fallback-image.disabled {
  display: none;
}
.cid-uhrwaCbnoP .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-uhrwaCbnoP .container {
    padding: 0 15px;
  }
}
.cid-uhrwaCbnoP .row {
  justify-content: center;
}
.cid-uhrwaCbnoP .title-wrapper .mbr-section-title {
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .cid-uhrwaCbnoP .title-wrapper .mbr-section-title {
    margin-bottom: 40px;
  }
}
.cid-uhrwaCbnoP .subtitle-wrapper {
  padding-right: 28px;
}
@media (max-width: 992px) {
  .cid-uhrwaCbnoP .subtitle-wrapper {
    padding: 0;
  }
}
.cid-uhrwaCbnoP .subtitle-wrapper .mbr-section-subtitle {
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-uhrwaCbnoP .subtitle-wrapper .mbr-section-subtitle {
    margin-bottom: 20px;
  }
}
.cid-uhrwaCbnoP .lists-wrapper .list {
  margin-bottom: 0;
  list-style-type: none;
  padding-left: 0;
  padding-left: 50px;
}
@media (max-width: 992px) {
  .cid-uhrwaCbnoP .lists-wrapper .list {
    padding-left: 36px;
  }
}
.cid-uhrwaCbnoP .lists-wrapper .list .item-wrap {
  margin-bottom: 20px;
  position: relative;
}
.cid-uhrwaCbnoP .lists-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-uhrwaCbnoP .lists-wrapper .list .item-wrap::before {
  content: '✓';
  position: absolute;
  top: 5px;
  margin-left: -50px;
  width: 22px;
  height: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: #34156b;
  color: #ffffff;
  font-size: 16px;
}
@media (max-width: 992px) {
  .cid-uhrwaCbnoP .lists-wrapper .list .item-wrap::before {
    margin-left: -36px;
  }
}
.cid-uhrwaCbnoP .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-uhrwaCbnoP .mbr-section-subtitle {
  color: #ffffff;
  text-align: center;
}
.cid-uhrwaCbnoP .list {
  color: #ffffff;
}
.cid-uhrwaCbnoP .list,
.cid-uhrwaCbnoP .item-wrap {
  color: #000000;
}
.cid-uhrwaDvbJK {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-uhrwaDvbJK .mbr-overlay {
  background: linear-gradient(90deg, #efefef, #1ec5bf);
}
.cid-uhrwaDvbJK h4,
.cid-uhrwaDvbJK h5 {
  text-align: center;
}
.cid-uhrwaDvbJK p {
  text-align: center;
}
.cid-uhrwaDvbJK .card-box {
  padding: 1.5rem;
  background-color: rgba(255, 255, 255, 0.2);
  text-align: center;
}
.cid-uhrwaDvbJK .card-img {
  font-size: 3rem;
}
.cid-uhrwaDvbJK .date span {
  display: inline-block;
  background-color: #f27d7a;
  padding: 0.5rem 1rem;
  white-space: nowrap;
  text-overflow: ellipsis;
  max-width: 90%;
  overflow: hidden;
}
.cid-uhrwaDvbJK .mbr-fallback-image.disabled {
  display: none;
}
.cid-uhrwaDvbJK .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uhrwaDvbJK .mbr-text {
  color: #000000;
}
.cid-uhrwaE87AY {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #c1c1c1;
}
.cid-uhrwaExQmT {
  background-image: url("../../../assets/images/10-1600x1200.jpg");
}
.cid-uhrwaExQmT .text-content {
  padding-top: 90px;
  padding-bottom: 90px;
}
.cid-uhrwaExQmT .text-content .btn-bgr {
  z-index: 0;
}
.cid-uhrwaExQmT .mbr-overlay {
  background: linear-gradient(90deg, #d6173f, #4284df);
}
.cid-uhrwaExQmT h3 {
  color: #000000;
  font-weight: 300;
}
.cid-uhrwaExQmT p {
  color: #464646;
}
.cid-uhrwaExQmT h2 {
  color: #000000;
}
.cid-uhrwaExQmT .media-container-row {
  padding-left: 3rem;
  padding-right: 3rem;
}
@media (max-width: 767px) {
  .cid-uhrwaExQmT .media-container-row {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
}
.cid-uhrwaExQmT .text-content {
  padding-left: 1rem;
  padding-right: 1rem;
  width: 50%;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-uhrwaExQmT .text-content {
    width: 80%;
  }
}
@media (max-width: 599px) {
  .cid-uhrwaExQmT .text-content {
    width: 100%;
  }
}
.cid-uhrwaExQmT .media-content {
  padding-right: 1.5rem;
  padding-left: 0;
}
.cid-uhrwaExQmT .mbr-section-btn {
  margin-left: -0.8rem;
}
@media (max-width: 767px) {
  .cid-uhrwaExQmT .mbr-text {
    text-align: center;
  }
}
.cid-uhrwaExQmT .mbr-fallback-image.disabled {
  display: none;
}
.cid-uhrwaExQmT .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uhrwaExQmT P {
  color: #000000;
}
.cid-uhrwaEXNEm {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #c1c1c1;
}
.cid-uhrwaEXNEm .mbr-fallback-image.disabled {
  display: none;
}
.cid-uhrwaEXNEm .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uhrwaEXNEm .container-fluid {
  padding: 0 50px;
}
@media (max-width: 992px) {
  .cid-uhrwaEXNEm .container-fluid {
    padding: 0 30px;
  }
}
@media (max-width: 992px) {
  .cid-uhrwaEXNEm .container {
    padding: 0 30px;
  }
}
.cid-uhrwaEXNEm .title-wrapper .mbr-section-title {
  margin-bottom: 70px;
}
@media (max-width: 992px) {
  .cid-uhrwaEXNEm .title-wrapper .mbr-section-title {
    margin-bottom: 30px;
  }
}
.cid-uhrwaEXNEm .card-wrapper {
  display: flex;
  justify-content: space-between;
  padding: 70px 70px 70px 230px;
  background-color: #ffffff;
  border-radius: 16em 3em;
  padding: 70px 230px 70px 70px;
  border-radius: 3em 16em;
}
@media (max-width: 992px) {
  .cid-uhrwaEXNEm .card-wrapper {
    border-radius: 0 3em 0 3em;
    padding: 30px 20px;
  }
}
@media (max-width: 992px) {
  .cid-uhrwaEXNEm .card-wrapper {
    border-radius: 3em 0 3em 0;
    padding: 30px 20px;
    display: block;
  }
}
.cid-uhrwaEXNEm .card-wrapper .mbr-number {
  margin: 0 0 0 50px;
  width: 100%;
  white-space: nowrap;
  margin: 0 50px 0 0;
}
@media (max-width: 992px) {
  .cid-uhrwaEXNEm .card-wrapper .mbr-number {
    margin: 0 0 16px 0;
  }
}
@media (max-width: 992px) {
  .cid-uhrwaEXNEm .card-wrapper .mbr-number {
    margin: 0 0 16px 0;
  }
}
.cid-uhrwaEXNEm .card-wrapper .content-wrap .mbr-card-title {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uhrwaEXNEm .card-wrapper .content-wrap .mbr-card-title {
    margin-bottom: 20px;
  }
}
.cid-uhrwaEXNEm .card-wrapper .content-wrap .mbr-text {
  margin-bottom: 0;
}
.cid-uhrwaEXNEm .mbr-section-title {
  color: #000000;
  text-align: center;
}
.cid-uhrwaEXNEm .mbr-card-title {
  color: #2b2b2b;
  text-align: center;
}
.cid-uhrwaEXNEm .mbr-text {
  color: #000000;
}
.cid-uhrwaEXNEm .mbr-number {
  color: #FE5115;
}
.cid-uhrwaFtHxH {
  padding-top: 80px;
  padding-bottom: 60px;
  background-color: #ffffff;
  background: linear-gradient(90deg, #ffffff, #ffffff);
}
.cid-uhrwaFtHxH .media-content .btn-bgr {
  z-index: 0;
}
.cid-uhrwaFtHxH .mbr-overlay {
  background: linear-gradient(90deg, #21b968, #1ec5bf);
}
.cid-uhrwaFtHxH h3 {
  color: #000000;
  font-weight: 300;
}
.cid-uhrwaFtHxH p {
  color: #464646;
}
.cid-uhrwaFtHxH h2 {
  color: #000000;
}
.cid-uhrwaFtHxH .media-content {
  padding-right: 1.5rem;
  padding-left: 0;
}
.cid-uhrwaFtHxH .mbr-section-btn {
  margin-left: -0.8rem;
}
.cid-uhrwaFtHxH .mbr-figure {
  padding-right: 1rem;
}
@media (min-width: 500px) {
  .cid-uhrwaFtHxH .mbr-figure {
    padding-left: 2rem;
  }
}
@media (max-width: 499px) {
  .cid-uhrwaFtHxH .mbr-figure {
    padding-top: 1rem;
    padding-left: 2rem;
    padding-right: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uhrwaFtHxH .mbr-figure {
    padding-left: 0;
    padding-right: 0;
  }
}
@media (max-width: 767px) {
  .cid-uhrwaFtHxH .mbr-text {
    text-align: center;
  }
}
.cid-uhrwaFtHxH .mbr-fallback-image.disabled {
  display: none;
}
.cid-uhrwaFtHxH .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uhrwaFtHxH .mbr-section-title,
.cid-uhrwaFtHxH .mbr-section-btn {
  color: #000000;
  text-align: center;
}
.cid-uhrwaFtHxH .mbr-section-subtitle {
  color: #000000;
  text-align: center;
}
.cid-uhrwaFXl8w {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #c1c1c1;
}
.cid-uhrwaFXl8w h4 {
  font-weight: 600;
  color: #e2e2e2;
}
.cid-uhrwaFXl8w .mbr-section-subtitle {
  color: #767676;
}
.cid-uhrwaFXl8w .article {
  padding-right: 2rem;
  padding-left: 2rem;
}
.cid-uhrwaGnAsP {
  background-color: #ffffff;
}
.cid-uhrwaGnAsP .media-content .btn-bgr {
  z-index: 0;
}
.cid-uhrwaGnAsP .mbr-section-text {
  word-break: break-word;
}
.cid-uhrwaGnAsP .mbr-overlay {
  background: linear-gradient(90deg, #21b968, #1ec5bf);
}
@media (min-width: 992px) {
  .cid-uhrwaGnAsP .mbr-figure {
    padding-left: 4rem;
    padding-right: 4rem;
    padding-left: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uhrwaGnAsP .mbr-figure {
    padding-top: 3rem;
  }
}
@media (max-width: 767px) {
  .cid-uhrwaGnAsP .mbr-text {
    text-align: center;
  }
}
.cid-uhrwaGnAsP .media-container-row {
  -webkit-flex-direction: row-reverse;
  -ms-flex-direction: row-reverse;
}
.cid-uhrwaGnAsP .mbr-fallback-image.disabled {
  display: none;
}
.cid-uhrwaGnAsP .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uhrwaGnAsP H1 {
  text-align: center;
  color: #000000;
}
.cid-uhrwaGVAdi {
  display: flex;
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #c1c1c1;
}
@media (min-width: 768px) {
  .cid-uhrwaGVAdi {
    align-items: center;
  }
  .cid-uhrwaGVAdi .row {
    justify-content: center;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-uhrwaGVAdi .content-wrap {
    min-width: 50%;
  }
}
@media (max-width: 767px) {
  .cid-uhrwaGVAdi {
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-uhrwaGVAdi .mbr-row {
    -webkit-justify-content: center;
    justify-content: center;
  }
  .cid-uhrwaGVAdi .content-wrap {
    width: 100%;
  }
}
.cid-uhrwaGVAdi .mbr-section-title {
  text-align: center;
  color: #000000;
}
.cid-uhrwaGVAdi .mbr-text,
.cid-uhrwaGVAdi .mbr-section-btn {
  text-align: center;
  color: #000000;
}
.cid-uhrwaHl2fF {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uhrwaHl2fF .mbr-fallback-image.disabled {
  display: none;
}
.cid-uhrwaHl2fF .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uhrwaHl2fF .container-fluid {
  padding: 0 56px;
}
@media (max-width: 992px) {
  .cid-uhrwaHl2fF .container-fluid {
    padding: 0 22px;
  }
}
@media (max-width: 992px) {
  .cid-uhrwaHl2fF .container {
    padding: 0 22px;
  }
}
.cid-uhrwaHl2fF .row {
  justify-content: space-between;
}
@media (max-width: 992px) {
  .cid-uhrwaHl2fF .image-wrapper {
    margin-bottom: 32px;
  }
}
.cid-uhrwaHl2fF .image-wrapper img {
  height: 415px;
  border-radius: 0 6rem 0 0 !important;
}
@media (max-width: 992px) {
  .cid-uhrwaHl2fF .image-wrapper img {
    height: 350px;
  }
}
.cid-uhrwaHl2fF .mbr-section-title {
  margin-bottom: 16px;
  color: #000000;
  text-align: center;
}
.cid-uhrwaHl2fF .panel-group {
  border-bottom: 1px solid #f29c9a;
}
.cid-uhrwaHl2fF .panel-group .card {
  border-top: 1px solid #f29c9a;
  border-radius: 0 !important;
  transition: all 0.3s ease-in-out;
}
.cid-uhrwaHl2fF .panel-group .card:hover,
.cid-uhrwaHl2fF .panel-group .card:focus {
  border-top: 1px solid #000000;
}
.cid-uhrwaHl2fF .panel-group .card .card-header {
  background-color: transparent;
  border: none;
  border-radius: 0;
  padding: 0;
}
.cid-uhrwaHl2fF .panel-group .card .card-header .panel-title {
  display: inline-flex;
  padding: 40px 0;
  justify-content: space-between;
  width: 100%;
}
.cid-uhrwaHl2fF .panel-group .card .card-header .panel-title .panel-title-edit {
  margin-bottom: 0;
}
.cid-uhrwaHl2fF .panel-group .card .card-header .panel-title .mbr-iconfont {
  font-size: 25px;
  width: 25px;
  height: 25px;
  margin-bottom: 0;
  transition: all 0.3s ease-in-out;
  color: #000000;
  margin-left: 16px;
}
.cid-uhrwaHl2fF .panel-group .card .card-header .panel-title:not(.collapsed) .mbr-iconfont {
  transform: rotate(45deg);
  color: #ff5753;
}
.cid-uhrwaHl2fF .panel-group .card .panel-collapse .panel-body {
  padding: 16px 0 80px;
}
@media (max-width: 992px) {
  .cid-uhrwaHl2fF .panel-group .card .panel-collapse .panel-body {
    padding: 16px 0 55px;
  }
}
.cid-uhrwaHl2fF .panel-group .card .panel-collapse .panel-body .panel-text {
  margin-bottom: 0;
}
.cid-uhrwaHl2fF .panel-title-edit {
  color: #000000;
}
.cid-uhrwaHl2fF .panel-text {
  color: #8a8588;
}
.cid-uhrwaHUYPz {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #c1c1c1;
}
.cid-uhrwaHUYPz .mbr-fallback-image.disabled {
  display: none;
}
.cid-uhrwaHUYPz .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-uhrwaHUYPz .container {
    padding: 0 16px;
  }
}
.cid-uhrwaHUYPz .row {
  position: relative;
  z-index: 1;
}
.cid-uhrwaHUYPz .title-wrapper .mbr-section-title {
  margin-bottom: 56px;
}
@media (max-width: 992px) {
  .cid-uhrwaHUYPz .title-wrapper .mbr-section-title {
    margin-bottom: 32px;
  }
}
.cid-uhrwaHUYPz .title-wrapper .subtitle-wrapper .mbr-section-subtitle {
  display: inline-flex;
  margin-bottom: 56px;
  padding: 18px 24px;
  border-radius: 16px !important;
  box-shadow: 6px 8px 0 0 #000000;
  background-color: #c6f15c;
  transform: rotate(-4deg);
}
@media (max-width: 992px) {
  .cid-uhrwaHUYPz .title-wrapper .subtitle-wrapper .mbr-section-subtitle {
    margin-bottom: 32px;
  }
}
.cid-uhrwaHUYPz .title-wrapper .buttons-wrap {
  text-align: right;
}
@media (max-width: 992px) {
  .cid-uhrwaHUYPz .title-wrapper .buttons-wrap {
    text-align: left;
  }
}
.cid-uhrwaHUYPz .title-wrapper .buttons-wrap .mbr-section-btn {
  display: inline-flex;
  width: 40%;
  margin-bottom: 24px;
  justify-content: flex-end;
}
@media (max-width: 992px) {
  .cid-uhrwaHUYPz .title-wrapper .buttons-wrap .mbr-section-btn {
    justify-content: flex-start;
  }
}
@media (max-width: 992px) {
  .cid-uhrwaHUYPz .title-wrapper .buttons-wrap .mbr-section-btn {
    display: block;
    width: 100%;
  }
}
.cid-uhrwaHUYPz .items-wrapper .item {
  margin-top: 64px;
  padding-top: 104px;
  position: relative;
}
.cid-uhrwaHUYPz .items-wrapper .item:nth-child(2n)::before {
  background-color: #f0a2fd;
}
.cid-uhrwaHUYPz .items-wrapper .item:nth-child(2n)::after {
  background-color: #f0a2fd;
}
.cid-uhrwaHUYPz .items-wrapper .item:nth-child(2n) .item-wrapper {
  background-color: #f0a2fd;
}
.cid-uhrwaHUYPz .items-wrapper .item:nth-child(3n)::before {
  background-color: #feb591;
}
.cid-uhrwaHUYPz .items-wrapper .item:nth-child(3n)::after {
  background-color: #feb591;
}
.cid-uhrwaHUYPz .items-wrapper .item:nth-child(3n) .item-wrapper {
  background-color: #feb591;
}
.cid-uhrwaHUYPz .items-wrapper .item:nth-child(4n)::before {
  background-color: #c6f15c;
}
.cid-uhrwaHUYPz .items-wrapper .item:nth-child(4n)::after {
  background-color: #c6f15c;
}
.cid-uhrwaHUYPz .items-wrapper .item:nth-child(4n) .item-wrapper {
  background-color: #c6f15c;
}
@media (max-width: 992px) {
  .cid-uhrwaHUYPz .items-wrapper .item {
    margin-top: 32px;
    padding-top: 0;
  }
}
.cid-uhrwaHUYPz .items-wrapper .item:first-child {
  margin-top: -96px;
  margin-top: 0;
}
@media (max-width: 992px) {
  .cid-uhrwaHUYPz .items-wrapper .item:first-child {
    margin-top: 0;
  }
}
.cid-uhrwaHUYPz .items-wrapper .item::before {
  content: '';
  position: absolute;
  width: 50%;
  height: 140px;
  top: 0;
  right: 0;
  border-top-right-radius: 24px;
  background-color: #feffe3;
  right: auto;
  left: 0;
  border-top-right-radius: 0;
  border-top-left-radius: 24px;
}
@media (max-width: 992px) {
  .cid-uhrwaHUYPz .items-wrapper .item::before {
    display: none;
  }
}
.cid-uhrwaHUYPz .items-wrapper .item::after {
  content: '';
  position: absolute;
  top: 0;
  right: 15%;
  width: 43%;
  height: 110px;
  transform: skew(-45deg);
  background-color: #feffe3;
  right: auto;
  left: 15%;
  transform: skew(45deg);
}
@media (max-width: 992px) {
  .cid-uhrwaHUYPz .items-wrapper .item::after {
    display: none;
  }
}
.cid-uhrwaHUYPz .items-wrapper .item .item-wrapper {
  display: flex;
  position: relative;
  border-radius: 24px !important;
  background-color: #feffe3;
  z-index: 1;
}
@media (max-width: 992px) {
  .cid-uhrwaHUYPz .items-wrapper .item .item-wrapper {
    display: block;
  }
}
.cid-uhrwaHUYPz .items-wrapper .item .item-wrapper .item-img {
  width: 50%;
  padding: 96px;
}
@media (max-width: 992px) {
  .cid-uhrwaHUYPz .items-wrapper .item .item-wrapper .item-img {
    width: 100%;
    padding: 24px;
  }
}
.cid-uhrwaHUYPz .items-wrapper .item .item-wrapper .item-img img {
  height: 300px;
  box-shadow: 6px 8px 0 0 #000000;
  object-fit: cover;
}
.cid-uhrwaHUYPz .items-wrapper .item .item-wrapper .item-content {
  width: 50%;
  padding-right: 96px;
  padding-bottom: 96px;
  padding-right: 0;
  padding-left: 96px;
}
@media (max-width: 992px) {
  .cid-uhrwaHUYPz .items-wrapper .item .item-wrapper .item-content {
    padding-left: 0;
  }
}
@media (max-width: 992px) {
  .cid-uhrwaHUYPz .items-wrapper .item .item-wrapper .item-content {
    width: 100%;
    padding: 24px;
  }
}
.cid-uhrwaHUYPz .items-wrapper .item .item-wrapper .item-content .item-title {
  margin-bottom: 36px;
}
@media (max-width: 992px) {
  .cid-uhrwaHUYPz .items-wrapper .item .item-wrapper .item-content .item-title {
    text-align: left;
    margin-bottom: 24px;
  }
}
.cid-uhrwaHUYPz .items-wrapper .item .item-wrapper .item-content .item-number {
  margin-bottom: 36px;
}
@media (max-width: 992px) {
  .cid-uhrwaHUYPz .items-wrapper .item .item-wrapper .item-content .item-number {
    margin-bottom: 24px;
  }
}
.cid-uhrwaHUYPz .items-wrapper .item .item-wrapper .item-content .item-text {
  margin-bottom: 0;
}
.cid-uhrwaHUYPz .mbr-section-title {
  color: #000000;
}
.cid-uhrwaHUYPz .mbr-section-subtitle {
  color: #000000;
}
.cid-uhrwaHUYPz .item-title {
  color: #000000;
  text-align: left;
}
.cid-uhrwaHUYPz .item-number {
  color: #000000;
}
.cid-uhrwaHUYPz .item-text {
  color: #000000;
}
.cid-uhrwaIrmya {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uhrwaIrmya .mbr-fallback-image.disabled {
  display: none;
}
.cid-uhrwaIrmya .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uhrwaIrmya .container-fluid {
  padding: 0 50px;
}
@media (max-width: 992px) {
  .cid-uhrwaIrmya .container-fluid {
    padding: 0 30px;
  }
}
@media (max-width: 992px) {
  .cid-uhrwaIrmya .container {
    padding: 0 30px;
  }
}
.cid-uhrwaIrmya .title-wrapper .mbr-section-title {
  margin-bottom: 70px;
}
@media (max-width: 992px) {
  .cid-uhrwaIrmya .title-wrapper .mbr-section-title {
    margin-bottom: 30px;
  }
}
.cid-uhrwaIrmya .card-wrapper {
  display: flex;
  justify-content: space-between;
  padding: 70px 70px 70px 230px;
  background-color: #c1c1c1;
  border-radius: 16em 3em;
  padding: 70px 230px 70px 70px;
  border-radius: 3em 16em;
}
@media (max-width: 992px) {
  .cid-uhrwaIrmya .card-wrapper {
    border-radius: 0 3em 0 3em;
    padding: 30px 20px;
  }
}
@media (max-width: 992px) {
  .cid-uhrwaIrmya .card-wrapper {
    border-radius: 3em 0 3em 0;
    padding: 30px 20px;
    display: block;
  }
}
.cid-uhrwaIrmya .card-wrapper .mbr-number {
  margin: 0 0 0 50px;
  width: 100%;
  white-space: nowrap;
  margin: 0 50px 0 0;
}
@media (max-width: 992px) {
  .cid-uhrwaIrmya .card-wrapper .mbr-number {
    margin: 0 0 16px 0;
  }
}
@media (max-width: 992px) {
  .cid-uhrwaIrmya .card-wrapper .mbr-number {
    margin: 0 0 16px 0;
  }
}
.cid-uhrwaIrmya .card-wrapper .content-wrap .mbr-card-title {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uhrwaIrmya .card-wrapper .content-wrap .mbr-card-title {
    margin-bottom: 20px;
  }
}
.cid-uhrwaIrmya .card-wrapper .content-wrap .mbr-text {
  margin-bottom: 0;
}
.cid-uhrwaIrmya .mbr-section-title {
  color: #000000;
  text-align: center;
}
.cid-uhrwaIrmya .mbr-card-title {
  color: #2b2b2b;
  text-align: center;
}
.cid-uhrwaIrmya .mbr-text {
  color: #000000;
}
.cid-uhrwaIrmya .mbr-number {
  color: #FE5115;
}
.cid-uhrwaIQcZZ {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #c1c1c1;
}
.cid-uhrwaIQcZZ .panel-group {
  border: none;
}
.cid-uhrwaIQcZZ .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-uhrwaIQcZZ .panel-title.collapsed .icon-card::after {
  transform: rotate(90deg);
}
.cid-uhrwaIQcZZ .panel-title.collapsed .icon-card::before {
  transform: rotate(180deg);
}
.cid-uhrwaIQcZZ .panel-title:hover .icon-card::after {
  transform: rotate(0deg);
}
.cid-uhrwaIQcZZ .panel-title:hover .icon-card::before {
  transform: rotate(0deg);
}
.cid-uhrwaIQcZZ .card-header {
  margin: 0 !important;
  padding: 0.8125rem 0 0.3125rem 0;
  border-bottom: 2px solid #000000;
}
.cid-uhrwaIQcZZ .panel-body {
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
}
.cid-uhrwaIQcZZ .card {
  margin-bottom: 0.75rem;
}
.cid-uhrwaIQcZZ .card .card-header {
  background-color: transparent;
}
.cid-uhrwaIQcZZ .panel-title-edit {
  width: 100%;
  color: #000000;
}
.cid-uhrwaIQcZZ .image-wrapper,
.cid-uhrwaIQcZZ .mbr-img-wrap {
  height: 100%;
}
.cid-uhrwaIQcZZ .icon-card {
  width: 17px;
  height: 17px;
  position: relative;
}
.cid-uhrwaIQcZZ .icon-card::before,
.cid-uhrwaIQcZZ .icon-card::after {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 100%;
  height: 2px;
  background: #e5524e;
  transition: 0.3s;
}
.cid-uhrwaIQcZZ .panel-text {
  color: #0c57bf;
}
.cid-uhrwaJq7Xl {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background: #000000;
}
.cid-uhrwaJq7Xl .mbr-fallback-image.disabled {
  display: none;
}
.cid-uhrwaJq7Xl .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uhrwaJq7Xl .google-map {
  height: 35rem;
  position: relative;
  border-radius: 2rem;
}
.cid-uhrwaJq7Xl .google-map iframe {
  height: 100%;
  width: 100%;
  border-radius: 2rem;
}
.cid-uhrwaJq7Xl .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-uhrwaJq7Xl .google-map[data-state] {
  background: #e9e5dc;
}
.cid-uhrwaJq7Xl .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-uhrwaJq7Xl .mbr-section-title {
  color: #2c1616;
  text-align: center;
}
.cid-uhrwaJq7Xl .mbr-section-subtitle {
  color: #ffffff;
  text-align: left;
}
.cid-uhrwaJXePe {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #c1c1c1;
  overflow: hidden;
}
.cid-uhrwaJXePe::before {
  content: '';
  position: absolute;
  bottom: 0;
  width: 200vh;
  height: 85%;
  background-image: linear-gradient(transparent, #000000 50%);
  z-index: 1;
}
.cid-uhrwaJXePe .mbr-fallback-image.disabled {
  display: none;
}
.cid-uhrwaJXePe .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uhrwaJXePe .container-fluid {
  padding: 0 80px;
}
@media (max-width: 1200px) {
  .cid-uhrwaJXePe .container-fluid {
    padding: 0 40px;
  }
}
@media (max-width: 992px) {
  .cid-uhrwaJXePe .container-fluid {
    padding: 0 22px;
  }
}
@media (max-width: 992px) {
  .cid-uhrwaJXePe .container {
    padding: 0 22px;
  }
}
.cid-uhrwaJXePe .row {
  position: relative;
  z-index: 1;
}
.cid-uhrwaJXePe .row-main {
  position: relative;
  justify-content: center;
  padding: 40px 0;
}
.cid-uhrwaJXePe .row-main::before {
  content: '';
  position: absolute;
  top: 0;
  width: 200vh;
  height: 1px;
  background-color: #b0b0b0;
}
.cid-uhrwaJXePe .row-main::after {
  content: '';
  position: absolute;
  bottom: 0;
  width: 200vh;
  height: 1px;
  background-color: #b0b0b0;
}
.cid-uhrwaJXePe .row-main .card {
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-uhrwaJXePe .title-wrapper {
    margin-bottom: 20px;
  }
}
.cid-uhrwaJXePe .title-wrapper .mbr-section-title {
  margin-bottom: 10px;
}
.cid-uhrwaJXePe .title-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-uhrwaJXePe .nav-wrapper {
  text-align: center;
}
@media (max-width: 992px) {
  .cid-uhrwaJXePe .nav-wrapper {
    margin-bottom: 20px;
    text-align: left;
  }
}
.cid-uhrwaJXePe .nav-wrapper .mbr-section-subtitle {
  margin-bottom: 10px;
  text-align: center;
}
@media (max-width: 992px) {
  .cid-uhrwaJXePe .nav-wrapper .mbr-section-subtitle {
    text-align: left;
  }
}
.cid-uhrwaJXePe .nav-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
  display: inline-block;
  text-align: left;
}
.cid-uhrwaJXePe .nav-wrapper .list .item-wrap {
  margin-bottom: 5px;
  cursor: pointer;
  position: relative;
  transition: all 0.3s ease-in-out;
}
.cid-uhrwaJXePe .nav-wrapper .list .item-wrap:hover,
.cid-uhrwaJXePe .nav-wrapper .list .item-wrap:hover {
  color: #00d0f3;
}
.cid-uhrwaJXePe .nav-wrapper .list .item-wrap:hover::before,
.cid-uhrwaJXePe .nav-wrapper .list .item-wrap:hover::before {
  width: 100%;
}
.cid-uhrwaJXePe .nav-wrapper .list .item-wrap::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  height: 1px;
  width: 0;
  background-color: #00d0f3;
  transition: all 0.3s ease-in-out;
}
@media (max-width: 992px) {
  .cid-uhrwaJXePe .contacts-wrapper {
    margin-bottom: 20px;
  }
}
.cid-uhrwaJXePe .contacts-wrapper .mbr-section-subtitle {
  margin-bottom: 10px;
}
.cid-uhrwaJXePe .contacts-wrapper .contacts-wrap .item-contact {
  margin-bottom: 15px;
}
.cid-uhrwaJXePe .contacts-wrapper .contacts-wrap .item-contact .item-wrap {
  display: inline-flex;
  align-items: center;
}
.cid-uhrwaJXePe .contacts-wrapper .contacts-wrap .item-contact .item-wrap .mbr-iconfont {
  font-size: 30px;
  color: #ffffff;
  display: inline-flex;
  margin-right: 20px;
}
.cid-uhrwaJXePe .contacts-wrapper .contacts-wrap .item-contact .item-wrap a {
  display: block;
}
.cid-uhrwaJXePe .contacts-wrapper .contacts-wrap .item-contact .item-wrap a:hover .mbr-contact,
.cid-uhrwaJXePe .contacts-wrapper .contacts-wrap .item-contact .item-wrap a:hover .mbr-contact {
  color: #00d0f3;
}
.cid-uhrwaJXePe .contacts-wrapper .contacts-wrap .item-contact .item-wrap a:hover .mbr-contact::before,
.cid-uhrwaJXePe .contacts-wrapper .contacts-wrap .item-contact .item-wrap a:hover .mbr-contact::before {
  width: 100%;
}
.cid-uhrwaJXePe .contacts-wrapper .contacts-wrap .item-contact .item-wrap a .mbr-contact {
  margin-bottom: 0;
  position: relative;
  transition: all 0.3s ease-in-out;
}
.cid-uhrwaJXePe .contacts-wrapper .contacts-wrap .item-contact .item-wrap a .mbr-contact::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  height: 1px;
  width: 0;
  background-color: #00d0f3;
  transition: all 0.3s ease-in-out;
}
@media (max-width: 992px) {
  .cid-uhrwaJXePe .desc-wrapper {
    margin-bottom: 20px;
  }
}
.cid-uhrwaJXePe .desc-wrapper .mbr-section-subtitle {
  margin-bottom: 10px;
}
.cid-uhrwaJXePe .desc-wrapper .mbr-desc {
  margin-bottom: 5px;
}
.cid-uhrwaJXePe .desc-wrapper .social-wrapper {
  margin-top: 10px;
}
.cid-uhrwaJXePe .desc-wrapper .social-wrapper .social-wrap {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
}
.cid-uhrwaJXePe .desc-wrapper .social-wrapper .social-wrap .soc-item {
  margin-left: 32px;
}
@media (max-width: 992px) {
  .cid-uhrwaJXePe .desc-wrapper .social-wrapper .social-wrap .soc-item {
    margin-left: 16px;
  }
  .cid-uhrwaJXePe .desc-wrapper .social-wrapper .social-wrap .soc-item:first-child {
    margin-left: 0;
  }
}
.cid-uhrwaJXePe .desc-wrapper .social-wrapper .social-wrap .soc-item:first-child {
  margin-left: 0;
}
.cid-uhrwaJXePe .desc-wrapper .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-uhrwaJXePe .desc-wrapper .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-uhrwaJXePe .desc-wrapper .social-wrapper .social-wrap .soc-item a:focus .mbr-iconfont {
  color: #00d0f3;
}
.cid-uhrwaJXePe .desc-wrapper .social-wrapper .social-wrap .soc-item a .mbr-iconfont {
  font-size: 36px;
  color: #ffffff;
  transition: all 0.3s ease-in-out;
}
.cid-uhrwaJXePe .mbr-copy {
  margin-bottom: 0;
  padding: 25px 0;
  color: #ffffff;
  text-align: center;
}
.cid-uhrwaJXePe .mbr-section-title {
  color: #00d0f3;
}
.cid-uhrwaJXePe .mbr-text {
  color: #ffffff;
}
.cid-uhrwaJXePe .mbr-section-subtitle {
  color: #ffffff;
  text-align: center;
}
.cid-uhrwaJXePe .list {
  color: #ffffff;
}
.cid-uhrwaJXePe .mbr-contact {
  color: #ffffff;
}
.cid-uhrwaJXePe .mbr-desc {
  color: #ffffff;
}
.cid-uhrDIxKnFk {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uhrDIxKnFk .mbr-iconfont {
  transition: all 0.3s;
  display: block;
}
@keyframes icons {
  from {
    transform: translateY(-100%);
  }
  to {
    transform: translateY(0px);
  }
}
.cid-uhrDIxKnFk .iconfont-wrapper {
  overflow: hidden;
  color: #000000 !important;
  font-size: 1.2rem;
  padding: 0;
  margin: 0 0.2rem;
  display: block;
  position: relative;
}
.cid-uhrDIxKnFk .iconfont-wrapper:hover .mbr-iconfont {
  animation: icons;
  animation-duration: 0.3s;
}
.cid-uhrDIxKnFk .iconfont-wrapper:hover:before {
  height: 100%;
}
.cid-uhrDIxKnFk .iconfont-wrapper:before {
  position: absolute;
  content: '';
  bottom: 0;
  left: 0;
  transition: all 0.3s;
  width: 100%;
  height: 0%;
  background: #e5524e;
  z-index: -1;
}
.cid-uhrDIxKnFk nav.navbar {
  position: fixed;
}
.cid-uhrDIxKnFk .navbar-caption-wrap {
  z-index: 10;
  transition: all 0.3s;
}
.cid-uhrDIxKnFk .nav-item {
  border-left: 1px solid #efefef;
  border-right: 1px solid #efefef;
  margin-right: -1px;
}
@media (max-width: 992px) {
  .cid-uhrDIxKnFk .nav-item {
    border: 0;
  }
}
.cid-uhrDIxKnFk .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media (max-width: 992px) {
  .cid-uhrDIxKnFk .icons-menu {
    margin-bottom: 1rem;
  }
}
.cid-uhrDIxKnFk .title-wrap {
  cursor: pointer;
  border: 2px solid currentColor;
  padding: 6px 12px 3px 12px;
  position: relative;
}
.cid-uhrDIxKnFk .title-wrap:before {
  position: absolute;
  content: '';
  bottom: 0;
  left: 0;
  transition: all 0.3s;
  width: 100%;
  height: 0%;
  background: currentColor;
  z-index: -1;
}
.cid-uhrDIxKnFk .title-wrap:hover span {
  color: white;
}
.cid-uhrDIxKnFk .title-wrap:hover:before {
  height: 100%;
}
.cid-uhrDIxKnFk .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-uhrDIxKnFk .dropdown-menu {
  padding: 0;
  border-top: 4px solid #e5524e;
}
.cid-uhrDIxKnFk .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uhrDIxKnFk .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uhrDIxKnFk .nav-dropdown .link {
  padding: 0 0.3rem !important;
  margin: 1.4rem 2rem !important;
}
@media (max-width: 992px) {
  .cid-uhrDIxKnFk .nav-dropdown .link {
    margin: 0.5rem 1rem !important;
  }
}
.cid-uhrDIxKnFk .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uhrDIxKnFk .nav-link {
  position: relative;
}
.cid-uhrDIxKnFk .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-uhrDIxKnFk .container {
    flex-wrap: nowrap;
  }
}
.cid-uhrDIxKnFk .dropdown-menu,
.cid-uhrDIxKnFk .navbar.opened {
  background: #ffffff !important;
}
.cid-uhrDIxKnFk .nav-item:focus,
.cid-uhrDIxKnFk .nav-link:focus {
  outline: none;
}
.cid-uhrDIxKnFk .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uhrDIxKnFk .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uhrDIxKnFk .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uhrDIxKnFk .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uhrDIxKnFk .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uhrDIxKnFk .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uhrDIxKnFk .navbar {
  min-height: 70px;
  transition: all 0.3s;
  background: #ffffff;
}
.cid-uhrDIxKnFk .navbar.opened {
  transition: all 0.3s;
}
.cid-uhrDIxKnFk .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uhrDIxKnFk .navbar .navbar-logo img {
  width: auto;
}
.cid-uhrDIxKnFk .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uhrDIxKnFk .navbar.collapsed {
  justify-content: center;
}
.cid-uhrDIxKnFk .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uhrDIxKnFk .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uhrDIxKnFk .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 6.2rem);
  }
}
.cid-uhrDIxKnFk .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uhrDIxKnFk .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uhrDIxKnFk .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-uhrDIxKnFk .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uhrDIxKnFk .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uhrDIxKnFk .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uhrDIxKnFk .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uhrDIxKnFk .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uhrDIxKnFk .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uhrDIxKnFk .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uhrDIxKnFk .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-uhrDIxKnFk .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uhrDIxKnFk .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uhrDIxKnFk .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uhrDIxKnFk .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uhrDIxKnFk .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uhrDIxKnFk .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uhrDIxKnFk .navbar.navbar-short {
  min-height: 60px;
}
.cid-uhrDIxKnFk .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uhrDIxKnFk .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uhrDIxKnFk .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uhrDIxKnFk .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uhrDIxKnFk .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uhrDIxKnFk .dropdown-item.active,
.cid-uhrDIxKnFk .dropdown-item:active {
  background-color: transparent;
}
.cid-uhrDIxKnFk .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uhrDIxKnFk .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uhrDIxKnFk .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uhrDIxKnFk .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-uhrDIxKnFk .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uhrDIxKnFk .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uhrDIxKnFk ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uhrDIxKnFk .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uhrDIxKnFk button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uhrDIxKnFk button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uhrDIxKnFk button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uhrDIxKnFk button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uhrDIxKnFk button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uhrDIxKnFk button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uhrDIxKnFk nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uhrDIxKnFk nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uhrDIxKnFk nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uhrDIxKnFk nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uhrDIxKnFk .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uhrDIxKnFk a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uhrDIxKnFk .navbar {
    height: 70px;
  }
  .cid-uhrDIxKnFk .navbar.opened {
    height: auto;
  }
  .cid-uhrDIxKnFk .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uhrDIxKnFk .navbar-caption-wrap,
.cid-uhrDIxKnFk .title-wrap {
  color: #272727;
}
.cid-uhrDIzfvmj {
  display: flex;
  padding-top: 15rem;
  padding-bottom: 9rem;
  background-image: url("../../../assets/images/13-1067x800.jpg");
}
.cid-uhrDIzfvmj .mbr-overlay {
  background-color: #000000;
  opacity: 0.7;
}
.cid-uhrDIzfvmj .mbr-fallback-image.disabled {
  display: none;
}
.cid-uhrDIzfvmj .line {
  width: 100%;
  height: 1px;
  background: currentColor;
  margin-bottom: 2rem;
}
.cid-uhrDIzfvmj .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uhrDIzfvmj p {
  max-width: 600px;
  margin-right: 0;
  margin-left: auto;
}
@media (min-width: 768px) {
  .cid-uhrDIzfvmj {
    align-items: center;
  }
  .cid-uhrDIzfvmj .row {
    justify-content: center;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-uhrDIzfvmj .content-wrap {
    min-width: 50%;
  }
}
@media (max-width: 767px) {
  .cid-uhrDIzfvmj {
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-uhrDIzfvmj .mbr-row {
    -webkit-justify-content: center;
    justify-content: center;
  }
  .cid-uhrDIzfvmj .content-wrap {
    width: 100%;
  }
}
.cid-uhrDIzfvmj .mbr-section-subtitle,
.cid-uhrDIzfvmj .line {
  color: #ffffff;
  text-align: center;
}
.cid-uhrDIzfvmj .mbr-text,
.cid-uhrDIzfvmj .mbr-section-btn {
  text-align: right;
}
.cid-uhrDIzfvmj .mbr-section-title {
  text-align: center;
}
.cid-uhrDIAfnAQ {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #c1c1c1;
}
.cid-uhrDIAfnAQ .mbr-fallback-image.disabled {
  display: none;
}
.cid-uhrDIAfnAQ .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-uhrDIAfnAQ .container {
    padding: 0 15px;
  }
}
.cid-uhrDIAfnAQ .row {
  justify-content: center;
}
.cid-uhrDIAfnAQ .title-wrapper .mbr-section-title {
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .cid-uhrDIAfnAQ .title-wrapper .mbr-section-title {
    margin-bottom: 40px;
  }
}
.cid-uhrDIAfnAQ .subtitle-wrapper {
  padding-right: 28px;
}
@media (max-width: 992px) {
  .cid-uhrDIAfnAQ .subtitle-wrapper {
    padding: 0;
  }
}
.cid-uhrDIAfnAQ .subtitle-wrapper .mbr-section-subtitle {
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-uhrDIAfnAQ .subtitle-wrapper .mbr-section-subtitle {
    margin-bottom: 20px;
  }
}
.cid-uhrDIAfnAQ .lists-wrapper .list {
  margin-bottom: 0;
  list-style-type: none;
  padding-left: 0;
  padding-left: 50px;
}
@media (max-width: 992px) {
  .cid-uhrDIAfnAQ .lists-wrapper .list {
    padding-left: 36px;
  }
}
.cid-uhrDIAfnAQ .lists-wrapper .list .item-wrap {
  margin-bottom: 20px;
  position: relative;
}
.cid-uhrDIAfnAQ .lists-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-uhrDIAfnAQ .lists-wrapper .list .item-wrap::before {
  content: '✓';
  position: absolute;
  top: 5px;
  margin-left: -50px;
  width: 22px;
  height: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: #34156b;
  color: #ffffff;
  font-size: 16px;
}
@media (max-width: 992px) {
  .cid-uhrDIAfnAQ .lists-wrapper .list .item-wrap::before {
    margin-left: -36px;
  }
}
.cid-uhrDIAfnAQ .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-uhrDIAfnAQ .mbr-section-subtitle {
  color: #ffffff;
  text-align: center;
}
.cid-uhrDIAfnAQ .list {
  color: #ffffff;
}
.cid-uhrDIAfnAQ .list,
.cid-uhrDIAfnAQ .item-wrap {
  color: #000000;
}
.cid-uhrDIAQbRm {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-uhrDIAQbRm .mbr-overlay {
  background: linear-gradient(90deg, #efefef, #1ec5bf);
}
.cid-uhrDIAQbRm h4,
.cid-uhrDIAQbRm h5 {
  text-align: center;
}
.cid-uhrDIAQbRm p {
  text-align: center;
}
.cid-uhrDIAQbRm .card-box {
  padding: 1.5rem;
  background-color: rgba(255, 255, 255, 0.2);
  text-align: center;
}
.cid-uhrDIAQbRm .card-img {
  font-size: 3rem;
}
.cid-uhrDIAQbRm .date span {
  display: inline-block;
  background-color: #f27d7a;
  padding: 0.5rem 1rem;
  white-space: nowrap;
  text-overflow: ellipsis;
  max-width: 90%;
  overflow: hidden;
}
.cid-uhrDIAQbRm .mbr-fallback-image.disabled {
  display: none;
}
.cid-uhrDIAQbRm .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uhrDIAQbRm .mbr-text {
  color: #000000;
}
.cid-uhrDIBNnaZ {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #c1c1c1;
}
.cid-uhrDICtdCb {
  background-image: url("../../../assets/images/14-1600x1600.jpg");
}
.cid-uhrDICtdCb .text-content {
  padding-top: 90px;
  padding-bottom: 90px;
}
.cid-uhrDICtdCb .text-content .btn-bgr {
  z-index: 0;
}
.cid-uhrDICtdCb .mbr-overlay {
  background: linear-gradient(90deg, #d6173f, #4284df);
}
.cid-uhrDICtdCb h3 {
  color: #000000;
  font-weight: 300;
}
.cid-uhrDICtdCb p {
  color: #464646;
}
.cid-uhrDICtdCb h2 {
  color: #000000;
}
.cid-uhrDICtdCb .media-container-row {
  padding-left: 3rem;
  padding-right: 3rem;
}
@media (max-width: 767px) {
  .cid-uhrDICtdCb .media-container-row {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
}
.cid-uhrDICtdCb .text-content {
  padding-left: 1rem;
  padding-right: 1rem;
  width: 50%;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-uhrDICtdCb .text-content {
    width: 80%;
  }
}
@media (max-width: 599px) {
  .cid-uhrDICtdCb .text-content {
    width: 100%;
  }
}
.cid-uhrDICtdCb .media-content {
  padding-right: 1.5rem;
  padding-left: 0;
}
.cid-uhrDICtdCb .mbr-section-btn {
  margin-left: -0.8rem;
}
@media (max-width: 767px) {
  .cid-uhrDICtdCb .mbr-text {
    text-align: center;
  }
}
.cid-uhrDICtdCb .mbr-fallback-image.disabled {
  display: none;
}
.cid-uhrDICtdCb .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uhrDICtdCb P {
  color: #000000;
}
.cid-uhrDIDdP8c {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #c1c1c1;
}
.cid-uhrDIDdP8c .mbr-fallback-image.disabled {
  display: none;
}
.cid-uhrDIDdP8c .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uhrDIDdP8c .container-fluid {
  padding: 0 50px;
}
@media (max-width: 992px) {
  .cid-uhrDIDdP8c .container-fluid {
    padding: 0 30px;
  }
}
@media (max-width: 992px) {
  .cid-uhrDIDdP8c .container {
    padding: 0 30px;
  }
}
.cid-uhrDIDdP8c .title-wrapper .mbr-section-title {
  margin-bottom: 70px;
}
@media (max-width: 992px) {
  .cid-uhrDIDdP8c .title-wrapper .mbr-section-title {
    margin-bottom: 30px;
  }
}
.cid-uhrDIDdP8c .card-wrapper {
  display: flex;
  justify-content: space-between;
  padding: 70px 70px 70px 230px;
  background-color: #ffffff;
  border-radius: 16em 3em;
  padding: 70px 230px 70px 70px;
  border-radius: 3em 16em;
}
@media (max-width: 992px) {
  .cid-uhrDIDdP8c .card-wrapper {
    border-radius: 0 3em 0 3em;
    padding: 30px 20px;
  }
}
@media (max-width: 992px) {
  .cid-uhrDIDdP8c .card-wrapper {
    border-radius: 3em 0 3em 0;
    padding: 30px 20px;
    display: block;
  }
}
.cid-uhrDIDdP8c .card-wrapper .mbr-number {
  margin: 0 0 0 50px;
  width: 100%;
  white-space: nowrap;
  margin: 0 50px 0 0;
}
@media (max-width: 992px) {
  .cid-uhrDIDdP8c .card-wrapper .mbr-number {
    margin: 0 0 16px 0;
  }
}
@media (max-width: 992px) {
  .cid-uhrDIDdP8c .card-wrapper .mbr-number {
    margin: 0 0 16px 0;
  }
}
.cid-uhrDIDdP8c .card-wrapper .content-wrap .mbr-card-title {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uhrDIDdP8c .card-wrapper .content-wrap .mbr-card-title {
    margin-bottom: 20px;
  }
}
.cid-uhrDIDdP8c .card-wrapper .content-wrap .mbr-text {
  margin-bottom: 0;
}
.cid-uhrDIDdP8c .mbr-section-title {
  color: #000000;
  text-align: center;
}
.cid-uhrDIDdP8c .mbr-card-title {
  color: #2b2b2b;
  text-align: center;
}
.cid-uhrDIDdP8c .mbr-text {
  color: #000000;
}
.cid-uhrDIDdP8c .mbr-number {
  color: #FE5115;
}
.cid-uhrDIDQvSz {
  padding-top: 80px;
  padding-bottom: 60px;
  background-color: #ffffff;
  background: linear-gradient(90deg, #ffffff, #ffffff);
}
.cid-uhrDIDQvSz .media-content .btn-bgr {
  z-index: 0;
}
.cid-uhrDIDQvSz .mbr-overlay {
  background: linear-gradient(90deg, #21b968, #1ec5bf);
}
.cid-uhrDIDQvSz h3 {
  color: #000000;
  font-weight: 300;
}
.cid-uhrDIDQvSz p {
  color: #464646;
}
.cid-uhrDIDQvSz h2 {
  color: #000000;
}
.cid-uhrDIDQvSz .media-content {
  padding-right: 1.5rem;
  padding-left: 0;
}
.cid-uhrDIDQvSz .mbr-section-btn {
  margin-left: -0.8rem;
}
.cid-uhrDIDQvSz .mbr-figure {
  padding-right: 1rem;
}
@media (min-width: 500px) {
  .cid-uhrDIDQvSz .mbr-figure {
    padding-left: 2rem;
  }
}
@media (max-width: 499px) {
  .cid-uhrDIDQvSz .mbr-figure {
    padding-top: 1rem;
    padding-left: 2rem;
    padding-right: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uhrDIDQvSz .mbr-figure {
    padding-left: 0;
    padding-right: 0;
  }
}
@media (max-width: 767px) {
  .cid-uhrDIDQvSz .mbr-text {
    text-align: center;
  }
}
.cid-uhrDIDQvSz .mbr-fallback-image.disabled {
  display: none;
}
.cid-uhrDIDQvSz .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uhrDIDQvSz .mbr-section-title,
.cid-uhrDIDQvSz .mbr-section-btn {
  color: #000000;
  text-align: center;
}
.cid-uhrDIDQvSz .mbr-section-subtitle {
  color: #000000;
  text-align: center;
}
.cid-uhrDIEPtdo {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #c1c1c1;
}
.cid-uhrDIEPtdo h4 {
  font-weight: 600;
  color: #e2e2e2;
}
.cid-uhrDIEPtdo .mbr-section-subtitle {
  color: #767676;
}
.cid-uhrDIEPtdo .article {
  padding-right: 2rem;
  padding-left: 2rem;
}
.cid-uhrDIGtXNP {
  background-color: #ffffff;
}
.cid-uhrDIGtXNP .media-content .btn-bgr {
  z-index: 0;
}
.cid-uhrDIGtXNP .mbr-section-text {
  word-break: break-word;
}
.cid-uhrDIGtXNP .mbr-overlay {
  background: linear-gradient(90deg, #21b968, #1ec5bf);
}
@media (min-width: 992px) {
  .cid-uhrDIGtXNP .mbr-figure {
    padding-left: 4rem;
    padding-right: 4rem;
    padding-left: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uhrDIGtXNP .mbr-figure {
    padding-top: 3rem;
  }
}
@media (max-width: 767px) {
  .cid-uhrDIGtXNP .mbr-text {
    text-align: center;
  }
}
.cid-uhrDIGtXNP .media-container-row {
  -webkit-flex-direction: row-reverse;
  -ms-flex-direction: row-reverse;
}
.cid-uhrDIGtXNP .mbr-fallback-image.disabled {
  display: none;
}
.cid-uhrDIGtXNP .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uhrDIGtXNP H1 {
  text-align: center;
  color: #000000;
}
.cid-uhrDII4qNP {
  display: flex;
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #c1c1c1;
}
@media (min-width: 768px) {
  .cid-uhrDII4qNP {
    align-items: center;
  }
  .cid-uhrDII4qNP .row {
    justify-content: center;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-uhrDII4qNP .content-wrap {
    min-width: 50%;
  }
}
@media (max-width: 767px) {
  .cid-uhrDII4qNP {
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-uhrDII4qNP .mbr-row {
    -webkit-justify-content: center;
    justify-content: center;
  }
  .cid-uhrDII4qNP .content-wrap {
    width: 100%;
  }
}
.cid-uhrDII4qNP .mbr-section-title {
  text-align: center;
  color: #000000;
}
.cid-uhrDII4qNP .mbr-text,
.cid-uhrDII4qNP .mbr-section-btn {
  text-align: center;
  color: #000000;
}
.cid-uhrDIJFVIQ {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uhrDIJFVIQ .mbr-fallback-image.disabled {
  display: none;
}
.cid-uhrDIJFVIQ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uhrDIJFVIQ .container-fluid {
  padding: 0 56px;
}
@media (max-width: 992px) {
  .cid-uhrDIJFVIQ .container-fluid {
    padding: 0 22px;
  }
}
@media (max-width: 992px) {
  .cid-uhrDIJFVIQ .container {
    padding: 0 22px;
  }
}
.cid-uhrDIJFVIQ .row {
  justify-content: space-between;
}
@media (max-width: 992px) {
  .cid-uhrDIJFVIQ .image-wrapper {
    margin-bottom: 32px;
  }
}
.cid-uhrDIJFVIQ .image-wrapper img {
  height: 415px;
  border-radius: 0 6rem 0 0 !important;
}
@media (max-width: 992px) {
  .cid-uhrDIJFVIQ .image-wrapper img {
    height: 350px;
  }
}
.cid-uhrDIJFVIQ .mbr-section-title {
  margin-bottom: 16px;
  color: #000000;
  text-align: center;
}
.cid-uhrDIJFVIQ .panel-group {
  border-bottom: 1px solid #f29c9a;
}
.cid-uhrDIJFVIQ .panel-group .card {
  border-top: 1px solid #f29c9a;
  border-radius: 0 !important;
  transition: all 0.3s ease-in-out;
}
.cid-uhrDIJFVIQ .panel-group .card:hover,
.cid-uhrDIJFVIQ .panel-group .card:focus {
  border-top: 1px solid #000000;
}
.cid-uhrDIJFVIQ .panel-group .card .card-header {
  background-color: transparent;
  border: none;
  border-radius: 0;
  padding: 0;
}
.cid-uhrDIJFVIQ .panel-group .card .card-header .panel-title {
  display: inline-flex;
  padding: 40px 0;
  justify-content: space-between;
  width: 100%;
}
.cid-uhrDIJFVIQ .panel-group .card .card-header .panel-title .panel-title-edit {
  margin-bottom: 0;
}
.cid-uhrDIJFVIQ .panel-group .card .card-header .panel-title .mbr-iconfont {
  font-size: 25px;
  width: 25px;
  height: 25px;
  margin-bottom: 0;
  transition: all 0.3s ease-in-out;
  color: #000000;
  margin-left: 16px;
}
.cid-uhrDIJFVIQ .panel-group .card .card-header .panel-title:not(.collapsed) .mbr-iconfont {
  transform: rotate(45deg);
  color: #ff5753;
}
.cid-uhrDIJFVIQ .panel-group .card .panel-collapse .panel-body {
  padding: 16px 0 80px;
}
@media (max-width: 992px) {
  .cid-uhrDIJFVIQ .panel-group .card .panel-collapse .panel-body {
    padding: 16px 0 55px;
  }
}
.cid-uhrDIJFVIQ .panel-group .card .panel-collapse .panel-body .panel-text {
  margin-bottom: 0;
}
.cid-uhrDIJFVIQ .panel-title-edit {
  color: #000000;
}
.cid-uhrDIJFVIQ .panel-text {
  color: #8a8588;
}
.cid-uhrDIKWwod {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #c1c1c1;
}
.cid-uhrDIKWwod .mbr-fallback-image.disabled {
  display: none;
}
.cid-uhrDIKWwod .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-uhrDIKWwod .container {
    padding: 0 16px;
  }
}
.cid-uhrDIKWwod .row {
  position: relative;
  z-index: 1;
}
.cid-uhrDIKWwod .title-wrapper .mbr-section-title {
  margin-bottom: 56px;
}
@media (max-width: 992px) {
  .cid-uhrDIKWwod .title-wrapper .mbr-section-title {
    margin-bottom: 32px;
  }
}
.cid-uhrDIKWwod .title-wrapper .subtitle-wrapper .mbr-section-subtitle {
  display: inline-flex;
  margin-bottom: 56px;
  padding: 18px 24px;
  border-radius: 16px !important;
  box-shadow: 6px 8px 0 0 #000000;
  background-color: #c6f15c;
  transform: rotate(-4deg);
}
@media (max-width: 992px) {
  .cid-uhrDIKWwod .title-wrapper .subtitle-wrapper .mbr-section-subtitle {
    margin-bottom: 32px;
  }
}
.cid-uhrDIKWwod .title-wrapper .buttons-wrap {
  text-align: right;
}
@media (max-width: 992px) {
  .cid-uhrDIKWwod .title-wrapper .buttons-wrap {
    text-align: left;
  }
}
.cid-uhrDIKWwod .title-wrapper .buttons-wrap .mbr-section-btn {
  display: inline-flex;
  width: 40%;
  margin-bottom: 24px;
  justify-content: flex-end;
}
@media (max-width: 992px) {
  .cid-uhrDIKWwod .title-wrapper .buttons-wrap .mbr-section-btn {
    justify-content: flex-start;
  }
}
@media (max-width: 992px) {
  .cid-uhrDIKWwod .title-wrapper .buttons-wrap .mbr-section-btn {
    display: block;
    width: 100%;
  }
}
.cid-uhrDIKWwod .items-wrapper .item {
  margin-top: 64px;
  padding-top: 104px;
  position: relative;
}
.cid-uhrDIKWwod .items-wrapper .item:nth-child(2n)::before {
  background-color: #f0a2fd;
}
.cid-uhrDIKWwod .items-wrapper .item:nth-child(2n)::after {
  background-color: #f0a2fd;
}
.cid-uhrDIKWwod .items-wrapper .item:nth-child(2n) .item-wrapper {
  background-color: #f0a2fd;
}
.cid-uhrDIKWwod .items-wrapper .item:nth-child(3n)::before {
  background-color: #feb591;
}
.cid-uhrDIKWwod .items-wrapper .item:nth-child(3n)::after {
  background-color: #feb591;
}
.cid-uhrDIKWwod .items-wrapper .item:nth-child(3n) .item-wrapper {
  background-color: #feb591;
}
.cid-uhrDIKWwod .items-wrapper .item:nth-child(4n)::before {
  background-color: #c6f15c;
}
.cid-uhrDIKWwod .items-wrapper .item:nth-child(4n)::after {
  background-color: #c6f15c;
}
.cid-uhrDIKWwod .items-wrapper .item:nth-child(4n) .item-wrapper {
  background-color: #c6f15c;
}
@media (max-width: 992px) {
  .cid-uhrDIKWwod .items-wrapper .item {
    margin-top: 32px;
    padding-top: 0;
  }
}
.cid-uhrDIKWwod .items-wrapper .item:first-child {
  margin-top: -96px;
  margin-top: 0;
}
@media (max-width: 992px) {
  .cid-uhrDIKWwod .items-wrapper .item:first-child {
    margin-top: 0;
  }
}
.cid-uhrDIKWwod .items-wrapper .item::before {
  content: '';
  position: absolute;
  width: 50%;
  height: 140px;
  top: 0;
  right: 0;
  border-top-right-radius: 24px;
  background-color: #feffe3;
  right: auto;
  left: 0;
  border-top-right-radius: 0;
  border-top-left-radius: 24px;
}
@media (max-width: 992px) {
  .cid-uhrDIKWwod .items-wrapper .item::before {
    display: none;
  }
}
.cid-uhrDIKWwod .items-wrapper .item::after {
  content: '';
  position: absolute;
  top: 0;
  right: 15%;
  width: 43%;
  height: 110px;
  transform: skew(-45deg);
  background-color: #feffe3;
  right: auto;
  left: 15%;
  transform: skew(45deg);
}
@media (max-width: 992px) {
  .cid-uhrDIKWwod .items-wrapper .item::after {
    display: none;
  }
}
.cid-uhrDIKWwod .items-wrapper .item .item-wrapper {
  display: flex;
  position: relative;
  border-radius: 24px !important;
  background-color: #feffe3;
  z-index: 1;
}
@media (max-width: 992px) {
  .cid-uhrDIKWwod .items-wrapper .item .item-wrapper {
    display: block;
  }
}
.cid-uhrDIKWwod .items-wrapper .item .item-wrapper .item-img {
  width: 50%;
  padding: 96px;
}
@media (max-width: 992px) {
  .cid-uhrDIKWwod .items-wrapper .item .item-wrapper .item-img {
    width: 100%;
    padding: 24px;
  }
}
.cid-uhrDIKWwod .items-wrapper .item .item-wrapper .item-img img {
  height: 300px;
  box-shadow: 6px 8px 0 0 #000000;
  object-fit: cover;
}
.cid-uhrDIKWwod .items-wrapper .item .item-wrapper .item-content {
  width: 50%;
  padding-right: 96px;
  padding-bottom: 96px;
  padding-right: 0;
  padding-left: 96px;
}
@media (max-width: 992px) {
  .cid-uhrDIKWwod .items-wrapper .item .item-wrapper .item-content {
    padding-left: 0;
  }
}
@media (max-width: 992px) {
  .cid-uhrDIKWwod .items-wrapper .item .item-wrapper .item-content {
    width: 100%;
    padding: 24px;
  }
}
.cid-uhrDIKWwod .items-wrapper .item .item-wrapper .item-content .item-title {
  margin-bottom: 36px;
}
@media (max-width: 992px) {
  .cid-uhrDIKWwod .items-wrapper .item .item-wrapper .item-content .item-title {
    text-align: left;
    margin-bottom: 24px;
  }
}
.cid-uhrDIKWwod .items-wrapper .item .item-wrapper .item-content .item-number {
  margin-bottom: 36px;
}
@media (max-width: 992px) {
  .cid-uhrDIKWwod .items-wrapper .item .item-wrapper .item-content .item-number {
    margin-bottom: 24px;
  }
}
.cid-uhrDIKWwod .items-wrapper .item .item-wrapper .item-content .item-text {
  margin-bottom: 0;
}
.cid-uhrDIKWwod .mbr-section-title {
  color: #000000;
}
.cid-uhrDIKWwod .mbr-section-subtitle {
  color: #000000;
}
.cid-uhrDIKWwod .item-title {
  color: #000000;
  text-align: left;
}
.cid-uhrDIKWwod .item-number {
  color: #000000;
}
.cid-uhrDIKWwod .item-text {
  color: #000000;
}
.cid-uhrDILO4GJ {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uhrDILO4GJ .mbr-fallback-image.disabled {
  display: none;
}
.cid-uhrDILO4GJ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uhrDILO4GJ .container-fluid {
  padding: 0 50px;
}
@media (max-width: 992px) {
  .cid-uhrDILO4GJ .container-fluid {
    padding: 0 30px;
  }
}
@media (max-width: 992px) {
  .cid-uhrDILO4GJ .container {
    padding: 0 30px;
  }
}
.cid-uhrDILO4GJ .title-wrapper .mbr-section-title {
  margin-bottom: 70px;
}
@media (max-width: 992px) {
  .cid-uhrDILO4GJ .title-wrapper .mbr-section-title {
    margin-bottom: 30px;
  }
}
.cid-uhrDILO4GJ .card-wrapper {
  display: flex;
  justify-content: space-between;
  padding: 70px 70px 70px 230px;
  background-color: #c1c1c1;
  border-radius: 16em 3em;
  padding: 70px 230px 70px 70px;
  border-radius: 3em 16em;
}
@media (max-width: 992px) {
  .cid-uhrDILO4GJ .card-wrapper {
    border-radius: 0 3em 0 3em;
    padding: 30px 20px;
  }
}
@media (max-width: 992px) {
  .cid-uhrDILO4GJ .card-wrapper {
    border-radius: 3em 0 3em 0;
    padding: 30px 20px;
    display: block;
  }
}
.cid-uhrDILO4GJ .card-wrapper .mbr-number {
  margin: 0 0 0 50px;
  width: 100%;
  white-space: nowrap;
  margin: 0 50px 0 0;
}
@media (max-width: 992px) {
  .cid-uhrDILO4GJ .card-wrapper .mbr-number {
    margin: 0 0 16px 0;
  }
}
@media (max-width: 992px) {
  .cid-uhrDILO4GJ .card-wrapper .mbr-number {
    margin: 0 0 16px 0;
  }
}
.cid-uhrDILO4GJ .card-wrapper .content-wrap .mbr-card-title {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uhrDILO4GJ .card-wrapper .content-wrap .mbr-card-title {
    margin-bottom: 20px;
  }
}
.cid-uhrDILO4GJ .card-wrapper .content-wrap .mbr-text {
  margin-bottom: 0;
}
.cid-uhrDILO4GJ .mbr-section-title {
  color: #000000;
  text-align: center;
}
.cid-uhrDILO4GJ .mbr-card-title {
  color: #2b2b2b;
  text-align: center;
}
.cid-uhrDILO4GJ .mbr-text {
  color: #000000;
}
.cid-uhrDILO4GJ .mbr-number {
  color: #FE5115;
}
.cid-uhrDIMBOVz {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #c1c1c1;
}
.cid-uhrDIMBOVz .panel-group {
  border: none;
}
.cid-uhrDIMBOVz .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-uhrDIMBOVz .panel-title.collapsed .icon-card::after {
  transform: rotate(90deg);
}
.cid-uhrDIMBOVz .panel-title.collapsed .icon-card::before {
  transform: rotate(180deg);
}
.cid-uhrDIMBOVz .panel-title:hover .icon-card::after {
  transform: rotate(0deg);
}
.cid-uhrDIMBOVz .panel-title:hover .icon-card::before {
  transform: rotate(0deg);
}
.cid-uhrDIMBOVz .card-header {
  margin: 0 !important;
  padding: 0.8125rem 0 0.3125rem 0;
  border-bottom: 2px solid #000000;
}
.cid-uhrDIMBOVz .panel-body {
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
}
.cid-uhrDIMBOVz .card {
  margin-bottom: 0.75rem;
}
.cid-uhrDIMBOVz .card .card-header {
  background-color: transparent;
}
.cid-uhrDIMBOVz .panel-title-edit {
  width: 100%;
  color: #000000;
}
.cid-uhrDIMBOVz .image-wrapper,
.cid-uhrDIMBOVz .mbr-img-wrap {
  height: 100%;
}
.cid-uhrDIMBOVz .icon-card {
  width: 17px;
  height: 17px;
  position: relative;
}
.cid-uhrDIMBOVz .icon-card::before,
.cid-uhrDIMBOVz .icon-card::after {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 100%;
  height: 2px;
  background: #e5524e;
  transition: 0.3s;
}
.cid-uhrDIMBOVz .panel-text {
  color: #0c57bf;
}
.cid-uhrIW5wqhs {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uhrIW5wqhs .mbr-fallback-image.disabled {
  display: none;
}
.cid-uhrIW5wqhs .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-uhrIW5wqhs .container {
    padding: 0 20px;
  }
}
.cid-uhrIW5wqhs .row {
  margin: 0;
}
.cid-uhrIW5wqhs .title-wrapper .mbr-section-title {
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .cid-uhrIW5wqhs .title-wrapper .mbr-section-title {
    margin-bottom: 32px;
  }
}
.cid-uhrIW5wqhs .video-block .video-wrapper .app-video-wrapper::before {
  color: #f5fd7b;
  text-shadow: none;
}
.cid-uhrIW5wqhs .video-block .video-wrapper .app-video-wrapper img {
  object-fit: cover;
  height: 500px;
  border-radius: 50px;
}
@media (max-width: 768px) {
  .cid-uhrIW5wqhs .video-block .video-wrapper .app-video-wrapper img {
    height: 300px;
  }
}
.cid-uhrIW5wqhs .video-block .video-wrapper iframe {
  border-radius: 50px;
}
.cid-uhrIW5wqhs .mbr-section-title {
  color: #000000;
  text-align: center;
}
.cid-uhrDINEkin {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background: #000000;
}
.cid-uhrDINEkin .mbr-fallback-image.disabled {
  display: none;
}
.cid-uhrDINEkin .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uhrDINEkin .google-map {
  height: 35rem;
  position: relative;
  border-radius: 2rem;
}
.cid-uhrDINEkin .google-map iframe {
  height: 100%;
  width: 100%;
  border-radius: 2rem;
}
.cid-uhrDINEkin .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-uhrDINEkin .google-map[data-state] {
  background: #e9e5dc;
}
.cid-uhrDINEkin .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-uhrDINEkin .mbr-section-title {
  color: #2c1616;
  text-align: center;
}
.cid-uhrDINEkin .mbr-section-subtitle {
  color: #ffffff;
  text-align: left;
}
.cid-uhrDIOz0LE {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #c1c1c1;
  overflow: hidden;
}
.cid-uhrDIOz0LE::before {
  content: '';
  position: absolute;
  bottom: 0;
  width: 200vh;
  height: 85%;
  background-image: linear-gradient(transparent, #000000 50%);
  z-index: 1;
}
.cid-uhrDIOz0LE .mbr-fallback-image.disabled {
  display: none;
}
.cid-uhrDIOz0LE .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uhrDIOz0LE .container-fluid {
  padding: 0 80px;
}
@media (max-width: 1200px) {
  .cid-uhrDIOz0LE .container-fluid {
    padding: 0 40px;
  }
}
@media (max-width: 992px) {
  .cid-uhrDIOz0LE .container-fluid {
    padding: 0 22px;
  }
}
@media (max-width: 992px) {
  .cid-uhrDIOz0LE .container {
    padding: 0 22px;
  }
}
.cid-uhrDIOz0LE .row {
  position: relative;
  z-index: 1;
}
.cid-uhrDIOz0LE .row-main {
  position: relative;
  justify-content: center;
  padding: 40px 0;
}
.cid-uhrDIOz0LE .row-main::before {
  content: '';
  position: absolute;
  top: 0;
  width: 200vh;
  height: 1px;
  background-color: #b0b0b0;
}
.cid-uhrDIOz0LE .row-main::after {
  content: '';
  position: absolute;
  bottom: 0;
  width: 200vh;
  height: 1px;
  background-color: #b0b0b0;
}
.cid-uhrDIOz0LE .row-main .card {
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-uhrDIOz0LE .title-wrapper {
    margin-bottom: 20px;
  }
}
.cid-uhrDIOz0LE .title-wrapper .mbr-section-title {
  margin-bottom: 10px;
}
.cid-uhrDIOz0LE .title-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-uhrDIOz0LE .nav-wrapper {
  text-align: center;
}
@media (max-width: 992px) {
  .cid-uhrDIOz0LE .nav-wrapper {
    margin-bottom: 20px;
    text-align: left;
  }
}
.cid-uhrDIOz0LE .nav-wrapper .mbr-section-subtitle {
  margin-bottom: 10px;
  text-align: center;
}
@media (max-width: 992px) {
  .cid-uhrDIOz0LE .nav-wrapper .mbr-section-subtitle {
    text-align: left;
  }
}
.cid-uhrDIOz0LE .nav-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
  display: inline-block;
  text-align: left;
}
.cid-uhrDIOz0LE .nav-wrapper .list .item-wrap {
  margin-bottom: 5px;
  cursor: pointer;
  position: relative;
  transition: all 0.3s ease-in-out;
}
.cid-uhrDIOz0LE .nav-wrapper .list .item-wrap:hover,
.cid-uhrDIOz0LE .nav-wrapper .list .item-wrap:hover {
  color: #00d0f3;
}
.cid-uhrDIOz0LE .nav-wrapper .list .item-wrap:hover::before,
.cid-uhrDIOz0LE .nav-wrapper .list .item-wrap:hover::before {
  width: 100%;
}
.cid-uhrDIOz0LE .nav-wrapper .list .item-wrap::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  height: 1px;
  width: 0;
  background-color: #00d0f3;
  transition: all 0.3s ease-in-out;
}
@media (max-width: 992px) {
  .cid-uhrDIOz0LE .contacts-wrapper {
    margin-bottom: 20px;
  }
}
.cid-uhrDIOz0LE .contacts-wrapper .mbr-section-subtitle {
  margin-bottom: 10px;
}
.cid-uhrDIOz0LE .contacts-wrapper .contacts-wrap .item-contact {
  margin-bottom: 15px;
}
.cid-uhrDIOz0LE .contacts-wrapper .contacts-wrap .item-contact .item-wrap {
  display: inline-flex;
  align-items: center;
}
.cid-uhrDIOz0LE .contacts-wrapper .contacts-wrap .item-contact .item-wrap .mbr-iconfont {
  font-size: 30px;
  color: #ffffff;
  display: inline-flex;
  margin-right: 20px;
}
.cid-uhrDIOz0LE .contacts-wrapper .contacts-wrap .item-contact .item-wrap a {
  display: block;
}
.cid-uhrDIOz0LE .contacts-wrapper .contacts-wrap .item-contact .item-wrap a:hover .mbr-contact,
.cid-uhrDIOz0LE .contacts-wrapper .contacts-wrap .item-contact .item-wrap a:hover .mbr-contact {
  color: #00d0f3;
}
.cid-uhrDIOz0LE .contacts-wrapper .contacts-wrap .item-contact .item-wrap a:hover .mbr-contact::before,
.cid-uhrDIOz0LE .contacts-wrapper .contacts-wrap .item-contact .item-wrap a:hover .mbr-contact::before {
  width: 100%;
}
.cid-uhrDIOz0LE .contacts-wrapper .contacts-wrap .item-contact .item-wrap a .mbr-contact {
  margin-bottom: 0;
  position: relative;
  transition: all 0.3s ease-in-out;
}
.cid-uhrDIOz0LE .contacts-wrapper .contacts-wrap .item-contact .item-wrap a .mbr-contact::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  height: 1px;
  width: 0;
  background-color: #00d0f3;
  transition: all 0.3s ease-in-out;
}
@media (max-width: 992px) {
  .cid-uhrDIOz0LE .desc-wrapper {
    margin-bottom: 20px;
  }
}
.cid-uhrDIOz0LE .desc-wrapper .mbr-section-subtitle {
  margin-bottom: 10px;
}
.cid-uhrDIOz0LE .desc-wrapper .mbr-desc {
  margin-bottom: 5px;
}
.cid-uhrDIOz0LE .desc-wrapper .social-wrapper {
  margin-top: 10px;
}
.cid-uhrDIOz0LE .desc-wrapper .social-wrapper .social-wrap {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
}
.cid-uhrDIOz0LE .desc-wrapper .social-wrapper .social-wrap .soc-item {
  margin-left: 32px;
}
@media (max-width: 992px) {
  .cid-uhrDIOz0LE .desc-wrapper .social-wrapper .social-wrap .soc-item {
    margin-left: 16px;
  }
  .cid-uhrDIOz0LE .desc-wrapper .social-wrapper .social-wrap .soc-item:first-child {
    margin-left: 0;
  }
}
.cid-uhrDIOz0LE .desc-wrapper .social-wrapper .social-wrap .soc-item:first-child {
  margin-left: 0;
}
.cid-uhrDIOz0LE .desc-wrapper .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-uhrDIOz0LE .desc-wrapper .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-uhrDIOz0LE .desc-wrapper .social-wrapper .social-wrap .soc-item a:focus .mbr-iconfont {
  color: #00d0f3;
}
.cid-uhrDIOz0LE .desc-wrapper .social-wrapper .social-wrap .soc-item a .mbr-iconfont {
  font-size: 36px;
  color: #ffffff;
  transition: all 0.3s ease-in-out;
}
.cid-uhrDIOz0LE .mbr-copy {
  margin-bottom: 0;
  padding: 25px 0;
  color: #ffffff;
  text-align: center;
}
.cid-uhrDIOz0LE .mbr-section-title {
  color: #00d0f3;
}
.cid-uhrDIOz0LE .mbr-text {
  color: #ffffff;
}
.cid-uhrDIOz0LE .mbr-section-subtitle {
  color: #ffffff;
  text-align: center;
}
.cid-uhrDIOz0LE .list {
  color: #ffffff;
}
.cid-uhrDIOz0LE .mbr-contact {
  color: #ffffff;
}
.cid-uhrDIOz0LE .mbr-desc {
  color: #ffffff;
}
