body {
  font-family: Open Sans;
}
.display-1 {
  font-family: 'Open Sans', sans-serif;
  font-size: 3rem;
}
.display-1 > .mbr-iconfont {
  font-size: 4.8rem;
}
.display-2 {
  font-family: 'Open Sans', sans-serif;
  font-size: 2rem;
}
.display-2 > .mbr-iconfont {
  font-size: 3.2rem;
}
.display-4 {
  font-family: 'Open Sans', sans-serif;
  font-size: 1rem;
}
.display-4 > .mbr-iconfont {
  font-size: 1.6rem;
}
.display-5 {
  font-family: 'Open Sans', sans-serif;
  font-size: 1.5rem;
}
.display-5 > .mbr-iconfont {
  font-size: 2.4rem;
}
.display-7 {
  font-family: 'Open Sans', sans-serif;
  font-size: 1.2rem;
}
.display-7 > .mbr-iconfont {
  font-size: 1.92rem;
}
/* ---- Fluid typography for mobile devices ---- */
/* 1.4 - font scale ratio ( bootstrap == 1.42857 ) */
/* 100vw - current viewport width */
/* (48 - 20)  48 == 48rem == 768px, 20 == 20rem == 320px(minimal supported viewport) */
/* 0.65 - min scale variable, may vary */
@media (max-width: 768px) {
  .display-1 {
    font-size: 2.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-2 {
    font-size: 1.6rem;
    font-size: calc( 1.35rem + (2 - 1.35) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.35rem + (2 - 1.35) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 0.8rem;
    font-size: calc( 1rem + (1 - 1) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1rem + (1 - 1) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 1.2rem;
    font-size: calc( 1.175rem + (1.5 - 1.175) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.175rem + (1.5 - 1.175) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* Buttons */
.btn {
  padding: 10px 15px;
  border-radius: 0px;
}
.btn-sm {
  padding: 5px 10px;
  border-radius: 0px;
}
.btn-md {
  padding: 10px 15px;
  border-radius: 0px;
}
.btn-lg {
  padding: 20px 20px;
  border-radius: 0px;
}
.bg-primary {
  background-color: #ff4a52 !important;
}
.bg-success {
  background-color: #7242d6 !important;
}
.bg-info {
  background-color: #c99d66 !important;
}
.bg-warning {
  background-color: #d63d3d !important;
}
.bg-danger {
  background-color: #ececec !important;
}
.btn-primary,
.btn-primary:active,
.btn-primary.active {
  background-color: #ff4a52 !important;
  border-color: #ff4a52 !important;
  color: #ffffff !important;
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus {
  color: #ffffff !important;
  background-color: #fd000b !important;
  border-color: #fd000b !important;
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #fd000b !important;
  border-color: #fd000b !important;
}
.btn-secondary,
.btn-secondary:active,
.btn-secondary.active {
  background-color: #1ec6b6 !important;
  border-color: #1ec6b6 !important;
  color: #ffffff !important;
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus {
  color: #ffffff !important;
  background-color: #148479 !important;
  border-color: #148479 !important;
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #148479 !important;
  border-color: #148479 !important;
}
.btn-info,
.btn-info:active,
.btn-info.active {
  background-color: #c99d66 !important;
  border-color: #c99d66 !important;
  color: #ffffff !important;
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus {
  color: #ffffff !important;
  background-color: #a7773b !important;
  border-color: #a7773b !important;
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #a7773b !important;
  border-color: #a7773b !important;
}
.btn-success,
.btn-success:active,
.btn-success.active {
  background-color: #7242d6 !important;
  border-color: #7242d6 !important;
  color: #ffffff !important;
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus {
  color: #ffffff !important;
  background-color: #4f24a7 !important;
  border-color: #4f24a7 !important;
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #4f24a7 !important;
  border-color: #4f24a7 !important;
}
.btn-warning,
.btn-warning:active,
.btn-warning.active {
  background-color: #d63d3d !important;
  border-color: #d63d3d !important;
  color: #ffffff !important;
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus {
  color: #ffffff !important;
  background-color: #a42323 !important;
  border-color: #a42323 !important;
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #ffffff !important;
  background-color: #a42323 !important;
  border-color: #a42323 !important;
}
.btn-danger,
.btn-danger:active,
.btn-danger.active {
  background-color: #ececec !important;
  border-color: #ececec !important;
  color: #6d6d6d !important;
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus {
  color: #6d6d6d !important;
  background-color: #c6c6c6 !important;
  border-color: #c6c6c6 !important;
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #6d6d6d !important;
  background-color: #c6c6c6 !important;
  border-color: #c6c6c6 !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: #d9d9d9 !important;
  border-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: #0d0d0d !important;
  border-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: #e3000a;
  color: #e3000a;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus {
  color: #ffffff;
  background-color: #ff4a52;
  border-color: #ff4a52;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #ff4a52 !important;
  border-color: #ff4a52 !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active,
.btn-secondary-outline.active {
  background: none;
  border-color: #116d65;
  color: #116d65;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus {
  color: #ffffff;
  background-color: #1ec6b6;
  border-color: #1ec6b6;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #1ec6b6 !important;
  border-color: #1ec6b6 !important;
}
.btn-info-outline,
.btn-info-outline:active,
.btn-info-outline.active {
  background: none;
  border-color: #956a34;
  color: #956a34;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus {
  color: #ffffff;
  background-color: #c99d66;
  border-color: #c99d66;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #c99d66 !important;
  border-color: #c99d66 !important;
}
.btn-success-outline,
.btn-success-outline:active,
.btn-success-outline.active {
  background: none;
  border-color: #452092;
  color: #452092;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus {
  color: #ffffff;
  background-color: #7242d6;
  border-color: #7242d6;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #ffffff !important;
  background-color: #7242d6 !important;
  border-color: #7242d6 !important;
}
.btn-warning-outline,
.btn-warning-outline:active,
.btn-warning-outline.active {
  background: none;
  border-color: #8f1e1e;
  color: #8f1e1e;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus {
  color: #ffffff;
  background-color: #d63d3d;
  border-color: #d63d3d;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #ffffff !important;
  background-color: #d63d3d !important;
  border-color: #d63d3d !important;
}
.btn-danger-outline,
.btn-danger-outline:active,
.btn-danger-outline.active {
  background: none;
  border-color: #b9b9b9;
  color: #b9b9b9;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus {
  color: #6d6d6d;
  background-color: #ececec;
  border-color: #ececec;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #6d6d6d !important;
  background-color: #ececec !important;
  border-color: #ececec !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;
  background-color: #333333;
  border-color: #333333;
}
.btn-black-outline.disabled,
.btn-black-outline:disabled {
  color: #ffffff !important;
  background-color: #333333 !important;
  border-color: #333333 !important;
}
.btn-white-outline,
.btn-white-outline:active,
.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;
  background-color: #ffffff;
  border-color: #ffffff;
}
.text-primary {
  color: #ff4a52 !important;
}
.text-secondary {
  color: #1ec6b6 !important;
}
.text-success {
  color: #7242d6 !important;
}
.text-info {
  color: #c99d66 !important;
}
.text-warning {
  color: #d63d3d !important;
}
.text-danger {
  color: #ececec !important;
}
.text-white {
  color: #ffffff !important;
}
.text-black {
  color: #000000 !important;
}
a.text-primary:hover,
a.text-primary:focus {
  color: #e3000a !important;
}
a.text-secondary:hover,
a.text-secondary:focus {
  color: #116d65 !important;
}
a.text-success:hover,
a.text-success:focus {
  color: #452092 !important;
}
a.text-info:hover,
a.text-info:focus {
  color: #956a34 !important;
}
a.text-warning:hover,
a.text-warning:focus {
  color: #8f1e1e !important;
}
a.text-danger:hover,
a.text-danger:focus {
  color: #b9b9b9 !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: #c99d66;
}
.alert-warning {
  background-color: #d63d3d;
}
.alert-danger {
  background-color: #ececec;
}
.mbr-section-btn a.btn:not(.btn-form) {
  border-radius: 100px;
}
.mbr-section-btn a.btn:not(.btn-form):hover,
.mbr-section-btn a.btn:not(.btn-form):focus {
  box-shadow: none !important;
}
.mbr-gallery-filter li a {
  border-radius: 100px !important;
}
.mbr-gallery-filter li.active .btn {
  background-color: #ff4a52;
  border-color: #ff4a52;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
.nav-tabs .nav-link {
  border-radius: 100px !important;
}
a,
a:hover {
  color: #ff4a52;
}
.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: #efeafa;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #fefefd;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #fae5e5;
}
.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;
}
#scrollToTop a i:before {
  content: '';
  position: absolute;
  height: 40%;
  top: 25%;
  background: #fff;
  width: 2px;
  left: calc(50% - 1px);
}
#scrollToTop a i:after {
  content: '';
  position: absolute;
  display: block;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  width: 40%;
  height: 40%;
  left: 30%;
  bottom: 30%;
  -webkit-transform: rotate(135deg);
  transform: rotate(135deg);
}
/* Others*/
.note-check a[data-value=Rubik] {
  font-style: normal;
}
.mbr-arrow a {
  color: #ffffff;
}
@media (max-width: 767px) {
  .mbr-arrow {
    display: none;
  }
}
.form-control-label {
  position: relative;
  cursor: pointer;
  margin-bottom: .357em;
  padding: 0;
}
.alert {
  color: #ffffff;
  border-radius: 0;
  border: 0;
  font-size: .875rem;
  line-height: 1.5;
  margin-bottom: 1.875rem;
  padding: 1.25rem;
  position: relative;
}
.alert.alert-form::after {
  background-color: inherit;
  bottom: -7px;
  content: "";
  display: block;
  height: 14px;
  left: 50%;
  margin-left: -7px;
  position: absolute;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  width: 14px;
}
.form-control {
  font-family: 'Open Sans', sans-serif;
  font-size: 1rem;
}
.form-control > .mbr-iconfont {
  font-size: 1.6rem;
}
blockquote {
  border-color: #ff4a52;
}
.btn-md {
  transition: none;
  padding: 0.5rem 2rem;
}
.btn-md:hover {
  background-color: #1ec6b6 !important;
  border-color: #1ec6b6 !important;
}
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #ff4a52;
  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-number__spin {
  background: #ffffff;
}
.jq-selectbox:hover .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:hover:after,
.jq-number__spin.plus:hover:after {
  border-top-color: #ff4a52;
  border-bottom-color: #ff4a52;
}
.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: #ff4a52 !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: #1ec6b6 !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='%23ff4a52' %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-ur5ZFgfpDW {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-ur5ZFgfpDW nav.navbar {
  position: fixed;
}
.cid-ur5ZFgfpDW .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-ur5ZFgfpDW .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-ur5ZFgfpDW .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-ur5ZFgfpDW .dropdown-item:hover,
.cid-ur5ZFgfpDW .dropdown-item:focus {
  background: #ff4a52 !important;
  color: white !important;
}
.cid-ur5ZFgfpDW .dropdown-item:hover span {
  color: white;
}
.cid-ur5ZFgfpDW .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-ur5ZFgfpDW .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-ur5ZFgfpDW .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-ur5ZFgfpDW .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-ur5ZFgfpDW .nav-link {
  position: relative;
}
.cid-ur5ZFgfpDW .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-ur5ZFgfpDW .container {
    flex-wrap: nowrap;
  }
}
.cid-ur5ZFgfpDW .iconfont-wrapper {
  color: #0e0e0e !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
  transition: 0.4s all;
}
.cid-ur5ZFgfpDW .iconfont-wrapper .mbr-iconfont {
  transition: 0.4s all;
}
.cid-ur5ZFgfpDW .iconfont-wrapper:hover .mbr-iconfont {
  color: #ff4a52;
}
.cid-ur5ZFgfpDW .navbar-nav .nav-item {
  margin-right: 3.6vw;
}
.cid-ur5ZFgfpDW .navbar-nav .nav-item:hover {
  color: #ff4a52 !important;
}
.cid-ur5ZFgfpDW .navbar-nav .nav-link {
  margin: 0 !important;
  padding: 20px !important;
}
.cid-ur5ZFgfpDW .navbar-nav .nav-link:hover {
  color: #ff4a52 !important;
}
.cid-ur5ZFgfpDW .dropdown-menu,
.cid-ur5ZFgfpDW .navbar.opened {
  background: #ffffff !important;
}
.cid-ur5ZFgfpDW .nav-item:focus,
.cid-ur5ZFgfpDW .nav-link:focus {
  outline: none;
}
.cid-ur5ZFgfpDW .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-ur5ZFgfpDW .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-ur5ZFgfpDW .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-ur5ZFgfpDW .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-ur5ZFgfpDW .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-ur5ZFgfpDW .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-ur5ZFgfpDW .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: #ffffff;
  border: none !important;
  box-shadow: none;
  padding: 0 !important;
  padding-top: 40px !important;
  padding-bottom: 40px !important;
}
.cid-ur5ZFgfpDW .navbar.opened {
  transition: all 0.3s;
}
.cid-ur5ZFgfpDW .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-ur5ZFgfpDW .navbar .navbar-logo img {
  width: auto;
}
.cid-ur5ZFgfpDW .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-ur5ZFgfpDW .navbar.collapsed {
  justify-content: center;
}
.cid-ur5ZFgfpDW .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-ur5ZFgfpDW .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-ur5ZFgfpDW .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 7.2rem);
  }
}
.cid-ur5ZFgfpDW .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-ur5ZFgfpDW .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-ur5ZFgfpDW .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-ur5ZFgfpDW .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-ur5ZFgfpDW .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-ur5ZFgfpDW .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-ur5ZFgfpDW .navbar {
    padding-top: 32px !important;
    padding-bottom: 32px !important;
  }
  .cid-ur5ZFgfpDW .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-ur5ZFgfpDW .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-ur5ZFgfpDW .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-ur5ZFgfpDW .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-ur5ZFgfpDW .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-ur5ZFgfpDW .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-ur5ZFgfpDW .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-ur5ZFgfpDW .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-ur5ZFgfpDW .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-ur5ZFgfpDW .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-ur5ZFgfpDW .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-ur5ZFgfpDW .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-ur5ZFgfpDW .navbar.navbar-short {
  min-height: 60px;
}
.cid-ur5ZFgfpDW .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-ur5ZFgfpDW .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
@media (max-width: 575px) {
  .cid-ur5ZFgfpDW .navbar {
    padding-top: 24px !important;
    padding-bottom: 24px !important;
  }
}
.cid-ur5ZFgfpDW .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-ur5ZFgfpDW .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-ur5ZFgfpDW .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-ur5ZFgfpDW .dropdown-item.active,
.cid-ur5ZFgfpDW .dropdown-item:active {
  background-color: transparent;
}
.cid-ur5ZFgfpDW .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-ur5ZFgfpDW .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-ur5ZFgfpDW .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-ur5ZFgfpDW .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-ur5ZFgfpDW .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-ur5ZFgfpDW .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-ur5ZFgfpDW ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-ur5ZFgfpDW .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-ur5ZFgfpDW button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-ur5ZFgfpDW button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #0e0e0e;
}
.cid-ur5ZFgfpDW button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-ur5ZFgfpDW button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-ur5ZFgfpDW button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-ur5ZFgfpDW button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-ur5ZFgfpDW nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-ur5ZFgfpDW nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-ur5ZFgfpDW nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-ur5ZFgfpDW nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-ur5ZFgfpDW .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-ur5ZFgfpDW a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-ur5ZFgfpDW .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: 991px) {
  .cid-ur5ZFgfpDW .icons-menu {
    padding: 1rem 0 !important;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-ur5ZFgfpDW .navbar {
    height: 70px;
  }
  .cid-ur5ZFgfpDW .navbar.opened {
    height: auto;
  }
  .cid-ur5ZFgfpDW .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
@media (max-width: 575px) {
  .cid-ur5ZFgfpDW .mbr-section-btn {
    display: flex;
    flex-direction: column;
    align-items: stretch;
  }
}
.cid-ur5ZFgfpDW .mbr-section-btn .btn {
  min-width: 80px;
  min-height: 62px;
  padding: 20px 35px;
}
@media (max-width: 575px) {
  .cid-ur5ZFgfpDW .mbr-section-btn .btn {
    width: auto !important;
  }
}
@media (max-width: 991px) {
  .cid-ur5ZFgfpDW .mbr-section-btn {
    text-align: center !important;
  }
}
.cid-ur5ZFgfpDW .custom-section-btn .btn-white-outline {
  color: #FFFFFF !important;
  background: linear-gradient(to bottom, transparent, transparent 50%, #ff4a52 50%, #ff4a52 100%) !important;
  background-size: 100% 200% !important;
  background-position: top !important;
  border: 1px solid #FFFFFF !important;
}
.cid-ur5ZFgfpDW .custom-section-btn .btn-white-outline:hover {
  background: linear-gradient(to bottom, transparent, transparent 50%, #ff4a52 50%, #ff4a52 100%) !important;
  background-size: 100% 200% !important;
  background-position: bottom !important;
  color: #0E0E0E !important;
  border: 1px solid transparent !important;
}
.cid-ur5ZFgfpDW .custom-section-btn .btn-white-outline:hover .btn-transform {
  animation: btn-move 0.4s ease-in-out;
}
.cid-ur5ZFgfpDW .custom-section-btn .btn-black-outline {
  color: #0E0E0E !important;
  background: linear-gradient(to bottom, transparent, transparent 50%, #ff4a52 50%, #ff4a52 100%) !important;
  background-size: 100% 200% !important;
  background-position: top !important;
  border: 1px solid #0E0E0E !important;
}
.cid-ur5ZFgfpDW .custom-section-btn .btn-black-outline:hover {
  background: linear-gradient(to bottom, transparent, transparent 50%, #ff4a52 50%, #ff4a52 100%) !important;
  background-size: 100% 200% !important;
  background-position: bottom !important;
  color: #0E0E0E !important;
  border: 1px solid transparent !important;
}
.cid-ur5ZFgfpDW .custom-section-btn .btn-black-outline:hover .btn-transform {
  animation: btn-move 0.4s ease-in-out;
}
.cid-ur5ZQCsVro {
  background-image: url("../../../assets/images/mbr-2-1920x1080.jpeg");
}
.cid-ur5ZQCsVro .mbr-fallback-image.disabled {
  display: none;
}
.cid-ur5ZQCsVro .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ur5ZYTGnHX {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-ur5ZYTGnHX .mbr-text {
  line-height: 1.5;
  color: #333333;
}
.cid-ur5ZYTGnHX .mbr-section-title {
  text-align: left;
  color: #000000;
}
.cid-ur5ZYTGnHX .mbr-fallback-image.disabled {
  display: none;
}
.cid-ur5ZYTGnHX .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ur60KPI1F2 {
  padding-top: 900px;
  background-image: url("../../../assets/images/beautiful-shot-unrecognizabe-woman-sitting-edge-cliff-admiring-city-cape-town-2000x1336.jpg");
}
.cid-ur60KPI1F2 .mbr-fallback-image.disabled {
  display: none;
}
.cid-ur60KPI1F2 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ur60LB2JMw {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #f7f7f7;
}
.cid-ur60LB2JMw .mbr-text {
  line-height: 1.5;
  color: #333333;
}
.cid-ur60LB2JMw .mbr-section-title {
  text-align: left;
  color: #000000;
}
.cid-ur60LB2JMw .mbr-fallback-image.disabled {
  display: none;
}
.cid-ur60LB2JMw .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-urlBm9Zb38 {
  background-image: url("../../../assets/images/mbr-1920x1280.jpg");
}
.cid-urlBm9Zb38 .mbr-section-title DIV {
  text-align: center;
}
.cid-urlBm9Zb38 .mbr-text,
.cid-urlBm9Zb38 .mbr-section-btn {
  text-align: left;
}
.cid-urlBm9Zb38 .mbr-fallback-image.disabled {
  display: none;
}
.cid-urlBm9Zb38 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ur61tF4iSM {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #f7f7f7;
}
.cid-ur61tF4iSM .row {
  flex-direction: row-reverse;
}
.cid-ur61tF4iSM .mbr-fallback-image.disabled {
  display: none;
}
.cid-ur61tF4iSM .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ur61tF4iSM .mbr-description {
  text-align: left;
}
.cid-ur61tF4iSM .item-wrapper {
  background: #f7f7f7;
  margin-bottom: 2rem;
  padding: 2.25rem 2.25rem 1rem 2.25rem;
}
@media (max-width: 767px) {
  .cid-ur61tF4iSM .item-wrapper {
    padding: 2rem 1.5rem 0.5rem 1.5rem;
    margin-bottom: 1rem;
  }
}
@media (min-width: 992px) and (max-width: 1200px) {
  .cid-ur61tF4iSM .item-wrapper {
    padding: 2rem 1.5rem 0.5rem 1.5rem;
    margin-bottom: 1rem;
  }
}
.cid-ur61tF4iSM .card-title,
.cid-ur61tF4iSM .iconfont-wrapper {
  color: #000000;
}
.cid-ur61tF4iSM .card-text {
  color: #000000;
}
.cid-ur61tF4iSM .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-ur61tF4iSM .mbr-text,
.cid-ur61tF4iSM .mbr-section-btn {
  text-align: left;
}
.cid-ur61tF4iSM .card-text,
.cid-ur61tF4iSM .item .mbr-section-btn {
  text-align: left;
}
.cid-ur61tF4iSM .counter-container ul {
  margin: 0;
  padding-left: 2.25rem;
  list-style: none;
}
.cid-ur61tF4iSM .counter-container ul li {
  position: relative;
  list-style: none;
  margin-bottom: 2rem;
}
.cid-ur61tF4iSM .counter-container ul li:before {
  position: absolute;
  left: -1.5em;
  content: "";
  display: flex;
  justify-content: center;
  align-items: center;
  color: #c99d66;
  background-color: #c99d66;
  width: 0.5em;
  height: 0.5em;
  top: 0.4em;
  border-radius: 50%;
}
.cid-ur61tF4iSM .mbr-text UL {
  text-align: left;
}
.cid-ur61DQaJ4W {
  padding-top: 7rem;
  padding-bottom: 7rem;
  background-color: #f7f7f7;
}
.cid-ur61DQaJ4W .mbr-fallback-image.disabled {
  display: none;
}
.cid-ur61DQaJ4W .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ur61DQaJ4W .mbr-text {
  color: #000000;
}
.cid-ur61DQaJ4W .mbr-section-subtitle {
  color: #ffffff;
  text-align: left;
}
.cid-ur61DQaJ4W .item-wrapper {
  background: #ffffff;
  padding: 2.25rem 2.25rem 1rem 2.25rem;
}
@media (max-width: 767px) {
  .cid-ur61DQaJ4W .item-wrapper {
    padding: 2rem 1.5rem 0.5rem 1.5rem;
  }
}
@media (min-width: 992px) and (max-width: 1200px) {
  .cid-ur61DQaJ4W .item-wrapper {
    padding: 2rem 1.5rem 0.5rem 1.5rem;
  }
}
.cid-ur61DQaJ4W .main-button {
  margin-bottom: 2rem;
}
@media (max-width: 767px) {
  .cid-ur61DQaJ4W .main-button {
    margin-bottom: 2rem;
  }
}
.cid-ur61DQaJ4W .counter-container ul {
  margin: 0;
  padding-left: 2.25rem;
  list-style: none;
}
.cid-ur61DQaJ4W .counter-container ul li {
  position: relative;
  list-style: none;
  margin-bottom: 2rem;
}
.cid-ur61DQaJ4W .counter-container ul li:before {
  position: absolute;
  left: -1.5em;
  content: "";
  display: flex;
  justify-content: center;
  align-items: center;
  color: #a17e52;
  background-color: #a17e52;
  width: 0.5em;
  height: 0.5em;
  top: 0.4em;
  border-radius: 50%;
}
.cid-ur61DQaJ4W .counter-container ol {
  margin-bottom: 0;
  padding-left: 2.25rem;
  counter-reset: myCounter;
}
.cid-ur61DQaJ4W .counter-container ol li {
  margin-bottom: 2rem;
  list-style: none;
  position: relative;
}
.cid-ur61DQaJ4W .counter-container ol li:before {
  font-weight: 700;
  position: absolute;
  left: -1.5em;
  counter-increment: myCounter;
  content: counter(myCounter);
  transition: all .2s;
  color: #a17e52;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-ur61DQaJ4W .mbr-text UL {
  text-align: left;
}
.cid-ur61DQaJ4W .mbr-section-subtitle,
.cid-ur61DQaJ4W .main-button {
  color: #000000;
}
.cid-ur624bUFrz {
  padding-top: 900px;
}
.cid-ur624bUFrz .mbr-fallback-image.disabled {
  display: none;
}
.cid-ur624bUFrz .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  background-image: url("../../../assets/images/mbr-1-1920x1080.jpg");
}
.cid-ur62ewPbvz {
  padding-top: 120px;
  padding-bottom: 120px;
  background-color: #f7f7f7;
}
.cid-ur62ewPbvz .mbr-text {
  line-height: 1.5;
  color: #333333;
}
.cid-ur62ewPbvz .mbr-section-title {
  text-align: left;
  color: #000000;
}
.cid-ur62ewPbvz .mbr-fallback-image.disabled {
  display: none;
}
.cid-ur62ewPbvz .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ur62GvBujS {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background: #f7f7f7;
}
.cid-ur62GvBujS .team-card {
  margin-bottom: 2rem;
  transition: all 0.3s;
}
.cid-ur62GvBujS .team-card:hover {
  transform: translateY(-10px);
}
.cid-ur62GvBujS .card-wrap {
  background: #ffffff;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  padding: 2.5rem;
}
@media (max-width: 991px) {
  .cid-ur62GvBujS .card-wrap {
    margin-bottom: 2rem;
  }
}
.cid-ur62GvBujS .card-wrap img {
  position: absolute;
  bottom: -35px;
  right: -35px;
  width: 150px;
  height: 150px;
  border-radius: 50%;
}
.cid-ur62GvBujS .card-wrap .image-wrap img {
  width: 65px;
  height: 65px;
  object-fit: cover;
  margin: auto;
  margin-right: 1rem;
  border-radius: 50%;
}
@media (max-width: 767px) {
  .cid-ur62GvBujS .card-wrap {
    padding: 2rem 1rem;
  }
}
.cid-ur62GvBujS .mbr-iconfont {
  color: #14191e;
  font-size: 3rem;
  padding-bottom: 1rem;
  display: block;
}
.cid-ur62GvBujS .mbr-role,
.cid-ur62GvBujS .social-row {
  color: #777777;
}
.cid-ur62GvBujS .mbr-section-subtitle {
  color: #777777;
}
.cid-ur62GvBujS .card-text,
.cid-ur62GvBujS .mbr-section-btn,
.cid-ur62GvBujS .social-row {
  color: #777777;
}
.cid-ur62GvBujS .mbr-section-title {
  color: #14191e;
}
.cid-ur62GvBujS .card-title,
.cid-ur62GvBujS .social-row {
  color: #31363b;
}
.cid-ur63iAGJOI {
  padding-top: 7rem;
  padding-bottom: 6rem;
  background-color: #f7f7f7;
}
.cid-ur63iAGJOI .mbr-fallback-image.disabled {
  display: none;
}
.cid-ur63iAGJOI .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-ur63iAGJOI .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-ur63iAGJOI .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-ur63iAGJOI .image-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-ur63iAGJOI .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-ur63iAGJOI .mbr-section-title {
  color: #000000;
}
.cid-ur63iAGJOI .mbr-text,
.cid-ur63iAGJOI .mbr-section-btn {
  color: #000000;
}
.cid-ur63VYcIBA {
  padding-top: 105px;
  padding-bottom: 15px;
  background-color: #f7f7f7;
}
.cid-ur63VYcIBA .card-wrapper {
  overflow: hidden;
  height: 100%;
  background: #ffffff;
  color: #444444;
  padding: 0;
  border-radius: 6px;
  border: 1px solid #f7f7f7;
  transition: all 0.3s;
}
.cid-ur63VYcIBA .card-wrapper:hover {
  box-shadow: 0 20px 30px rgba(0, 0, 0, 0.1);
  margin-top: -0.6rem;
}
.cid-ur63VYcIBA p {
  line-height: 1.6;
}
.cid-ur63VYcIBA .btn {
  border: none;
  background: transparent;
  font-weight: 400 !important;
}
.cid-ur63VYcIBA .card-title {
  color: #000000;
  margin: 0;
  line-height: 1.3;
  padding-bottom: 1.5rem;
}
.cid-ur63VYcIBA .card-img {
  overflow: hidden;
  max-height: 280px;
  border-radius: 0;
}
.cid-ur63VYcIBA img {
  transition: all 0.3s;
}
.cid-ur63VYcIBA .card-box {
  padding: 1.5rem;
}
.cid-ur63VYcIBA .mbr-section-title {
  margin: 0 auto;
  color: #000000;
  text-align: left;
}
.cid-ur63VYcIBA .card-box > p,
.cid-ur63VYcIBA .mbr-section-btn {
  color: #000000;
  text-align: left;
}
.cid-ur63VYcIBA .mbr-section-sub-title {
  text-align: left;
  color: #9e9e9e;
}
.cid-ur63VYcIBA .mbr-fallback-image.disabled {
  display: none;
}
.cid-ur63VYcIBA .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ur6D4yIN9z {
  padding-top: 15px;
  padding-bottom: 105px;
  background-color: #f7f7f7;
}
.cid-ur6D4yIN9z .card-wrapper {
  overflow: hidden;
  height: 100%;
  background: #ffffff;
  color: #444444;
  padding: 0;
  border-radius: 6px;
  border: 1px solid #f7f7f7;
  transition: all 0.3s;
}
.cid-ur6D4yIN9z .card-wrapper:hover {
  box-shadow: 0 20px 30px rgba(0, 0, 0, 0.1);
  margin-top: -0.6rem;
}
.cid-ur6D4yIN9z p {
  line-height: 1.6;
}
.cid-ur6D4yIN9z .btn {
  border: none;
  background: transparent;
  font-weight: 400 !important;
}
.cid-ur6D4yIN9z .card-title {
  color: #000000;
  margin: 0;
  line-height: 1.3;
  padding-bottom: 1.5rem;
}
.cid-ur6D4yIN9z .card-img {
  overflow: hidden;
  max-height: 280px;
  border-radius: 0;
}
.cid-ur6D4yIN9z img {
  transition: all 0.3s;
}
.cid-ur6D4yIN9z .card-box {
  padding: 1.5rem;
}
.cid-ur6D4yIN9z .mbr-section-title {
  margin: 0 auto;
  color: #000000;
  text-align: center;
}
.cid-ur6D4yIN9z .card-box > p,
.cid-ur6D4yIN9z .mbr-section-btn {
  color: #000000;
  text-align: left;
}
.cid-ur6D4yIN9z .mbr-section-sub-title {
  text-align: center;
  color: #9e9e9e;
}
.cid-ur6D4yIN9z .mbr-fallback-image.disabled {
  display: none;
}
.cid-ur6D4yIN9z .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ur6cT3QmnU {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f7f7f7;
}
.cid-ur6cT3QmnU .mbr-fallback-image.disabled {
  display: none;
}
.cid-ur6cT3QmnU .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ur6cT3QmnU .title .num {
  width: 100%;
  display: block;
}
.cid-ur6cT3QmnU .title .card-title {
  z-index: 1;
}
.cid-ur6cT3QmnU .num {
  color: #9fe870;
}
.cid-ur6cT3QmnU .item-mb {
  margin-bottom: 2rem;
}
@media (max-width: 767px) {
  .cid-ur6cT3QmnU .item-mb {
    margin-bottom: 1rem;
  }
}
@media (max-width: 767px) {
  .cid-ur6cT3QmnU * {
    text-align: center !important;
  }
  .cid-ur6cT3QmnU .content-column {
    margin-bottom: 2rem;
  }
}
.cid-ur6cT3QmnU .content-head {
  max-width: 800px;
}
.cid-ur62WlLsLG {
  padding-top: 6rem;
  padding-bottom: 0rem;
  background-color: #f7f7f7;
}
.cid-ur62WlLsLG .mbr-iconfont {
  font-size: 1.2rem !important;
  font-family: 'Moririse2' !important;
  color: white;
  transition: all 0.3s;
  transform: rotate(180deg);
  padding-left: 0.5rem;
}
.cid-ur62WlLsLG .panel-group {
  border: none;
}
.cid-ur62WlLsLG .card-header {
  padding: 0rem;
}
@media (max-width: 767px) {
  .cid-ur62WlLsLG .card-header {
    padding: 0rem;
  }
}
.cid-ur62WlLsLG .panel-body {
  padding: 0rem;
  padding-bottom: 0.5rem;
  margin-top: 1rem;
}
.cid-ur62WlLsLG .img-col {
  padding: 0;
}
.cid-ur62WlLsLG .img-item {
  height: 100%;
}
.cid-ur62WlLsLG img {
  height: 100%;
  object-fit: cover;
}
.cid-ur62WlLsLG .collapsed span {
  transform: rotate(0deg);
}
.cid-ur62WlLsLG .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-ur62WlLsLG p {
  margin-bottom: 0.3rem;
}
.cid-ur62WlLsLG .panel-title-edit {
  color: #000000;
}
.cid-ur62WlLsLG .card .card-header {
  background-color: transparent;
  margin-bottom: 0;
  border: 0;
  border-radius: 2rem;
}
.cid-ur62WlLsLG .card {
  background: #ffffff;
  padding: 2.25rem;
  border-radius: 2rem;
  margin-bottom: 1rem;
}
@media (max-width: 767px) {
  .cid-ur62WlLsLG .card {
    padding: 2rem 1.5rem;
    margin-bottom: 1rem;
  }
}
@media (min-width: 992px) and (max-width: 1200px) {
  .cid-ur62WlLsLG .card {
    margin-bottom: 1rem;
    padding: 2rem 1.5rem;
  }
}
.cid-ur62WlLsLG .panel-text {
  color: #000000;
}
.cid-ur62WlLsLG .mbr-section-title {
  text-align: left;
  color: #000000;
}
.cid-ur62WlLsLG .mbr-section-subtitle {
  color: #000000;
  text-align: left;
}
.cid-ur62WlLsLG .panel-title-edit,
.cid-ur62WlLsLG .mbr-iconfont {
  color: #000000;
}
.cid-ur6Ulf4jzX {
  padding-top: 1rem;
  padding-bottom: 3rem;
  background-color: #f7f7f7;
}
.cid-ur6Ulf4jzX .mbr-iconfont {
  font-size: 1.2rem !important;
  font-family: 'Moririse2' !important;
  color: white;
  transition: all 0.3s;
  transform: rotate(180deg);
  padding-left: 0.5rem;
}
.cid-ur6Ulf4jzX .panel-group {
  border: none;
}
.cid-ur6Ulf4jzX .card-header {
  padding: 0rem;
}
@media (max-width: 767px) {
  .cid-ur6Ulf4jzX .card-header {
    padding: 0rem;
  }
}
.cid-ur6Ulf4jzX .panel-body {
  padding: 0rem;
  padding-bottom: 0.5rem;
  margin-top: 1rem;
}
.cid-ur6Ulf4jzX .img-col {
  padding: 0;
}
.cid-ur6Ulf4jzX .img-item {
  height: 100%;
}
.cid-ur6Ulf4jzX img {
  height: 100%;
  object-fit: cover;
}
.cid-ur6Ulf4jzX .collapsed span {
  transform: rotate(0deg);
}
.cid-ur6Ulf4jzX .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-ur6Ulf4jzX p {
  margin-bottom: 0.3rem;
}
.cid-ur6Ulf4jzX .panel-title-edit {
  color: #000000;
}
.cid-ur6Ulf4jzX .card .card-header {
  background-color: transparent;
  margin-bottom: 0;
  border: 0;
  border-radius: 2rem;
}
.cid-ur6Ulf4jzX .card {
  background: #ffffff;
  padding: 2.25rem;
  border-radius: 2rem;
  margin-bottom: 1rem;
}
@media (max-width: 767px) {
  .cid-ur6Ulf4jzX .card {
    padding: 2rem 1.5rem;
    margin-bottom: 1rem;
  }
}
@media (min-width: 992px) and (max-width: 1200px) {
  .cid-ur6Ulf4jzX .card {
    margin-bottom: 1rem;
    padding: 2rem 1.5rem;
  }
}
.cid-ur6Ulf4jzX .panel-text {
  color: #000000;
}
.cid-ur6Ulf4jzX .mbr-section-title {
  text-align: left;
  color: #000000;
}
.cid-ur6Ulf4jzX .mbr-section-subtitle {
  color: #000000;
  text-align: center;
}
.cid-ur6Ulf4jzX .panel-title-edit,
.cid-ur6Ulf4jzX .mbr-iconfont {
  color: #000000;
}
.cid-urs3yE80NY {
  background-image: url("../../../assets/images/1080x1080mujerotra-1080x1080.png");
}
.cid-urs3yE80NY .mbr-fallback-image.disabled {
  display: none;
}
.cid-urs3yE80NY .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-urs3yE80NY .card-wrapper {
  background: #edefeb;
}
@media (max-width: 767px) {
  .cid-urs3yE80NY .card-wrapper {
    padding: 2rem 1.5rem;
    margin-bottom: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-urs3yE80NY .card-wrapper {
    padding: 2.25rem;
  }
}
@media (min-width: 992px) {
  .cid-urs3yE80NY .card-wrapper {
    padding: 4rem;
  }
}
.cid-urs3yE80NY .mbr-text,
.cid-urs3yE80NY .mbr-section-btn {
  text-align: center;
}
.cid-ur64cuFXQD {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #000000;
}
.cid-ur64cuFXQD .listico {
  padding-right: 1rem;
  font-size: 1.3rem;
}
.cid-ur64cuFXQD .navbar-logo {
  width: 80px;
  margin-bottom: 10px;
}
.cid-ur64cuFXQD .mbr-text {
  color: #444;
}
.cid-ur64cuFXQD h5 {
  margin-bottom: 0;
}
.cid-ur64cuFXQD .navbar-brand {
  margin: 0rem;
  width: 100%;
}
.cid-ur64cuFXQD .list-item {
  display: flex;
  padding-top: 10px;
  padding-bottom: 10px;
  -webkit-align-items: center;
  align-items: center;
}
.cid-ur64cuFXQD .tips {
  height: 90px;
  width: 90px;
  border-radius: 6px;
  margin: 4px;
  display: inline-block;
}
.cid-ur64cuFXQD .socicon {
  font-size: 1.3rem;
  background: #ff4a52;
  border-radius: 100%;
  width: 38px;
  height: 38px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-ur64cuFXQD .social-list {
  display: flex;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-ur64cuFXQD .social-list .soc-item {
  margin: 0 .3rem;
}
.cid-ur64cuFXQD .social-list a {
  margin: 0;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-ur64cuFXQD .social-list a:hover {
  opacity: .4;
}
.cid-ur64cuFXQD .media-container-row > div {
  padding: 0px;
}
.cid-ur64cuFXQD .text2 {
  color: #ffffff;
  text-align: left;
}
.cid-ur64cuFXQD .group-title {
  text-align: left;
  color: #ffffff;
}
.cid-ur64cuFXQD .group-title SPAN {
  color: #ffffff;
}
.cid-ur64cuFXQD .links {
  color: #ffffff;
  line-height: 1.6;
}
@media (max-width: 991px) {
  .cid-ur64cuFXQD .col-sm-12 {
    margin-bottom: 2rem;
  }
  .cid-ur64cuFXQD .social-list,
  .cid-ur64cuFXQD .img-list {
    -webkit-justify-content: center;
    justify-content: center;
    text-align: center;
  }
  .cid-ur64cuFXQD h3 {
    margin-bottom: 10px;
  }
  .cid-ur64cuFXQD .navbar-brand {
    text-align: center;
  }
}
.cid-ur64cuFXQD .links SPAN {
  color: #9e9e9e;
}
.cid-ur64cuFXQD .mbr-fallback-image.disabled {
  display: none;
}
.cid-ur64cuFXQD .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ur5ZFgfpDW {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-ur5ZFgfpDW nav.navbar {
  position: fixed;
}
.cid-ur5ZFgfpDW .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-ur5ZFgfpDW .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-ur5ZFgfpDW .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-ur5ZFgfpDW .dropdown-item:hover,
.cid-ur5ZFgfpDW .dropdown-item:focus {
  background: #ff4a52 !important;
  color: white !important;
}
.cid-ur5ZFgfpDW .dropdown-item:hover span {
  color: white;
}
.cid-ur5ZFgfpDW .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-ur5ZFgfpDW .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-ur5ZFgfpDW .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-ur5ZFgfpDW .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-ur5ZFgfpDW .nav-link {
  position: relative;
}
.cid-ur5ZFgfpDW .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-ur5ZFgfpDW .container {
    flex-wrap: nowrap;
  }
}
.cid-ur5ZFgfpDW .iconfont-wrapper {
  color: #0e0e0e !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
  transition: 0.4s all;
}
.cid-ur5ZFgfpDW .iconfont-wrapper .mbr-iconfont {
  transition: 0.4s all;
}
.cid-ur5ZFgfpDW .iconfont-wrapper:hover .mbr-iconfont {
  color: #ff4a52;
}
.cid-ur5ZFgfpDW .navbar-nav .nav-item {
  margin-right: 3.6vw;
}
.cid-ur5ZFgfpDW .navbar-nav .nav-item:hover {
  color: #ff4a52 !important;
}
.cid-ur5ZFgfpDW .navbar-nav .nav-link {
  margin: 0 !important;
  padding: 20px !important;
}
.cid-ur5ZFgfpDW .navbar-nav .nav-link:hover {
  color: #ff4a52 !important;
}
.cid-ur5ZFgfpDW .dropdown-menu,
.cid-ur5ZFgfpDW .navbar.opened {
  background: #ffffff !important;
}
.cid-ur5ZFgfpDW .nav-item:focus,
.cid-ur5ZFgfpDW .nav-link:focus {
  outline: none;
}
.cid-ur5ZFgfpDW .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-ur5ZFgfpDW .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-ur5ZFgfpDW .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-ur5ZFgfpDW .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-ur5ZFgfpDW .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-ur5ZFgfpDW .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-ur5ZFgfpDW .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: #ffffff;
  border: none !important;
  box-shadow: none;
  padding: 0 !important;
  padding-top: 40px !important;
  padding-bottom: 40px !important;
}
.cid-ur5ZFgfpDW .navbar.opened {
  transition: all 0.3s;
}
.cid-ur5ZFgfpDW .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-ur5ZFgfpDW .navbar .navbar-logo img {
  width: auto;
}
.cid-ur5ZFgfpDW .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-ur5ZFgfpDW .navbar.collapsed {
  justify-content: center;
}
.cid-ur5ZFgfpDW .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-ur5ZFgfpDW .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-ur5ZFgfpDW .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 7.2rem);
  }
}
.cid-ur5ZFgfpDW .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-ur5ZFgfpDW .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-ur5ZFgfpDW .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-ur5ZFgfpDW .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-ur5ZFgfpDW .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-ur5ZFgfpDW .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-ur5ZFgfpDW .navbar {
    padding-top: 32px !important;
    padding-bottom: 32px !important;
  }
  .cid-ur5ZFgfpDW .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-ur5ZFgfpDW .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-ur5ZFgfpDW .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-ur5ZFgfpDW .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-ur5ZFgfpDW .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-ur5ZFgfpDW .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-ur5ZFgfpDW .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-ur5ZFgfpDW .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-ur5ZFgfpDW .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-ur5ZFgfpDW .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-ur5ZFgfpDW .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-ur5ZFgfpDW .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-ur5ZFgfpDW .navbar.navbar-short {
  min-height: 60px;
}
.cid-ur5ZFgfpDW .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-ur5ZFgfpDW .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
@media (max-width: 575px) {
  .cid-ur5ZFgfpDW .navbar {
    padding-top: 24px !important;
    padding-bottom: 24px !important;
  }
}
.cid-ur5ZFgfpDW .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-ur5ZFgfpDW .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-ur5ZFgfpDW .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-ur5ZFgfpDW .dropdown-item.active,
.cid-ur5ZFgfpDW .dropdown-item:active {
  background-color: transparent;
}
.cid-ur5ZFgfpDW .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-ur5ZFgfpDW .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-ur5ZFgfpDW .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-ur5ZFgfpDW .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-ur5ZFgfpDW .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-ur5ZFgfpDW .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-ur5ZFgfpDW ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-ur5ZFgfpDW .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-ur5ZFgfpDW button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-ur5ZFgfpDW button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #0e0e0e;
}
.cid-ur5ZFgfpDW button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-ur5ZFgfpDW button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-ur5ZFgfpDW button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-ur5ZFgfpDW button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-ur5ZFgfpDW nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-ur5ZFgfpDW nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-ur5ZFgfpDW nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-ur5ZFgfpDW nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-ur5ZFgfpDW .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-ur5ZFgfpDW a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-ur5ZFgfpDW .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: 991px) {
  .cid-ur5ZFgfpDW .icons-menu {
    padding: 1rem 0 !important;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-ur5ZFgfpDW .navbar {
    height: 70px;
  }
  .cid-ur5ZFgfpDW .navbar.opened {
    height: auto;
  }
  .cid-ur5ZFgfpDW .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
@media (max-width: 575px) {
  .cid-ur5ZFgfpDW .mbr-section-btn {
    display: flex;
    flex-direction: column;
    align-items: stretch;
  }
}
.cid-ur5ZFgfpDW .mbr-section-btn .btn {
  min-width: 80px;
  min-height: 62px;
  padding: 20px 35px;
}
@media (max-width: 575px) {
  .cid-ur5ZFgfpDW .mbr-section-btn .btn {
    width: auto !important;
  }
}
@media (max-width: 991px) {
  .cid-ur5ZFgfpDW .mbr-section-btn {
    text-align: center !important;
  }
}
.cid-ur5ZFgfpDW .custom-section-btn .btn-white-outline {
  color: #FFFFFF !important;
  background: linear-gradient(to bottom, transparent, transparent 50%, #ff4a52 50%, #ff4a52 100%) !important;
  background-size: 100% 200% !important;
  background-position: top !important;
  border: 1px solid #FFFFFF !important;
}
.cid-ur5ZFgfpDW .custom-section-btn .btn-white-outline:hover {
  background: linear-gradient(to bottom, transparent, transparent 50%, #ff4a52 50%, #ff4a52 100%) !important;
  background-size: 100% 200% !important;
  background-position: bottom !important;
  color: #0E0E0E !important;
  border: 1px solid transparent !important;
}
.cid-ur5ZFgfpDW .custom-section-btn .btn-white-outline:hover .btn-transform {
  animation: btn-move 0.4s ease-in-out;
}
.cid-ur5ZFgfpDW .custom-section-btn .btn-black-outline {
  color: #0E0E0E !important;
  background: linear-gradient(to bottom, transparent, transparent 50%, #ff4a52 50%, #ff4a52 100%) !important;
  background-size: 100% 200% !important;
  background-position: top !important;
  border: 1px solid #0E0E0E !important;
}
.cid-ur5ZFgfpDW .custom-section-btn .btn-black-outline:hover {
  background: linear-gradient(to bottom, transparent, transparent 50%, #ff4a52 50%, #ff4a52 100%) !important;
  background-size: 100% 200% !important;
  background-position: bottom !important;
  color: #0E0E0E !important;
  border: 1px solid transparent !important;
}
.cid-ur5ZFgfpDW .custom-section-btn .btn-black-outline:hover .btn-transform {
  animation: btn-move 0.4s ease-in-out;
}
.cid-uraDXP5LtT {
  padding-top: 225px;
  padding-bottom: 150px;
  background-color: #f7f7f7;
}
.cid-uraDXP5LtT .mbr-text {
  line-height: 1.5;
  color: #333333;
  text-align: left;
}
.cid-uraDXP5LtT .mbr-section-title {
  text-align: left;
  color: #000000;
}
.cid-uraDXP5LtT .mbr-fallback-image.disabled {
  display: none;
}
.cid-uraDXP5LtT .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uraDT5Fnxh {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #000000;
}
.cid-uraDT5Fnxh .listico {
  padding-right: 1rem;
  font-size: 1.3rem;
}
.cid-uraDT5Fnxh .navbar-logo {
  width: 80px;
  margin-bottom: 10px;
}
.cid-uraDT5Fnxh .mbr-text {
  color: #444;
}
.cid-uraDT5Fnxh h5 {
  margin-bottom: 0;
}
.cid-uraDT5Fnxh .navbar-brand {
  margin: 0rem;
  width: 100%;
}
.cid-uraDT5Fnxh .list-item {
  display: flex;
  padding-top: 10px;
  padding-bottom: 10px;
  -webkit-align-items: center;
  align-items: center;
}
.cid-uraDT5Fnxh .tips {
  height: 90px;
  width: 90px;
  border-radius: 6px;
  margin: 4px;
  display: inline-block;
}
.cid-uraDT5Fnxh .socicon {
  font-size: 1.3rem;
  background: #ff4a52;
  border-radius: 100%;
  width: 38px;
  height: 38px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-uraDT5Fnxh .social-list {
  display: flex;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-uraDT5Fnxh .social-list .soc-item {
  margin: 0 .3rem;
}
.cid-uraDT5Fnxh .social-list a {
  margin: 0;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-uraDT5Fnxh .social-list a:hover {
  opacity: .4;
}
.cid-uraDT5Fnxh .media-container-row > div {
  padding: 0px;
}
.cid-uraDT5Fnxh .text2 {
  color: #ffffff;
  text-align: left;
}
.cid-uraDT5Fnxh .group-title {
  text-align: left;
  color: #ffffff;
}
.cid-uraDT5Fnxh .group-title SPAN {
  color: #ffffff;
}
.cid-uraDT5Fnxh .links {
  color: #ffffff;
  line-height: 1.6;
}
@media (max-width: 991px) {
  .cid-uraDT5Fnxh .col-sm-12 {
    margin-bottom: 2rem;
  }
  .cid-uraDT5Fnxh .social-list,
  .cid-uraDT5Fnxh .img-list {
    -webkit-justify-content: center;
    justify-content: center;
    text-align: center;
  }
  .cid-uraDT5Fnxh h3 {
    margin-bottom: 10px;
  }
  .cid-uraDT5Fnxh .navbar-brand {
    text-align: center;
  }
}
.cid-uraDT5Fnxh .links SPAN {
  color: #9e9e9e;
}
.cid-uraDT5Fnxh .mbr-fallback-image.disabled {
  display: none;
}
.cid-uraDT5Fnxh .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-urb0nqsqmj {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-urb0nqsqmj nav.navbar {
  position: fixed;
}
.cid-urb0nqsqmj .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-urb0nqsqmj .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-urb0nqsqmj .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-urb0nqsqmj .dropdown-item:hover,
.cid-urb0nqsqmj .dropdown-item:focus {
  background: #ff4a52 !important;
  color: white !important;
}
.cid-urb0nqsqmj .dropdown-item:hover span {
  color: white;
}
.cid-urb0nqsqmj .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-urb0nqsqmj .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-urb0nqsqmj .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-urb0nqsqmj .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-urb0nqsqmj .nav-link {
  position: relative;
}
.cid-urb0nqsqmj .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-urb0nqsqmj .container {
    flex-wrap: nowrap;
  }
}
.cid-urb0nqsqmj .iconfont-wrapper {
  color: #0e0e0e !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
  transition: 0.4s all;
}
.cid-urb0nqsqmj .iconfont-wrapper .mbr-iconfont {
  transition: 0.4s all;
}
.cid-urb0nqsqmj .iconfont-wrapper:hover .mbr-iconfont {
  color: #ff4a52;
}
.cid-urb0nqsqmj .navbar-nav .nav-item {
  margin-right: 3.6vw;
}
.cid-urb0nqsqmj .navbar-nav .nav-item:hover {
  color: #ff4a52 !important;
}
.cid-urb0nqsqmj .navbar-nav .nav-link {
  margin: 0 !important;
  padding: 20px !important;
}
.cid-urb0nqsqmj .navbar-nav .nav-link:hover {
  color: #ff4a52 !important;
}
.cid-urb0nqsqmj .dropdown-menu,
.cid-urb0nqsqmj .navbar.opened {
  background: #ffffff !important;
}
.cid-urb0nqsqmj .nav-item:focus,
.cid-urb0nqsqmj .nav-link:focus {
  outline: none;
}
.cid-urb0nqsqmj .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-urb0nqsqmj .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-urb0nqsqmj .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-urb0nqsqmj .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-urb0nqsqmj .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-urb0nqsqmj .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-urb0nqsqmj .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: #ffffff;
  border: none !important;
  box-shadow: none;
  padding: 0 !important;
  padding-top: 40px !important;
  padding-bottom: 40px !important;
}
.cid-urb0nqsqmj .navbar.opened {
  transition: all 0.3s;
}
.cid-urb0nqsqmj .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-urb0nqsqmj .navbar .navbar-logo img {
  width: auto;
}
.cid-urb0nqsqmj .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-urb0nqsqmj .navbar.collapsed {
  justify-content: center;
}
.cid-urb0nqsqmj .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-urb0nqsqmj .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-urb0nqsqmj .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 7.2rem);
  }
}
.cid-urb0nqsqmj .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-urb0nqsqmj .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-urb0nqsqmj .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-urb0nqsqmj .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-urb0nqsqmj .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-urb0nqsqmj .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-urb0nqsqmj .navbar {
    padding-top: 32px !important;
    padding-bottom: 32px !important;
  }
  .cid-urb0nqsqmj .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-urb0nqsqmj .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-urb0nqsqmj .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-urb0nqsqmj .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-urb0nqsqmj .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-urb0nqsqmj .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-urb0nqsqmj .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-urb0nqsqmj .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-urb0nqsqmj .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-urb0nqsqmj .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-urb0nqsqmj .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-urb0nqsqmj .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-urb0nqsqmj .navbar.navbar-short {
  min-height: 60px;
}
.cid-urb0nqsqmj .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-urb0nqsqmj .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
@media (max-width: 575px) {
  .cid-urb0nqsqmj .navbar {
    padding-top: 24px !important;
    padding-bottom: 24px !important;
  }
}
.cid-urb0nqsqmj .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-urb0nqsqmj .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-urb0nqsqmj .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-urb0nqsqmj .dropdown-item.active,
.cid-urb0nqsqmj .dropdown-item:active {
  background-color: transparent;
}
.cid-urb0nqsqmj .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-urb0nqsqmj .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-urb0nqsqmj .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-urb0nqsqmj .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-urb0nqsqmj .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-urb0nqsqmj .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-urb0nqsqmj ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-urb0nqsqmj .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-urb0nqsqmj button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-urb0nqsqmj button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #0e0e0e;
}
.cid-urb0nqsqmj button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-urb0nqsqmj button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-urb0nqsqmj button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-urb0nqsqmj button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-urb0nqsqmj nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-urb0nqsqmj nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-urb0nqsqmj nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-urb0nqsqmj nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-urb0nqsqmj .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-urb0nqsqmj a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-urb0nqsqmj .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: 991px) {
  .cid-urb0nqsqmj .icons-menu {
    padding: 1rem 0 !important;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-urb0nqsqmj .navbar {
    height: 70px;
  }
  .cid-urb0nqsqmj .navbar.opened {
    height: auto;
  }
  .cid-urb0nqsqmj .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
@media (max-width: 575px) {
  .cid-urb0nqsqmj .mbr-section-btn {
    display: flex;
    flex-direction: column;
    align-items: stretch;
  }
}
.cid-urb0nqsqmj .mbr-section-btn .btn {
  min-width: 80px;
  min-height: 62px;
  padding: 20px 35px;
}
@media (max-width: 575px) {
  .cid-urb0nqsqmj .mbr-section-btn .btn {
    width: auto !important;
  }
}
@media (max-width: 991px) {
  .cid-urb0nqsqmj .mbr-section-btn {
    text-align: center !important;
  }
}
.cid-urb0nqsqmj .custom-section-btn .btn-white-outline {
  color: #FFFFFF !important;
  background: linear-gradient(to bottom, transparent, transparent 50%, #ff4a52 50%, #ff4a52 100%) !important;
  background-size: 100% 200% !important;
  background-position: top !important;
  border: 1px solid #FFFFFF !important;
}
.cid-urb0nqsqmj .custom-section-btn .btn-white-outline:hover {
  background: linear-gradient(to bottom, transparent, transparent 50%, #ff4a52 50%, #ff4a52 100%) !important;
  background-size: 100% 200% !important;
  background-position: bottom !important;
  color: #0E0E0E !important;
  border: 1px solid transparent !important;
}
.cid-urb0nqsqmj .custom-section-btn .btn-white-outline:hover .btn-transform {
  animation: btn-move 0.4s ease-in-out;
}
.cid-urb0nqsqmj .custom-section-btn .btn-black-outline {
  color: #0E0E0E !important;
  background: linear-gradient(to bottom, transparent, transparent 50%, #ff4a52 50%, #ff4a52 100%) !important;
  background-size: 100% 200% !important;
  background-position: top !important;
  border: 1px solid #0E0E0E !important;
}
.cid-urb0nqsqmj .custom-section-btn .btn-black-outline:hover {
  background: linear-gradient(to bottom, transparent, transparent 50%, #ff4a52 50%, #ff4a52 100%) !important;
  background-size: 100% 200% !important;
  background-position: bottom !important;
  color: #0E0E0E !important;
  border: 1px solid transparent !important;
}
.cid-urb0nqsqmj .custom-section-btn .btn-black-outline:hover .btn-transform {
  animation: btn-move 0.4s ease-in-out;
}
.cid-urb0nrrZml {
  padding-top: 225px;
  padding-bottom: 150px;
  background-color: #f7f7f7;
}
.cid-urb0nrrZml .mbr-text {
  line-height: 1.5;
  color: #333333;
  text-align: left;
}
.cid-urb0nrrZml .mbr-section-title {
  text-align: left;
  color: #000000;
}
.cid-urb0nrrZml .mbr-fallback-image.disabled {
  display: none;
}
.cid-urb0nrrZml .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-urb0nrJqrr {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #000000;
}
.cid-urb0nrJqrr .listico {
  padding-right: 1rem;
  font-size: 1.3rem;
}
.cid-urb0nrJqrr .navbar-logo {
  width: 80px;
  margin-bottom: 10px;
}
.cid-urb0nrJqrr .mbr-text {
  color: #444;
}
.cid-urb0nrJqrr h5 {
  margin-bottom: 0;
}
.cid-urb0nrJqrr .navbar-brand {
  margin: 0rem;
  width: 100%;
}
.cid-urb0nrJqrr .list-item {
  display: flex;
  padding-top: 10px;
  padding-bottom: 10px;
  -webkit-align-items: center;
  align-items: center;
}
.cid-urb0nrJqrr .tips {
  height: 90px;
  width: 90px;
  border-radius: 6px;
  margin: 4px;
  display: inline-block;
}
.cid-urb0nrJqrr .socicon {
  font-size: 1.3rem;
  background: #ff4a52;
  border-radius: 100%;
  width: 38px;
  height: 38px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-urb0nrJqrr .social-list {
  display: flex;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-urb0nrJqrr .social-list .soc-item {
  margin: 0 .3rem;
}
.cid-urb0nrJqrr .social-list a {
  margin: 0;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-urb0nrJqrr .social-list a:hover {
  opacity: .4;
}
.cid-urb0nrJqrr .media-container-row > div {
  padding: 0px;
}
.cid-urb0nrJqrr .text2 {
  color: #ffffff;
  text-align: left;
}
.cid-urb0nrJqrr .group-title {
  text-align: left;
  color: #ffffff;
}
.cid-urb0nrJqrr .group-title SPAN {
  color: #ffffff;
}
.cid-urb0nrJqrr .links {
  color: #ffffff;
  line-height: 1.6;
}
@media (max-width: 991px) {
  .cid-urb0nrJqrr .col-sm-12 {
    margin-bottom: 2rem;
  }
  .cid-urb0nrJqrr .social-list,
  .cid-urb0nrJqrr .img-list {
    -webkit-justify-content: center;
    justify-content: center;
    text-align: center;
  }
  .cid-urb0nrJqrr h3 {
    margin-bottom: 10px;
  }
  .cid-urb0nrJqrr .navbar-brand {
    text-align: center;
  }
}
.cid-urb0nrJqrr .links SPAN {
  color: #9e9e9e;
}
.cid-urb0nrJqrr .mbr-fallback-image.disabled {
  display: none;
}
.cid-urb0nrJqrr .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
